commit c5ca9cec305b9805e2f1363bd43b63bcaf6e79fc Author: Marc Wieland Date: Wed Mar 18 17:42:54 2026 +0100 initial diff --git a/OnProfNext.Client/Layout/MainLayout.razor b/OnProfNext.Client/Layout/MainLayout.razor new file mode 100644 index 0000000..119dfac --- /dev/null +++ b/OnProfNext.Client/Layout/MainLayout.razor @@ -0,0 +1,103 @@ +@inherits LayoutComponentBase + + + + + + + + + Application + + + + + + + + + @Body + + + + +
+ An unhandled error has occurred. + Reload + 🗙 +
+ +@code { + private bool _drawerOpen = true; + private bool _isDarkMode = true; + private MudTheme? _theme = null; + + protected override void OnInitialized() + { + base.OnInitialized(); + + _theme = new() + { + PaletteLight = _lightPalette, + PaletteDark = _darkPalette, + LayoutProperties = new LayoutProperties() + }; + } + + private void DrawerToggle() + { + _drawerOpen = !_drawerOpen; + } + + private void DarkModeToggle() + { + _isDarkMode = !_isDarkMode; + } + + private readonly PaletteLight _lightPalette = new() + { + Black = "#110e2d", + AppbarText = "#424242", + AppbarBackground = "rgba(255,255,255,0.8)", + DrawerBackground = "#ffffff", + GrayLight = "#e8e8e8", + GrayLighter = "#f9f9f9", + }; + + private readonly PaletteDark _darkPalette = new() + { + Primary = "#7e6fff", + Surface = "#1e1e2d", + Background = "#1a1a27", + BackgroundGray = "#151521", + AppbarText = "#92929f", + AppbarBackground = "rgba(26,26,39,0.8)", + DrawerBackground = "#1a1a27", + ActionDefault = "#74718e", + ActionDisabled = "#9999994d", + ActionDisabledBackground = "#605f6d4d", + TextPrimary = "#b2b0bf", + TextSecondary = "#92929f", + TextDisabled = "#ffffff33", + DrawerIcon = "#92929f", + DrawerText = "#92929f", + GrayLight = "#2a2833", + GrayLighter = "#1e1e2d", + Info = "#4a86ff", + Success = "#3dcb6c", + Warning = "#ffb545", + Error = "#ff3f5f", + LinesDefault = "#33323e", + TableLines = "#33323e", + Divider = "#292838", + OverlayLight = "#1e1e2d80", + }; + + public string DarkLightModeButtonIcon => _isDarkMode switch + { + true => Icons.Material.Rounded.AutoMode, + false => Icons.Material.Outlined.DarkMode, + }; +} + + diff --git a/OnProfNext.Client/Layout/NavMenu.razor b/OnProfNext.Client/Layout/NavMenu.razor new file mode 100644 index 0000000..3f08809 --- /dev/null +++ b/OnProfNext.Client/Layout/NavMenu.razor @@ -0,0 +1,10 @@ + + + Home + Counter + + Weather + + + + diff --git a/OnProfNext.Client/Layout/ReconnectModal.razor b/OnProfNext.Client/Layout/ReconnectModal.razor new file mode 100644 index 0000000..9e4f7d4 --- /dev/null +++ b/OnProfNext.Client/Layout/ReconnectModal.razor @@ -0,0 +1,48 @@ + + + +
+
+
+ +

Connection Interrupted

+
+ +

+ Your current session is still open. We'll keep trying to restore it. +

+ + + +

+ Rejoining the server... +

+

+ Rejoin failed. Trying again in s. +

+

+ Failed to rejoin. Retry now or reload the page. +

+ +

+ The session has been paused by the server. +

+

+ Failed to resume the session. Retry now or reload the page. +

+ +
+ + +
+
+
+
diff --git a/OnProfNext.Client/Layout/ReconnectModal.razor.css b/OnProfNext.Client/Layout/ReconnectModal.razor.css new file mode 100644 index 0000000..c3bc26f --- /dev/null +++ b/OnProfNext.Client/Layout/ReconnectModal.razor.css @@ -0,0 +1,220 @@ +#components-reconnect-modal { + display: none; + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1400; + overflow: hidden; + background-color: transparent; + border: none; + width: 100%; + max-width: 100%; + max-height: 100%; + margin: 0; + padding: 0; +} + + #components-reconnect-modal::backdrop { + background: rgba(10, 16, 28, 0.5); + } + + #components-reconnect-modal.components-reconnect-show, + #components-reconnect-modal[open], + #components-reconnect-modal.components-reconnect-failed, + #components-reconnect-modal.components-reconnect-repeated-attempt, + #components-reconnect-modal.components-reconnect-paused, + #components-reconnect-modal.components-reconnect-resume-failed, + #components-reconnect-modal.components-pause, + #components-reconnect-modal.components-resume-failed { + display: flex; + align-items: center; + justify-content: center; + } + +.components-reconnect-backdrop { + position: fixed; + inset: 0; + display: flex; + align-items: center; + justify-content: center; + padding: 24px; + background: radial-gradient(90% 60% at 80% 0%, color-mix(in srgb, var(--mud-palette-primary, #594AE2) 12%, transparent), transparent 60%), radial-gradient(80% 55% at 0% 100%, color-mix(in srgb, var(--mud-palette-info, #2196f3) 16%, transparent), transparent 62%), rgba(8, 12, 20, 0.5); +} + +.components-reconnect-surface { + width: min(480px, 100%); + border-radius: var(--mud-default-borderradius, 12px); + border: 1px solid color-mix(in srgb, var(--mud-palette-lines-default, #e0e0e0) 70%, transparent); + background: var(--mud-palette-surface, #fff); + box-shadow: var(--mud-elevation-24, 0 16px 30px rgba(0, 0, 0, 0.28)); + color: var(--mud-palette-text-primary, #1f2937); + padding: 20px 20px 18px; +} + +.components-reconnect-header { + display: flex; + align-items: center; + gap: 10px; + margin-bottom: 8px; +} + + .components-reconnect-header h2 { + margin: 0; + font-size: 1.05rem; + font-weight: 600; + line-height: 1.3; + } + +.components-reconnect-status-dot { + width: 12px; + height: 12px; + border-radius: 50%; + background: var(--mud-palette-warning, #f59e0b); + box-shadow: 0 0 0 6px color-mix(in srgb, var(--mud-palette-warning, #f59e0b) 25%, transparent); +} + +.components-reconnect-supporting, +.components-reconnect-message { + margin: 0; + line-height: 1.45; + font-size: 0.95rem; +} + +.components-reconnect-supporting { + color: var(--mud-palette-text-secondary, #52607a); + margin-bottom: 14px; +} + +.components-reconnect-message { + font-weight: 500; +} + +.components-reconnect-danger { + color: var(--mud-palette-error, #b00020); +} + +.components-reconnect-actions { + margin-top: 14px; + display: flex; + gap: 10px; + justify-content: flex-end; +} + +.components-reconnect-first-attempt-visible, +.components-reconnect-repeated-attempt-visible, +.components-reconnect-failed-visible, +.components-pause-visible, +.components-resume-failed-visible { + display: none; +} + +dialog[open].components-reconnect-show .components-reconnect-first-attempt-visible { + display: block; +} + +dialog[open].components-reconnect-show .components-rejoin-loader { + display: inline-flex; +} + +dialog[open].components-reconnect-failed .components-reconnect-failed-visible { + display: block; +} + +dialog[open].components-reconnect-failed #components-reconnect-button { + display: block; +} + +dialog[open].components-reconnect-repeated-attempt .components-reconnect-repeated-attempt-visible { + display: block; +} + +dialog[open].components-reconnect-repeated-attempt .components-rejoin-loader { + display: inline-flex; +} + +dialog[open].components-reconnect-paused .components-pause-visible, +dialog[open].components-pause .components-pause-visible { + display: block; +} + +dialog[open].components-reconnect-paused #components-resume-button, +dialog[open].components-pause #components-resume-button, +dialog[open].components-reconnect-resume-failed #components-resume-button, +dialog[open].components-resume-failed #components-resume-button { + display: block; +} + +dialog[open].components-reconnect-resume-failed .components-resume-failed-visible, +dialog[open].components-resume-failed .components-resume-failed-visible { + display: block; +} + +.components-rejoin-loader { + display: none; + margin-bottom: 10px; + gap: 8px; +} + + .components-rejoin-loader div { + width: 9px; + height: 9px; + border-radius: 50%; + background-color: var(--mud-palette-primary, #594AE2); + animation: reconnect-pulse 1.2s infinite ease-in-out both; + } + + .components-rejoin-loader div:nth-child(1) { + animation-delay: -0.24s; + } + + .components-rejoin-loader div:nth-child(2) { + animation-delay: -0.12s; + } + +@keyframes reconnect-pulse { + 0%, 80%, 100% { + transform: scale(0); + } + + 40% { + transform: scale(1); + } +} + +#components-reconnect-button, +#components-resume-button { + display: none; + min-width: 92px; + cursor: pointer; + padding: 8px 16px; + border: 1px solid transparent; + border-radius: 999px; + background-color: var(--mud-palette-primary, #594AE2); + color: #fff; + font-size: 0.875rem; + font-weight: 600; + line-height: 1.2; + transition: filter 140ms ease, transform 140ms ease; +} + + #components-reconnect-button:hover, + #components-resume-button:hover { + filter: brightness(0.95); + } + + #components-reconnect-button:active, + #components-resume-button:active { + transform: translateY(1px); + } + +@media (max-width: 600px) { + .components-reconnect-backdrop { + padding: 14px; + } + + .components-reconnect-surface { + padding: 16px; + } +} diff --git a/OnProfNext.Client/Layout/ReconnectModal.razor.js b/OnProfNext.Client/Layout/ReconnectModal.razor.js new file mode 100644 index 0000000..bf4496c --- /dev/null +++ b/OnProfNext.Client/Layout/ReconnectModal.razor.js @@ -0,0 +1,69 @@ +// Set up event handlers +const reconnectModal = document.getElementById("components-reconnect-modal"); +reconnectModal.addEventListener("components-reconnect-state-changed", handleReconnectStateChanged); + +const retryButton = document.getElementById("components-reconnect-button"); +retryButton.addEventListener("click", retry); + +const resumeButton = document.getElementById("components-resume-button"); +resumeButton.addEventListener("click", resume); + +function handleReconnectStateChanged(event) { + if (event.detail.state === "show") { + reconnectModal.showModal(); + } else if (event.detail.state === "hide") { + reconnectModal.close(); + } else if (event.detail.state === "failed") { + document.addEventListener("visibilitychange", retryWhenDocumentBecomesVisible); + } else if (event.detail.state === "rejected") { + location.reload(); + } +} + +async function retry() { + document.removeEventListener("visibilitychange", retryWhenDocumentBecomesVisible); + + try { + // Reconnect will asynchronously return: + // - true to mean success + // - false to mean we reached the server, but it rejected the connection (e.g., unknown circuit ID) + // - exception to mean we didn't reach the server (this can be sync or async) + const successful = await Blazor.reconnect(); + if (!successful) { + // We have been able to reach the server, but the circuit is no longer available. + // We'll reload the page so the user can continue using the app as quickly as possible. + const resumeSuccessful = await Blazor.resumeCircuit(); + if (!resumeSuccessful) { + location.reload(); + } else { + reconnectModal.close(); + } + } + } catch (err) { + // We got an exception, server is currently unavailable + document.addEventListener("visibilitychange", retryWhenDocumentBecomesVisible); + } +} + +async function resume() { + try { + const successful = await Blazor.resumeCircuit(); + if (!successful) { + location.reload(); + } + } catch { + if (reconnectModal.classList.contains("components-reconnect-paused")) { + reconnectModal.classList.replace("components-reconnect-paused", "components-reconnect-resume-failed"); + } else if (reconnectModal.classList.contains("components-pause")) { + reconnectModal.classList.replace("components-pause", "components-resume-failed"); + } else { + reconnectModal.classList.add("components-reconnect-resume-failed"); + } + } +} + +async function retryWhenDocumentBecomesVisible() { + if (document.visibilityState === "visible") { + await retry(); + } +} diff --git a/OnProfNext.Client/OnProfNext.Client.csproj b/OnProfNext.Client/OnProfNext.Client.csproj new file mode 100644 index 0000000..207270f --- /dev/null +++ b/OnProfNext.Client/OnProfNext.Client.csproj @@ -0,0 +1,17 @@ + + + + net10.0 + enable + enable + true + Default + true + + + + + + + + diff --git a/OnProfNext.Client/Pages/Counter.razor b/OnProfNext.Client/Pages/Counter.razor new file mode 100644 index 0000000..83d09a7 --- /dev/null +++ b/OnProfNext.Client/Pages/Counter.razor @@ -0,0 +1,19 @@ +@page "/counter" + + +Counter + +Counter + +Current count: @currentCount + +Click me + +@code { + private int currentCount = 0; + + private void IncrementCount() + { + currentCount++; + } +} diff --git a/OnProfNext.Client/Pages/Home.razor b/OnProfNext.Client/Pages/Home.razor new file mode 100644 index 0000000..7aff07e --- /dev/null +++ b/OnProfNext.Client/Pages/Home.razor @@ -0,0 +1,59 @@ +@page "/" + +Home + +Hello, world! +Welcome to your new app, powered by MudBlazor and the .NET 10 Template! + + + You can find documentation and examples on our website here: + + www.mudblazor.com + + + +
+Interactivity in this Template +
+ + When you opt for the "Global" Interactivity Location,
+ the render modes are defined in App.razor and consequently apply to all child components.
+ In this case, providers are globally set in the MainLayout.
+
+ On the other hand, if you choose the "Per page/component" Interactivity Location,
+ it is necessary to include the
+
+ <MudPopoverProvider />
+ <MudDialogProvider />
+ <MudSnackbarProvider />
+
+ components on every interactive page.
+
+ If a render mode is not specified for a page, it defaults to Server-Side Rendering (SSR),
+ similar to this page. While MudBlazor allows pages to be rendered in SSR,
+ please note that interactive features, such as buttons and dropdown menus, will not be functional. +
+ +
+What's New in Blazor with the Release of .NET 10 +
+ +Prerendering + + If you're exploring the features of .NET 10 Blazor,
you might be pleasantly surprised to learn that each page is prerendered on the server,
regardless of the selected render mode.

+ This means that you'll need to inject all necessary services on the server,
even when opting for the wasm (WebAssembly) render mode.

+ This prerendering functionality is crucial to ensuring that WebAssembly mode feels fast and responsive,
especially when it comes to initial page load times.

+ For more information on how to detect prerendering and leverage the RenderContext, you can refer to the following link: + + More details + +
+ +
+InteractiveAuto + + A discussion on how to achieve this can be found here: + + More details + + diff --git a/OnProfNext.Client/Pages/NotFound.razor b/OnProfNext.Client/Pages/NotFound.razor new file mode 100644 index 0000000..0923a86 --- /dev/null +++ b/OnProfNext.Client/Pages/NotFound.razor @@ -0,0 +1,9 @@ +@page "/not-found" +@layout Layout.MainLayout + +Not Found + +404 - Page Not Found +Sorry, the content you are looking for does not exist. + +Go to Home diff --git a/OnProfNext.Client/Pages/Weather.razor b/OnProfNext.Client/Pages/Weather.razor new file mode 100644 index 0000000..7677d21 --- /dev/null +++ b/OnProfNext.Client/Pages/Weather.razor @@ -0,0 +1,63 @@ +@page "/weather" + + +Weather + +Weather forecast +This component demonstrates fetching data from the server. + +@if (Forecasts == null) +{ + +} +else +{ + + + Date + Temp. (C) + Temp. (F) + Summary + + + @context.Date + @context.TemperatureC + @context.TemperatureF + @context.Summary + + + + + +} + +@code { + [PersistentState(AllowUpdates = true)] + public WeatherForecast[]? Forecasts { get; set; } + + protected override async Task OnInitializedAsync() + { + if (Forecasts is null) + { + // Simulate asynchronous loading to demonstrate a loading indicator + await Task.Delay(500); + + var startDate = DateOnly.FromDateTime(DateTime.Now); + var summaries = new[] { "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching" }; + Forecasts = Enumerable.Range(1, 5).Select(index => new WeatherForecast + { + Date = startDate.AddDays(index), + TemperatureC = Random.Shared.Next(-20, 55), + Summary = summaries[Random.Shared.Next(summaries.Length)] + }).ToArray(); + } + } + + public class WeatherForecast + { + public DateOnly Date { get; set; } + public int TemperatureC { get; set; } + public string? Summary { get; set; } + public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); + } +} diff --git a/OnProfNext.Client/Program.cs b/OnProfNext.Client/Program.cs new file mode 100644 index 0000000..57602e1 --- /dev/null +++ b/OnProfNext.Client/Program.cs @@ -0,0 +1,8 @@ +using Microsoft.AspNetCore.Components.WebAssembly.Hosting; +using MudBlazor.Services; + +var builder = WebAssemblyHostBuilder.CreateDefault(args); + +builder.Services.AddMudServices(); + +await builder.Build().RunAsync(); diff --git a/OnProfNext.Client/Routes.razor b/OnProfNext.Client/Routes.razor new file mode 100644 index 0000000..105855d --- /dev/null +++ b/OnProfNext.Client/Routes.razor @@ -0,0 +1,6 @@ + + + + + + diff --git a/OnProfNext.Client/_Imports.razor b/OnProfNext.Client/_Imports.razor new file mode 100644 index 0000000..fca5f28 --- /dev/null +++ b/OnProfNext.Client/_Imports.razor @@ -0,0 +1,11 @@ +@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 static Microsoft.AspNetCore.Components.Web.RenderMode +@using Microsoft.AspNetCore.Components.Web.Virtualization +@using Microsoft.JSInterop +@using MudBlazor +@using MudBlazor.Services +@using OnProfNext.Client.Layout diff --git a/OnProfNext.Client/bin/Debug/net10.0/Microsoft.AspNetCore.Authorization.dll b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.AspNetCore.Authorization.dll new file mode 100644 index 0000000..7d92215 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.AspNetCore.Authorization.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/Microsoft.AspNetCore.Components.Forms.dll b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.AspNetCore.Components.Forms.dll new file mode 100644 index 0000000..3ba383d Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.AspNetCore.Components.Forms.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/Microsoft.AspNetCore.Components.Web.dll b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.AspNetCore.Components.Web.dll new file mode 100644 index 0000000..a45e114 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.AspNetCore.Components.Web.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/Microsoft.AspNetCore.Components.WebAssembly.dll b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.AspNetCore.Components.WebAssembly.dll new file mode 100644 index 0000000..fad98a1 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.AspNetCore.Components.WebAssembly.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/Microsoft.AspNetCore.Components.dll b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.AspNetCore.Components.dll new file mode 100644 index 0000000..15a0943 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.AspNetCore.Components.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/Microsoft.AspNetCore.Metadata.dll b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.AspNetCore.Metadata.dll new file mode 100644 index 0000000..2a52385 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.AspNetCore.Metadata.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/Microsoft.CSharp.dll b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.CSharp.dll new file mode 100644 index 0000000..f3735fe Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.CSharp.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/Microsoft.DotNet.HotReload.WebAssembly.Browser.dll b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.DotNet.HotReload.WebAssembly.Browser.dll new file mode 100644 index 0000000..3f71094 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.DotNet.HotReload.WebAssembly.Browser.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll new file mode 100644 index 0000000..efb7029 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Binder.dll b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Binder.dll new file mode 100644 index 0000000..7c8b8e3 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Binder.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Configuration.FileExtensions.dll b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Configuration.FileExtensions.dll new file mode 100644 index 0000000..85281dd Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Configuration.FileExtensions.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Json.dll b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Json.dll new file mode 100644 index 0000000..92973c0 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Json.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Configuration.dll b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Configuration.dll new file mode 100644 index 0000000..01a1d9d Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Configuration.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100644 index 0000000..7deed75 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.dll b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.dll new file mode 100644 index 0000000..84ae54b Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll new file mode 100644 index 0000000..725cdba Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.dll b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.dll new file mode 100644 index 0000000..be016b5 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.FileProviders.Abstractions.dll b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.FileProviders.Abstractions.dll new file mode 100644 index 0000000..0686e0d Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.FileProviders.Abstractions.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.FileProviders.Physical.dll b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.FileProviders.Physical.dll new file mode 100644 index 0000000..1a84552 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.FileProviders.Physical.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.FileSystemGlobbing.dll b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.FileSystemGlobbing.dll new file mode 100644 index 0000000..8ae14cb Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.FileSystemGlobbing.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Localization.Abstractions.dll b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Localization.Abstractions.dll new file mode 100644 index 0000000..9a2e301 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Localization.Abstractions.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Localization.dll b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Localization.dll new file mode 100644 index 0000000..cb6d5b2 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Localization.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Logging.Abstractions.dll b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100644 index 0000000..9f2c85a Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Logging.dll b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Logging.dll new file mode 100644 index 0000000..003a330 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Logging.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll new file mode 100644 index 0000000..22a70b7 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Options.dll b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Options.dll new file mode 100644 index 0000000..faf1990 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Options.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Primitives.dll b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Primitives.dll new file mode 100644 index 0000000..548cf93 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Primitives.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Validation.dll b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Validation.dll new file mode 100644 index 0000000..f148ee4 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Extensions.Validation.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/Microsoft.JSInterop.WebAssembly.dll b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.JSInterop.WebAssembly.dll new file mode 100644 index 0000000..be74b21 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.JSInterop.WebAssembly.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/Microsoft.JSInterop.dll b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.JSInterop.dll new file mode 100644 index 0000000..f824101 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.JSInterop.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/Microsoft.VisualBasic.Core.dll b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.VisualBasic.Core.dll new file mode 100644 index 0000000..e441e92 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.VisualBasic.Core.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/Microsoft.VisualBasic.dll b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.VisualBasic.dll new file mode 100644 index 0000000..c8a92bf Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.VisualBasic.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Win32.Primitives.dll b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Win32.Primitives.dll new file mode 100644 index 0000000..c6fd398 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Win32.Primitives.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Win32.Registry.dll b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Win32.Registry.dll new file mode 100644 index 0000000..ff00b25 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/Microsoft.Win32.Registry.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/MudBlazor.dll b/OnProfNext.Client/bin/Debug/net10.0/MudBlazor.dll new file mode 100644 index 0000000..af1be98 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/MudBlazor.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/OnProfNext.Client.dll b/OnProfNext.Client/bin/Debug/net10.0/OnProfNext.Client.dll new file mode 100644 index 0000000..2e3741b Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/OnProfNext.Client.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/OnProfNext.Client.pdb b/OnProfNext.Client/bin/Debug/net10.0/OnProfNext.Client.pdb new file mode 100644 index 0000000..f0c1e41 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/OnProfNext.Client.pdb differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/OnProfNext.Client.runtimeconfig.json b/OnProfNext.Client/bin/Debug/net10.0/OnProfNext.Client.runtimeconfig.json new file mode 100644 index 0000000..1c10cb0 --- /dev/null +++ b/OnProfNext.Client/bin/Debug/net10.0/OnProfNext.Client.runtimeconfig.json @@ -0,0 +1,51 @@ +{ + "runtimeOptions": { + "tfm": "net10.0", + "includedFrameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "10.0.5" + } + ], + "wasmHostProperties": { + "perHostConfig": [ + { + "name": "browser", + "host": "browser" + } + ] + }, + "configProperties": { + "Microsoft.AspNetCore.Components.Routing.RegexConstraintSupport": false, + "Microsoft.Extensions.DependencyInjection.VerifyOpenGenericServiceTrimmability": true, + "System.ComponentModel.DefaultValueAttribute.IsSupported": false, + "System.ComponentModel.Design.IDesignerHost.IsSupported": false, + "System.ComponentModel.TypeConverter.EnableUnsafeBinaryFormatterInDesigntimeLicenseContextSerialization": false, + "System.ComponentModel.TypeDescriptor.IsComObjectDescriptorSupported": false, + "System.Data.DataSet.XmlSerializationIsSupported": false, + "System.Diagnostics.Metrics.Meter.IsSupported": false, + "System.Diagnostics.Tracing.EventSource.IsSupported": false, + "System.GC.Server": true, + "System.Globalization.Invariant": false, + "System.TimeZoneInfo.Invariant": false, + "System.Linq.Enumerable.IsSizeOptimized": true, + "System.Net.Http.EnableActivityPropagation": false, + "System.Net.Http.WasmEnableStreamingResponse": true, + "System.Net.SocketsHttpHandler.Http3Support": false, + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, + "System.Resources.ResourceManager.AllowCustomResourceTypes": false, + "System.Resources.UseSystemResourceKeys": true, + "System.Runtime.CompilerServices.RuntimeFeature.IsDynamicCodeSupported": true, + "System.Runtime.InteropServices.BuiltInComInterop.IsSupported": false, + "System.Runtime.InteropServices.EnableConsumingManagedCodeFromNativeHosting": false, + "System.Runtime.InteropServices.EnableCppCLIHostActivation": false, + "System.Runtime.InteropServices.Marshalling.EnableGeneratedComInterfaceComImportInterop": false, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false, + "System.StartupHookProvider.IsSupported": false, + "System.Text.Encoding.EnableUnsafeUTF7Encoding": false, + "System.Text.Json.JsonSerializer.IsReflectionEnabledByDefault": true, + "System.Threading.Thread.EnableAutoreleasePool": false, + "Microsoft.AspNetCore.Components.Endpoints.NavigationManager.DisableThrowNavigationException": true + } + } +} \ No newline at end of file diff --git a/OnProfNext.Client/bin/Debug/net10.0/OnProfNext.Client.staticwebassets.endpoints.json b/OnProfNext.Client/bin/Debug/net10.0/OnProfNext.Client.staticwebassets.endpoints.json new file mode 100644 index 0000000..e9b4465 --- /dev/null +++ b/OnProfNext.Client/bin/Debug/net10.0/OnProfNext.Client.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"Layout/ReconnectModal.razor.js","AssetFile":"Layout/ReconnectModal.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2746"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4="},{"Name":"script-type","Value":"module"}]},{"Route":"Layout/ReconnectModal.razor.js","AssetFile":"Layout/ReconnectModal.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001269035533"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"787"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4="},{"Name":"original-resource","Value":"\"QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4=\""},{"Name":"script-type","Value":"module"}]},{"Route":"Layout/ReconnectModal.razor.js.gz","AssetFile":"Layout/ReconnectModal.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"787"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA="}]},{"Route":"Layout/ReconnectModal.ycbzh0sbjd.razor.js","AssetFile":"Layout/ReconnectModal.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2746"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ycbzh0sbjd"},{"Name":"integrity","Value":"sha256-QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4="},{"Name":"label","Value":"Layout/ReconnectModal.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"Layout/ReconnectModal.ycbzh0sbjd.razor.js","AssetFile":"Layout/ReconnectModal.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001269035533"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"787"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ycbzh0sbjd"},{"Name":"integrity","Value":"sha256-QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4="},{"Name":"label","Value":"Layout/ReconnectModal.razor.js"},{"Name":"original-resource","Value":"\"QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4=\""},{"Name":"script-type","Value":"module"}]},{"Route":"Layout/ReconnectModal.ycbzh0sbjd.razor.js.gz","AssetFile":"Layout/ReconnectModal.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"787"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ycbzh0sbjd"},{"Name":"integrity","Value":"sha256-rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA="},{"Name":"label","Value":"Layout/ReconnectModal.razor.js.gz"}]},{"Route":"OnProfNext.Client.styles.css","AssetFile":"OnProfNext.Client.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000690131125"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1448"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4="},{"Name":"original-resource","Value":"\"5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4=\""}]},{"Route":"OnProfNext.Client.styles.css","AssetFile":"OnProfNext.Client.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6834"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4="}]},{"Route":"OnProfNext.Client.styles.css.gz","AssetFile":"OnProfNext.Client.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1448"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o="}]},{"Route":"OnProfNext.Client.uzl7ca9j9c.styles.css","AssetFile":"OnProfNext.Client.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000690131125"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1448"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uzl7ca9j9c"},{"Name":"integrity","Value":"sha256-5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4="},{"Name":"label","Value":"OnProfNext.Client.styles.css"},{"Name":"original-resource","Value":"\"5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4=\""}]},{"Route":"OnProfNext.Client.uzl7ca9j9c.styles.css","AssetFile":"OnProfNext.Client.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6834"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uzl7ca9j9c"},{"Name":"integrity","Value":"sha256-5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4="},{"Name":"label","Value":"OnProfNext.Client.styles.css"}]},{"Route":"OnProfNext.Client.uzl7ca9j9c.styles.css.gz","AssetFile":"OnProfNext.Client.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1448"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uzl7ca9j9c"},{"Name":"integrity","Value":"sha256-UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o="},{"Name":"label","Value":"OnProfNext.Client.styles.css.gz"}]},{"Route":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js","AssetFile":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1862"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"A8e6zZwhOqf7lDQqbbCYcAUv4wGE9aQxOo4WyYxR//0=\""},{"Name":"Last-Modified","Value":"Wed, 04 Mar 2026 01:26:18 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"dependency-group","Value":"js-initializer"},{"Name":"fingerprint","Value":"99zm1jdh75"},{"Name":"integrity","Value":"sha256-A8e6zZwhOqf7lDQqbbCYcAUv4wGE9aQxOo4WyYxR//0="},{"Name":"label","Value":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js","AssetFile":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1862"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"A8e6zZwhOqf7lDQqbbCYcAUv4wGE9aQxOo4WyYxR//0=\""},{"Name":"Last-Modified","Value":"Wed, 04 Mar 2026 01:26:18 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"dependency-group","Value":"js-initializer"},{"Name":"integrity","Value":"sha256-A8e6zZwhOqf7lDQqbbCYcAUv4wGE9aQxOo4WyYxR//0="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/MudBlazor/MudBlazor.min.8dleymzaev.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"64944"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"VHJcGholtUHNobadpTrhyE/VCi90X4p12vYD83bzI04=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:27 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8dleymzaev"},{"Name":"integrity","Value":"sha256-VHJcGholtUHNobadpTrhyE/VCi90X4p12vYD83bzI04="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js"}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"607258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"kBmVfU2BqUZUT8HPz7NUnkObDjxYKbSWXF5q33paHM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:28 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kBmVfU2BqUZUT8HPz7NUnkObDjxYKbSWXF5q33paHM0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"64944"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"VHJcGholtUHNobadpTrhyE/VCi90X4p12vYD83bzI04=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:27 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VHJcGholtUHNobadpTrhyE/VCi90X4p12vYD83bzI04="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.0ykner63ol.map","AssetFile":"_content/MudBlazor/MudBlazor.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"236222"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"yAPYxO0UcV5YvjmoVWBh8O+tMbwO9AMZv1RMPdpxE0Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:27 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0ykner63ol"},{"Name":"integrity","Value":"sha256-yAPYxO0UcV5YvjmoVWBh8O+tMbwO9AMZv1RMPdpxE0Q="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js.map"}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.map","AssetFile":"_content/MudBlazor/MudBlazor.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"236222"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"yAPYxO0UcV5YvjmoVWBh8O+tMbwO9AMZv1RMPdpxE0Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:27 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yAPYxO0UcV5YvjmoVWBh8O+tMbwO9AMZv1RMPdpxE0Q="}]},{"Route":"_content/MudBlazor/MudBlazor.min.o2b68hjqqd.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"607258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"kBmVfU2BqUZUT8HPz7NUnkObDjxYKbSWXF5q33paHM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:28 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"o2b68hjqqd"},{"Name":"integrity","Value":"sha256-kBmVfU2BqUZUT8HPz7NUnkObDjxYKbSWXF5q33paHM0="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.css"}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"45333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"roqc1km2rj"},{"Name":"integrity","Value":"sha256-G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Authorization.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000050676532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"roqc1km2rj"},{"Name":"integrity","Value":"sha256-G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Authorization.wasm"},{"Name":"original-resource","Value":"\"G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"roqc1km2rj"},{"Name":"integrity","Value":"sha256-6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Authorization.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"45333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc="}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000050676532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc="},{"Name":"original-resource","Value":"\"G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000057547333"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17376"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ="},{"Name":"original-resource","Value":"\"sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17376"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zrueb40r85"},{"Name":"integrity","Value":"sha256-sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Forms.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000057547333"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17376"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zrueb40r85"},{"Name":"integrity","Value":"sha256-sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Forms.wasm"},{"Name":"original-resource","Value":"\"sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17376"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zrueb40r85"},{"Name":"integrity","Value":"sha256-FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Forms.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"178965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g5qdp1mxha"},{"Name":"integrity","Value":"sha256-XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Web.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013971749"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"71572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g5qdp1mxha"},{"Name":"integrity","Value":"sha256-XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Web.wasm"},{"Name":"original-resource","Value":"\"XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"71572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g5qdp1mxha"},{"Name":"integrity","Value":"sha256-Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Web.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"178965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013971749"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"71572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU="},{"Name":"original-resource","Value":"\"XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"71572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"155925"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9mjwvs1qyp"},{"Name":"integrity","Value":"sha256-r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000016249330"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"61540"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9mjwvs1qyp"},{"Name":"integrity","Value":"sha256-r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm"},{"Name":"original-resource","Value":"\"r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"61540"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9mjwvs1qyp"},{"Name":"integrity","Value":"sha256-WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"155925"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000016249330"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"61540"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4="},{"Name":"original-resource","Value":"\"r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"61540"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"388885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uddsvpv1sv"},{"Name":"integrity","Value":"sha256-wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006481638"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"154281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uddsvpv1sv"},{"Name":"integrity","Value":"sha256-wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.wasm"},{"Name":"original-resource","Value":"\"wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"154281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uddsvpv1sv"},{"Name":"integrity","Value":"sha256-1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"388885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006481638"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"154281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4="},{"Name":"original-resource","Value":"\"wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"154281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk="}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m3mxap0jif"},{"Name":"integrity","Value":"sha256-3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Metadata.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000405350628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2466"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m3mxap0jif"},{"Name":"integrity","Value":"sha256-3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Metadata.wasm"},{"Name":"original-resource","Value":"\"3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2466"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m3mxap0jif"},{"Name":"integrity","Value":"sha256-NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Metadata.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ="}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000405350628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2466"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ="},{"Name":"original-resource","Value":"\"3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2466"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU="}]},{"Route":"_framework/Microsoft.CSharp.452y5fjxmv.wasm","AssetFile":"_framework/Microsoft.CSharp.452y5fjxmv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"301333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"452y5fjxmv"},{"Name":"integrity","Value":"sha256-qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g="},{"Name":"label","Value":"_framework/Microsoft.CSharp.wasm"}]},{"Route":"_framework/Microsoft.CSharp.452y5fjxmv.wasm","AssetFile":"_framework/Microsoft.CSharp.452y5fjxmv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000007583628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"131862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"452y5fjxmv"},{"Name":"integrity","Value":"sha256-qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g="},{"Name":"label","Value":"_framework/Microsoft.CSharp.wasm"},{"Name":"original-resource","Value":"\"qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g=\""}]},{"Route":"_framework/Microsoft.CSharp.452y5fjxmv.wasm.gz","AssetFile":"_framework/Microsoft.CSharp.452y5fjxmv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"131862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"452y5fjxmv"},{"Name":"integrity","Value":"sha256-SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU="},{"Name":"label","Value":"_framework/Microsoft.CSharp.wasm.gz"}]},{"Route":"_framework/Microsoft.CSharp.wasm","AssetFile":"_framework/Microsoft.CSharp.452y5fjxmv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"301333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g="}]},{"Route":"_framework/Microsoft.CSharp.wasm","AssetFile":"_framework/Microsoft.CSharp.452y5fjxmv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000007583628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"131862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g="},{"Name":"original-resource","Value":"\"qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g=\""}]},{"Route":"_framework/Microsoft.CSharp.wasm.gz","AssetFile":"_framework/Microsoft.CSharp.452y5fjxmv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"131862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU="}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm","AssetFile":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"56085"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrhwg3a64c"},{"Name":"integrity","Value":"sha256-7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU="},{"Name":"label","Value":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm"}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm","AssetFile":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040950041"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrhwg3a64c"},{"Name":"integrity","Value":"sha256-7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU="},{"Name":"label","Value":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm"},{"Name":"original-resource","Value":"\"7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU=\""}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm.gz","AssetFile":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrhwg3a64c"},{"Name":"integrity","Value":"sha256-2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw="},{"Name":"label","Value":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz"}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm","AssetFile":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"56085"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU="}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm","AssetFile":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040950041"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU="},{"Name":"original-resource","Value":"\"7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU=\""}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz","AssetFile":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"thew1o6jcx"},{"Name":"integrity","Value":"sha256-YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000123502532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8096"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"thew1o6jcx"},{"Name":"integrity","Value":"sha256-YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm"},{"Name":"original-resource","Value":"\"YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8096"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"thew1o6jcx"},{"Name":"integrity","Value":"sha256-TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000123502532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8096"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0="},{"Name":"original-resource","Value":"\"YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8096"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"33045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7o70008j8o"},{"Name":"integrity","Value":"sha256-KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Binder.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000070556692"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14172"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7o70008j8o"},{"Name":"integrity","Value":"sha256-KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Binder.wasm"},{"Name":"original-resource","Value":"\"KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14172"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7o70008j8o"},{"Name":"integrity","Value":"sha256-c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Binder.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"33045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000070556692"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14172"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70="},{"Name":"original-resource","Value":"\"KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14172"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ouivavlhyy"},{"Name":"integrity","Value":"sha256-MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000125219133"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7985"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ouivavlhyy"},{"Name":"integrity","Value":"sha256-MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm"},{"Name":"original-resource","Value":"\"MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7985"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ouivavlhyy"},{"Name":"integrity","Value":"sha256-a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000125219133"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7985"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8="},{"Name":"original-resource","Value":"\"MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7985"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"17685"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"giv4t23za9"},{"Name":"integrity","Value":"sha256-iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Json.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000127177922"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"giv4t23za9"},{"Name":"integrity","Value":"sha256-iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Json.wasm"},{"Name":"original-resource","Value":"\"iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"giv4t23za9"},{"Name":"integrity","Value":"sha256-kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Json.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"17685"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000127177922"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg="},{"Name":"original-resource","Value":"\"iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fgwnqtu7qk"},{"Name":"integrity","Value":"sha256-D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000064616180"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15475"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fgwnqtu7qk"},{"Name":"integrity","Value":"sha256-D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.wasm"},{"Name":"original-resource","Value":"\"D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15475"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fgwnqtu7qk"},{"Name":"integrity","Value":"sha256-bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000064616180"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15475"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY="},{"Name":"original-resource","Value":"\"D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15475"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0="}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ud13mwbta3"},{"Name":"integrity","Value":"sha256-PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000046012976"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ud13mwbta3"},{"Name":"integrity","Value":"sha256-PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm"},{"Name":"original-resource","Value":"\"PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM=\""}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ud13mwbta3"},{"Name":"integrity","Value":"sha256-UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM="}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000046012976"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM="},{"Name":"original-resource","Value":"\"PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM=\""}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU="}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"85269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vs620n44bv"},{"Name":"integrity","Value":"sha256-EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.wasm"}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000027365771"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"36541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vs620n44bv"},{"Name":"integrity","Value":"sha256-EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.wasm"},{"Name":"original-resource","Value":"\"EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ=\""}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"36541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vs620n44bv"},{"Name":"integrity","Value":"sha256-KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"85269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ="}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000027365771"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"36541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ="},{"Name":"original-resource","Value":"\"EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ=\""}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"36541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA="}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"20757"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v59ymogeuz"},{"Name":"integrity","Value":"sha256-4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000116468670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8585"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v59ymogeuz"},{"Name":"integrity","Value":"sha256-4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm"},{"Name":"original-resource","Value":"\"4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA=\""}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8585"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v59ymogeuz"},{"Name":"integrity","Value":"sha256-q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"20757"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA="}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000116468670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8585"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA="},{"Name":"original-resource","Value":"\"4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA=\""}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8585"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4="}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"25877"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jnogfbng3i"},{"Name":"integrity","Value":"sha256-MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000082706145"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12090"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jnogfbng3i"},{"Name":"integrity","Value":"sha256-MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.wasm"},{"Name":"original-resource","Value":"\"MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo=\""}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12090"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jnogfbng3i"},{"Name":"integrity","Value":"sha256-UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"25877"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo="}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000082706145"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12090"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo="},{"Name":"original-resource","Value":"\"MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo=\""}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12090"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk="}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ssv83rveyv"},{"Name":"integrity","Value":"sha256-/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000176897223"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5652"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ssv83rveyv"},{"Name":"integrity","Value":"sha256-/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm"},{"Name":"original-resource","Value":"\"/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8=\""}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5652"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ssv83rveyv"},{"Name":"integrity","Value":"sha256-kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8="}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000176897223"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5652"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8="},{"Name":"original-resource","Value":"\"/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8=\""}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5652"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4="}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"35093"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8gz29xpyh3"},{"Name":"integrity","Value":"sha256-CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm"}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060793969"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16448"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8gz29xpyh3"},{"Name":"integrity","Value":"sha256-CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm"},{"Name":"original-resource","Value":"\"CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0=\""}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16448"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8gz29xpyh3"},{"Name":"integrity","Value":"sha256-RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"35093"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0="}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060793969"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16448"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0="},{"Name":"original-resource","Value":"\"CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0=\""}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16448"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo="}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm","AssetFile":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozuva4e3vv"},{"Name":"integrity","Value":"sha256-pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm"}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm","AssetFile":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000058941412"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozuva4e3vv"},{"Name":"integrity","Value":"sha256-pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm"},{"Name":"original-resource","Value":"\"pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI=\""}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozuva4e3vv"},{"Name":"integrity","Value":"sha256-QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm","AssetFile":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI="}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm","AssetFile":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000058941412"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI="},{"Name":"original-resource","Value":"\"pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI=\""}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY="}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"8981"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6jkolue1ka"},{"Name":"integrity","Value":"sha256-8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000261164795"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6jkolue1ka"},{"Name":"integrity","Value":"sha256-8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm"},{"Name":"original-resource","Value":"\"8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4=\""}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6jkolue1ka"},{"Name":"integrity","Value":"sha256-5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"8981"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4="}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000261164795"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4="},{"Name":"original-resource","Value":"\"8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4=\""}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8="}]},{"Route":"_framework/Microsoft.Extensions.Localization.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"21269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs="}]},{"Route":"_framework/Microsoft.Extensions.Localization.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000100050025"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9994"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs="},{"Name":"original-resource","Value":"\"L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs=\""}]},{"Route":"_framework/Microsoft.Extensions.Localization.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9994"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM="}]},{"Route":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"21269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xcslyy3nju"},{"Name":"integrity","Value":"sha256-L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000100050025"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9994"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xcslyy3nju"},{"Name":"integrity","Value":"sha256-L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.wasm"},{"Name":"original-resource","Value":"\"L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs=\""}]},{"Route":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9994"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xcslyy3nju"},{"Name":"integrity","Value":"sha256-LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"56597"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1q3x7vre4l"},{"Name":"integrity","Value":"sha256-5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040832993"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1q3x7vre4l"},{"Name":"integrity","Value":"sha256-5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm"},{"Name":"original-resource","Value":"\"5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI=\""}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1q3x7vre4l"},{"Name":"integrity","Value":"sha256-wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"56597"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI="}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040832993"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI="},{"Name":"original-resource","Value":"\"5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI=\""}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo="}]},{"Route":"_framework/Microsoft.Extensions.Logging.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"41237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis="}]},{"Route":"_framework/Microsoft.Extensions.Logging.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053708577"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18618"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis="},{"Name":"original-resource","Value":"\"7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis=\""}]},{"Route":"_framework/Microsoft.Extensions.Logging.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18618"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q="}]},{"Route":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"41237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y4ydx3rk2c"},{"Name":"integrity","Value":"sha256-7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053708577"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18618"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y4ydx3rk2c"},{"Name":"integrity","Value":"sha256-7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.wasm"},{"Name":"original-resource","Value":"\"7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis=\""}]},{"Route":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18618"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y4ydx3rk2c"},{"Name":"integrity","Value":"sha256-CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55061"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2rz5zbidnd"},{"Name":"integrity","Value":"sha256-PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000042529664"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23512"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2rz5zbidnd"},{"Name":"integrity","Value":"sha256-PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.wasm"},{"Name":"original-resource","Value":"\"PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY=\""}]},{"Route":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23512"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2rz5zbidnd"},{"Name":"integrity","Value":"sha256-nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U="}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000196001568"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U="},{"Name":"original-resource","Value":"\"652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U=\""}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I="}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zmb03w0weu"},{"Name":"integrity","Value":"sha256-652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000196001568"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zmb03w0weu"},{"Name":"integrity","Value":"sha256-652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm"},{"Name":"original-resource","Value":"\"652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U=\""}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zmb03w0weu"},{"Name":"integrity","Value":"sha256-i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Options.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"55061"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY="}]},{"Route":"_framework/Microsoft.Extensions.Options.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000042529664"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23512"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY="},{"Name":"original-resource","Value":"\"PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY=\""}]},{"Route":"_framework/Microsoft.Extensions.Options.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23512"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4="}]},{"Route":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm","AssetFile":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bd164v6l3f"},{"Name":"integrity","Value":"sha256-b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Primitives.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm","AssetFile":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000065582371"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15247"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bd164v6l3f"},{"Name":"integrity","Value":"sha256-b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Primitives.wasm"},{"Name":"original-resource","Value":"\"b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo=\""}]},{"Route":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15247"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bd164v6l3f"},{"Name":"integrity","Value":"sha256-WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Primitives.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Primitives.wasm","AssetFile":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo="}]},{"Route":"_framework/Microsoft.Extensions.Primitives.wasm","AssetFile":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000065582371"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15247"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo="},{"Name":"original-resource","Value":"\"b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo=\""}]},{"Route":"_framework/Microsoft.Extensions.Primitives.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15247"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8="}]},{"Route":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm","AssetFile":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"33045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r1sv3m5lsf"},{"Name":"integrity","Value":"sha256-QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Validation.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm","AssetFile":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000069232899"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14443"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r1sv3m5lsf"},{"Name":"integrity","Value":"sha256-QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Validation.wasm"},{"Name":"original-resource","Value":"\"QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk=\""}]},{"Route":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14443"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r1sv3m5lsf"},{"Name":"integrity","Value":"sha256-4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Validation.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Validation.wasm","AssetFile":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"33045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk="}]},{"Route":"_framework/Microsoft.Extensions.Validation.wasm","AssetFile":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000069232899"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14443"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk="},{"Name":"original-resource","Value":"\"QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk=\""}]},{"Route":"_framework/Microsoft.Extensions.Validation.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14443"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0="}]},{"Route":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm","AssetFile":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"64789"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1r0ampr2q1"},{"Name":"integrity","Value":"sha256-TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.wasm"}]},{"Route":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm","AssetFile":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000036331928"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"27523"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1r0ampr2q1"},{"Name":"integrity","Value":"sha256-TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.wasm"},{"Name":"original-resource","Value":"\"TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA=\""}]},{"Route":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm.gz","AssetFile":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"27523"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1r0ampr2q1"},{"Name":"integrity","Value":"sha256-5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.wasm.gz"}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm","AssetFile":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"14613"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oz8fkrrrd6"},{"Name":"integrity","Value":"sha256-vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.WebAssembly.wasm"}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm","AssetFile":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000145730108"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oz8fkrrrd6"},{"Name":"integrity","Value":"sha256-vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.WebAssembly.wasm"},{"Name":"original-resource","Value":"\"vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU=\""}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm.gz","AssetFile":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oz8fkrrrd6"},{"Name":"integrity","Value":"sha256-50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.WebAssembly.wasm.gz"}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.wasm","AssetFile":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"14613"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU="}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.wasm","AssetFile":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000145730108"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU="},{"Name":"original-resource","Value":"\"vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU=\""}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.wasm.gz","AssetFile":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA="}]},{"Route":"_framework/Microsoft.JSInterop.wasm","AssetFile":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"64789"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA="}]},{"Route":"_framework/Microsoft.JSInterop.wasm","AssetFile":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000036331928"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"27523"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA="},{"Name":"original-resource","Value":"\"TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA=\""}]},{"Route":"_framework/Microsoft.JSInterop.wasm.gz","AssetFile":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"27523"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0="}]},{"Route":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm","AssetFile":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"91iw3j3d9p"},{"Name":"integrity","Value":"sha256-TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.wasm"}]},{"Route":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm","AssetFile":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000349162011"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2863"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"91iw3j3d9p"},{"Name":"integrity","Value":"sha256-TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.wasm"},{"Name":"original-resource","Value":"\"TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM=\""}]},{"Route":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm.gz","AssetFile":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2863"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"91iw3j3d9p"},{"Name":"integrity","Value":"sha256-O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.wasm.gz"}]},{"Route":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm","AssetFile":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"418581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"re3geseai5"},{"Name":"integrity","Value":"sha256-vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.Core.wasm"}]},{"Route":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm","AssetFile":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005991109"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"166913"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"re3geseai5"},{"Name":"integrity","Value":"sha256-vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.Core.wasm"},{"Name":"original-resource","Value":"\"vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0=\""}]},{"Route":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm.gz","AssetFile":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"166913"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"re3geseai5"},{"Name":"integrity","Value":"sha256-09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.Core.wasm.gz"}]},{"Route":"_framework/Microsoft.VisualBasic.Core.wasm","AssetFile":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"418581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0="}]},{"Route":"_framework/Microsoft.VisualBasic.Core.wasm","AssetFile":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005991109"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"166913"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0="},{"Name":"original-resource","Value":"\"vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0=\""}]},{"Route":"_framework/Microsoft.VisualBasic.Core.wasm.gz","AssetFile":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"166913"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc="}]},{"Route":"_framework/Microsoft.VisualBasic.wasm","AssetFile":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM="}]},{"Route":"_framework/Microsoft.VisualBasic.wasm","AssetFile":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000349162011"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2863"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM="},{"Name":"original-resource","Value":"\"TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM=\""}]},{"Route":"_framework/Microsoft.VisualBasic.wasm.gz","AssetFile":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2863"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as="}]},{"Route":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm","AssetFile":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mjytoh92q"},{"Name":"integrity","Value":"sha256-NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM="},{"Name":"label","Value":"_framework/Microsoft.Win32.Primitives.wasm"}]},{"Route":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm","AssetFile":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000451059991"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2216"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mjytoh92q"},{"Name":"integrity","Value":"sha256-NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM="},{"Name":"label","Value":"_framework/Microsoft.Win32.Primitives.wasm"},{"Name":"original-resource","Value":"\"NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM=\""}]},{"Route":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm.gz","AssetFile":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2216"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mjytoh92q"},{"Name":"integrity","Value":"sha256-JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As="},{"Name":"label","Value":"_framework/Microsoft.Win32.Primitives.wasm.gz"}]},{"Route":"_framework/Microsoft.Win32.Primitives.wasm","AssetFile":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM="}]},{"Route":"_framework/Microsoft.Win32.Primitives.wasm","AssetFile":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000451059991"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2216"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM="},{"Name":"original-resource","Value":"\"NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM=\""}]},{"Route":"_framework/Microsoft.Win32.Primitives.wasm.gz","AssetFile":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2216"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As="}]},{"Route":"_framework/Microsoft.Win32.Registry.wasm","AssetFile":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU="}]},{"Route":"_framework/Microsoft.Win32.Registry.wasm","AssetFile":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000109733348"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9112"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU="},{"Name":"original-resource","Value":"\"sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU=\""}]},{"Route":"_framework/Microsoft.Win32.Registry.wasm.gz","AssetFile":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9112"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk="}]},{"Route":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm","AssetFile":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yz8nt3ycsq"},{"Name":"integrity","Value":"sha256-sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU="},{"Name":"label","Value":"_framework/Microsoft.Win32.Registry.wasm"}]},{"Route":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm","AssetFile":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000109733348"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9112"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yz8nt3ycsq"},{"Name":"integrity","Value":"sha256-sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU="},{"Name":"label","Value":"_framework/Microsoft.Win32.Registry.wasm"},{"Name":"original-resource","Value":"\"sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU=\""}]},{"Route":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm.gz","AssetFile":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9112"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yz8nt3ycsq"},{"Name":"integrity","Value":"sha256-gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk="},{"Name":"label","Value":"_framework/Microsoft.Win32.Registry.wasm.gz"}]},{"Route":"_framework/MudBlazor.k6079czmkm.wasm","AssetFile":"_framework/MudBlazor.k6079czmkm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10119449"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6079czmkm"},{"Name":"integrity","Value":"sha256-rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI="},{"Name":"label","Value":"_framework/MudBlazor.wasm"}]},{"Route":"_framework/MudBlazor.k6079czmkm.wasm","AssetFile":"_framework/MudBlazor.k6079czmkm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000444516"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2249638"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6079czmkm"},{"Name":"integrity","Value":"sha256-rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI="},{"Name":"label","Value":"_framework/MudBlazor.wasm"},{"Name":"original-resource","Value":"\"rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI=\""}]},{"Route":"_framework/MudBlazor.k6079czmkm.wasm.gz","AssetFile":"_framework/MudBlazor.k6079czmkm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2249638"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6079czmkm"},{"Name":"integrity","Value":"sha256-dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM="},{"Name":"label","Value":"_framework/MudBlazor.wasm.gz"}]},{"Route":"_framework/MudBlazor.wasm","AssetFile":"_framework/MudBlazor.k6079czmkm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10119449"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI="}]},{"Route":"_framework/MudBlazor.wasm","AssetFile":"_framework/MudBlazor.k6079czmkm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000444516"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2249638"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI="},{"Name":"original-resource","Value":"\"rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI=\""}]},{"Route":"_framework/MudBlazor.wasm.gz","AssetFile":"_framework/MudBlazor.k6079czmkm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2249638"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM="}]},{"Route":"_framework/OnProfNext.Client.lplk7v275j.pdb","AssetFile":"_framework/OnProfNext.Client.lplk7v275j.pdb","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"33624"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lplk7v275j"},{"Name":"integrity","Value":"sha256-FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0="},{"Name":"label","Value":"_framework/OnProfNext.Client.pdb"}]},{"Route":"_framework/OnProfNext.Client.lplk7v275j.pdb","AssetFile":"_framework/OnProfNext.Client.lplk7v275j.pdb.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038227761"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26158"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lplk7v275j"},{"Name":"integrity","Value":"sha256-FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0="},{"Name":"label","Value":"_framework/OnProfNext.Client.pdb"},{"Name":"original-resource","Value":"\"FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0=\""}]},{"Route":"_framework/OnProfNext.Client.lplk7v275j.pdb.gz","AssetFile":"_framework/OnProfNext.Client.lplk7v275j.pdb.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26158"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lplk7v275j"},{"Name":"integrity","Value":"sha256-4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU="},{"Name":"label","Value":"_framework/OnProfNext.Client.pdb.gz"}]},{"Route":"_framework/OnProfNext.Client.pdb","AssetFile":"_framework/OnProfNext.Client.lplk7v275j.pdb","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"33624"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0="}]},{"Route":"_framework/OnProfNext.Client.pdb","AssetFile":"_framework/OnProfNext.Client.lplk7v275j.pdb.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038227761"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26158"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0="},{"Name":"original-resource","Value":"\"FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0=\""}]},{"Route":"_framework/OnProfNext.Client.pdb.gz","AssetFile":"_framework/OnProfNext.Client.lplk7v275j.pdb.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26158"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU="}]},{"Route":"_framework/OnProfNext.Client.wasm","AssetFile":"_framework/OnProfNext.Client.xhq6acanj0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"42261"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc="}]},{"Route":"_framework/OnProfNext.Client.wasm","AssetFile":"_framework/OnProfNext.Client.xhq6acanj0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067344602"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14848"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc="},{"Name":"original-resource","Value":"\"pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc=\""}]},{"Route":"_framework/OnProfNext.Client.wasm.gz","AssetFile":"_framework/OnProfNext.Client.xhq6acanj0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14848"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA="}]},{"Route":"_framework/OnProfNext.Client.xhq6acanj0.wasm","AssetFile":"_framework/OnProfNext.Client.xhq6acanj0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"42261"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xhq6acanj0"},{"Name":"integrity","Value":"sha256-pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc="},{"Name":"label","Value":"_framework/OnProfNext.Client.wasm"}]},{"Route":"_framework/OnProfNext.Client.xhq6acanj0.wasm","AssetFile":"_framework/OnProfNext.Client.xhq6acanj0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067344602"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14848"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xhq6acanj0"},{"Name":"integrity","Value":"sha256-pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc="},{"Name":"label","Value":"_framework/OnProfNext.Client.wasm"},{"Name":"original-resource","Value":"\"pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc=\""}]},{"Route":"_framework/OnProfNext.Client.xhq6acanj0.wasm.gz","AssetFile":"_framework/OnProfNext.Client.xhq6acanj0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14848"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xhq6acanj0"},{"Name":"integrity","Value":"sha256-UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA="},{"Name":"label","Value":"_framework/OnProfNext.Client.wasm.gz"}]},{"Route":"_framework/System.7rk3uansaa.wasm","AssetFile":"_framework/System.7rk3uansaa.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"39701"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7rk3uansaa"},{"Name":"integrity","Value":"sha256-00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q="},{"Name":"label","Value":"_framework/System.wasm"}]},{"Route":"_framework/System.7rk3uansaa.wasm","AssetFile":"_framework/System.7rk3uansaa.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000084875233"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7rk3uansaa"},{"Name":"integrity","Value":"sha256-00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q="},{"Name":"label","Value":"_framework/System.wasm"},{"Name":"original-resource","Value":"\"00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q=\""}]},{"Route":"_framework/System.7rk3uansaa.wasm.gz","AssetFile":"_framework/System.7rk3uansaa.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7rk3uansaa"},{"Name":"integrity","Value":"sha256-KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI="},{"Name":"label","Value":"_framework/System.wasm.gz"}]},{"Route":"_framework/System.AppContext.uwq3fpef1w.wasm","AssetFile":"_framework/System.AppContext.uwq3fpef1w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uwq3fpef1w"},{"Name":"integrity","Value":"sha256-/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA="},{"Name":"label","Value":"_framework/System.AppContext.wasm"}]},{"Route":"_framework/System.AppContext.uwq3fpef1w.wasm","AssetFile":"_framework/System.AppContext.uwq3fpef1w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000472589792"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2115"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uwq3fpef1w"},{"Name":"integrity","Value":"sha256-/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA="},{"Name":"label","Value":"_framework/System.AppContext.wasm"},{"Name":"original-resource","Value":"\"/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA=\""}]},{"Route":"_framework/System.AppContext.uwq3fpef1w.wasm.gz","AssetFile":"_framework/System.AppContext.uwq3fpef1w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2115"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uwq3fpef1w"},{"Name":"integrity","Value":"sha256-Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8="},{"Name":"label","Value":"_framework/System.AppContext.wasm.gz"}]},{"Route":"_framework/System.AppContext.wasm","AssetFile":"_framework/System.AppContext.uwq3fpef1w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA="}]},{"Route":"_framework/System.AppContext.wasm","AssetFile":"_framework/System.AppContext.uwq3fpef1w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000472589792"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2115"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA="},{"Name":"original-resource","Value":"\"/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA=\""}]},{"Route":"_framework/System.AppContext.wasm.gz","AssetFile":"_framework/System.AppContext.uwq3fpef1w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2115"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8="}]},{"Route":"_framework/System.Buffers.m4yhcvz2y2.wasm","AssetFile":"_framework/System.Buffers.m4yhcvz2y2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m4yhcvz2y2"},{"Name":"integrity","Value":"sha256-+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g="},{"Name":"label","Value":"_framework/System.Buffers.wasm"}]},{"Route":"_framework/System.Buffers.m4yhcvz2y2.wasm","AssetFile":"_framework/System.Buffers.m4yhcvz2y2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000472143532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2117"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m4yhcvz2y2"},{"Name":"integrity","Value":"sha256-+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g="},{"Name":"label","Value":"_framework/System.Buffers.wasm"},{"Name":"original-resource","Value":"\"+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g=\""}]},{"Route":"_framework/System.Buffers.m4yhcvz2y2.wasm.gz","AssetFile":"_framework/System.Buffers.m4yhcvz2y2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2117"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m4yhcvz2y2"},{"Name":"integrity","Value":"sha256-Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g="},{"Name":"label","Value":"_framework/System.Buffers.wasm.gz"}]},{"Route":"_framework/System.Buffers.wasm","AssetFile":"_framework/System.Buffers.m4yhcvz2y2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g="}]},{"Route":"_framework/System.Buffers.wasm","AssetFile":"_framework/System.Buffers.m4yhcvz2y2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000472143532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2117"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g="},{"Name":"original-resource","Value":"\"+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g=\""}]},{"Route":"_framework/System.Buffers.wasm.gz","AssetFile":"_framework/System.Buffers.m4yhcvz2y2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2117"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g="}]},{"Route":"_framework/System.Collections.63jrcion39.wasm","AssetFile":"_framework/System.Collections.63jrcion39.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"102677"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63jrcion39"},{"Name":"integrity","Value":"sha256-Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg="},{"Name":"label","Value":"_framework/System.Collections.wasm"}]},{"Route":"_framework/System.Collections.63jrcion39.wasm","AssetFile":"_framework/System.Collections.63jrcion39.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023100023"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"43289"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63jrcion39"},{"Name":"integrity","Value":"sha256-Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg="},{"Name":"label","Value":"_framework/System.Collections.wasm"},{"Name":"original-resource","Value":"\"Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg=\""}]},{"Route":"_framework/System.Collections.63jrcion39.wasm.gz","AssetFile":"_framework/System.Collections.63jrcion39.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"43289"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63jrcion39"},{"Name":"integrity","Value":"sha256-vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU="},{"Name":"label","Value":"_framework/System.Collections.wasm.gz"}]},{"Route":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm","AssetFile":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"78613"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1zv6wuzklu"},{"Name":"integrity","Value":"sha256-XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw="},{"Name":"label","Value":"_framework/System.Collections.Concurrent.wasm"}]},{"Route":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm","AssetFile":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029696502"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33673"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1zv6wuzklu"},{"Name":"integrity","Value":"sha256-XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw="},{"Name":"label","Value":"_framework/System.Collections.Concurrent.wasm"},{"Name":"original-resource","Value":"\"XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw=\""}]},{"Route":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm.gz","AssetFile":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33673"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1zv6wuzklu"},{"Name":"integrity","Value":"sha256-LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU="},{"Name":"label","Value":"_framework/System.Collections.Concurrent.wasm.gz"}]},{"Route":"_framework/System.Collections.Concurrent.wasm","AssetFile":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"78613"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw="}]},{"Route":"_framework/System.Collections.Concurrent.wasm","AssetFile":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029696502"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33673"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw="},{"Name":"original-resource","Value":"\"XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw=\""}]},{"Route":"_framework/System.Collections.Concurrent.wasm.gz","AssetFile":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33673"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU="}]},{"Route":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm","AssetFile":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"240917"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6uzpuv4o5d"},{"Name":"integrity","Value":"sha256-UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE="},{"Name":"label","Value":"_framework/System.Collections.Immutable.wasm"}]},{"Route":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm","AssetFile":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010198462"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"98053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6uzpuv4o5d"},{"Name":"integrity","Value":"sha256-UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE="},{"Name":"label","Value":"_framework/System.Collections.Immutable.wasm"},{"Name":"original-resource","Value":"\"UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE=\""}]},{"Route":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm.gz","AssetFile":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"98053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6uzpuv4o5d"},{"Name":"integrity","Value":"sha256-FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI="},{"Name":"label","Value":"_framework/System.Collections.Immutable.wasm.gz"}]},{"Route":"_framework/System.Collections.Immutable.wasm","AssetFile":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"240917"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE="}]},{"Route":"_framework/System.Collections.Immutable.wasm","AssetFile":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010198462"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"98053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE="},{"Name":"original-resource","Value":"\"UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE=\""}]},{"Route":"_framework/System.Collections.Immutable.wasm.gz","AssetFile":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"98053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI="}]},{"Route":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm","AssetFile":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k5rgagff9o"},{"Name":"integrity","Value":"sha256-eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q="},{"Name":"label","Value":"_framework/System.Collections.NonGeneric.wasm"}]},{"Route":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm","AssetFile":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067944014"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14717"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k5rgagff9o"},{"Name":"integrity","Value":"sha256-eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q="},{"Name":"label","Value":"_framework/System.Collections.NonGeneric.wasm"},{"Name":"original-resource","Value":"\"eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q=\""}]},{"Route":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm.gz","AssetFile":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14717"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k5rgagff9o"},{"Name":"integrity","Value":"sha256-RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M="},{"Name":"label","Value":"_framework/System.Collections.NonGeneric.wasm.gz"}]},{"Route":"_framework/System.Collections.NonGeneric.wasm","AssetFile":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q="}]},{"Route":"_framework/System.Collections.NonGeneric.wasm","AssetFile":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067944014"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14717"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q="},{"Name":"original-resource","Value":"\"eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q=\""}]},{"Route":"_framework/System.Collections.NonGeneric.wasm.gz","AssetFile":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14717"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M="}]},{"Route":"_framework/System.Collections.Specialized.84wojkejb4.wasm","AssetFile":"_framework/System.Collections.Specialized.84wojkejb4.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"84wojkejb4"},{"Name":"integrity","Value":"sha256-mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74="},{"Name":"label","Value":"_framework/System.Collections.Specialized.wasm"}]},{"Route":"_framework/System.Collections.Specialized.84wojkejb4.wasm","AssetFile":"_framework/System.Collections.Specialized.84wojkejb4.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061218243"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16334"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"84wojkejb4"},{"Name":"integrity","Value":"sha256-mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74="},{"Name":"label","Value":"_framework/System.Collections.Specialized.wasm"},{"Name":"original-resource","Value":"\"mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74=\""}]},{"Route":"_framework/System.Collections.Specialized.84wojkejb4.wasm.gz","AssetFile":"_framework/System.Collections.Specialized.84wojkejb4.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16334"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"84wojkejb4"},{"Name":"integrity","Value":"sha256-iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0="},{"Name":"label","Value":"_framework/System.Collections.Specialized.wasm.gz"}]},{"Route":"_framework/System.Collections.Specialized.wasm","AssetFile":"_framework/System.Collections.Specialized.84wojkejb4.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74="}]},{"Route":"_framework/System.Collections.Specialized.wasm","AssetFile":"_framework/System.Collections.Specialized.84wojkejb4.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061218243"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16334"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74="},{"Name":"original-resource","Value":"\"mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74=\""}]},{"Route":"_framework/System.Collections.Specialized.wasm.gz","AssetFile":"_framework/System.Collections.Specialized.84wojkejb4.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16334"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0="}]},{"Route":"_framework/System.Collections.wasm","AssetFile":"_framework/System.Collections.63jrcion39.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"102677"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg="}]},{"Route":"_framework/System.Collections.wasm","AssetFile":"_framework/System.Collections.63jrcion39.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023100023"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"43289"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg="},{"Name":"original-resource","Value":"\"Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg=\""}]},{"Route":"_framework/System.Collections.wasm.gz","AssetFile":"_framework/System.Collections.63jrcion39.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"43289"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU="}]},{"Route":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm","AssetFile":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"92437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cjsvkufomv"},{"Name":"integrity","Value":"sha256-yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg="},{"Name":"label","Value":"_framework/System.ComponentModel.Annotations.wasm"}]},{"Route":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm","AssetFile":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000027950137"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cjsvkufomv"},{"Name":"integrity","Value":"sha256-yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg="},{"Name":"label","Value":"_framework/System.ComponentModel.Annotations.wasm"},{"Name":"original-resource","Value":"\"yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg=\""}]},{"Route":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm.gz","AssetFile":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cjsvkufomv"},{"Name":"integrity","Value":"sha256-6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM="},{"Name":"label","Value":"_framework/System.ComponentModel.Annotations.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.Annotations.wasm","AssetFile":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"92437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg="}]},{"Route":"_framework/System.ComponentModel.Annotations.wasm","AssetFile":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000027950137"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg="},{"Name":"original-resource","Value":"\"yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg=\""}]},{"Route":"_framework/System.ComponentModel.Annotations.wasm.gz","AssetFile":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM="}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm","AssetFile":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vpng0qt4u6"},{"Name":"integrity","Value":"sha256-7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o="},{"Name":"label","Value":"_framework/System.ComponentModel.DataAnnotations.wasm"}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm","AssetFile":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000386996904"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2583"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vpng0qt4u6"},{"Name":"integrity","Value":"sha256-7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o="},{"Name":"label","Value":"_framework/System.ComponentModel.DataAnnotations.wasm"},{"Name":"original-resource","Value":"\"7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o=\""}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm.gz","AssetFile":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2583"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vpng0qt4u6"},{"Name":"integrity","Value":"sha256-BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs="},{"Name":"label","Value":"_framework/System.ComponentModel.DataAnnotations.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.wasm","AssetFile":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o="}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.wasm","AssetFile":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000386996904"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2583"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o="},{"Name":"original-resource","Value":"\"7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o=\""}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.wasm.gz","AssetFile":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2583"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs="}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm","AssetFile":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"16149"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"en4q13ibd5"},{"Name":"integrity","Value":"sha256-9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38="},{"Name":"label","Value":"_framework/System.ComponentModel.EventBasedAsync.wasm"}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm","AssetFile":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000147536146"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"en4q13ibd5"},{"Name":"integrity","Value":"sha256-9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38="},{"Name":"label","Value":"_framework/System.ComponentModel.EventBasedAsync.wasm"},{"Name":"original-resource","Value":"\"9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38=\""}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm.gz","AssetFile":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"en4q13ibd5"},{"Name":"integrity","Value":"sha256-G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU="},{"Name":"label","Value":"_framework/System.ComponentModel.EventBasedAsync.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.wasm","AssetFile":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"16149"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38="}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.wasm","AssetFile":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000147536146"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38="},{"Name":"original-resource","Value":"\"9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38=\""}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.wasm.gz","AssetFile":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU="}]},{"Route":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm","AssetFile":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u0y5oi3qdg"},{"Name":"integrity","Value":"sha256-fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4="},{"Name":"label","Value":"_framework/System.ComponentModel.Primitives.wasm"}]},{"Route":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm","AssetFile":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000074493445"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13423"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u0y5oi3qdg"},{"Name":"integrity","Value":"sha256-fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4="},{"Name":"label","Value":"_framework/System.ComponentModel.Primitives.wasm"},{"Name":"original-resource","Value":"\"fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4=\""}]},{"Route":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm.gz","AssetFile":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13423"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u0y5oi3qdg"},{"Name":"integrity","Value":"sha256-yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM="},{"Name":"label","Value":"_framework/System.ComponentModel.Primitives.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.Primitives.wasm","AssetFile":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4="}]},{"Route":"_framework/System.ComponentModel.Primitives.wasm","AssetFile":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000074493445"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13423"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4="},{"Name":"original-resource","Value":"\"fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4=\""}]},{"Route":"_framework/System.ComponentModel.Primitives.wasm.gz","AssetFile":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13423"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM="}]},{"Route":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm","AssetFile":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"306453"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e2hbv9lola"},{"Name":"integrity","Value":"sha256-Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco="},{"Name":"label","Value":"_framework/System.ComponentModel.TypeConverter.wasm"}]},{"Route":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm","AssetFile":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008143389"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"122798"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e2hbv9lola"},{"Name":"integrity","Value":"sha256-Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco="},{"Name":"label","Value":"_framework/System.ComponentModel.TypeConverter.wasm"},{"Name":"original-resource","Value":"\"Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco=\""}]},{"Route":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm.gz","AssetFile":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"122798"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e2hbv9lola"},{"Name":"integrity","Value":"sha256-pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs="},{"Name":"label","Value":"_framework/System.ComponentModel.TypeConverter.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.TypeConverter.wasm","AssetFile":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"306453"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco="}]},{"Route":"_framework/System.ComponentModel.TypeConverter.wasm","AssetFile":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008143389"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"122798"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco="},{"Name":"original-resource","Value":"\"Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco=\""}]},{"Route":"_framework/System.ComponentModel.TypeConverter.wasm.gz","AssetFile":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"122798"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs="}]},{"Route":"_framework/System.ComponentModel.m11rh1qn2x.wasm","AssetFile":"_framework/System.ComponentModel.m11rh1qn2x.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m11rh1qn2x"},{"Name":"integrity","Value":"sha256-9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ="},{"Name":"label","Value":"_framework/System.ComponentModel.wasm"}]},{"Route":"_framework/System.ComponentModel.m11rh1qn2x.wasm","AssetFile":"_framework/System.ComponentModel.m11rh1qn2x.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388651380"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m11rh1qn2x"},{"Name":"integrity","Value":"sha256-9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ="},{"Name":"label","Value":"_framework/System.ComponentModel.wasm"},{"Name":"original-resource","Value":"\"9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ=\""}]},{"Route":"_framework/System.ComponentModel.m11rh1qn2x.wasm.gz","AssetFile":"_framework/System.ComponentModel.m11rh1qn2x.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m11rh1qn2x"},{"Name":"integrity","Value":"sha256-4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4="},{"Name":"label","Value":"_framework/System.ComponentModel.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.wasm","AssetFile":"_framework/System.ComponentModel.m11rh1qn2x.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ="}]},{"Route":"_framework/System.ComponentModel.wasm","AssetFile":"_framework/System.ComponentModel.m11rh1qn2x.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388651380"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ="},{"Name":"original-resource","Value":"\"9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ=\""}]},{"Route":"_framework/System.ComponentModel.wasm.gz","AssetFile":"_framework/System.ComponentModel.m11rh1qn2x.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4="}]},{"Route":"_framework/System.Configuration.j8qjkqg593.wasm","AssetFile":"_framework/System.Configuration.j8qjkqg593.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"8981"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8qjkqg593"},{"Name":"integrity","Value":"sha256-bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU="},{"Name":"label","Value":"_framework/System.Configuration.wasm"}]},{"Route":"_framework/System.Configuration.j8qjkqg593.wasm","AssetFile":"_framework/System.Configuration.j8qjkqg593.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000320204931"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3122"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8qjkqg593"},{"Name":"integrity","Value":"sha256-bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU="},{"Name":"label","Value":"_framework/System.Configuration.wasm"},{"Name":"original-resource","Value":"\"bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU=\""}]},{"Route":"_framework/System.Configuration.j8qjkqg593.wasm.gz","AssetFile":"_framework/System.Configuration.j8qjkqg593.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3122"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8qjkqg593"},{"Name":"integrity","Value":"sha256-KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA="},{"Name":"label","Value":"_framework/System.Configuration.wasm.gz"}]},{"Route":"_framework/System.Configuration.wasm","AssetFile":"_framework/System.Configuration.j8qjkqg593.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"8981"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU="}]},{"Route":"_framework/System.Configuration.wasm","AssetFile":"_framework/System.Configuration.j8qjkqg593.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000320204931"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3122"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU="},{"Name":"original-resource","Value":"\"bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU=\""}]},{"Route":"_framework/System.Configuration.wasm.gz","AssetFile":"_framework/System.Configuration.j8qjkqg593.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3122"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA="}]},{"Route":"_framework/System.Console.wasm","AssetFile":"_framework/System.Console.x9at0eh4vs.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"43797"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI="}]},{"Route":"_framework/System.Console.wasm","AssetFile":"_framework/System.Console.x9at0eh4vs.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051570316"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI="},{"Name":"original-resource","Value":"\"ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI=\""}]},{"Route":"_framework/System.Console.wasm.gz","AssetFile":"_framework/System.Console.x9at0eh4vs.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM="}]},{"Route":"_framework/System.Console.x9at0eh4vs.wasm","AssetFile":"_framework/System.Console.x9at0eh4vs.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"43797"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x9at0eh4vs"},{"Name":"integrity","Value":"sha256-ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI="},{"Name":"label","Value":"_framework/System.Console.wasm"}]},{"Route":"_framework/System.Console.x9at0eh4vs.wasm","AssetFile":"_framework/System.Console.x9at0eh4vs.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051570316"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x9at0eh4vs"},{"Name":"integrity","Value":"sha256-ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI="},{"Name":"label","Value":"_framework/System.Console.wasm"},{"Name":"original-resource","Value":"\"ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI=\""}]},{"Route":"_framework/System.Console.x9at0eh4vs.wasm.gz","AssetFile":"_framework/System.Console.x9at0eh4vs.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x9at0eh4vs"},{"Name":"integrity","Value":"sha256-EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM="},{"Name":"label","Value":"_framework/System.Console.wasm.gz"}]},{"Route":"_framework/System.Core.ickp29885z.wasm","AssetFile":"_framework/System.Core.ickp29885z.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ickp29885z"},{"Name":"integrity","Value":"sha256-vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU="},{"Name":"label","Value":"_framework/System.Core.wasm"}]},{"Route":"_framework/System.Core.ickp29885z.wasm","AssetFile":"_framework/System.Core.ickp29885z.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000219346348"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ickp29885z"},{"Name":"integrity","Value":"sha256-vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU="},{"Name":"label","Value":"_framework/System.Core.wasm"},{"Name":"original-resource","Value":"\"vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU=\""}]},{"Route":"_framework/System.Core.ickp29885z.wasm.gz","AssetFile":"_framework/System.Core.ickp29885z.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ickp29885z"},{"Name":"integrity","Value":"sha256-RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4="},{"Name":"label","Value":"_framework/System.Core.wasm.gz"}]},{"Route":"_framework/System.Core.wasm","AssetFile":"_framework/System.Core.ickp29885z.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU="}]},{"Route":"_framework/System.Core.wasm","AssetFile":"_framework/System.Core.ickp29885z.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000219346348"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU="},{"Name":"original-resource","Value":"\"vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU=\""}]},{"Route":"_framework/System.Core.wasm.gz","AssetFile":"_framework/System.Core.ickp29885z.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4="}]},{"Route":"_framework/System.Data.0h75nr7qqd.wasm","AssetFile":"_framework/System.Data.0h75nr7qqd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"15125"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0h75nr7qqd"},{"Name":"integrity","Value":"sha256-7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg="},{"Name":"label","Value":"_framework/System.Data.wasm"}]},{"Route":"_framework/System.Data.0h75nr7qqd.wasm","AssetFile":"_framework/System.Data.0h75nr7qqd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000199084213"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5022"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0h75nr7qqd"},{"Name":"integrity","Value":"sha256-7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg="},{"Name":"label","Value":"_framework/System.Data.wasm"},{"Name":"original-resource","Value":"\"7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg=\""}]},{"Route":"_framework/System.Data.0h75nr7qqd.wasm.gz","AssetFile":"_framework/System.Data.0h75nr7qqd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5022"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0h75nr7qqd"},{"Name":"integrity","Value":"sha256-8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE="},{"Name":"label","Value":"_framework/System.Data.wasm.gz"}]},{"Route":"_framework/System.Data.Common.4wisaz8pj4.wasm","AssetFile":"_framework/System.Data.Common.4wisaz8pj4.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1007893"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4wisaz8pj4"},{"Name":"integrity","Value":"sha256-pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q="},{"Name":"label","Value":"_framework/System.Data.Common.wasm"}]},{"Route":"_framework/System.Data.Common.4wisaz8pj4.wasm","AssetFile":"_framework/System.Data.Common.4wisaz8pj4.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000002663974"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"375378"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4wisaz8pj4"},{"Name":"integrity","Value":"sha256-pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q="},{"Name":"label","Value":"_framework/System.Data.Common.wasm"},{"Name":"original-resource","Value":"\"pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q=\""}]},{"Route":"_framework/System.Data.Common.4wisaz8pj4.wasm.gz","AssetFile":"_framework/System.Data.Common.4wisaz8pj4.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"375378"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4wisaz8pj4"},{"Name":"integrity","Value":"sha256-ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A="},{"Name":"label","Value":"_framework/System.Data.Common.wasm.gz"}]},{"Route":"_framework/System.Data.Common.wasm","AssetFile":"_framework/System.Data.Common.4wisaz8pj4.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1007893"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q="}]},{"Route":"_framework/System.Data.Common.wasm","AssetFile":"_framework/System.Data.Common.4wisaz8pj4.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000002663974"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"375378"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q="},{"Name":"original-resource","Value":"\"pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q=\""}]},{"Route":"_framework/System.Data.Common.wasm.gz","AssetFile":"_framework/System.Data.Common.4wisaz8pj4.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"375378"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A="}]},{"Route":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm","AssetFile":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"904tnen1ot"},{"Name":"integrity","Value":"sha256-dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A="},{"Name":"label","Value":"_framework/System.Data.DataSetExtensions.wasm"}]},{"Route":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm","AssetFile":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000480307397"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2081"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"904tnen1ot"},{"Name":"integrity","Value":"sha256-dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A="},{"Name":"label","Value":"_framework/System.Data.DataSetExtensions.wasm"},{"Name":"original-resource","Value":"\"dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A=\""}]},{"Route":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm.gz","AssetFile":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2081"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"904tnen1ot"},{"Name":"integrity","Value":"sha256-re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY="},{"Name":"label","Value":"_framework/System.Data.DataSetExtensions.wasm.gz"}]},{"Route":"_framework/System.Data.DataSetExtensions.wasm","AssetFile":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A="}]},{"Route":"_framework/System.Data.DataSetExtensions.wasm","AssetFile":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000480307397"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2081"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A="},{"Name":"original-resource","Value":"\"dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A=\""}]},{"Route":"_framework/System.Data.DataSetExtensions.wasm.gz","AssetFile":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2081"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY="}]},{"Route":"_framework/System.Data.wasm","AssetFile":"_framework/System.Data.0h75nr7qqd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"15125"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg="}]},{"Route":"_framework/System.Data.wasm","AssetFile":"_framework/System.Data.0h75nr7qqd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000199084213"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5022"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg="},{"Name":"original-resource","Value":"\"7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg=\""}]},{"Route":"_framework/System.Data.wasm.gz","AssetFile":"_framework/System.Data.0h75nr7qqd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5022"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE="}]},{"Route":"_framework/System.Diagnostics.Contracts.wasm","AssetFile":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I="}]},{"Route":"_framework/System.Diagnostics.Contracts.wasm","AssetFile":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000417885499"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2392"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I="},{"Name":"original-resource","Value":"\"2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I=\""}]},{"Route":"_framework/System.Diagnostics.Contracts.wasm.gz","AssetFile":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2392"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY="}]},{"Route":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm","AssetFile":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z1eotzj35n"},{"Name":"integrity","Value":"sha256-2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I="},{"Name":"label","Value":"_framework/System.Diagnostics.Contracts.wasm"}]},{"Route":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm","AssetFile":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000417885499"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2392"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z1eotzj35n"},{"Name":"integrity","Value":"sha256-2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I="},{"Name":"label","Value":"_framework/System.Diagnostics.Contracts.wasm"},{"Name":"original-resource","Value":"\"2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I=\""}]},{"Route":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm.gz","AssetFile":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2392"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z1eotzj35n"},{"Name":"integrity","Value":"sha256-Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY="},{"Name":"label","Value":"_framework/System.Diagnostics.Contracts.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm","AssetFile":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aeh9b1tcuc"},{"Name":"integrity","Value":"sha256-Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g="},{"Name":"label","Value":"_framework/System.Diagnostics.Debug.wasm"}]},{"Route":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm","AssetFile":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000437636761"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2284"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aeh9b1tcuc"},{"Name":"integrity","Value":"sha256-Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g="},{"Name":"label","Value":"_framework/System.Diagnostics.Debug.wasm"},{"Name":"original-resource","Value":"\"Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g=\""}]},{"Route":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm.gz","AssetFile":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2284"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aeh9b1tcuc"},{"Name":"integrity","Value":"sha256-DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk="},{"Name":"label","Value":"_framework/System.Diagnostics.Debug.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.Debug.wasm","AssetFile":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g="}]},{"Route":"_framework/System.Diagnostics.Debug.wasm","AssetFile":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000437636761"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2284"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g="},{"Name":"original-resource","Value":"\"Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g=\""}]},{"Route":"_framework/System.Diagnostics.Debug.wasm.gz","AssetFile":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2284"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk="}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm","AssetFile":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"192277"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ou2dt7nfo2"},{"Name":"integrity","Value":"sha256-sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc="},{"Name":"label","Value":"_framework/System.Diagnostics.DiagnosticSource.wasm"}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm","AssetFile":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000012340499"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"81033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ou2dt7nfo2"},{"Name":"integrity","Value":"sha256-sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc="},{"Name":"label","Value":"_framework/System.Diagnostics.DiagnosticSource.wasm"},{"Name":"original-resource","Value":"\"sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc=\""}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm.gz","AssetFile":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"81033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ou2dt7nfo2"},{"Name":"integrity","Value":"sha256-4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs="},{"Name":"label","Value":"_framework/System.Diagnostics.DiagnosticSource.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.wasm","AssetFile":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"192277"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc="}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.wasm","AssetFile":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000012340499"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"81033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc="},{"Name":"original-resource","Value":"\"sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc=\""}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.wasm.gz","AssetFile":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"81033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs="}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm","AssetFile":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"12565"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kv9gl8mgag"},{"Name":"integrity","Value":"sha256-ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4="},{"Name":"label","Value":"_framework/System.Diagnostics.FileVersionInfo.wasm"}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm","AssetFile":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000194817845"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5132"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kv9gl8mgag"},{"Name":"integrity","Value":"sha256-ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4="},{"Name":"label","Value":"_framework/System.Diagnostics.FileVersionInfo.wasm"},{"Name":"original-resource","Value":"\"ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4=\""}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm.gz","AssetFile":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5132"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kv9gl8mgag"},{"Name":"integrity","Value":"sha256-Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA="},{"Name":"label","Value":"_framework/System.Diagnostics.FileVersionInfo.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.wasm","AssetFile":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"12565"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4="}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.wasm","AssetFile":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000194817845"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5132"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4="},{"Name":"original-resource","Value":"\"ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4=\""}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.wasm.gz","AssetFile":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5132"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA="}]},{"Route":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm","AssetFile":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"46357"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lqtqkmw274"},{"Name":"integrity","Value":"sha256-87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk="},{"Name":"label","Value":"_framework/System.Diagnostics.Process.wasm"}]},{"Route":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm","AssetFile":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061736017"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lqtqkmw274"},{"Name":"integrity","Value":"sha256-87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk="},{"Name":"label","Value":"_framework/System.Diagnostics.Process.wasm"},{"Name":"original-resource","Value":"\"87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk=\""}]},{"Route":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm.gz","AssetFile":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lqtqkmw274"},{"Name":"integrity","Value":"sha256-a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0="},{"Name":"label","Value":"_framework/System.Diagnostics.Process.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.Process.wasm","AssetFile":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"46357"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk="}]},{"Route":"_framework/System.Diagnostics.Process.wasm","AssetFile":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061736017"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk="},{"Name":"original-resource","Value":"\"87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk=\""}]},{"Route":"_framework/System.Diagnostics.Process.wasm.gz","AssetFile":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0="}]},{"Route":"_framework/System.Diagnostics.StackTrace.wasm","AssetFile":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"15637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls="}]},{"Route":"_framework/System.Diagnostics.StackTrace.wasm","AssetFile":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000135758892"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7365"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls="},{"Name":"original-resource","Value":"\"jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls=\""}]},{"Route":"_framework/System.Diagnostics.StackTrace.wasm.gz","AssetFile":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7365"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg="}]},{"Route":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm","AssetFile":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"15637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wvlboxd9cz"},{"Name":"integrity","Value":"sha256-jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls="},{"Name":"label","Value":"_framework/System.Diagnostics.StackTrace.wasm"}]},{"Route":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm","AssetFile":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000135758892"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7365"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wvlboxd9cz"},{"Name":"integrity","Value":"sha256-jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls="},{"Name":"label","Value":"_framework/System.Diagnostics.StackTrace.wasm"},{"Name":"original-resource","Value":"\"jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls=\""}]},{"Route":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm.gz","AssetFile":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7365"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wvlboxd9cz"},{"Name":"integrity","Value":"sha256-+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg="},{"Name":"label","Value":"_framework/System.Diagnostics.StackTrace.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm","AssetFile":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"21269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mx5w1z1p6w"},{"Name":"integrity","Value":"sha256-9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8="},{"Name":"label","Value":"_framework/System.Diagnostics.TextWriterTraceListener.wasm"}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm","AssetFile":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000106484932"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mx5w1z1p6w"},{"Name":"integrity","Value":"sha256-9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8="},{"Name":"label","Value":"_framework/System.Diagnostics.TextWriterTraceListener.wasm"},{"Name":"original-resource","Value":"\"9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8=\""}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm.gz","AssetFile":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mx5w1z1p6w"},{"Name":"integrity","Value":"sha256-bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY="},{"Name":"label","Value":"_framework/System.Diagnostics.TextWriterTraceListener.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.wasm","AssetFile":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"21269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8="}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.wasm","AssetFile":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000106484932"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8="},{"Name":"original-resource","Value":"\"9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8=\""}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.wasm.gz","AssetFile":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY="}]},{"Route":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm","AssetFile":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"862j1ozg5o"},{"Name":"integrity","Value":"sha256-wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE="},{"Name":"label","Value":"_framework/System.Diagnostics.Tools.wasm"}]},{"Route":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm","AssetFile":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455580866"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"862j1ozg5o"},{"Name":"integrity","Value":"sha256-wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE="},{"Name":"label","Value":"_framework/System.Diagnostics.Tools.wasm"},{"Name":"original-resource","Value":"\"wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE=\""}]},{"Route":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm.gz","AssetFile":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"862j1ozg5o"},{"Name":"integrity","Value":"sha256-Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0="},{"Name":"label","Value":"_framework/System.Diagnostics.Tools.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.Tools.wasm","AssetFile":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE="}]},{"Route":"_framework/System.Diagnostics.Tools.wasm","AssetFile":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455580866"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE="},{"Name":"original-resource","Value":"\"wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE=\""}]},{"Route":"_framework/System.Diagnostics.Tools.wasm.gz","AssetFile":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0="}]},{"Route":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm","AssetFile":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"48405"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j08okd90mo"},{"Name":"integrity","Value":"sha256-k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc="},{"Name":"label","Value":"_framework/System.Diagnostics.TraceSource.wasm"}]},{"Route":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm","AssetFile":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000049701789"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20119"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j08okd90mo"},{"Name":"integrity","Value":"sha256-k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc="},{"Name":"label","Value":"_framework/System.Diagnostics.TraceSource.wasm"},{"Name":"original-resource","Value":"\"k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc=\""}]},{"Route":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm.gz","AssetFile":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20119"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j08okd90mo"},{"Name":"integrity","Value":"sha256-xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM="},{"Name":"label","Value":"_framework/System.Diagnostics.TraceSource.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.TraceSource.wasm","AssetFile":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"48405"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc="}]},{"Route":"_framework/System.Diagnostics.TraceSource.wasm","AssetFile":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000049701789"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20119"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc="},{"Name":"original-resource","Value":"\"k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc=\""}]},{"Route":"_framework/System.Diagnostics.TraceSource.wasm.gz","AssetFile":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20119"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM="}]},{"Route":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm","AssetFile":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bnz7jo4op8"},{"Name":"integrity","Value":"sha256-ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg="},{"Name":"label","Value":"_framework/System.Diagnostics.Tracing.wasm"}]},{"Route":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm","AssetFile":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000398406375"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bnz7jo4op8"},{"Name":"integrity","Value":"sha256-ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg="},{"Name":"label","Value":"_framework/System.Diagnostics.Tracing.wasm"},{"Name":"original-resource","Value":"\"ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg=\""}]},{"Route":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm.gz","AssetFile":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bnz7jo4op8"},{"Name":"integrity","Value":"sha256-ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI="},{"Name":"label","Value":"_framework/System.Diagnostics.Tracing.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.Tracing.wasm","AssetFile":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg="}]},{"Route":"_framework/System.Diagnostics.Tracing.wasm","AssetFile":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000398406375"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg="},{"Name":"original-resource","Value":"\"ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg=\""}]},{"Route":"_framework/System.Diagnostics.Tracing.wasm.gz","AssetFile":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI="}]},{"Route":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm","AssetFile":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"54549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k3z431p3v7"},{"Name":"integrity","Value":"sha256-sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U="},{"Name":"label","Value":"_framework/System.Drawing.Primitives.wasm"}]},{"Route":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm","AssetFile":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041590418"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24043"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k3z431p3v7"},{"Name":"integrity","Value":"sha256-sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U="},{"Name":"label","Value":"_framework/System.Drawing.Primitives.wasm"},{"Name":"original-resource","Value":"\"sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U=\""}]},{"Route":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm.gz","AssetFile":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24043"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k3z431p3v7"},{"Name":"integrity","Value":"sha256-s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto="},{"Name":"label","Value":"_framework/System.Drawing.Primitives.wasm.gz"}]},{"Route":"_framework/System.Drawing.Primitives.wasm","AssetFile":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"54549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U="}]},{"Route":"_framework/System.Drawing.Primitives.wasm","AssetFile":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041590418"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24043"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U="},{"Name":"original-resource","Value":"\"sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U=\""}]},{"Route":"_framework/System.Drawing.Primitives.wasm.gz","AssetFile":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24043"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto="}]},{"Route":"_framework/System.Drawing.v0usa2s224.wasm","AssetFile":"_framework/System.Drawing.v0usa2s224.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0usa2s224"},{"Name":"integrity","Value":"sha256-/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I="},{"Name":"label","Value":"_framework/System.Drawing.wasm"}]},{"Route":"_framework/System.Drawing.v0usa2s224.wasm","AssetFile":"_framework/System.Drawing.v0usa2s224.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000258732212"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3864"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0usa2s224"},{"Name":"integrity","Value":"sha256-/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I="},{"Name":"label","Value":"_framework/System.Drawing.wasm"},{"Name":"original-resource","Value":"\"/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I=\""}]},{"Route":"_framework/System.Drawing.v0usa2s224.wasm.gz","AssetFile":"_framework/System.Drawing.v0usa2s224.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3864"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0usa2s224"},{"Name":"integrity","Value":"sha256-ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c="},{"Name":"label","Value":"_framework/System.Drawing.wasm.gz"}]},{"Route":"_framework/System.Drawing.wasm","AssetFile":"_framework/System.Drawing.v0usa2s224.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I="}]},{"Route":"_framework/System.Drawing.wasm","AssetFile":"_framework/System.Drawing.v0usa2s224.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000258732212"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3864"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I="},{"Name":"original-resource","Value":"\"/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I=\""}]},{"Route":"_framework/System.Drawing.wasm.gz","AssetFile":"_framework/System.Drawing.v0usa2s224.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3864"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c="}]},{"Route":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm","AssetFile":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iktlm0yhdx"},{"Name":"integrity","Value":"sha256-8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ="},{"Name":"label","Value":"_framework/System.Dynamic.Runtime.wasm"}]},{"Route":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm","AssetFile":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000408997955"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2444"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iktlm0yhdx"},{"Name":"integrity","Value":"sha256-8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ="},{"Name":"label","Value":"_framework/System.Dynamic.Runtime.wasm"},{"Name":"original-resource","Value":"\"8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ=\""}]},{"Route":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm.gz","AssetFile":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2444"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iktlm0yhdx"},{"Name":"integrity","Value":"sha256-DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A="},{"Name":"label","Value":"_framework/System.Dynamic.Runtime.wasm.gz"}]},{"Route":"_framework/System.Dynamic.Runtime.wasm","AssetFile":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ="}]},{"Route":"_framework/System.Dynamic.Runtime.wasm","AssetFile":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000408997955"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2444"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ="},{"Name":"original-resource","Value":"\"8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ=\""}]},{"Route":"_framework/System.Dynamic.Runtime.wasm.gz","AssetFile":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2444"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A="}]},{"Route":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm","AssetFile":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"86805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9iyl1hnh76"},{"Name":"integrity","Value":"sha256-8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0="},{"Name":"label","Value":"_framework/System.Formats.Asn1.wasm"}]},{"Route":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm","AssetFile":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000028005713"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35706"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9iyl1hnh76"},{"Name":"integrity","Value":"sha256-8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0="},{"Name":"label","Value":"_framework/System.Formats.Asn1.wasm"},{"Name":"original-resource","Value":"\"8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0=\""}]},{"Route":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm.gz","AssetFile":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35706"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9iyl1hnh76"},{"Name":"integrity","Value":"sha256-LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw="},{"Name":"label","Value":"_framework/System.Formats.Asn1.wasm.gz"}]},{"Route":"_framework/System.Formats.Asn1.wasm","AssetFile":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"86805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0="}]},{"Route":"_framework/System.Formats.Asn1.wasm","AssetFile":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000028005713"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35706"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0="},{"Name":"original-resource","Value":"\"8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0=\""}]},{"Route":"_framework/System.Formats.Asn1.wasm.gz","AssetFile":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35706"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw="}]},{"Route":"_framework/System.Formats.Tar.9ikmelhi7g.wasm","AssetFile":"_framework/System.Formats.Tar.9ikmelhi7g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"28437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ikmelhi7g"},{"Name":"integrity","Value":"sha256-rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE="},{"Name":"label","Value":"_framework/System.Formats.Tar.wasm"}]},{"Route":"_framework/System.Formats.Tar.9ikmelhi7g.wasm","AssetFile":"_framework/System.Formats.Tar.9ikmelhi7g.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000095292548"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10493"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ikmelhi7g"},{"Name":"integrity","Value":"sha256-rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE="},{"Name":"label","Value":"_framework/System.Formats.Tar.wasm"},{"Name":"original-resource","Value":"\"rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE=\""}]},{"Route":"_framework/System.Formats.Tar.9ikmelhi7g.wasm.gz","AssetFile":"_framework/System.Formats.Tar.9ikmelhi7g.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10493"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ikmelhi7g"},{"Name":"integrity","Value":"sha256-F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k="},{"Name":"label","Value":"_framework/System.Formats.Tar.wasm.gz"}]},{"Route":"_framework/System.Formats.Tar.wasm","AssetFile":"_framework/System.Formats.Tar.9ikmelhi7g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"28437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE="}]},{"Route":"_framework/System.Formats.Tar.wasm","AssetFile":"_framework/System.Formats.Tar.9ikmelhi7g.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000095292548"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10493"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE="},{"Name":"original-resource","Value":"\"rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE=\""}]},{"Route":"_framework/System.Formats.Tar.wasm.gz","AssetFile":"_framework/System.Formats.Tar.9ikmelhi7g.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10493"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k="}]},{"Route":"_framework/System.Globalization.4ulc930few.wasm","AssetFile":"_framework/System.Globalization.4ulc930few.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4ulc930few"},{"Name":"integrity","Value":"sha256-jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I="},{"Name":"label","Value":"_framework/System.Globalization.wasm"}]},{"Route":"_framework/System.Globalization.4ulc930few.wasm","AssetFile":"_framework/System.Globalization.4ulc930few.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000439367311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4ulc930few"},{"Name":"integrity","Value":"sha256-jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I="},{"Name":"label","Value":"_framework/System.Globalization.wasm"},{"Name":"original-resource","Value":"\"jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I=\""}]},{"Route":"_framework/System.Globalization.4ulc930few.wasm.gz","AssetFile":"_framework/System.Globalization.4ulc930few.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4ulc930few"},{"Name":"integrity","Value":"sha256-GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA="},{"Name":"label","Value":"_framework/System.Globalization.wasm.gz"}]},{"Route":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm","AssetFile":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e8yl47y6cv"},{"Name":"integrity","Value":"sha256-jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo="},{"Name":"label","Value":"_framework/System.Globalization.Calendars.wasm"}]},{"Route":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm","AssetFile":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000434971727"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2298"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e8yl47y6cv"},{"Name":"integrity","Value":"sha256-jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo="},{"Name":"label","Value":"_framework/System.Globalization.Calendars.wasm"},{"Name":"original-resource","Value":"\"jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo=\""}]},{"Route":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm.gz","AssetFile":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2298"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e8yl47y6cv"},{"Name":"integrity","Value":"sha256-bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A="},{"Name":"label","Value":"_framework/System.Globalization.Calendars.wasm.gz"}]},{"Route":"_framework/System.Globalization.Calendars.wasm","AssetFile":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo="}]},{"Route":"_framework/System.Globalization.Calendars.wasm","AssetFile":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000434971727"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2298"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo="},{"Name":"original-resource","Value":"\"jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo=\""}]},{"Route":"_framework/System.Globalization.Calendars.wasm.gz","AssetFile":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2298"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A="}]},{"Route":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm","AssetFile":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvxkfs32tv"},{"Name":"integrity","Value":"sha256-e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ="},{"Name":"label","Value":"_framework/System.Globalization.Extensions.wasm"}]},{"Route":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm","AssetFile":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000456412597"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2190"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvxkfs32tv"},{"Name":"integrity","Value":"sha256-e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ="},{"Name":"label","Value":"_framework/System.Globalization.Extensions.wasm"},{"Name":"original-resource","Value":"\"e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ=\""}]},{"Route":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm.gz","AssetFile":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2190"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvxkfs32tv"},{"Name":"integrity","Value":"sha256-mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o="},{"Name":"label","Value":"_framework/System.Globalization.Extensions.wasm.gz"}]},{"Route":"_framework/System.Globalization.Extensions.wasm","AssetFile":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ="}]},{"Route":"_framework/System.Globalization.Extensions.wasm","AssetFile":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000456412597"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2190"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ="},{"Name":"original-resource","Value":"\"e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ=\""}]},{"Route":"_framework/System.Globalization.Extensions.wasm.gz","AssetFile":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2190"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o="}]},{"Route":"_framework/System.Globalization.wasm","AssetFile":"_framework/System.Globalization.4ulc930few.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I="}]},{"Route":"_framework/System.Globalization.wasm","AssetFile":"_framework/System.Globalization.4ulc930few.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000439367311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I="},{"Name":"original-resource","Value":"\"jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I=\""}]},{"Route":"_framework/System.Globalization.wasm.gz","AssetFile":"_framework/System.Globalization.4ulc930few.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA="}]},{"Route":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm","AssetFile":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ibxx4kh8c6"},{"Name":"integrity","Value":"sha256-7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY="},{"Name":"label","Value":"_framework/System.IO.Compression.Brotli.wasm"}]},{"Route":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm","AssetFile":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000143988481"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6944"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ibxx4kh8c6"},{"Name":"integrity","Value":"sha256-7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY="},{"Name":"label","Value":"_framework/System.IO.Compression.Brotli.wasm"},{"Name":"original-resource","Value":"\"7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY=\""}]},{"Route":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm.gz","AssetFile":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6944"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ibxx4kh8c6"},{"Name":"integrity","Value":"sha256-1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw="},{"Name":"label","Value":"_framework/System.IO.Compression.Brotli.wasm.gz"}]},{"Route":"_framework/System.IO.Compression.Brotli.wasm","AssetFile":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY="}]},{"Route":"_framework/System.IO.Compression.Brotli.wasm","AssetFile":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000143988481"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6944"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY="},{"Name":"original-resource","Value":"\"7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY=\""}]},{"Route":"_framework/System.IO.Compression.Brotli.wasm.gz","AssetFile":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6944"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw="}]},{"Route":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm","AssetFile":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bselp9vv9w"},{"Name":"integrity","Value":"sha256-5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM="},{"Name":"label","Value":"_framework/System.IO.Compression.FileSystem.wasm"}]},{"Route":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm","AssetFile":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000498504487"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bselp9vv9w"},{"Name":"integrity","Value":"sha256-5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM="},{"Name":"label","Value":"_framework/System.IO.Compression.FileSystem.wasm"},{"Name":"original-resource","Value":"\"5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM=\""}]},{"Route":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm.gz","AssetFile":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bselp9vv9w"},{"Name":"integrity","Value":"sha256-dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI="},{"Name":"label","Value":"_framework/System.IO.Compression.FileSystem.wasm.gz"}]},{"Route":"_framework/System.IO.Compression.FileSystem.wasm","AssetFile":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM="}]},{"Route":"_framework/System.IO.Compression.FileSystem.wasm","AssetFile":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000498504487"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM="},{"Name":"original-resource","Value":"\"5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM=\""}]},{"Route":"_framework/System.IO.Compression.FileSystem.wasm.gz","AssetFile":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI="}]},{"Route":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm","AssetFile":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"43285"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b0ha8vyo8i"},{"Name":"integrity","Value":"sha256-m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk="},{"Name":"label","Value":"_framework/System.IO.Compression.ZipFile.wasm"}]},{"Route":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm","AssetFile":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053490238"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18694"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b0ha8vyo8i"},{"Name":"integrity","Value":"sha256-m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk="},{"Name":"label","Value":"_framework/System.IO.Compression.ZipFile.wasm"},{"Name":"original-resource","Value":"\"m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk=\""}]},{"Route":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm.gz","AssetFile":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18694"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b0ha8vyo8i"},{"Name":"integrity","Value":"sha256-+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc="},{"Name":"label","Value":"_framework/System.IO.Compression.ZipFile.wasm.gz"}]},{"Route":"_framework/System.IO.Compression.ZipFile.wasm","AssetFile":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"43285"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk="}]},{"Route":"_framework/System.IO.Compression.ZipFile.wasm","AssetFile":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053490238"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18694"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk="},{"Name":"original-resource","Value":"\"m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk=\""}]},{"Route":"_framework/System.IO.Compression.ZipFile.wasm.gz","AssetFile":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18694"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc="}]},{"Route":"_framework/System.IO.Compression.sgbc42zrd8.wasm","AssetFile":"_framework/System.IO.Compression.sgbc42zrd8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"157461"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sgbc42zrd8"},{"Name":"integrity","Value":"sha256-DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY="},{"Name":"label","Value":"_framework/System.IO.Compression.wasm"}]},{"Route":"_framework/System.IO.Compression.sgbc42zrd8.wasm","AssetFile":"_framework/System.IO.Compression.sgbc42zrd8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015435195"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64786"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sgbc42zrd8"},{"Name":"integrity","Value":"sha256-DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY="},{"Name":"label","Value":"_framework/System.IO.Compression.wasm"},{"Name":"original-resource","Value":"\"DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY=\""}]},{"Route":"_framework/System.IO.Compression.sgbc42zrd8.wasm.gz","AssetFile":"_framework/System.IO.Compression.sgbc42zrd8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64786"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sgbc42zrd8"},{"Name":"integrity","Value":"sha256-/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28="},{"Name":"label","Value":"_framework/System.IO.Compression.wasm.gz"}]},{"Route":"_framework/System.IO.Compression.wasm","AssetFile":"_framework/System.IO.Compression.sgbc42zrd8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"157461"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY="}]},{"Route":"_framework/System.IO.Compression.wasm","AssetFile":"_framework/System.IO.Compression.sgbc42zrd8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015435195"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64786"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY="},{"Name":"original-resource","Value":"\"DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY=\""}]},{"Route":"_framework/System.IO.Compression.wasm.gz","AssetFile":"_framework/System.IO.Compression.sgbc42zrd8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64786"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28="}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm","AssetFile":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"21781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oi9xn5s0h3"},{"Name":"integrity","Value":"sha256-kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg="},{"Name":"label","Value":"_framework/System.IO.FileSystem.AccessControl.wasm"}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm","AssetFile":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000117994100"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8474"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oi9xn5s0h3"},{"Name":"integrity","Value":"sha256-kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg="},{"Name":"label","Value":"_framework/System.IO.FileSystem.AccessControl.wasm"},{"Name":"original-resource","Value":"\"kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg=\""}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8474"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oi9xn5s0h3"},{"Name":"integrity","Value":"sha256-dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A="},{"Name":"label","Value":"_framework/System.IO.FileSystem.AccessControl.wasm.gz"}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.wasm","AssetFile":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"21781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg="}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.wasm","AssetFile":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000117994100"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8474"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg="},{"Name":"original-resource","Value":"\"kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg=\""}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8474"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A="}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm","AssetFile":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13589"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fi1uhp9255"},{"Name":"integrity","Value":"sha256-2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU="},{"Name":"label","Value":"_framework/System.IO.FileSystem.DriveInfo.wasm"}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm","AssetFile":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000165727544"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fi1uhp9255"},{"Name":"integrity","Value":"sha256-2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU="},{"Name":"label","Value":"_framework/System.IO.FileSystem.DriveInfo.wasm"},{"Name":"original-resource","Value":"\"2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU=\""}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fi1uhp9255"},{"Name":"integrity","Value":"sha256-9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4="},{"Name":"label","Value":"_framework/System.IO.FileSystem.DriveInfo.wasm.gz"}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.wasm","AssetFile":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13589"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU="}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.wasm","AssetFile":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000165727544"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU="},{"Name":"original-resource","Value":"\"2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU=\""}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4="}]},{"Route":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm","AssetFile":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6j2ed42ac7"},{"Name":"integrity","Value":"sha256-UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Primitives.wasm"}]},{"Route":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm","AssetFile":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455996352"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2192"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6j2ed42ac7"},{"Name":"integrity","Value":"sha256-UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Primitives.wasm"},{"Name":"original-resource","Value":"\"UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI=\""}]},{"Route":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2192"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6j2ed42ac7"},{"Name":"integrity","Value":"sha256-apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Primitives.wasm.gz"}]},{"Route":"_framework/System.IO.FileSystem.Primitives.wasm","AssetFile":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI="}]},{"Route":"_framework/System.IO.FileSystem.Primitives.wasm","AssetFile":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455996352"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2192"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI="},{"Name":"original-resource","Value":"\"UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI=\""}]},{"Route":"_framework/System.IO.FileSystem.Primitives.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2192"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg="}]},{"Route":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm","AssetFile":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v9i07bnq2k"},{"Name":"integrity","Value":"sha256-g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Watcher.wasm"}]},{"Route":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm","AssetFile":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000114259598"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8751"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v9i07bnq2k"},{"Name":"integrity","Value":"sha256-g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Watcher.wasm"},{"Name":"original-resource","Value":"\"g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg=\""}]},{"Route":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8751"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v9i07bnq2k"},{"Name":"integrity","Value":"sha256-XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Watcher.wasm.gz"}]},{"Route":"_framework/System.IO.FileSystem.Watcher.wasm","AssetFile":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg="}]},{"Route":"_framework/System.IO.FileSystem.Watcher.wasm","AssetFile":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000114259598"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8751"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg="},{"Name":"original-resource","Value":"\"g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg=\""}]},{"Route":"_framework/System.IO.FileSystem.Watcher.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8751"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ="}]},{"Route":"_framework/System.IO.FileSystem.fktu0k4b93.wasm","AssetFile":"_framework/System.IO.FileSystem.fktu0k4b93.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fktu0k4b93"},{"Name":"integrity","Value":"sha256-L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM="},{"Name":"label","Value":"_framework/System.IO.FileSystem.wasm"}]},{"Route":"_framework/System.IO.FileSystem.fktu0k4b93.wasm","AssetFile":"_framework/System.IO.FileSystem.fktu0k4b93.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000434027778"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2303"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fktu0k4b93"},{"Name":"integrity","Value":"sha256-L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM="},{"Name":"label","Value":"_framework/System.IO.FileSystem.wasm"},{"Name":"original-resource","Value":"\"L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM=\""}]},{"Route":"_framework/System.IO.FileSystem.fktu0k4b93.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.fktu0k4b93.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2303"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fktu0k4b93"},{"Name":"integrity","Value":"sha256-1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ="},{"Name":"label","Value":"_framework/System.IO.FileSystem.wasm.gz"}]},{"Route":"_framework/System.IO.FileSystem.wasm","AssetFile":"_framework/System.IO.FileSystem.fktu0k4b93.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM="}]},{"Route":"_framework/System.IO.FileSystem.wasm","AssetFile":"_framework/System.IO.FileSystem.fktu0k4b93.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000434027778"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2303"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM="},{"Name":"original-resource","Value":"\"L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM=\""}]},{"Route":"_framework/System.IO.FileSystem.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.fktu0k4b93.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2303"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ="}]},{"Route":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm","AssetFile":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"24853"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8ll4gxwfs1"},{"Name":"integrity","Value":"sha256-TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4="},{"Name":"label","Value":"_framework/System.IO.IsolatedStorage.wasm"}]},{"Route":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm","AssetFile":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000106723586"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9369"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8ll4gxwfs1"},{"Name":"integrity","Value":"sha256-TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4="},{"Name":"label","Value":"_framework/System.IO.IsolatedStorage.wasm"},{"Name":"original-resource","Value":"\"TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4=\""}]},{"Route":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm.gz","AssetFile":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9369"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8ll4gxwfs1"},{"Name":"integrity","Value":"sha256-KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ="},{"Name":"label","Value":"_framework/System.IO.IsolatedStorage.wasm.gz"}]},{"Route":"_framework/System.IO.IsolatedStorage.wasm","AssetFile":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"24853"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4="}]},{"Route":"_framework/System.IO.IsolatedStorage.wasm","AssetFile":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000106723586"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9369"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4="},{"Name":"original-resource","Value":"\"TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4=\""}]},{"Route":"_framework/System.IO.IsolatedStorage.wasm.gz","AssetFile":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9369"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ="}]},{"Route":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm","AssetFile":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"39701"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6do4olk7ib"},{"Name":"integrity","Value":"sha256-WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk="},{"Name":"label","Value":"_framework/System.IO.MemoryMappedFiles.wasm"}]},{"Route":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm","AssetFile":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000058775126"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6do4olk7ib"},{"Name":"integrity","Value":"sha256-WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk="},{"Name":"label","Value":"_framework/System.IO.MemoryMappedFiles.wasm"},{"Name":"original-resource","Value":"\"WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk=\""}]},{"Route":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm.gz","AssetFile":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6do4olk7ib"},{"Name":"integrity","Value":"sha256-uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk="},{"Name":"label","Value":"_framework/System.IO.MemoryMappedFiles.wasm.gz"}]},{"Route":"_framework/System.IO.MemoryMappedFiles.wasm","AssetFile":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"39701"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk="}]},{"Route":"_framework/System.IO.MemoryMappedFiles.wasm","AssetFile":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000058775126"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk="},{"Name":"original-resource","Value":"\"WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk=\""}]},{"Route":"_framework/System.IO.MemoryMappedFiles.wasm.gz","AssetFile":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk="}]},{"Route":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm","AssetFile":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"67861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"21z0t9w6sq"},{"Name":"integrity","Value":"sha256-VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM="},{"Name":"label","Value":"_framework/System.IO.Pipelines.wasm"}]},{"Route":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm","AssetFile":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032928315"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30368"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"21z0t9w6sq"},{"Name":"integrity","Value":"sha256-VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM="},{"Name":"label","Value":"_framework/System.IO.Pipelines.wasm"},{"Name":"original-resource","Value":"\"VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM=\""}]},{"Route":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm.gz","AssetFile":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30368"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"21z0t9w6sq"},{"Name":"integrity","Value":"sha256-7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8="},{"Name":"label","Value":"_framework/System.IO.Pipelines.wasm.gz"}]},{"Route":"_framework/System.IO.Pipelines.wasm","AssetFile":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"67861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM="}]},{"Route":"_framework/System.IO.Pipelines.wasm","AssetFile":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032928315"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30368"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM="},{"Name":"original-resource","Value":"\"VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM=\""}]},{"Route":"_framework/System.IO.Pipelines.wasm.gz","AssetFile":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30368"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8="}]},{"Route":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm","AssetFile":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5lvzz4lks7"},{"Name":"integrity","Value":"sha256-qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE="},{"Name":"label","Value":"_framework/System.IO.Pipes.AccessControl.wasm"}]},{"Route":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm","AssetFile":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000179597701"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5567"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5lvzz4lks7"},{"Name":"integrity","Value":"sha256-qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE="},{"Name":"label","Value":"_framework/System.IO.Pipes.AccessControl.wasm"},{"Name":"original-resource","Value":"\"qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE=\""}]},{"Route":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm.gz","AssetFile":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5567"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5lvzz4lks7"},{"Name":"integrity","Value":"sha256-+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4="},{"Name":"label","Value":"_framework/System.IO.Pipes.AccessControl.wasm.gz"}]},{"Route":"_framework/System.IO.Pipes.AccessControl.wasm","AssetFile":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE="}]},{"Route":"_framework/System.IO.Pipes.AccessControl.wasm","AssetFile":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000179597701"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5567"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE="},{"Name":"original-resource","Value":"\"qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE=\""}]},{"Route":"_framework/System.IO.Pipes.AccessControl.wasm.gz","AssetFile":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5567"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4="}]},{"Route":"_framework/System.IO.Pipes.wasm","AssetFile":"_framework/System.IO.Pipes.xosph8vk4a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg="}]},{"Route":"_framework/System.IO.Pipes.wasm","AssetFile":"_framework/System.IO.Pipes.xosph8vk4a.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000087703912"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg="},{"Name":"original-resource","Value":"\"gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg=\""}]},{"Route":"_framework/System.IO.Pipes.wasm.gz","AssetFile":"_framework/System.IO.Pipes.xosph8vk4a.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE="}]},{"Route":"_framework/System.IO.Pipes.xosph8vk4a.wasm","AssetFile":"_framework/System.IO.Pipes.xosph8vk4a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xosph8vk4a"},{"Name":"integrity","Value":"sha256-gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg="},{"Name":"label","Value":"_framework/System.IO.Pipes.wasm"}]},{"Route":"_framework/System.IO.Pipes.xosph8vk4a.wasm","AssetFile":"_framework/System.IO.Pipes.xosph8vk4a.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000087703912"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xosph8vk4a"},{"Name":"integrity","Value":"sha256-gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg="},{"Name":"label","Value":"_framework/System.IO.Pipes.wasm"},{"Name":"original-resource","Value":"\"gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg=\""}]},{"Route":"_framework/System.IO.Pipes.xosph8vk4a.wasm.gz","AssetFile":"_framework/System.IO.Pipes.xosph8vk4a.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xosph8vk4a"},{"Name":"integrity","Value":"sha256-BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE="},{"Name":"label","Value":"_framework/System.IO.Pipes.wasm.gz"}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm","AssetFile":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d1pja42pyi"},{"Name":"integrity","Value":"sha256-gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4="},{"Name":"label","Value":"_framework/System.IO.UnmanagedMemoryStream.wasm"}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm","AssetFile":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000450045005"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2221"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d1pja42pyi"},{"Name":"integrity","Value":"sha256-gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4="},{"Name":"label","Value":"_framework/System.IO.UnmanagedMemoryStream.wasm"},{"Name":"original-resource","Value":"\"gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4=\""}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm.gz","AssetFile":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2221"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d1pja42pyi"},{"Name":"integrity","Value":"sha256-TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU="},{"Name":"label","Value":"_framework/System.IO.UnmanagedMemoryStream.wasm.gz"}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.wasm","AssetFile":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4="}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.wasm","AssetFile":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000450045005"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2221"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4="},{"Name":"original-resource","Value":"\"gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4=\""}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.wasm.gz","AssetFile":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2221"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU="}]},{"Route":"_framework/System.IO.i9g92fmb9y.wasm","AssetFile":"_framework/System.IO.i9g92fmb9y.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"i9g92fmb9y"},{"Name":"integrity","Value":"sha256-akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw="},{"Name":"label","Value":"_framework/System.IO.wasm"}]},{"Route":"_framework/System.IO.i9g92fmb9y.wasm","AssetFile":"_framework/System.IO.i9g92fmb9y.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438404209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"i9g92fmb9y"},{"Name":"integrity","Value":"sha256-akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw="},{"Name":"label","Value":"_framework/System.IO.wasm"},{"Name":"original-resource","Value":"\"akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw=\""}]},{"Route":"_framework/System.IO.i9g92fmb9y.wasm.gz","AssetFile":"_framework/System.IO.i9g92fmb9y.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"i9g92fmb9y"},{"Name":"integrity","Value":"sha256-DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM="},{"Name":"label","Value":"_framework/System.IO.wasm.gz"}]},{"Route":"_framework/System.IO.wasm","AssetFile":"_framework/System.IO.i9g92fmb9y.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw="}]},{"Route":"_framework/System.IO.wasm","AssetFile":"_framework/System.IO.i9g92fmb9y.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438404209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw="},{"Name":"original-resource","Value":"\"akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw=\""}]},{"Route":"_framework/System.IO.wasm.gz","AssetFile":"_framework/System.IO.i9g92fmb9y.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM="}]},{"Route":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm","AssetFile":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"446229"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m1mh525k0"},{"Name":"integrity","Value":"sha256-VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48="},{"Name":"label","Value":"_framework/System.Linq.AsyncEnumerable.wasm"}]},{"Route":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm","AssetFile":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006961607"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"143644"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m1mh525k0"},{"Name":"integrity","Value":"sha256-VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48="},{"Name":"label","Value":"_framework/System.Linq.AsyncEnumerable.wasm"},{"Name":"original-resource","Value":"\"VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48=\""}]},{"Route":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm.gz","AssetFile":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"143644"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m1mh525k0"},{"Name":"integrity","Value":"sha256-Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8="},{"Name":"label","Value":"_framework/System.Linq.AsyncEnumerable.wasm.gz"}]},{"Route":"_framework/System.Linq.AsyncEnumerable.wasm","AssetFile":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"446229"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48="}]},{"Route":"_framework/System.Linq.AsyncEnumerable.wasm","AssetFile":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006961607"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"143644"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48="},{"Name":"original-resource","Value":"\"VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48=\""}]},{"Route":"_framework/System.Linq.AsyncEnumerable.wasm.gz","AssetFile":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"143644"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8="}]},{"Route":"_framework/System.Linq.Expressions.4nat0rber0.wasm","AssetFile":"_framework/System.Linq.Expressions.4nat0rber0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"565013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4nat0rber0"},{"Name":"integrity","Value":"sha256-IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA="},{"Name":"label","Value":"_framework/System.Linq.Expressions.wasm"}]},{"Route":"_framework/System.Linq.Expressions.4nat0rber0.wasm","AssetFile":"_framework/System.Linq.Expressions.4nat0rber0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004689002"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"213264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4nat0rber0"},{"Name":"integrity","Value":"sha256-IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA="},{"Name":"label","Value":"_framework/System.Linq.Expressions.wasm"},{"Name":"original-resource","Value":"\"IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA=\""}]},{"Route":"_framework/System.Linq.Expressions.4nat0rber0.wasm.gz","AssetFile":"_framework/System.Linq.Expressions.4nat0rber0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"213264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4nat0rber0"},{"Name":"integrity","Value":"sha256-Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0="},{"Name":"label","Value":"_framework/System.Linq.Expressions.wasm.gz"}]},{"Route":"_framework/System.Linq.Expressions.wasm","AssetFile":"_framework/System.Linq.Expressions.4nat0rber0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"565013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA="}]},{"Route":"_framework/System.Linq.Expressions.wasm","AssetFile":"_framework/System.Linq.Expressions.4nat0rber0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004689002"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"213264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA="},{"Name":"original-resource","Value":"\"IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA=\""}]},{"Route":"_framework/System.Linq.Expressions.wasm.gz","AssetFile":"_framework/System.Linq.Expressions.4nat0rber0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"213264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0="}]},{"Route":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm","AssetFile":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"212757"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qf7zemz9aw"},{"Name":"integrity","Value":"sha256-ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18="},{"Name":"label","Value":"_framework/System.Linq.Parallel.wasm"}]},{"Route":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm","AssetFile":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011571663"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86417"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qf7zemz9aw"},{"Name":"integrity","Value":"sha256-ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18="},{"Name":"label","Value":"_framework/System.Linq.Parallel.wasm"},{"Name":"original-resource","Value":"\"ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18=\""}]},{"Route":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm.gz","AssetFile":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86417"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qf7zemz9aw"},{"Name":"integrity","Value":"sha256-NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo="},{"Name":"label","Value":"_framework/System.Linq.Parallel.wasm.gz"}]},{"Route":"_framework/System.Linq.Parallel.wasm","AssetFile":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"212757"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18="}]},{"Route":"_framework/System.Linq.Parallel.wasm","AssetFile":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011571663"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86417"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18="},{"Name":"original-resource","Value":"\"ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18=\""}]},{"Route":"_framework/System.Linq.Parallel.wasm.gz","AssetFile":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86417"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo="}]},{"Route":"_framework/System.Linq.Queryable.vwinf8twbn.wasm","AssetFile":"_framework/System.Linq.Queryable.vwinf8twbn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"68373"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vwinf8twbn"},{"Name":"integrity","Value":"sha256-geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM="},{"Name":"label","Value":"_framework/System.Linq.Queryable.wasm"}]},{"Route":"_framework/System.Linq.Queryable.vwinf8twbn.wasm","AssetFile":"_framework/System.Linq.Queryable.vwinf8twbn.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000046755190"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21387"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vwinf8twbn"},{"Name":"integrity","Value":"sha256-geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM="},{"Name":"label","Value":"_framework/System.Linq.Queryable.wasm"},{"Name":"original-resource","Value":"\"geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM=\""}]},{"Route":"_framework/System.Linq.Queryable.vwinf8twbn.wasm.gz","AssetFile":"_framework/System.Linq.Queryable.vwinf8twbn.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21387"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vwinf8twbn"},{"Name":"integrity","Value":"sha256-K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts="},{"Name":"label","Value":"_framework/System.Linq.Queryable.wasm.gz"}]},{"Route":"_framework/System.Linq.Queryable.wasm","AssetFile":"_framework/System.Linq.Queryable.vwinf8twbn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"68373"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM="}]},{"Route":"_framework/System.Linq.Queryable.wasm","AssetFile":"_framework/System.Linq.Queryable.vwinf8twbn.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000046755190"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21387"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM="},{"Name":"original-resource","Value":"\"geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM=\""}]},{"Route":"_framework/System.Linq.Queryable.wasm.gz","AssetFile":"_framework/System.Linq.Queryable.vwinf8twbn.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21387"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts="}]},{"Route":"_framework/System.Linq.rp2jklkmsi.wasm","AssetFile":"_framework/System.Linq.rp2jklkmsi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"190741"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rp2jklkmsi"},{"Name":"integrity","Value":"sha256-f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA="},{"Name":"label","Value":"_framework/System.Linq.wasm"}]},{"Route":"_framework/System.Linq.rp2jklkmsi.wasm","AssetFile":"_framework/System.Linq.rp2jklkmsi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013362017"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"74838"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rp2jklkmsi"},{"Name":"integrity","Value":"sha256-f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA="},{"Name":"label","Value":"_framework/System.Linq.wasm"},{"Name":"original-resource","Value":"\"f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA=\""}]},{"Route":"_framework/System.Linq.rp2jklkmsi.wasm.gz","AssetFile":"_framework/System.Linq.rp2jklkmsi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"74838"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rp2jklkmsi"},{"Name":"integrity","Value":"sha256-+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw="},{"Name":"label","Value":"_framework/System.Linq.wasm.gz"}]},{"Route":"_framework/System.Linq.wasm","AssetFile":"_framework/System.Linq.rp2jklkmsi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"190741"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA="}]},{"Route":"_framework/System.Linq.wasm","AssetFile":"_framework/System.Linq.rp2jklkmsi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013362017"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"74838"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA="},{"Name":"original-resource","Value":"\"f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA=\""}]},{"Route":"_framework/System.Linq.wasm.gz","AssetFile":"_framework/System.Linq.rp2jklkmsi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"74838"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw="}]},{"Route":"_framework/System.Memory.3r0soomurg.wasm","AssetFile":"_framework/System.Memory.3r0soomurg.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"45333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3r0soomurg"},{"Name":"integrity","Value":"sha256-z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc="},{"Name":"label","Value":"_framework/System.Memory.wasm"}]},{"Route":"_framework/System.Memory.3r0soomurg.wasm","AssetFile":"_framework/System.Memory.3r0soomurg.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000048600311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3r0soomurg"},{"Name":"integrity","Value":"sha256-z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc="},{"Name":"label","Value":"_framework/System.Memory.wasm"},{"Name":"original-resource","Value":"\"z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc=\""}]},{"Route":"_framework/System.Memory.3r0soomurg.wasm.gz","AssetFile":"_framework/System.Memory.3r0soomurg.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3r0soomurg"},{"Name":"integrity","Value":"sha256-lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60="},{"Name":"label","Value":"_framework/System.Memory.wasm.gz"}]},{"Route":"_framework/System.Memory.wasm","AssetFile":"_framework/System.Memory.3r0soomurg.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"45333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc="}]},{"Route":"_framework/System.Memory.wasm","AssetFile":"_framework/System.Memory.3r0soomurg.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000048600311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc="},{"Name":"original-resource","Value":"\"z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc=\""}]},{"Route":"_framework/System.Memory.wasm.gz","AssetFile":"_framework/System.Memory.3r0soomurg.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60="}]},{"Route":"_framework/System.Net.Http.9rl4gopayw.wasm","AssetFile":"_framework/System.Net.Http.9rl4gopayw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"285973"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9rl4gopayw"},{"Name":"integrity","Value":"sha256-JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU="},{"Name":"label","Value":"_framework/System.Net.Http.wasm"}]},{"Route":"_framework/System.Net.Http.9rl4gopayw.wasm","AssetFile":"_framework/System.Net.Http.9rl4gopayw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008532787"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"117194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9rl4gopayw"},{"Name":"integrity","Value":"sha256-JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU="},{"Name":"label","Value":"_framework/System.Net.Http.wasm"},{"Name":"original-resource","Value":"\"JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU=\""}]},{"Route":"_framework/System.Net.Http.9rl4gopayw.wasm.gz","AssetFile":"_framework/System.Net.Http.9rl4gopayw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"117194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9rl4gopayw"},{"Name":"integrity","Value":"sha256-Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc="},{"Name":"label","Value":"_framework/System.Net.Http.wasm.gz"}]},{"Route":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm","AssetFile":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t9gqpmtbpb"},{"Name":"integrity","Value":"sha256-H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0="},{"Name":"label","Value":"_framework/System.Net.Http.Json.wasm"}]},{"Route":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm","AssetFile":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051591601"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19382"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t9gqpmtbpb"},{"Name":"integrity","Value":"sha256-H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0="},{"Name":"label","Value":"_framework/System.Net.Http.Json.wasm"},{"Name":"original-resource","Value":"\"H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0=\""}]},{"Route":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm.gz","AssetFile":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19382"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t9gqpmtbpb"},{"Name":"integrity","Value":"sha256-h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg="},{"Name":"label","Value":"_framework/System.Net.Http.Json.wasm.gz"}]},{"Route":"_framework/System.Net.Http.Json.wasm","AssetFile":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0="}]},{"Route":"_framework/System.Net.Http.Json.wasm","AssetFile":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051591601"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19382"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0="},{"Name":"original-resource","Value":"\"H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0=\""}]},{"Route":"_framework/System.Net.Http.Json.wasm.gz","AssetFile":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19382"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg="}]},{"Route":"_framework/System.Net.Http.wasm","AssetFile":"_framework/System.Net.Http.9rl4gopayw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"285973"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU="}]},{"Route":"_framework/System.Net.Http.wasm","AssetFile":"_framework/System.Net.Http.9rl4gopayw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008532787"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"117194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU="},{"Name":"original-resource","Value":"\"JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU=\""}]},{"Route":"_framework/System.Net.Http.wasm.gz","AssetFile":"_framework/System.Net.Http.9rl4gopayw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"117194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc="}]},{"Route":"_framework/System.Net.HttpListener.wasm","AssetFile":"_framework/System.Net.HttpListener.zg37o92yol.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE="}]},{"Route":"_framework/System.Net.HttpListener.wasm","AssetFile":"_framework/System.Net.HttpListener.zg37o92yol.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000062289772"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE="},{"Name":"original-resource","Value":"\"rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE=\""}]},{"Route":"_framework/System.Net.HttpListener.wasm.gz","AssetFile":"_framework/System.Net.HttpListener.zg37o92yol.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs="}]},{"Route":"_framework/System.Net.HttpListener.zg37o92yol.wasm","AssetFile":"_framework/System.Net.HttpListener.zg37o92yol.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zg37o92yol"},{"Name":"integrity","Value":"sha256-rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE="},{"Name":"label","Value":"_framework/System.Net.HttpListener.wasm"}]},{"Route":"_framework/System.Net.HttpListener.zg37o92yol.wasm","AssetFile":"_framework/System.Net.HttpListener.zg37o92yol.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000062289772"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zg37o92yol"},{"Name":"integrity","Value":"sha256-rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE="},{"Name":"label","Value":"_framework/System.Net.HttpListener.wasm"},{"Name":"original-resource","Value":"\"rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE=\""}]},{"Route":"_framework/System.Net.HttpListener.zg37o92yol.wasm.gz","AssetFile":"_framework/System.Net.HttpListener.zg37o92yol.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zg37o92yol"},{"Name":"integrity","Value":"sha256-2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs="},{"Name":"label","Value":"_framework/System.Net.HttpListener.wasm.gz"}]},{"Route":"_framework/System.Net.Mail.qk214miut2.wasm","AssetFile":"_framework/System.Net.Mail.qk214miut2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"94997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qk214miut2"},{"Name":"integrity","Value":"sha256-tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk="},{"Name":"label","Value":"_framework/System.Net.Mail.wasm"}]},{"Route":"_framework/System.Net.Mail.qk214miut2.wasm","AssetFile":"_framework/System.Net.Mail.qk214miut2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023562122"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42440"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qk214miut2"},{"Name":"integrity","Value":"sha256-tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk="},{"Name":"label","Value":"_framework/System.Net.Mail.wasm"},{"Name":"original-resource","Value":"\"tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk=\""}]},{"Route":"_framework/System.Net.Mail.qk214miut2.wasm.gz","AssetFile":"_framework/System.Net.Mail.qk214miut2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42440"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qk214miut2"},{"Name":"integrity","Value":"sha256-T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys="},{"Name":"label","Value":"_framework/System.Net.Mail.wasm.gz"}]},{"Route":"_framework/System.Net.Mail.wasm","AssetFile":"_framework/System.Net.Mail.qk214miut2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"94997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk="}]},{"Route":"_framework/System.Net.Mail.wasm","AssetFile":"_framework/System.Net.Mail.qk214miut2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023562122"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42440"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk="},{"Name":"original-resource","Value":"\"tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk=\""}]},{"Route":"_framework/System.Net.Mail.wasm.gz","AssetFile":"_framework/System.Net.Mail.qk214miut2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42440"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys="}]},{"Route":"_framework/System.Net.NameResolution.50dzekuu9x.wasm","AssetFile":"_framework/System.Net.NameResolution.50dzekuu9x.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"14101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"50dzekuu9x"},{"Name":"integrity","Value":"sha256-a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs="},{"Name":"label","Value":"_framework/System.Net.NameResolution.wasm"}]},{"Route":"_framework/System.Net.NameResolution.50dzekuu9x.wasm","AssetFile":"_framework/System.Net.NameResolution.50dzekuu9x.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000168520391"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"50dzekuu9x"},{"Name":"integrity","Value":"sha256-a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs="},{"Name":"label","Value":"_framework/System.Net.NameResolution.wasm"},{"Name":"original-resource","Value":"\"a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs=\""}]},{"Route":"_framework/System.Net.NameResolution.50dzekuu9x.wasm.gz","AssetFile":"_framework/System.Net.NameResolution.50dzekuu9x.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"50dzekuu9x"},{"Name":"integrity","Value":"sha256-A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI="},{"Name":"label","Value":"_framework/System.Net.NameResolution.wasm.gz"}]},{"Route":"_framework/System.Net.NameResolution.wasm","AssetFile":"_framework/System.Net.NameResolution.50dzekuu9x.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"14101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs="}]},{"Route":"_framework/System.Net.NameResolution.wasm","AssetFile":"_framework/System.Net.NameResolution.50dzekuu9x.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000168520391"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs="},{"Name":"original-resource","Value":"\"a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs=\""}]},{"Route":"_framework/System.Net.NameResolution.wasm.gz","AssetFile":"_framework/System.Net.NameResolution.50dzekuu9x.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI="}]},{"Route":"_framework/System.Net.NetworkInformation.k8343mqust.wasm","AssetFile":"_framework/System.Net.NetworkInformation.k8343mqust.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8343mqust"},{"Name":"integrity","Value":"sha256-ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8="},{"Name":"label","Value":"_framework/System.Net.NetworkInformation.wasm"}]},{"Route":"_framework/System.Net.NetworkInformation.k8343mqust.wasm","AssetFile":"_framework/System.Net.NetworkInformation.k8343mqust.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000078560767"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12728"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8343mqust"},{"Name":"integrity","Value":"sha256-ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8="},{"Name":"label","Value":"_framework/System.Net.NetworkInformation.wasm"},{"Name":"original-resource","Value":"\"ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8=\""}]},{"Route":"_framework/System.Net.NetworkInformation.k8343mqust.wasm.gz","AssetFile":"_framework/System.Net.NetworkInformation.k8343mqust.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12728"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8343mqust"},{"Name":"integrity","Value":"sha256-Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0="},{"Name":"label","Value":"_framework/System.Net.NetworkInformation.wasm.gz"}]},{"Route":"_framework/System.Net.NetworkInformation.wasm","AssetFile":"_framework/System.Net.NetworkInformation.k8343mqust.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8="}]},{"Route":"_framework/System.Net.NetworkInformation.wasm","AssetFile":"_framework/System.Net.NetworkInformation.k8343mqust.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000078560767"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12728"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8="},{"Name":"original-resource","Value":"\"ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8=\""}]},{"Route":"_framework/System.Net.NetworkInformation.wasm.gz","AssetFile":"_framework/System.Net.NetworkInformation.k8343mqust.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12728"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0="}]},{"Route":"_framework/System.Net.Ping.00vh2kvsiz.wasm","AssetFile":"_framework/System.Net.Ping.00vh2kvsiz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"17685"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"00vh2kvsiz"},{"Name":"integrity","Value":"sha256-MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s="},{"Name":"label","Value":"_framework/System.Net.Ping.wasm"}]},{"Route":"_framework/System.Net.Ping.00vh2kvsiz.wasm","AssetFile":"_framework/System.Net.Ping.00vh2kvsiz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000132573247"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7542"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"00vh2kvsiz"},{"Name":"integrity","Value":"sha256-MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s="},{"Name":"label","Value":"_framework/System.Net.Ping.wasm"},{"Name":"original-resource","Value":"\"MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s=\""}]},{"Route":"_framework/System.Net.Ping.00vh2kvsiz.wasm.gz","AssetFile":"_framework/System.Net.Ping.00vh2kvsiz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7542"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"00vh2kvsiz"},{"Name":"integrity","Value":"sha256-MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM="},{"Name":"label","Value":"_framework/System.Net.Ping.wasm.gz"}]},{"Route":"_framework/System.Net.Ping.wasm","AssetFile":"_framework/System.Net.Ping.00vh2kvsiz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"17685"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s="}]},{"Route":"_framework/System.Net.Ping.wasm","AssetFile":"_framework/System.Net.Ping.00vh2kvsiz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000132573247"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7542"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s="},{"Name":"original-resource","Value":"\"MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s=\""}]},{"Route":"_framework/System.Net.Ping.wasm.gz","AssetFile":"_framework/System.Net.Ping.00vh2kvsiz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7542"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM="}]},{"Route":"_framework/System.Net.Primitives.wasm","AssetFile":"_framework/System.Net.Primitives.whs5oed1wm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"97045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s="}]},{"Route":"_framework/System.Net.Primitives.wasm","AssetFile":"_framework/System.Net.Primitives.whs5oed1wm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000021790765"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"45890"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s="},{"Name":"original-resource","Value":"\"fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s=\""}]},{"Route":"_framework/System.Net.Primitives.wasm.gz","AssetFile":"_framework/System.Net.Primitives.whs5oed1wm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"45890"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0="}]},{"Route":"_framework/System.Net.Primitives.whs5oed1wm.wasm","AssetFile":"_framework/System.Net.Primitives.whs5oed1wm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"97045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"whs5oed1wm"},{"Name":"integrity","Value":"sha256-fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s="},{"Name":"label","Value":"_framework/System.Net.Primitives.wasm"}]},{"Route":"_framework/System.Net.Primitives.whs5oed1wm.wasm","AssetFile":"_framework/System.Net.Primitives.whs5oed1wm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000021790765"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"45890"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"whs5oed1wm"},{"Name":"integrity","Value":"sha256-fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s="},{"Name":"label","Value":"_framework/System.Net.Primitives.wasm"},{"Name":"original-resource","Value":"\"fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s=\""}]},{"Route":"_framework/System.Net.Primitives.whs5oed1wm.wasm.gz","AssetFile":"_framework/System.Net.Primitives.whs5oed1wm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"45890"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"whs5oed1wm"},{"Name":"integrity","Value":"sha256-v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0="},{"Name":"label","Value":"_framework/System.Net.Primitives.wasm.gz"}]},{"Route":"_framework/System.Net.Quic.grloe2ix5j.wasm","AssetFile":"_framework/System.Net.Quic.grloe2ix5j.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"28949"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"grloe2ix5j"},{"Name":"integrity","Value":"sha256-1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA="},{"Name":"label","Value":"_framework/System.Net.Quic.wasm"}]},{"Route":"_framework/System.Net.Quic.grloe2ix5j.wasm","AssetFile":"_framework/System.Net.Quic.grloe2ix5j.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000091449474"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10934"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"grloe2ix5j"},{"Name":"integrity","Value":"sha256-1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA="},{"Name":"label","Value":"_framework/System.Net.Quic.wasm"},{"Name":"original-resource","Value":"\"1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA=\""}]},{"Route":"_framework/System.Net.Quic.grloe2ix5j.wasm.gz","AssetFile":"_framework/System.Net.Quic.grloe2ix5j.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10934"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"grloe2ix5j"},{"Name":"integrity","Value":"sha256-IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8="},{"Name":"label","Value":"_framework/System.Net.Quic.wasm.gz"}]},{"Route":"_framework/System.Net.Quic.wasm","AssetFile":"_framework/System.Net.Quic.grloe2ix5j.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"28949"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA="}]},{"Route":"_framework/System.Net.Quic.wasm","AssetFile":"_framework/System.Net.Quic.grloe2ix5j.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000091449474"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10934"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA="},{"Name":"original-resource","Value":"\"1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA=\""}]},{"Route":"_framework/System.Net.Quic.wasm.gz","AssetFile":"_framework/System.Net.Quic.grloe2ix5j.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10934"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8="}]},{"Route":"_framework/System.Net.Requests.r8ar2pd94c.wasm","AssetFile":"_framework/System.Net.Requests.r8ar2pd94c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r8ar2pd94c"},{"Name":"integrity","Value":"sha256-ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88="},{"Name":"label","Value":"_framework/System.Net.Requests.wasm"}]},{"Route":"_framework/System.Net.Requests.r8ar2pd94c.wasm","AssetFile":"_framework/System.Net.Requests.r8ar2pd94c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000049275648"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20293"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r8ar2pd94c"},{"Name":"integrity","Value":"sha256-ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88="},{"Name":"label","Value":"_framework/System.Net.Requests.wasm"},{"Name":"original-resource","Value":"\"ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88=\""}]},{"Route":"_framework/System.Net.Requests.r8ar2pd94c.wasm.gz","AssetFile":"_framework/System.Net.Requests.r8ar2pd94c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20293"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r8ar2pd94c"},{"Name":"integrity","Value":"sha256-gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA="},{"Name":"label","Value":"_framework/System.Net.Requests.wasm.gz"}]},{"Route":"_framework/System.Net.Requests.wasm","AssetFile":"_framework/System.Net.Requests.r8ar2pd94c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88="}]},{"Route":"_framework/System.Net.Requests.wasm","AssetFile":"_framework/System.Net.Requests.r8ar2pd94c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000049275648"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20293"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88="},{"Name":"original-resource","Value":"\"ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88=\""}]},{"Route":"_framework/System.Net.Requests.wasm.gz","AssetFile":"_framework/System.Net.Requests.r8ar2pd94c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20293"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA="}]},{"Route":"_framework/System.Net.Security.wasm","AssetFile":"_framework/System.Net.Security.yn3zcskz4j.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"104213"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ="}]},{"Route":"_framework/System.Net.Security.wasm","AssetFile":"_framework/System.Net.Security.yn3zcskz4j.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029683279"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33688"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ="},{"Name":"original-resource","Value":"\"TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ=\""}]},{"Route":"_framework/System.Net.Security.wasm.gz","AssetFile":"_framework/System.Net.Security.yn3zcskz4j.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33688"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ="}]},{"Route":"_framework/System.Net.Security.yn3zcskz4j.wasm","AssetFile":"_framework/System.Net.Security.yn3zcskz4j.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"104213"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yn3zcskz4j"},{"Name":"integrity","Value":"sha256-TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ="},{"Name":"label","Value":"_framework/System.Net.Security.wasm"}]},{"Route":"_framework/System.Net.Security.yn3zcskz4j.wasm","AssetFile":"_framework/System.Net.Security.yn3zcskz4j.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029683279"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33688"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yn3zcskz4j"},{"Name":"integrity","Value":"sha256-TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ="},{"Name":"label","Value":"_framework/System.Net.Security.wasm"},{"Name":"original-resource","Value":"\"TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ=\""}]},{"Route":"_framework/System.Net.Security.yn3zcskz4j.wasm.gz","AssetFile":"_framework/System.Net.Security.yn3zcskz4j.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33688"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yn3zcskz4j"},{"Name":"integrity","Value":"sha256-pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ="},{"Name":"label","Value":"_framework/System.Net.Security.wasm.gz"}]},{"Route":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm","AssetFile":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"30485"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37wbq4jfsy"},{"Name":"integrity","Value":"sha256-Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho="},{"Name":"label","Value":"_framework/System.Net.ServerSentEvents.wasm"}]},{"Route":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm","AssetFile":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000068175620"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14667"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37wbq4jfsy"},{"Name":"integrity","Value":"sha256-Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho="},{"Name":"label","Value":"_framework/System.Net.ServerSentEvents.wasm"},{"Name":"original-resource","Value":"\"Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho=\""}]},{"Route":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm.gz","AssetFile":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14667"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37wbq4jfsy"},{"Name":"integrity","Value":"sha256-FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o="},{"Name":"label","Value":"_framework/System.Net.ServerSentEvents.wasm.gz"}]},{"Route":"_framework/System.Net.ServerSentEvents.wasm","AssetFile":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"30485"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho="}]},{"Route":"_framework/System.Net.ServerSentEvents.wasm","AssetFile":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000068175620"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14667"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho="},{"Name":"original-resource","Value":"\"Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho=\""}]},{"Route":"_framework/System.Net.ServerSentEvents.wasm.gz","AssetFile":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14667"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o="}]},{"Route":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm","AssetFile":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j436yqvrg9"},{"Name":"integrity","Value":"sha256-rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg="},{"Name":"label","Value":"_framework/System.Net.ServicePoint.wasm"}]},{"Route":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm","AssetFile":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000458715596"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2179"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j436yqvrg9"},{"Name":"integrity","Value":"sha256-rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg="},{"Name":"label","Value":"_framework/System.Net.ServicePoint.wasm"},{"Name":"original-resource","Value":"\"rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg=\""}]},{"Route":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm.gz","AssetFile":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2179"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j436yqvrg9"},{"Name":"integrity","Value":"sha256-NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI="},{"Name":"label","Value":"_framework/System.Net.ServicePoint.wasm.gz"}]},{"Route":"_framework/System.Net.ServicePoint.wasm","AssetFile":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg="}]},{"Route":"_framework/System.Net.ServicePoint.wasm","AssetFile":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000458715596"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2179"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg="},{"Name":"original-resource","Value":"\"rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg=\""}]},{"Route":"_framework/System.Net.ServicePoint.wasm.gz","AssetFile":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2179"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI="}]},{"Route":"_framework/System.Net.Sockets.utzdm9sw2p.wasm","AssetFile":"_framework/System.Net.Sockets.utzdm9sw2p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"64277"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"utzdm9sw2p"},{"Name":"integrity","Value":"sha256-olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo="},{"Name":"label","Value":"_framework/System.Net.Sockets.wasm"}]},{"Route":"_framework/System.Net.Sockets.utzdm9sw2p.wasm","AssetFile":"_framework/System.Net.Sockets.utzdm9sw2p.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000043631921"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22918"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"utzdm9sw2p"},{"Name":"integrity","Value":"sha256-olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo="},{"Name":"label","Value":"_framework/System.Net.Sockets.wasm"},{"Name":"original-resource","Value":"\"olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo=\""}]},{"Route":"_framework/System.Net.Sockets.utzdm9sw2p.wasm.gz","AssetFile":"_framework/System.Net.Sockets.utzdm9sw2p.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22918"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"utzdm9sw2p"},{"Name":"integrity","Value":"sha256-XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI="},{"Name":"label","Value":"_framework/System.Net.Sockets.wasm.gz"}]},{"Route":"_framework/System.Net.Sockets.wasm","AssetFile":"_framework/System.Net.Sockets.utzdm9sw2p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"64277"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo="}]},{"Route":"_framework/System.Net.Sockets.wasm","AssetFile":"_framework/System.Net.Sockets.utzdm9sw2p.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000043631921"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22918"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo="},{"Name":"original-resource","Value":"\"olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo=\""}]},{"Route":"_framework/System.Net.Sockets.wasm.gz","AssetFile":"_framework/System.Net.Sockets.utzdm9sw2p.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22918"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI="}]},{"Route":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm","AssetFile":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e5a4gx4ylt"},{"Name":"integrity","Value":"sha256-YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk="},{"Name":"label","Value":"_framework/System.Net.WebClient.wasm"}]},{"Route":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm","AssetFile":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067870232"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e5a4gx4ylt"},{"Name":"integrity","Value":"sha256-YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk="},{"Name":"label","Value":"_framework/System.Net.WebClient.wasm"},{"Name":"original-resource","Value":"\"YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk=\""}]},{"Route":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm.gz","AssetFile":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e5a4gx4ylt"},{"Name":"integrity","Value":"sha256-FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI="},{"Name":"label","Value":"_framework/System.Net.WebClient.wasm.gz"}]},{"Route":"_framework/System.Net.WebClient.wasm","AssetFile":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk="}]},{"Route":"_framework/System.Net.WebClient.wasm","AssetFile":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067870232"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk="},{"Name":"original-resource","Value":"\"YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk=\""}]},{"Route":"_framework/System.Net.WebClient.wasm.gz","AssetFile":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI="}]},{"Route":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm","AssetFile":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rbzkmij005"},{"Name":"integrity","Value":"sha256-132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE="},{"Name":"label","Value":"_framework/System.Net.WebHeaderCollection.wasm"}]},{"Route":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm","AssetFile":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000097952787"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10208"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rbzkmij005"},{"Name":"integrity","Value":"sha256-132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE="},{"Name":"label","Value":"_framework/System.Net.WebHeaderCollection.wasm"},{"Name":"original-resource","Value":"\"132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE=\""}]},{"Route":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm.gz","AssetFile":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10208"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rbzkmij005"},{"Name":"integrity","Value":"sha256-y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU="},{"Name":"label","Value":"_framework/System.Net.WebHeaderCollection.wasm.gz"}]},{"Route":"_framework/System.Net.WebHeaderCollection.wasm","AssetFile":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE="}]},{"Route":"_framework/System.Net.WebHeaderCollection.wasm","AssetFile":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000097952787"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10208"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE="},{"Name":"original-resource","Value":"\"132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE=\""}]},{"Route":"_framework/System.Net.WebHeaderCollection.wasm.gz","AssetFile":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10208"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU="}]},{"Route":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm","AssetFile":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"38jcv8jeeu"},{"Name":"integrity","Value":"sha256-UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok="},{"Name":"label","Value":"_framework/System.Net.WebProxy.wasm"}]},{"Route":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm","AssetFile":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000177872643"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5621"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"38jcv8jeeu"},{"Name":"integrity","Value":"sha256-UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok="},{"Name":"label","Value":"_framework/System.Net.WebProxy.wasm"},{"Name":"original-resource","Value":"\"UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok=\""}]},{"Route":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm.gz","AssetFile":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5621"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"38jcv8jeeu"},{"Name":"integrity","Value":"sha256-8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA="},{"Name":"label","Value":"_framework/System.Net.WebProxy.wasm.gz"}]},{"Route":"_framework/System.Net.WebProxy.wasm","AssetFile":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok="}]},{"Route":"_framework/System.Net.WebProxy.wasm","AssetFile":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000177872643"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5621"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok="},{"Name":"original-resource","Value":"\"UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok=\""}]},{"Route":"_framework/System.Net.WebProxy.wasm.gz","AssetFile":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5621"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA="}]},{"Route":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm","AssetFile":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"42261"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nv5izr3rt6"},{"Name":"integrity","Value":"sha256-vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc="},{"Name":"label","Value":"_framework/System.Net.WebSockets.Client.wasm"}]},{"Route":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm","AssetFile":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000055803571"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17919"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nv5izr3rt6"},{"Name":"integrity","Value":"sha256-vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc="},{"Name":"label","Value":"_framework/System.Net.WebSockets.Client.wasm"},{"Name":"original-resource","Value":"\"vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc=\""}]},{"Route":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm.gz","AssetFile":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17919"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nv5izr3rt6"},{"Name":"integrity","Value":"sha256-XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY="},{"Name":"label","Value":"_framework/System.Net.WebSockets.Client.wasm.gz"}]},{"Route":"_framework/System.Net.WebSockets.Client.wasm","AssetFile":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"42261"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc="}]},{"Route":"_framework/System.Net.WebSockets.Client.wasm","AssetFile":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000055803571"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17919"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc="},{"Name":"original-resource","Value":"\"vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc=\""}]},{"Route":"_framework/System.Net.WebSockets.Client.wasm.gz","AssetFile":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17919"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY="}]},{"Route":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm","AssetFile":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"98581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hdzn84g6uh"},{"Name":"integrity","Value":"sha256-1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE="},{"Name":"label","Value":"_framework/System.Net.WebSockets.wasm"}]},{"Route":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm","AssetFile":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000024645718"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"40574"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hdzn84g6uh"},{"Name":"integrity","Value":"sha256-1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE="},{"Name":"label","Value":"_framework/System.Net.WebSockets.wasm"},{"Name":"original-resource","Value":"\"1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE=\""}]},{"Route":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm.gz","AssetFile":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"40574"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hdzn84g6uh"},{"Name":"integrity","Value":"sha256-dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo="},{"Name":"label","Value":"_framework/System.Net.WebSockets.wasm.gz"}]},{"Route":"_framework/System.Net.WebSockets.wasm","AssetFile":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"98581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE="}]},{"Route":"_framework/System.Net.WebSockets.wasm","AssetFile":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000024645718"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"40574"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE="},{"Name":"original-resource","Value":"\"1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE=\""}]},{"Route":"_framework/System.Net.WebSockets.wasm.gz","AssetFile":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"40574"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo="}]},{"Route":"_framework/System.Net.wasm","AssetFile":"_framework/System.Net.zku96ychk7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU="}]},{"Route":"_framework/System.Net.wasm","AssetFile":"_framework/System.Net.zku96ychk7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000362976407"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2754"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU="},{"Name":"original-resource","Value":"\"E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU=\""}]},{"Route":"_framework/System.Net.wasm.gz","AssetFile":"_framework/System.Net.zku96ychk7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2754"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY="}]},{"Route":"_framework/System.Net.zku96ychk7.wasm","AssetFile":"_framework/System.Net.zku96ychk7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zku96ychk7"},{"Name":"integrity","Value":"sha256-E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU="},{"Name":"label","Value":"_framework/System.Net.wasm"}]},{"Route":"_framework/System.Net.zku96ychk7.wasm","AssetFile":"_framework/System.Net.zku96ychk7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000362976407"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2754"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zku96ychk7"},{"Name":"integrity","Value":"sha256-E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU="},{"Name":"label","Value":"_framework/System.Net.wasm"},{"Name":"original-resource","Value":"\"E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU=\""}]},{"Route":"_framework/System.Net.zku96ychk7.wasm.gz","AssetFile":"_framework/System.Net.zku96ychk7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2754"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zku96ychk7"},{"Name":"integrity","Value":"sha256-boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY="},{"Name":"label","Value":"_framework/System.Net.wasm.gz"}]},{"Route":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm","AssetFile":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1l8xruz8uh"},{"Name":"integrity","Value":"sha256-tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg="},{"Name":"label","Value":"_framework/System.Numerics.Vectors.wasm"}]},{"Route":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm","AssetFile":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000439367311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1l8xruz8uh"},{"Name":"integrity","Value":"sha256-tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg="},{"Name":"label","Value":"_framework/System.Numerics.Vectors.wasm"},{"Name":"original-resource","Value":"\"tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg=\""}]},{"Route":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm.gz","AssetFile":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1l8xruz8uh"},{"Name":"integrity","Value":"sha256-XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q="},{"Name":"label","Value":"_framework/System.Numerics.Vectors.wasm.gz"}]},{"Route":"_framework/System.Numerics.Vectors.wasm","AssetFile":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg="}]},{"Route":"_framework/System.Numerics.Vectors.wasm","AssetFile":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000439367311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg="},{"Name":"original-resource","Value":"\"tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg=\""}]},{"Route":"_framework/System.Numerics.Vectors.wasm.gz","AssetFile":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q="}]},{"Route":"_framework/System.Numerics.on9qk50okp.wasm","AssetFile":"_framework/System.Numerics.on9qk50okp.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"on9qk50okp"},{"Name":"integrity","Value":"sha256-ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk="},{"Name":"label","Value":"_framework/System.Numerics.wasm"}]},{"Route":"_framework/System.Numerics.on9qk50okp.wasm","AssetFile":"_framework/System.Numerics.on9qk50okp.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000490677134"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2037"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"on9qk50okp"},{"Name":"integrity","Value":"sha256-ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk="},{"Name":"label","Value":"_framework/System.Numerics.wasm"},{"Name":"original-resource","Value":"\"ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk=\""}]},{"Route":"_framework/System.Numerics.on9qk50okp.wasm.gz","AssetFile":"_framework/System.Numerics.on9qk50okp.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2037"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"on9qk50okp"},{"Name":"integrity","Value":"sha256-voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ="},{"Name":"label","Value":"_framework/System.Numerics.wasm.gz"}]},{"Route":"_framework/System.Numerics.wasm","AssetFile":"_framework/System.Numerics.on9qk50okp.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk="}]},{"Route":"_framework/System.Numerics.wasm","AssetFile":"_framework/System.Numerics.on9qk50okp.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000490677134"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2037"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk="},{"Name":"original-resource","Value":"\"ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk=\""}]},{"Route":"_framework/System.Numerics.wasm.gz","AssetFile":"_framework/System.Numerics.on9qk50okp.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2037"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ="}]},{"Route":"_framework/System.ObjectModel.4omhtq90sd.wasm","AssetFile":"_framework/System.ObjectModel.4omhtq90sd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"30997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4omhtq90sd"},{"Name":"integrity","Value":"sha256-BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU="},{"Name":"label","Value":"_framework/System.ObjectModel.wasm"}]},{"Route":"_framework/System.ObjectModel.4omhtq90sd.wasm","AssetFile":"_framework/System.ObjectModel.4omhtq90sd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000074867111"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13356"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4omhtq90sd"},{"Name":"integrity","Value":"sha256-BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU="},{"Name":"label","Value":"_framework/System.ObjectModel.wasm"},{"Name":"original-resource","Value":"\"BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU=\""}]},{"Route":"_framework/System.ObjectModel.4omhtq90sd.wasm.gz","AssetFile":"_framework/System.ObjectModel.4omhtq90sd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13356"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4omhtq90sd"},{"Name":"integrity","Value":"sha256-RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw="},{"Name":"label","Value":"_framework/System.ObjectModel.wasm.gz"}]},{"Route":"_framework/System.ObjectModel.wasm","AssetFile":"_framework/System.ObjectModel.4omhtq90sd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"30997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU="}]},{"Route":"_framework/System.ObjectModel.wasm","AssetFile":"_framework/System.ObjectModel.4omhtq90sd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000074867111"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13356"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU="},{"Name":"original-resource","Value":"\"BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU=\""}]},{"Route":"_framework/System.ObjectModel.wasm.gz","AssetFile":"_framework/System.ObjectModel.4omhtq90sd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13356"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw="}]},{"Route":"_framework/System.Private.CoreLib.koxlwnosh6.wasm","AssetFile":"_framework/System.Private.CoreLib.koxlwnosh6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4869401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"koxlwnosh6"},{"Name":"integrity","Value":"sha256-xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg="},{"Name":"label","Value":"_framework/System.Private.CoreLib.wasm"}]},{"Route":"_framework/System.Private.CoreLib.koxlwnosh6.wasm","AssetFile":"_framework/System.Private.CoreLib.koxlwnosh6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000644190"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1552335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"koxlwnosh6"},{"Name":"integrity","Value":"sha256-xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg="},{"Name":"label","Value":"_framework/System.Private.CoreLib.wasm"},{"Name":"original-resource","Value":"\"xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg=\""}]},{"Route":"_framework/System.Private.CoreLib.koxlwnosh6.wasm.gz","AssetFile":"_framework/System.Private.CoreLib.koxlwnosh6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1552335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"koxlwnosh6"},{"Name":"integrity","Value":"sha256-8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw="},{"Name":"label","Value":"_framework/System.Private.CoreLib.wasm.gz"}]},{"Route":"_framework/System.Private.CoreLib.wasm","AssetFile":"_framework/System.Private.CoreLib.koxlwnosh6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4869401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg="}]},{"Route":"_framework/System.Private.CoreLib.wasm","AssetFile":"_framework/System.Private.CoreLib.koxlwnosh6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000644190"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1552335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg="},{"Name":"original-resource","Value":"\"xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg=\""}]},{"Route":"_framework/System.Private.CoreLib.wasm.gz","AssetFile":"_framework/System.Private.CoreLib.koxlwnosh6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1552335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw="}]},{"Route":"_framework/System.Private.DataContractSerialization.wasm","AssetFile":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"849173"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs="}]},{"Route":"_framework/System.Private.DataContractSerialization.wasm","AssetFile":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003313518"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"301793"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs="},{"Name":"original-resource","Value":"\"qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs=\""}]},{"Route":"_framework/System.Private.DataContractSerialization.wasm.gz","AssetFile":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"301793"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E="}]},{"Route":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm","AssetFile":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"849173"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zlwtcvnuqv"},{"Name":"integrity","Value":"sha256-qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs="},{"Name":"label","Value":"_framework/System.Private.DataContractSerialization.wasm"}]},{"Route":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm","AssetFile":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003313518"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"301793"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zlwtcvnuqv"},{"Name":"integrity","Value":"sha256-qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs="},{"Name":"label","Value":"_framework/System.Private.DataContractSerialization.wasm"},{"Name":"original-resource","Value":"\"qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs=\""}]},{"Route":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm.gz","AssetFile":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"301793"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zlwtcvnuqv"},{"Name":"integrity","Value":"sha256-U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E="},{"Name":"label","Value":"_framework/System.Private.DataContractSerialization.wasm.gz"}]},{"Route":"_framework/System.Private.Uri.clehp4avpy.wasm","AssetFile":"_framework/System.Private.Uri.clehp4avpy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"95509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clehp4avpy"},{"Name":"integrity","Value":"sha256-IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU="},{"Name":"label","Value":"_framework/System.Private.Uri.wasm"}]},{"Route":"_framework/System.Private.Uri.clehp4avpy.wasm","AssetFile":"_framework/System.Private.Uri.clehp4avpy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023629490"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42319"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clehp4avpy"},{"Name":"integrity","Value":"sha256-IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU="},{"Name":"label","Value":"_framework/System.Private.Uri.wasm"},{"Name":"original-resource","Value":"\"IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU=\""}]},{"Route":"_framework/System.Private.Uri.clehp4avpy.wasm.gz","AssetFile":"_framework/System.Private.Uri.clehp4avpy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42319"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clehp4avpy"},{"Name":"integrity","Value":"sha256-jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8="},{"Name":"label","Value":"_framework/System.Private.Uri.wasm.gz"}]},{"Route":"_framework/System.Private.Uri.wasm","AssetFile":"_framework/System.Private.Uri.clehp4avpy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"95509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU="}]},{"Route":"_framework/System.Private.Uri.wasm","AssetFile":"_framework/System.Private.Uri.clehp4avpy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023629490"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42319"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU="},{"Name":"original-resource","Value":"\"IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU=\""}]},{"Route":"_framework/System.Private.Uri.wasm.gz","AssetFile":"_framework/System.Private.Uri.clehp4avpy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42319"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8="}]},{"Route":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm","AssetFile":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"143637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ga3n3gh9b6"},{"Name":"integrity","Value":"sha256-aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0="},{"Name":"label","Value":"_framework/System.Private.Xml.Linq.wasm"}]},{"Route":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm","AssetFile":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017054951"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"58633"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ga3n3gh9b6"},{"Name":"integrity","Value":"sha256-aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0="},{"Name":"label","Value":"_framework/System.Private.Xml.Linq.wasm"},{"Name":"original-resource","Value":"\"aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0=\""}]},{"Route":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm.gz","AssetFile":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"58633"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ga3n3gh9b6"},{"Name":"integrity","Value":"sha256-wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g="},{"Name":"label","Value":"_framework/System.Private.Xml.Linq.wasm.gz"}]},{"Route":"_framework/System.Private.Xml.Linq.wasm","AssetFile":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"143637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0="}]},{"Route":"_framework/System.Private.Xml.Linq.wasm","AssetFile":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017054951"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"58633"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0="},{"Name":"original-resource","Value":"\"aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0=\""}]},{"Route":"_framework/System.Private.Xml.Linq.wasm.gz","AssetFile":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"58633"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g="}]},{"Route":"_framework/System.Private.Xml.g9rvjereoe.wasm","AssetFile":"_framework/System.Private.Xml.g9rvjereoe.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3095833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g9rvjereoe"},{"Name":"integrity","Value":"sha256-xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0="},{"Name":"label","Value":"_framework/System.Private.Xml.wasm"}]},{"Route":"_framework/System.Private.Xml.g9rvjereoe.wasm","AssetFile":"_framework/System.Private.Xml.g9rvjereoe.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000949553"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1053126"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g9rvjereoe"},{"Name":"integrity","Value":"sha256-xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0="},{"Name":"label","Value":"_framework/System.Private.Xml.wasm"},{"Name":"original-resource","Value":"\"xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0=\""}]},{"Route":"_framework/System.Private.Xml.g9rvjereoe.wasm.gz","AssetFile":"_framework/System.Private.Xml.g9rvjereoe.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1053126"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g9rvjereoe"},{"Name":"integrity","Value":"sha256-K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw="},{"Name":"label","Value":"_framework/System.Private.Xml.wasm.gz"}]},{"Route":"_framework/System.Private.Xml.wasm","AssetFile":"_framework/System.Private.Xml.g9rvjereoe.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3095833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0="}]},{"Route":"_framework/System.Private.Xml.wasm","AssetFile":"_framework/System.Private.Xml.g9rvjereoe.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000949553"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1053126"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0="},{"Name":"original-resource","Value":"\"xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0=\""}]},{"Route":"_framework/System.Private.Xml.wasm.gz","AssetFile":"_framework/System.Private.Xml.g9rvjereoe.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1053126"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw="}]},{"Route":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm","AssetFile":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27925"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7qn4zpc0q"},{"Name":"integrity","Value":"sha256-mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME="},{"Name":"label","Value":"_framework/System.Reflection.DispatchProxy.wasm"}]},{"Route":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm","AssetFile":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000078814628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12687"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7qn4zpc0q"},{"Name":"integrity","Value":"sha256-mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME="},{"Name":"label","Value":"_framework/System.Reflection.DispatchProxy.wasm"},{"Name":"original-resource","Value":"\"mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME=\""}]},{"Route":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm.gz","AssetFile":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12687"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7qn4zpc0q"},{"Name":"integrity","Value":"sha256-VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w="},{"Name":"label","Value":"_framework/System.Reflection.DispatchProxy.wasm.gz"}]},{"Route":"_framework/System.Reflection.DispatchProxy.wasm","AssetFile":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"27925"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME="}]},{"Route":"_framework/System.Reflection.DispatchProxy.wasm","AssetFile":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000078814628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12687"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME="},{"Name":"original-resource","Value":"\"mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME=\""}]},{"Route":"_framework/System.Reflection.DispatchProxy.wasm.gz","AssetFile":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12687"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w="}]},{"Route":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm","AssetFile":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"122645"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3t7flfwg7o"},{"Name":"integrity","Value":"sha256-uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8="},{"Name":"label","Value":"_framework/System.Reflection.Emit.wasm"}]},{"Route":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm","AssetFile":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018778637"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"53251"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3t7flfwg7o"},{"Name":"integrity","Value":"sha256-uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8="},{"Name":"label","Value":"_framework/System.Reflection.Emit.wasm"},{"Name":"original-resource","Value":"\"uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8=\""}]},{"Route":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm.gz","AssetFile":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"53251"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3t7flfwg7o"},{"Name":"integrity","Value":"sha256-2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ="},{"Name":"label","Value":"_framework/System.Reflection.Emit.wasm.gz"}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.wasm","AssetFile":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80="}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.wasm","AssetFile":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000437828371"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2283"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80="},{"Name":"original-resource","Value":"\"ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80=\""}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.wasm.gz","AssetFile":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2283"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE="}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm","AssetFile":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0vkqyycss"},{"Name":"integrity","Value":"sha256-ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80="},{"Name":"label","Value":"_framework/System.Reflection.Emit.ILGeneration.wasm"}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm","AssetFile":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000437828371"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2283"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0vkqyycss"},{"Name":"integrity","Value":"sha256-ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80="},{"Name":"label","Value":"_framework/System.Reflection.Emit.ILGeneration.wasm"},{"Name":"original-resource","Value":"\"ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80=\""}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm.gz","AssetFile":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2283"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0vkqyycss"},{"Name":"integrity","Value":"sha256-YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE="},{"Name":"label","Value":"_framework/System.Reflection.Emit.ILGeneration.wasm.gz"}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm","AssetFile":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3tzjd7znni"},{"Name":"integrity","Value":"sha256-B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k="},{"Name":"label","Value":"_framework/System.Reflection.Emit.Lightweight.wasm"}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm","AssetFile":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000446827525"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3tzjd7znni"},{"Name":"integrity","Value":"sha256-B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k="},{"Name":"label","Value":"_framework/System.Reflection.Emit.Lightweight.wasm"},{"Name":"original-resource","Value":"\"B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k=\""}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm.gz","AssetFile":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3tzjd7znni"},{"Name":"integrity","Value":"sha256-XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk="},{"Name":"label","Value":"_framework/System.Reflection.Emit.Lightweight.wasm.gz"}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.wasm","AssetFile":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k="}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.wasm","AssetFile":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000446827525"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k="},{"Name":"original-resource","Value":"\"B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k=\""}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.wasm.gz","AssetFile":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk="}]},{"Route":"_framework/System.Reflection.Emit.wasm","AssetFile":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"122645"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8="}]},{"Route":"_framework/System.Reflection.Emit.wasm","AssetFile":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018778637"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"53251"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8="},{"Name":"original-resource","Value":"\"uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8=\""}]},{"Route":"_framework/System.Reflection.Emit.wasm.gz","AssetFile":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"53251"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ="}]},{"Route":"_framework/System.Reflection.Extensions.wasm","AssetFile":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo="}]},{"Route":"_framework/System.Reflection.Extensions.wasm","AssetFile":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000462107209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2163"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo="},{"Name":"original-resource","Value":"\"xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo=\""}]},{"Route":"_framework/System.Reflection.Extensions.wasm.gz","AssetFile":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2163"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4="}]},{"Route":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm","AssetFile":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ymwga5opgl"},{"Name":"integrity","Value":"sha256-xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo="},{"Name":"label","Value":"_framework/System.Reflection.Extensions.wasm"}]},{"Route":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm","AssetFile":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000462107209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2163"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ymwga5opgl"},{"Name":"integrity","Value":"sha256-xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo="},{"Name":"label","Value":"_framework/System.Reflection.Extensions.wasm"},{"Name":"original-resource","Value":"\"xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo=\""}]},{"Route":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm.gz","AssetFile":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2163"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ymwga5opgl"},{"Name":"integrity","Value":"sha256-QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4="},{"Name":"label","Value":"_framework/System.Reflection.Extensions.wasm.gz"}]},{"Route":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm","AssetFile":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"493333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9lgg9wjd2a"},{"Name":"integrity","Value":"sha256-/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0="},{"Name":"label","Value":"_framework/System.Reflection.Metadata.wasm"}]},{"Route":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm","AssetFile":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005202589"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"192211"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9lgg9wjd2a"},{"Name":"integrity","Value":"sha256-/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0="},{"Name":"label","Value":"_framework/System.Reflection.Metadata.wasm"},{"Name":"original-resource","Value":"\"/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0=\""}]},{"Route":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm.gz","AssetFile":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"192211"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9lgg9wjd2a"},{"Name":"integrity","Value":"sha256-bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM="},{"Name":"label","Value":"_framework/System.Reflection.Metadata.wasm.gz"}]},{"Route":"_framework/System.Reflection.Metadata.wasm","AssetFile":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"493333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0="}]},{"Route":"_framework/System.Reflection.Metadata.wasm","AssetFile":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005202589"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"192211"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0="},{"Name":"original-resource","Value":"\"/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0=\""}]},{"Route":"_framework/System.Reflection.Metadata.wasm.gz","AssetFile":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"192211"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM="}]},{"Route":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm","AssetFile":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"n2ngq6as7g"},{"Name":"integrity","Value":"sha256-z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY="},{"Name":"label","Value":"_framework/System.Reflection.Primitives.wasm"}]},{"Route":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm","AssetFile":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000423190859"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"n2ngq6as7g"},{"Name":"integrity","Value":"sha256-z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY="},{"Name":"label","Value":"_framework/System.Reflection.Primitives.wasm"},{"Name":"original-resource","Value":"\"z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY=\""}]},{"Route":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm.gz","AssetFile":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"n2ngq6as7g"},{"Name":"integrity","Value":"sha256-DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac="},{"Name":"label","Value":"_framework/System.Reflection.Primitives.wasm.gz"}]},{"Route":"_framework/System.Reflection.Primitives.wasm","AssetFile":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY="}]},{"Route":"_framework/System.Reflection.Primitives.wasm","AssetFile":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000423190859"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY="},{"Name":"original-resource","Value":"\"z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY=\""}]},{"Route":"_framework/System.Reflection.Primitives.wasm.gz","AssetFile":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac="}]},{"Route":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm","AssetFile":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"14101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ivmzcfvrc6"},{"Name":"integrity","Value":"sha256-jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0="},{"Name":"label","Value":"_framework/System.Reflection.TypeExtensions.wasm"}]},{"Route":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm","AssetFile":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000170561146"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ivmzcfvrc6"},{"Name":"integrity","Value":"sha256-jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0="},{"Name":"label","Value":"_framework/System.Reflection.TypeExtensions.wasm"},{"Name":"original-resource","Value":"\"jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0=\""}]},{"Route":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm.gz","AssetFile":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ivmzcfvrc6"},{"Name":"integrity","Value":"sha256-UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY="},{"Name":"label","Value":"_framework/System.Reflection.TypeExtensions.wasm.gz"}]},{"Route":"_framework/System.Reflection.TypeExtensions.wasm","AssetFile":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"14101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0="}]},{"Route":"_framework/System.Reflection.TypeExtensions.wasm","AssetFile":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000170561146"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0="},{"Name":"original-resource","Value":"\"jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0=\""}]},{"Route":"_framework/System.Reflection.TypeExtensions.wasm.gz","AssetFile":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY="}]},{"Route":"_framework/System.Reflection.v4mfyzbte8.wasm","AssetFile":"_framework/System.Reflection.v4mfyzbte8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v4mfyzbte8"},{"Name":"integrity","Value":"sha256-MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw="},{"Name":"label","Value":"_framework/System.Reflection.wasm"}]},{"Route":"_framework/System.Reflection.v4mfyzbte8.wasm","AssetFile":"_framework/System.Reflection.v4mfyzbte8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000404530744"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2471"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v4mfyzbte8"},{"Name":"integrity","Value":"sha256-MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw="},{"Name":"label","Value":"_framework/System.Reflection.wasm"},{"Name":"original-resource","Value":"\"MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw=\""}]},{"Route":"_framework/System.Reflection.v4mfyzbte8.wasm.gz","AssetFile":"_framework/System.Reflection.v4mfyzbte8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2471"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v4mfyzbte8"},{"Name":"integrity","Value":"sha256-/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng="},{"Name":"label","Value":"_framework/System.Reflection.wasm.gz"}]},{"Route":"_framework/System.Reflection.wasm","AssetFile":"_framework/System.Reflection.v4mfyzbte8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw="}]},{"Route":"_framework/System.Reflection.wasm","AssetFile":"_framework/System.Reflection.v4mfyzbte8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000404530744"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2471"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw="},{"Name":"original-resource","Value":"\"MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw=\""}]},{"Route":"_framework/System.Reflection.wasm.gz","AssetFile":"_framework/System.Reflection.v4mfyzbte8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2471"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng="}]},{"Route":"_framework/System.Resources.Reader.c9z9nieytf.wasm","AssetFile":"_framework/System.Resources.Reader.c9z9nieytf.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c9z9nieytf"},{"Name":"integrity","Value":"sha256-QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8="},{"Name":"label","Value":"_framework/System.Resources.Reader.wasm"}]},{"Route":"_framework/System.Resources.Reader.c9z9nieytf.wasm","AssetFile":"_framework/System.Resources.Reader.c9z9nieytf.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000469043152"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2131"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c9z9nieytf"},{"Name":"integrity","Value":"sha256-QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8="},{"Name":"label","Value":"_framework/System.Resources.Reader.wasm"},{"Name":"original-resource","Value":"\"QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8=\""}]},{"Route":"_framework/System.Resources.Reader.c9z9nieytf.wasm.gz","AssetFile":"_framework/System.Resources.Reader.c9z9nieytf.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2131"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c9z9nieytf"},{"Name":"integrity","Value":"sha256-1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI="},{"Name":"label","Value":"_framework/System.Resources.Reader.wasm.gz"}]},{"Route":"_framework/System.Resources.Reader.wasm","AssetFile":"_framework/System.Resources.Reader.c9z9nieytf.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8="}]},{"Route":"_framework/System.Resources.Reader.wasm","AssetFile":"_framework/System.Resources.Reader.c9z9nieytf.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000469043152"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2131"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8="},{"Name":"original-resource","Value":"\"QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8=\""}]},{"Route":"_framework/System.Resources.Reader.wasm.gz","AssetFile":"_framework/System.Resources.Reader.c9z9nieytf.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2131"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI="}]},{"Route":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm","AssetFile":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f3fiwdwb50"},{"Name":"integrity","Value":"sha256-61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw="},{"Name":"label","Value":"_framework/System.Resources.ResourceManager.wasm"}]},{"Route":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm","AssetFile":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000444642063"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2248"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f3fiwdwb50"},{"Name":"integrity","Value":"sha256-61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw="},{"Name":"label","Value":"_framework/System.Resources.ResourceManager.wasm"},{"Name":"original-resource","Value":"\"61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw=\""}]},{"Route":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm.gz","AssetFile":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2248"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f3fiwdwb50"},{"Name":"integrity","Value":"sha256-yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg="},{"Name":"label","Value":"_framework/System.Resources.ResourceManager.wasm.gz"}]},{"Route":"_framework/System.Resources.ResourceManager.wasm","AssetFile":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw="}]},{"Route":"_framework/System.Resources.ResourceManager.wasm","AssetFile":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000444642063"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2248"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw="},{"Name":"original-resource","Value":"\"61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw=\""}]},{"Route":"_framework/System.Resources.ResourceManager.wasm.gz","AssetFile":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2248"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg="}]},{"Route":"_framework/System.Resources.Writer.tx9namivq6.wasm","AssetFile":"_framework/System.Resources.Writer.tx9namivq6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"16661"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tx9namivq6"},{"Name":"integrity","Value":"sha256-EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw="},{"Name":"label","Value":"_framework/System.Resources.Writer.wasm"}]},{"Route":"_framework/System.Resources.Writer.tx9namivq6.wasm","AssetFile":"_framework/System.Resources.Writer.tx9namivq6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000131839156"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7584"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tx9namivq6"},{"Name":"integrity","Value":"sha256-EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw="},{"Name":"label","Value":"_framework/System.Resources.Writer.wasm"},{"Name":"original-resource","Value":"\"EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw=\""}]},{"Route":"_framework/System.Resources.Writer.tx9namivq6.wasm.gz","AssetFile":"_framework/System.Resources.Writer.tx9namivq6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7584"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tx9namivq6"},{"Name":"integrity","Value":"sha256-mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw="},{"Name":"label","Value":"_framework/System.Resources.Writer.wasm.gz"}]},{"Route":"_framework/System.Resources.Writer.wasm","AssetFile":"_framework/System.Resources.Writer.tx9namivq6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"16661"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw="}]},{"Route":"_framework/System.Resources.Writer.wasm","AssetFile":"_framework/System.Resources.Writer.tx9namivq6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000131839156"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7584"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw="},{"Name":"original-resource","Value":"\"EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw=\""}]},{"Route":"_framework/System.Resources.Writer.wasm.gz","AssetFile":"_framework/System.Resources.Writer.tx9namivq6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7584"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw="}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5yw8jyjkyt"},{"Name":"integrity","Value":"sha256-M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.Unsafe.wasm"}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000468164794"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2135"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5yw8jyjkyt"},{"Name":"integrity","Value":"sha256-M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.Unsafe.wasm"},{"Name":"original-resource","Value":"\"M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc=\""}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm.gz","AssetFile":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2135"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5yw8jyjkyt"},{"Name":"integrity","Value":"sha256-b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.Unsafe.wasm.gz"}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc="}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000468164794"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2135"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc="},{"Name":"original-resource","Value":"\"M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc=\""}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.wasm.gz","AssetFile":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2135"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks="}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ddbsai2xh9"},{"Name":"integrity","Value":"sha256-b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.VisualC.wasm"}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000327868852"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3049"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ddbsai2xh9"},{"Name":"integrity","Value":"sha256-b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.VisualC.wasm"},{"Name":"original-resource","Value":"\"b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM=\""}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm.gz","AssetFile":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3049"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ddbsai2xh9"},{"Name":"integrity","Value":"sha256-XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.VisualC.wasm.gz"}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM="}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000327868852"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3049"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM="},{"Name":"original-resource","Value":"\"b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM=\""}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.wasm.gz","AssetFile":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3049"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo="}]},{"Route":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm","AssetFile":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"7445"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f4fqaba1oz"},{"Name":"integrity","Value":"sha256-8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8="},{"Name":"label","Value":"_framework/System.Runtime.Extensions.wasm"}]},{"Route":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm","AssetFile":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000333555704"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f4fqaba1oz"},{"Name":"integrity","Value":"sha256-8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8="},{"Name":"label","Value":"_framework/System.Runtime.Extensions.wasm"},{"Name":"original-resource","Value":"\"8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8=\""}]},{"Route":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm.gz","AssetFile":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f4fqaba1oz"},{"Name":"integrity","Value":"sha256-UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM="},{"Name":"label","Value":"_framework/System.Runtime.Extensions.wasm.gz"}]},{"Route":"_framework/System.Runtime.Extensions.wasm","AssetFile":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"7445"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8="}]},{"Route":"_framework/System.Runtime.Extensions.wasm","AssetFile":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000333555704"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8="},{"Name":"original-resource","Value":"\"8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8=\""}]},{"Route":"_framework/System.Runtime.Extensions.wasm.gz","AssetFile":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM="}]},{"Route":"_framework/System.Runtime.Handles.kpe61fymig.wasm","AssetFile":"_framework/System.Runtime.Handles.kpe61fymig.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kpe61fymig"},{"Name":"integrity","Value":"sha256-+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ="},{"Name":"label","Value":"_framework/System.Runtime.Handles.wasm"}]},{"Route":"_framework/System.Runtime.Handles.kpe61fymig.wasm","AssetFile":"_framework/System.Runtime.Handles.kpe61fymig.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000451467269"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2214"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kpe61fymig"},{"Name":"integrity","Value":"sha256-+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ="},{"Name":"label","Value":"_framework/System.Runtime.Handles.wasm"},{"Name":"original-resource","Value":"\"+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ=\""}]},{"Route":"_framework/System.Runtime.Handles.kpe61fymig.wasm.gz","AssetFile":"_framework/System.Runtime.Handles.kpe61fymig.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2214"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kpe61fymig"},{"Name":"integrity","Value":"sha256-P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8="},{"Name":"label","Value":"_framework/System.Runtime.Handles.wasm.gz"}]},{"Route":"_framework/System.Runtime.Handles.wasm","AssetFile":"_framework/System.Runtime.Handles.kpe61fymig.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ="}]},{"Route":"_framework/System.Runtime.Handles.wasm","AssetFile":"_framework/System.Runtime.Handles.kpe61fymig.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000451467269"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2214"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ="},{"Name":"original-resource","Value":"\"+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ=\""}]},{"Route":"_framework/System.Runtime.Handles.wasm.gz","AssetFile":"_framework/System.Runtime.Handles.kpe61fymig.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2214"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8="}]},{"Route":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm","AssetFile":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"54549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"02r2ubft18"},{"Name":"integrity","Value":"sha256-iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.wasm"}]},{"Route":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm","AssetFile":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000042457436"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23552"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"02r2ubft18"},{"Name":"integrity","Value":"sha256-iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.wasm"},{"Name":"original-resource","Value":"\"iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI=\""}]},{"Route":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm.gz","AssetFile":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23552"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"02r2ubft18"},{"Name":"integrity","Value":"sha256-hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.wasm.gz"}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.wasm","AssetFile":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"79637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk="}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.wasm","AssetFile":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000031413942"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk="},{"Name":"original-resource","Value":"\"BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk=\""}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.wasm.gz","AssetFile":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A="}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm","AssetFile":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"79637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ythr5w8c2e"},{"Name":"integrity","Value":"sha256-BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.JavaScript.wasm"}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm","AssetFile":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000031413942"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ythr5w8c2e"},{"Name":"integrity","Value":"sha256-BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.JavaScript.wasm"},{"Name":"original-resource","Value":"\"BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk=\""}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm.gz","AssetFile":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ythr5w8c2e"},{"Name":"integrity","Value":"sha256-BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.JavaScript.wasm.gz"}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm","AssetFile":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"esodb2rpbi"},{"Name":"integrity","Value":"sha256-Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm"}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm","AssetFile":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000462962963"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2159"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"esodb2rpbi"},{"Name":"integrity","Value":"sha256-Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm"},{"Name":"original-resource","Value":"\"Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s=\""}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm.gz","AssetFile":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2159"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"esodb2rpbi"},{"Name":"integrity","Value":"sha256-XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm.gz"}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm","AssetFile":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s="}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm","AssetFile":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000462962963"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2159"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s="},{"Name":"original-resource","Value":"\"Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s=\""}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm.gz","AssetFile":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2159"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA="}]},{"Route":"_framework/System.Runtime.InteropServices.wasm","AssetFile":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"54549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI="}]},{"Route":"_framework/System.Runtime.InteropServices.wasm","AssetFile":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000042457436"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23552"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI="},{"Name":"original-resource","Value":"\"iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI=\""}]},{"Route":"_framework/System.Runtime.InteropServices.wasm.gz","AssetFile":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23552"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs="}]},{"Route":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm","AssetFile":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8lrpban8m"},{"Name":"integrity","Value":"sha256-vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk="},{"Name":"label","Value":"_framework/System.Runtime.Intrinsics.wasm"}]},{"Route":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm","AssetFile":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000351617440"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2843"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8lrpban8m"},{"Name":"integrity","Value":"sha256-vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk="},{"Name":"label","Value":"_framework/System.Runtime.Intrinsics.wasm"},{"Name":"original-resource","Value":"\"vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk=\""}]},{"Route":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm.gz","AssetFile":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2843"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8lrpban8m"},{"Name":"integrity","Value":"sha256-RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4="},{"Name":"label","Value":"_framework/System.Runtime.Intrinsics.wasm.gz"}]},{"Route":"_framework/System.Runtime.Intrinsics.wasm","AssetFile":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk="}]},{"Route":"_framework/System.Runtime.Intrinsics.wasm","AssetFile":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000351617440"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2843"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk="},{"Name":"original-resource","Value":"\"vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk=\""}]},{"Route":"_framework/System.Runtime.Intrinsics.wasm.gz","AssetFile":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2843"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4="}]},{"Route":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm","AssetFile":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bm8d2pac0a"},{"Name":"integrity","Value":"sha256-Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4="},{"Name":"label","Value":"_framework/System.Runtime.Loader.wasm"}]},{"Route":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm","AssetFile":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000429000429"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2330"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bm8d2pac0a"},{"Name":"integrity","Value":"sha256-Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4="},{"Name":"label","Value":"_framework/System.Runtime.Loader.wasm"},{"Name":"original-resource","Value":"\"Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4=\""}]},{"Route":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm.gz","AssetFile":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2330"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bm8d2pac0a"},{"Name":"integrity","Value":"sha256-InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns="},{"Name":"label","Value":"_framework/System.Runtime.Loader.wasm.gz"}]},{"Route":"_framework/System.Runtime.Loader.wasm","AssetFile":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4="}]},{"Route":"_framework/System.Runtime.Loader.wasm","AssetFile":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000429000429"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2330"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4="},{"Name":"original-resource","Value":"\"Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4=\""}]},{"Route":"_framework/System.Runtime.Loader.wasm.gz","AssetFile":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2330"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns="}]},{"Route":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm","AssetFile":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"134933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e3fl2oogjk"},{"Name":"integrity","Value":"sha256-Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4="},{"Name":"label","Value":"_framework/System.Runtime.Numerics.wasm"}]},{"Route":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm","AssetFile":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018948725"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"52773"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e3fl2oogjk"},{"Name":"integrity","Value":"sha256-Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4="},{"Name":"label","Value":"_framework/System.Runtime.Numerics.wasm"},{"Name":"original-resource","Value":"\"Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4=\""}]},{"Route":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm.gz","AssetFile":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"52773"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e3fl2oogjk"},{"Name":"integrity","Value":"sha256-aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs="},{"Name":"label","Value":"_framework/System.Runtime.Numerics.wasm.gz"}]},{"Route":"_framework/System.Runtime.Numerics.wasm","AssetFile":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"134933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4="}]},{"Route":"_framework/System.Runtime.Numerics.wasm","AssetFile":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018948725"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"52773"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4="},{"Name":"original-resource","Value":"\"Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4=\""}]},{"Route":"_framework/System.Runtime.Numerics.wasm.gz","AssetFile":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"52773"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs="}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm","AssetFile":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a0v88kqnif"},{"Name":"integrity","Value":"sha256-Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Formatters.wasm"}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm","AssetFile":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041467966"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24114"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a0v88kqnif"},{"Name":"integrity","Value":"sha256-Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Formatters.wasm"},{"Name":"original-resource","Value":"\"Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU=\""}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24114"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a0v88kqnif"},{"Name":"integrity","Value":"sha256-89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Formatters.wasm.gz"}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.wasm","AssetFile":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU="}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.wasm","AssetFile":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041467966"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24114"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU="},{"Name":"original-resource","Value":"\"Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU=\""}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24114"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4="}]},{"Route":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm","AssetFile":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pez04wd9mo"},{"Name":"integrity","Value":"sha256-vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Json.wasm"}]},{"Route":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm","AssetFile":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000441501104"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pez04wd9mo"},{"Name":"integrity","Value":"sha256-vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Json.wasm"},{"Name":"original-resource","Value":"\"vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw=\""}]},{"Route":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pez04wd9mo"},{"Name":"integrity","Value":"sha256-F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Json.wasm.gz"}]},{"Route":"_framework/System.Runtime.Serialization.Json.wasm","AssetFile":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw="}]},{"Route":"_framework/System.Runtime.Serialization.Json.wasm","AssetFile":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000441501104"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw="},{"Name":"original-resource","Value":"\"vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw=\""}]},{"Route":"_framework/System.Runtime.Serialization.Json.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM="}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.wasm","AssetFile":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY="}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.wasm","AssetFile":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000184501845"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY="},{"Name":"original-resource","Value":"\"hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY=\""}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g="}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm","AssetFile":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xy5d3j3dn1"},{"Name":"integrity","Value":"sha256-hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Primitives.wasm"}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm","AssetFile":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000184501845"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xy5d3j3dn1"},{"Name":"integrity","Value":"sha256-hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Primitives.wasm"},{"Name":"original-resource","Value":"\"hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY=\""}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xy5d3j3dn1"},{"Name":"integrity","Value":"sha256-nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Primitives.wasm.gz"}]},{"Route":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm","AssetFile":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mmwsbcsgly"},{"Name":"integrity","Value":"sha256-0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Xml.wasm"}]},{"Route":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm","AssetFile":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388953715"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2570"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mmwsbcsgly"},{"Name":"integrity","Value":"sha256-0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Xml.wasm"},{"Name":"original-resource","Value":"\"0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0=\""}]},{"Route":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2570"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mmwsbcsgly"},{"Name":"integrity","Value":"sha256-ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Xml.wasm.gz"}]},{"Route":"_framework/System.Runtime.Serialization.Xml.wasm","AssetFile":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0="}]},{"Route":"_framework/System.Runtime.Serialization.Xml.wasm","AssetFile":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388953715"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2570"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0="},{"Name":"original-resource","Value":"\"0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0=\""}]},{"Route":"_framework/System.Runtime.Serialization.Xml.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2570"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs="}]},{"Route":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm","AssetFile":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qfpmfujegm"},{"Name":"integrity","Value":"sha256-un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.wasm"}]},{"Route":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm","AssetFile":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000399042298"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2505"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qfpmfujegm"},{"Name":"integrity","Value":"sha256-un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.wasm"},{"Name":"original-resource","Value":"\"un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk=\""}]},{"Route":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2505"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qfpmfujegm"},{"Name":"integrity","Value":"sha256-wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.wasm.gz"}]},{"Route":"_framework/System.Runtime.Serialization.wasm","AssetFile":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk="}]},{"Route":"_framework/System.Runtime.Serialization.wasm","AssetFile":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000399042298"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2505"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk="},{"Name":"original-resource","Value":"\"un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk=\""}]},{"Route":"_framework/System.Runtime.Serialization.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2505"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g="}]},{"Route":"_framework/System.Runtime.k6ze2203p2.wasm","AssetFile":"_framework/System.Runtime.k6ze2203p2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6ze2203p2"},{"Name":"integrity","Value":"sha256-ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM="},{"Name":"label","Value":"_framework/System.Runtime.wasm"}]},{"Route":"_framework/System.Runtime.k6ze2203p2.wasm","AssetFile":"_framework/System.Runtime.k6ze2203p2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000092302012"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6ze2203p2"},{"Name":"integrity","Value":"sha256-ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM="},{"Name":"label","Value":"_framework/System.Runtime.wasm"},{"Name":"original-resource","Value":"\"ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM=\""}]},{"Route":"_framework/System.Runtime.k6ze2203p2.wasm.gz","AssetFile":"_framework/System.Runtime.k6ze2203p2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6ze2203p2"},{"Name":"integrity","Value":"sha256-yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4="},{"Name":"label","Value":"_framework/System.Runtime.wasm.gz"}]},{"Route":"_framework/System.Runtime.wasm","AssetFile":"_framework/System.Runtime.k6ze2203p2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM="}]},{"Route":"_framework/System.Runtime.wasm","AssetFile":"_framework/System.Runtime.k6ze2203p2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000092302012"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM="},{"Name":"original-resource","Value":"\"ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM=\""}]},{"Route":"_framework/System.Runtime.wasm.gz","AssetFile":"_framework/System.Runtime.k6ze2203p2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4="}]},{"Route":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm","AssetFile":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"47893"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4mxo8hy5cn"},{"Name":"integrity","Value":"sha256-1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA="},{"Name":"label","Value":"_framework/System.Security.AccessControl.wasm"}]},{"Route":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm","AssetFile":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000059421237"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4mxo8hy5cn"},{"Name":"integrity","Value":"sha256-1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA="},{"Name":"label","Value":"_framework/System.Security.AccessControl.wasm"},{"Name":"original-resource","Value":"\"1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA=\""}]},{"Route":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm.gz","AssetFile":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4mxo8hy5cn"},{"Name":"integrity","Value":"sha256-lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak="},{"Name":"label","Value":"_framework/System.Security.AccessControl.wasm.gz"}]},{"Route":"_framework/System.Security.AccessControl.wasm","AssetFile":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"47893"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA="}]},{"Route":"_framework/System.Security.AccessControl.wasm","AssetFile":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000059421237"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA="},{"Name":"original-resource","Value":"\"1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA=\""}]},{"Route":"_framework/System.Security.AccessControl.wasm.gz","AssetFile":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak="}]},{"Route":"_framework/System.Security.Claims.9n1yusa5e5.wasm","AssetFile":"_framework/System.Security.Claims.9n1yusa5e5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"44821"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9n1yusa5e5"},{"Name":"integrity","Value":"sha256-KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA="},{"Name":"label","Value":"_framework/System.Security.Claims.wasm"}]},{"Route":"_framework/System.Security.Claims.9n1yusa5e5.wasm","AssetFile":"_framework/System.Security.Claims.9n1yusa5e5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060397415"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16556"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9n1yusa5e5"},{"Name":"integrity","Value":"sha256-KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA="},{"Name":"label","Value":"_framework/System.Security.Claims.wasm"},{"Name":"original-resource","Value":"\"KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA=\""}]},{"Route":"_framework/System.Security.Claims.9n1yusa5e5.wasm.gz","AssetFile":"_framework/System.Security.Claims.9n1yusa5e5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16556"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9n1yusa5e5"},{"Name":"integrity","Value":"sha256-ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY="},{"Name":"label","Value":"_framework/System.Security.Claims.wasm.gz"}]},{"Route":"_framework/System.Security.Claims.wasm","AssetFile":"_framework/System.Security.Claims.9n1yusa5e5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"44821"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA="}]},{"Route":"_framework/System.Security.Claims.wasm","AssetFile":"_framework/System.Security.Claims.9n1yusa5e5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060397415"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16556"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA="},{"Name":"original-resource","Value":"\"KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA=\""}]},{"Route":"_framework/System.Security.Claims.wasm.gz","AssetFile":"_framework/System.Security.Claims.9n1yusa5e5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16556"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY="}]},{"Route":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm","AssetFile":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"642325"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5rp84ijz8t"},{"Name":"integrity","Value":"sha256-YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM="},{"Name":"label","Value":"_framework/System.Security.Cryptography.wasm"}]},{"Route":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm","AssetFile":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004398891"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"227329"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5rp84ijz8t"},{"Name":"integrity","Value":"sha256-YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM="},{"Name":"label","Value":"_framework/System.Security.Cryptography.wasm"},{"Name":"original-resource","Value":"\"YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM=\""}]},{"Route":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"227329"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5rp84ijz8t"},{"Name":"integrity","Value":"sha256-+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y="},{"Name":"label","Value":"_framework/System.Security.Cryptography.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm","AssetFile":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4dnz7b15a9"},{"Name":"integrity","Value":"sha256-CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Algorithms.wasm"}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm","AssetFile":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000368595651"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2712"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4dnz7b15a9"},{"Name":"integrity","Value":"sha256-CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Algorithms.wasm"},{"Name":"original-resource","Value":"\"CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0=\""}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2712"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4dnz7b15a9"},{"Name":"integrity","Value":"sha256-kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Algorithms.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.wasm","AssetFile":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0="}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.wasm","AssetFile":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000368595651"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2712"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0="},{"Name":"original-resource","Value":"\"CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0=\""}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2712"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A="}]},{"Route":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm","AssetFile":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyaxkkx3lb"},{"Name":"integrity","Value":"sha256-SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Cng.wasm"}]},{"Route":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm","AssetFile":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000403714170"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2476"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyaxkkx3lb"},{"Name":"integrity","Value":"sha256-SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Cng.wasm"},{"Name":"original-resource","Value":"\"SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug=\""}]},{"Route":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2476"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyaxkkx3lb"},{"Name":"integrity","Value":"sha256-xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Cng.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Cng.wasm","AssetFile":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug="}]},{"Route":"_framework/System.Security.Cryptography.Cng.wasm","AssetFile":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000403714170"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2476"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug="},{"Name":"original-resource","Value":"\"SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug=\""}]},{"Route":"_framework/System.Security.Cryptography.Cng.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2476"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178="}]},{"Route":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm","AssetFile":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"20t5iw27a6"},{"Name":"integrity","Value":"sha256-EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Csp.wasm"}]},{"Route":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm","AssetFile":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000428082192"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"20t5iw27a6"},{"Name":"integrity","Value":"sha256-EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Csp.wasm"},{"Name":"original-resource","Value":"\"EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M=\""}]},{"Route":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"20t5iw27a6"},{"Name":"integrity","Value":"sha256-lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Csp.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Csp.wasm","AssetFile":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M="}]},{"Route":"_framework/System.Security.Cryptography.Csp.wasm","AssetFile":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000428082192"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M="},{"Name":"original-resource","Value":"\"EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M=\""}]},{"Route":"_framework/System.Security.Cryptography.Csp.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek="}]},{"Route":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm","AssetFile":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0lu5m0tfx2"},{"Name":"integrity","Value":"sha256-7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Encoding.wasm"}]},{"Route":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm","AssetFile":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438404209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0lu5m0tfx2"},{"Name":"integrity","Value":"sha256-7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Encoding.wasm"},{"Name":"original-resource","Value":"\"7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU=\""}]},{"Route":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0lu5m0tfx2"},{"Name":"integrity","Value":"sha256-EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Encoding.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Encoding.wasm","AssetFile":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU="}]},{"Route":"_framework/System.Security.Cryptography.Encoding.wasm","AssetFile":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438404209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU="},{"Name":"original-resource","Value":"\"7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU=\""}]},{"Route":"_framework/System.Security.Cryptography.Encoding.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg="}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm","AssetFile":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m4pzjxi3g"},{"Name":"integrity","Value":"sha256-nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o="},{"Name":"label","Value":"_framework/System.Security.Cryptography.OpenSsl.wasm"}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm","AssetFile":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000449842555"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2222"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m4pzjxi3g"},{"Name":"integrity","Value":"sha256-nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o="},{"Name":"label","Value":"_framework/System.Security.Cryptography.OpenSsl.wasm"},{"Name":"original-resource","Value":"\"nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o=\""}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2222"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m4pzjxi3g"},{"Name":"integrity","Value":"sha256-vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM="},{"Name":"label","Value":"_framework/System.Security.Cryptography.OpenSsl.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.wasm","AssetFile":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o="}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.wasm","AssetFile":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000449842555"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2222"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o="},{"Name":"original-resource","Value":"\"nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o=\""}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2222"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM="}]},{"Route":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm","AssetFile":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7bcdd4uolu"},{"Name":"integrity","Value":"sha256-kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Primitives.wasm"}]},{"Route":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm","AssetFile":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000425894378"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2347"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7bcdd4uolu"},{"Name":"integrity","Value":"sha256-kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Primitives.wasm"},{"Name":"original-resource","Value":"\"kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0=\""}]},{"Route":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2347"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7bcdd4uolu"},{"Name":"integrity","Value":"sha256-o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Primitives.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Primitives.wasm","AssetFile":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0="}]},{"Route":"_framework/System.Security.Cryptography.Primitives.wasm","AssetFile":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000425894378"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2347"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0="},{"Name":"original-resource","Value":"\"kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0=\""}]},{"Route":"_framework/System.Security.Cryptography.Primitives.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2347"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE="}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm","AssetFile":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dmew7c9amv"},{"Name":"integrity","Value":"sha256-+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8="},{"Name":"label","Value":"_framework/System.Security.Cryptography.X509Certificates.wasm"}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm","AssetFile":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000374251497"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2671"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dmew7c9amv"},{"Name":"integrity","Value":"sha256-+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8="},{"Name":"label","Value":"_framework/System.Security.Cryptography.X509Certificates.wasm"},{"Name":"original-resource","Value":"\"+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8=\""}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2671"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dmew7c9amv"},{"Name":"integrity","Value":"sha256-KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw="},{"Name":"label","Value":"_framework/System.Security.Cryptography.X509Certificates.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.wasm","AssetFile":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8="}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.wasm","AssetFile":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000374251497"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2671"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8="},{"Name":"original-resource","Value":"\"+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8=\""}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2671"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw="}]},{"Route":"_framework/System.Security.Cryptography.wasm","AssetFile":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"642325"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM="}]},{"Route":"_framework/System.Security.Cryptography.wasm","AssetFile":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004398891"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"227329"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM="},{"Name":"original-resource","Value":"\"YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM=\""}]},{"Route":"_framework/System.Security.Cryptography.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"227329"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y="}]},{"Route":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm","AssetFile":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27413"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7ssqvw2wfy"},{"Name":"integrity","Value":"sha256-NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ="},{"Name":"label","Value":"_framework/System.Security.Principal.Windows.wasm"}]},{"Route":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm","AssetFile":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090171326"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11089"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7ssqvw2wfy"},{"Name":"integrity","Value":"sha256-NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ="},{"Name":"label","Value":"_framework/System.Security.Principal.Windows.wasm"},{"Name":"original-resource","Value":"\"NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ=\""}]},{"Route":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm.gz","AssetFile":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11089"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7ssqvw2wfy"},{"Name":"integrity","Value":"sha256-ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg="},{"Name":"label","Value":"_framework/System.Security.Principal.Windows.wasm.gz"}]},{"Route":"_framework/System.Security.Principal.Windows.wasm","AssetFile":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"27413"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ="}]},{"Route":"_framework/System.Security.Principal.Windows.wasm","AssetFile":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090171326"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11089"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ="},{"Name":"original-resource","Value":"\"NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ=\""}]},{"Route":"_framework/System.Security.Principal.Windows.wasm.gz","AssetFile":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11089"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg="}]},{"Route":"_framework/System.Security.Principal.j5dp7k8x6u.wasm","AssetFile":"_framework/System.Security.Principal.j5dp7k8x6u.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5dp7k8x6u"},{"Name":"integrity","Value":"sha256-KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no="},{"Name":"label","Value":"_framework/System.Security.Principal.wasm"}]},{"Route":"_framework/System.Security.Principal.j5dp7k8x6u.wasm","AssetFile":"_framework/System.Security.Principal.j5dp7k8x6u.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000459558824"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2175"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5dp7k8x6u"},{"Name":"integrity","Value":"sha256-KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no="},{"Name":"label","Value":"_framework/System.Security.Principal.wasm"},{"Name":"original-resource","Value":"\"KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no=\""}]},{"Route":"_framework/System.Security.Principal.j5dp7k8x6u.wasm.gz","AssetFile":"_framework/System.Security.Principal.j5dp7k8x6u.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2175"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5dp7k8x6u"},{"Name":"integrity","Value":"sha256-HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA="},{"Name":"label","Value":"_framework/System.Security.Principal.wasm.gz"}]},{"Route":"_framework/System.Security.Principal.wasm","AssetFile":"_framework/System.Security.Principal.j5dp7k8x6u.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no="}]},{"Route":"_framework/System.Security.Principal.wasm","AssetFile":"_framework/System.Security.Principal.j5dp7k8x6u.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000459558824"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2175"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no="},{"Name":"original-resource","Value":"\"KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no=\""}]},{"Route":"_framework/System.Security.Principal.wasm.gz","AssetFile":"_framework/System.Security.Principal.j5dp7k8x6u.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2175"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA="}]},{"Route":"_framework/System.Security.SecureString.7weoywtuje.wasm","AssetFile":"_framework/System.Security.SecureString.7weoywtuje.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7weoywtuje"},{"Name":"integrity","Value":"sha256-Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY="},{"Name":"label","Value":"_framework/System.Security.SecureString.wasm"}]},{"Route":"_framework/System.Security.SecureString.7weoywtuje.wasm","AssetFile":"_framework/System.Security.SecureString.7weoywtuje.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000453309157"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2205"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7weoywtuje"},{"Name":"integrity","Value":"sha256-Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY="},{"Name":"label","Value":"_framework/System.Security.SecureString.wasm"},{"Name":"original-resource","Value":"\"Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY=\""}]},{"Route":"_framework/System.Security.SecureString.7weoywtuje.wasm.gz","AssetFile":"_framework/System.Security.SecureString.7weoywtuje.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2205"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7weoywtuje"},{"Name":"integrity","Value":"sha256-z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM="},{"Name":"label","Value":"_framework/System.Security.SecureString.wasm.gz"}]},{"Route":"_framework/System.Security.SecureString.wasm","AssetFile":"_framework/System.Security.SecureString.7weoywtuje.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY="}]},{"Route":"_framework/System.Security.SecureString.wasm","AssetFile":"_framework/System.Security.SecureString.7weoywtuje.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000453309157"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2205"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY="},{"Name":"original-resource","Value":"\"Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY=\""}]},{"Route":"_framework/System.Security.SecureString.wasm.gz","AssetFile":"_framework/System.Security.SecureString.7weoywtuje.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2205"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM="}]},{"Route":"_framework/System.Security.snpv53zusk.wasm","AssetFile":"_framework/System.Security.snpv53zusk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"7957"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"snpv53zusk"},{"Name":"integrity","Value":"sha256-qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk="},{"Name":"label","Value":"_framework/System.Security.wasm"}]},{"Route":"_framework/System.Security.snpv53zusk.wasm","AssetFile":"_framework/System.Security.snpv53zusk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000336927224"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2967"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"snpv53zusk"},{"Name":"integrity","Value":"sha256-qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk="},{"Name":"label","Value":"_framework/System.Security.wasm"},{"Name":"original-resource","Value":"\"qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk=\""}]},{"Route":"_framework/System.Security.snpv53zusk.wasm.gz","AssetFile":"_framework/System.Security.snpv53zusk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2967"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"snpv53zusk"},{"Name":"integrity","Value":"sha256-l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk="},{"Name":"label","Value":"_framework/System.Security.wasm.gz"}]},{"Route":"_framework/System.Security.wasm","AssetFile":"_framework/System.Security.snpv53zusk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"7957"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk="}]},{"Route":"_framework/System.Security.wasm","AssetFile":"_framework/System.Security.snpv53zusk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000336927224"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2967"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk="},{"Name":"original-resource","Value":"\"qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk=\""}]},{"Route":"_framework/System.Security.wasm.gz","AssetFile":"_framework/System.Security.snpv53zusk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2967"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk="}]},{"Route":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm","AssetFile":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3f1khl8k32"},{"Name":"integrity","Value":"sha256-0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY="},{"Name":"label","Value":"_framework/System.ServiceModel.Web.wasm"}]},{"Route":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm","AssetFile":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000392464678"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2547"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3f1khl8k32"},{"Name":"integrity","Value":"sha256-0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY="},{"Name":"label","Value":"_framework/System.ServiceModel.Web.wasm"},{"Name":"original-resource","Value":"\"0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY=\""}]},{"Route":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm.gz","AssetFile":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2547"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3f1khl8k32"},{"Name":"integrity","Value":"sha256-E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4="},{"Name":"label","Value":"_framework/System.ServiceModel.Web.wasm.gz"}]},{"Route":"_framework/System.ServiceModel.Web.wasm","AssetFile":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY="}]},{"Route":"_framework/System.ServiceModel.Web.wasm","AssetFile":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000392464678"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2547"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY="},{"Name":"original-resource","Value":"\"0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY=\""}]},{"Route":"_framework/System.ServiceModel.Web.wasm.gz","AssetFile":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2547"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4="}]},{"Route":"_framework/System.ServiceProcess.a95c1olw0i.wasm","AssetFile":"_framework/System.ServiceProcess.a95c1olw0i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a95c1olw0i"},{"Name":"integrity","Value":"sha256-nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU="},{"Name":"label","Value":"_framework/System.ServiceProcess.wasm"}]},{"Route":"_framework/System.ServiceProcess.a95c1olw0i.wasm","AssetFile":"_framework/System.ServiceProcess.a95c1olw0i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000433275563"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a95c1olw0i"},{"Name":"integrity","Value":"sha256-nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU="},{"Name":"label","Value":"_framework/System.ServiceProcess.wasm"},{"Name":"original-resource","Value":"\"nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU=\""}]},{"Route":"_framework/System.ServiceProcess.a95c1olw0i.wasm.gz","AssetFile":"_framework/System.ServiceProcess.a95c1olw0i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a95c1olw0i"},{"Name":"integrity","Value":"sha256-EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q="},{"Name":"label","Value":"_framework/System.ServiceProcess.wasm.gz"}]},{"Route":"_framework/System.ServiceProcess.wasm","AssetFile":"_framework/System.ServiceProcess.a95c1olw0i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU="}]},{"Route":"_framework/System.ServiceProcess.wasm","AssetFile":"_framework/System.ServiceProcess.a95c1olw0i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000433275563"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU="},{"Name":"original-resource","Value":"\"nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU=\""}]},{"Route":"_framework/System.ServiceProcess.wasm.gz","AssetFile":"_framework/System.ServiceProcess.a95c1olw0i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q="}]},{"Route":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm","AssetFile":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"732437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8bhn50uz8f"},{"Name":"integrity","Value":"sha256-nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A="},{"Name":"label","Value":"_framework/System.Text.Encoding.CodePages.wasm"}]},{"Route":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm","AssetFile":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000001939067"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"515711"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8bhn50uz8f"},{"Name":"integrity","Value":"sha256-nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A="},{"Name":"label","Value":"_framework/System.Text.Encoding.CodePages.wasm"},{"Name":"original-resource","Value":"\"nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A=\""}]},{"Route":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm.gz","AssetFile":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"515711"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8bhn50uz8f"},{"Name":"integrity","Value":"sha256-hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y="},{"Name":"label","Value":"_framework/System.Text.Encoding.CodePages.wasm.gz"}]},{"Route":"_framework/System.Text.Encoding.CodePages.wasm","AssetFile":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"732437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A="}]},{"Route":"_framework/System.Text.Encoding.CodePages.wasm","AssetFile":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000001939067"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"515711"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A="},{"Name":"original-resource","Value":"\"nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A=\""}]},{"Route":"_framework/System.Text.Encoding.CodePages.wasm.gz","AssetFile":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"515711"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y="}]},{"Route":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm","AssetFile":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tqz9dyg6j7"},{"Name":"integrity","Value":"sha256-y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A="},{"Name":"label","Value":"_framework/System.Text.Encoding.Extensions.wasm"}]},{"Route":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm","AssetFile":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000442673749"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2258"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tqz9dyg6j7"},{"Name":"integrity","Value":"sha256-y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A="},{"Name":"label","Value":"_framework/System.Text.Encoding.Extensions.wasm"},{"Name":"original-resource","Value":"\"y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A=\""}]},{"Route":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm.gz","AssetFile":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2258"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tqz9dyg6j7"},{"Name":"integrity","Value":"sha256-jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k="},{"Name":"label","Value":"_framework/System.Text.Encoding.Extensions.wasm.gz"}]},{"Route":"_framework/System.Text.Encoding.Extensions.wasm","AssetFile":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A="}]},{"Route":"_framework/System.Text.Encoding.Extensions.wasm","AssetFile":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000442673749"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2258"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A="},{"Name":"original-resource","Value":"\"y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A=\""}]},{"Route":"_framework/System.Text.Encoding.Extensions.wasm.gz","AssetFile":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2258"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k="}]},{"Route":"_framework/System.Text.Encoding.s9ic8sulfi.wasm","AssetFile":"_framework/System.Text.Encoding.s9ic8sulfi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s9ic8sulfi"},{"Name":"integrity","Value":"sha256-gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg="},{"Name":"label","Value":"_framework/System.Text.Encoding.wasm"}]},{"Route":"_framework/System.Text.Encoding.s9ic8sulfi.wasm","AssetFile":"_framework/System.Text.Encoding.s9ic8sulfi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000445434298"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2244"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s9ic8sulfi"},{"Name":"integrity","Value":"sha256-gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg="},{"Name":"label","Value":"_framework/System.Text.Encoding.wasm"},{"Name":"original-resource","Value":"\"gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg=\""}]},{"Route":"_framework/System.Text.Encoding.s9ic8sulfi.wasm.gz","AssetFile":"_framework/System.Text.Encoding.s9ic8sulfi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2244"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s9ic8sulfi"},{"Name":"integrity","Value":"sha256-oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA="},{"Name":"label","Value":"_framework/System.Text.Encoding.wasm.gz"}]},{"Route":"_framework/System.Text.Encoding.wasm","AssetFile":"_framework/System.Text.Encoding.s9ic8sulfi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg="}]},{"Route":"_framework/System.Text.Encoding.wasm","AssetFile":"_framework/System.Text.Encoding.s9ic8sulfi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000445434298"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2244"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg="},{"Name":"original-resource","Value":"\"gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg=\""}]},{"Route":"_framework/System.Text.Encoding.wasm.gz","AssetFile":"_framework/System.Text.Encoding.s9ic8sulfi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2244"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA="}]},{"Route":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm","AssetFile":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"07hq35kp92"},{"Name":"integrity","Value":"sha256-dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE="},{"Name":"label","Value":"_framework/System.Text.Encodings.Web.wasm"}]},{"Route":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm","AssetFile":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000045293958"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"07hq35kp92"},{"Name":"integrity","Value":"sha256-dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE="},{"Name":"label","Value":"_framework/System.Text.Encodings.Web.wasm"},{"Name":"original-resource","Value":"\"dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE=\""}]},{"Route":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm.gz","AssetFile":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"07hq35kp92"},{"Name":"integrity","Value":"sha256-vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4="},{"Name":"label","Value":"_framework/System.Text.Encodings.Web.wasm.gz"}]},{"Route":"_framework/System.Text.Encodings.Web.wasm","AssetFile":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE="}]},{"Route":"_framework/System.Text.Encodings.Web.wasm","AssetFile":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000045293958"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE="},{"Name":"original-resource","Value":"\"dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE=\""}]},{"Route":"_framework/System.Text.Encodings.Web.wasm.gz","AssetFile":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4="}]},{"Route":"_framework/System.Text.Json.2alhj4y3bm.wasm","AssetFile":"_framework/System.Text.Json.2alhj4y3bm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"638741"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2alhj4y3bm"},{"Name":"integrity","Value":"sha256-BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY="},{"Name":"label","Value":"_framework/System.Text.Json.wasm"}]},{"Route":"_framework/System.Text.Json.2alhj4y3bm.wasm","AssetFile":"_framework/System.Text.Json.2alhj4y3bm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004372674"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"228692"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2alhj4y3bm"},{"Name":"integrity","Value":"sha256-BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY="},{"Name":"label","Value":"_framework/System.Text.Json.wasm"},{"Name":"original-resource","Value":"\"BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY=\""}]},{"Route":"_framework/System.Text.Json.2alhj4y3bm.wasm.gz","AssetFile":"_framework/System.Text.Json.2alhj4y3bm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"228692"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2alhj4y3bm"},{"Name":"integrity","Value":"sha256-L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw="},{"Name":"label","Value":"_framework/System.Text.Json.wasm.gz"}]},{"Route":"_framework/System.Text.Json.wasm","AssetFile":"_framework/System.Text.Json.2alhj4y3bm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"638741"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY="}]},{"Route":"_framework/System.Text.Json.wasm","AssetFile":"_framework/System.Text.Json.2alhj4y3bm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004372674"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"228692"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY="},{"Name":"original-resource","Value":"\"BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY=\""}]},{"Route":"_framework/System.Text.Json.wasm.gz","AssetFile":"_framework/System.Text.Json.2alhj4y3bm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"228692"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw="}]},{"Route":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm","AssetFile":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"374549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1qtkesphd"},{"Name":"integrity","Value":"sha256-FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ="},{"Name":"label","Value":"_framework/System.Text.RegularExpressions.wasm"}]},{"Route":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm","AssetFile":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006311418"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"158442"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1qtkesphd"},{"Name":"integrity","Value":"sha256-FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ="},{"Name":"label","Value":"_framework/System.Text.RegularExpressions.wasm"},{"Name":"original-resource","Value":"\"FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ=\""}]},{"Route":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm.gz","AssetFile":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"158442"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1qtkesphd"},{"Name":"integrity","Value":"sha256-BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U="},{"Name":"label","Value":"_framework/System.Text.RegularExpressions.wasm.gz"}]},{"Route":"_framework/System.Text.RegularExpressions.wasm","AssetFile":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"374549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ="}]},{"Route":"_framework/System.Text.RegularExpressions.wasm","AssetFile":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006311418"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"158442"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ="},{"Name":"original-resource","Value":"\"FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ=\""}]},{"Route":"_framework/System.Text.RegularExpressions.wasm.gz","AssetFile":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"158442"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U="}]},{"Route":"_framework/System.Threading.47ucbn1gg1.wasm","AssetFile":"_framework/System.Threading.47ucbn1gg1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"47ucbn1gg1"},{"Name":"integrity","Value":"sha256-ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts="},{"Name":"label","Value":"_framework/System.Threading.wasm"}]},{"Route":"_framework/System.Threading.47ucbn1gg1.wasm","AssetFile":"_framework/System.Threading.47ucbn1gg1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000068045727"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14695"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"47ucbn1gg1"},{"Name":"integrity","Value":"sha256-ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts="},{"Name":"label","Value":"_framework/System.Threading.wasm"},{"Name":"original-resource","Value":"\"ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts=\""}]},{"Route":"_framework/System.Threading.47ucbn1gg1.wasm.gz","AssetFile":"_framework/System.Threading.47ucbn1gg1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14695"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"47ucbn1gg1"},{"Name":"integrity","Value":"sha256-fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g="},{"Name":"label","Value":"_framework/System.Threading.wasm.gz"}]},{"Route":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm","AssetFile":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"23317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ruehy0ud5k"},{"Name":"integrity","Value":"sha256-c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s="},{"Name":"label","Value":"_framework/System.Threading.AccessControl.wasm"}]},{"Route":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm","AssetFile":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000117785630"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ruehy0ud5k"},{"Name":"integrity","Value":"sha256-c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s="},{"Name":"label","Value":"_framework/System.Threading.AccessControl.wasm"},{"Name":"original-resource","Value":"\"c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s=\""}]},{"Route":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm.gz","AssetFile":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ruehy0ud5k"},{"Name":"integrity","Value":"sha256-INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s="},{"Name":"label","Value":"_framework/System.Threading.AccessControl.wasm.gz"}]},{"Route":"_framework/System.Threading.AccessControl.wasm","AssetFile":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"23317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s="}]},{"Route":"_framework/System.Threading.AccessControl.wasm","AssetFile":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000117785630"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s="},{"Name":"original-resource","Value":"\"c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s=\""}]},{"Route":"_framework/System.Threading.AccessControl.wasm.gz","AssetFile":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s="}]},{"Route":"_framework/System.Threading.Channels.s3i62rxr2p.wasm","AssetFile":"_framework/System.Threading.Channels.s3i62rxr2p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"56085"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s3i62rxr2p"},{"Name":"integrity","Value":"sha256-2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4="},{"Name":"label","Value":"_framework/System.Threading.Channels.wasm"}]},{"Route":"_framework/System.Threading.Channels.s3i62rxr2p.wasm","AssetFile":"_framework/System.Threading.Channels.s3i62rxr2p.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040955072"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24416"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s3i62rxr2p"},{"Name":"integrity","Value":"sha256-2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4="},{"Name":"label","Value":"_framework/System.Threading.Channels.wasm"},{"Name":"original-resource","Value":"\"2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4=\""}]},{"Route":"_framework/System.Threading.Channels.s3i62rxr2p.wasm.gz","AssetFile":"_framework/System.Threading.Channels.s3i62rxr2p.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24416"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s3i62rxr2p"},{"Name":"integrity","Value":"sha256-u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo="},{"Name":"label","Value":"_framework/System.Threading.Channels.wasm.gz"}]},{"Route":"_framework/System.Threading.Channels.wasm","AssetFile":"_framework/System.Threading.Channels.s3i62rxr2p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"56085"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4="}]},{"Route":"_framework/System.Threading.Channels.wasm","AssetFile":"_framework/System.Threading.Channels.s3i62rxr2p.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040955072"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24416"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4="},{"Name":"original-resource","Value":"\"2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4=\""}]},{"Route":"_framework/System.Threading.Channels.wasm.gz","AssetFile":"_framework/System.Threading.Channels.s3i62rxr2p.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24416"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo="}]},{"Route":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm","AssetFile":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzl7igry1t"},{"Name":"integrity","Value":"sha256-ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8="},{"Name":"label","Value":"_framework/System.Threading.Overlapped.wasm"}]},{"Route":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm","AssetFile":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000431406385"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzl7igry1t"},{"Name":"integrity","Value":"sha256-ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8="},{"Name":"label","Value":"_framework/System.Threading.Overlapped.wasm"},{"Name":"original-resource","Value":"\"ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8=\""}]},{"Route":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm.gz","AssetFile":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzl7igry1t"},{"Name":"integrity","Value":"sha256-2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto="},{"Name":"label","Value":"_framework/System.Threading.Overlapped.wasm.gz"}]},{"Route":"_framework/System.Threading.Overlapped.wasm","AssetFile":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8="}]},{"Route":"_framework/System.Threading.Overlapped.wasm","AssetFile":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000431406385"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8="},{"Name":"original-resource","Value":"\"ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8=\""}]},{"Route":"_framework/System.Threading.Overlapped.wasm.gz","AssetFile":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto="}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm","AssetFile":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"175381"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"p9bjzp5pyo"},{"Name":"integrity","Value":"sha256-zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Dataflow.wasm"}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm","AssetFile":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013652623"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"73245"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"p9bjzp5pyo"},{"Name":"integrity","Value":"sha256-zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Dataflow.wasm"},{"Name":"original-resource","Value":"\"zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k=\""}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"73245"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"p9bjzp5pyo"},{"Name":"integrity","Value":"sha256-3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Dataflow.wasm.gz"}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.wasm","AssetFile":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"175381"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k="}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.wasm","AssetFile":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013652623"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"73245"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k="},{"Name":"original-resource","Value":"\"zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k=\""}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"73245"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U="}]},{"Route":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm","AssetFile":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"unp0hcfijn"},{"Name":"integrity","Value":"sha256-Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Extensions.wasm"}]},{"Route":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm","AssetFile":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000433275563"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"unp0hcfijn"},{"Name":"integrity","Value":"sha256-Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Extensions.wasm"},{"Name":"original-resource","Value":"\"Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4=\""}]},{"Route":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"unp0hcfijn"},{"Name":"integrity","Value":"sha256-+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Extensions.wasm.gz"}]},{"Route":"_framework/System.Threading.Tasks.Extensions.wasm","AssetFile":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4="}]},{"Route":"_framework/System.Threading.Tasks.Extensions.wasm","AssetFile":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000433275563"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4="},{"Name":"original-resource","Value":"\"Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4=\""}]},{"Route":"_framework/System.Threading.Tasks.Extensions.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw="}]},{"Route":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm","AssetFile":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"50965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hyku0ejwye"},{"Name":"integrity","Value":"sha256-ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Parallel.wasm"}]},{"Route":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm","AssetFile":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000047418085"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21088"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hyku0ejwye"},{"Name":"integrity","Value":"sha256-ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Parallel.wasm"},{"Name":"original-resource","Value":"\"ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo=\""}]},{"Route":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21088"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hyku0ejwye"},{"Name":"integrity","Value":"sha256-m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Parallel.wasm.gz"}]},{"Route":"_framework/System.Threading.Tasks.Parallel.wasm","AssetFile":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"50965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo="}]},{"Route":"_framework/System.Threading.Tasks.Parallel.wasm","AssetFile":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000047418085"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21088"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo="},{"Name":"original-resource","Value":"\"ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo=\""}]},{"Route":"_framework/System.Threading.Tasks.Parallel.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21088"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk="}]},{"Route":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm","AssetFile":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t0sjw89o0i"},{"Name":"integrity","Value":"sha256-YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo="},{"Name":"label","Value":"_framework/System.Threading.Tasks.wasm"}]},{"Route":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm","AssetFile":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388198758"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t0sjw89o0i"},{"Name":"integrity","Value":"sha256-YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo="},{"Name":"label","Value":"_framework/System.Threading.Tasks.wasm"},{"Name":"original-resource","Value":"\"YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo=\""}]},{"Route":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t0sjw89o0i"},{"Name":"integrity","Value":"sha256-Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE="},{"Name":"label","Value":"_framework/System.Threading.Tasks.wasm.gz"}]},{"Route":"_framework/System.Threading.Tasks.wasm","AssetFile":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo="}]},{"Route":"_framework/System.Threading.Tasks.wasm","AssetFile":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388198758"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo="},{"Name":"original-resource","Value":"\"YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo=\""}]},{"Route":"_framework/System.Threading.Tasks.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE="}]},{"Route":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm","AssetFile":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nfbg9v9bn0"},{"Name":"integrity","Value":"sha256-43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0="},{"Name":"label","Value":"_framework/System.Threading.Thread.wasm"}]},{"Route":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm","AssetFile":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000427533134"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2338"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nfbg9v9bn0"},{"Name":"integrity","Value":"sha256-43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0="},{"Name":"label","Value":"_framework/System.Threading.Thread.wasm"},{"Name":"original-resource","Value":"\"43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0=\""}]},{"Route":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm.gz","AssetFile":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2338"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nfbg9v9bn0"},{"Name":"integrity","Value":"sha256-FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE="},{"Name":"label","Value":"_framework/System.Threading.Thread.wasm.gz"}]},{"Route":"_framework/System.Threading.Thread.wasm","AssetFile":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0="}]},{"Route":"_framework/System.Threading.Thread.wasm","AssetFile":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000427533134"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2338"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0="},{"Name":"original-resource","Value":"\"43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0=\""}]},{"Route":"_framework/System.Threading.Thread.wasm.gz","AssetFile":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2338"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE="}]},{"Route":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm","AssetFile":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jrzo6stg1k"},{"Name":"integrity","Value":"sha256-D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas="},{"Name":"label","Value":"_framework/System.Threading.ThreadPool.wasm"}]},{"Route":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm","AssetFile":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000442282176"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2260"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jrzo6stg1k"},{"Name":"integrity","Value":"sha256-D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas="},{"Name":"label","Value":"_framework/System.Threading.ThreadPool.wasm"},{"Name":"original-resource","Value":"\"D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas=\""}]},{"Route":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm.gz","AssetFile":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2260"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jrzo6stg1k"},{"Name":"integrity","Value":"sha256-yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8="},{"Name":"label","Value":"_framework/System.Threading.ThreadPool.wasm.gz"}]},{"Route":"_framework/System.Threading.ThreadPool.wasm","AssetFile":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas="}]},{"Route":"_framework/System.Threading.ThreadPool.wasm","AssetFile":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000442282176"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2260"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas="},{"Name":"original-resource","Value":"\"D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas=\""}]},{"Route":"_framework/System.Threading.ThreadPool.wasm.gz","AssetFile":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2260"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8="}]},{"Route":"_framework/System.Threading.Timer.wasm","AssetFile":"_framework/System.Threading.Timer.y8l1kxazi5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0="}]},{"Route":"_framework/System.Threading.Timer.wasm","AssetFile":"_framework/System.Threading.Timer.y8l1kxazi5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000467726848"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2137"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0="},{"Name":"original-resource","Value":"\"0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0=\""}]},{"Route":"_framework/System.Threading.Timer.wasm.gz","AssetFile":"_framework/System.Threading.Timer.y8l1kxazi5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2137"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M="}]},{"Route":"_framework/System.Threading.Timer.y8l1kxazi5.wasm","AssetFile":"_framework/System.Threading.Timer.y8l1kxazi5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y8l1kxazi5"},{"Name":"integrity","Value":"sha256-0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0="},{"Name":"label","Value":"_framework/System.Threading.Timer.wasm"}]},{"Route":"_framework/System.Threading.Timer.y8l1kxazi5.wasm","AssetFile":"_framework/System.Threading.Timer.y8l1kxazi5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000467726848"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2137"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y8l1kxazi5"},{"Name":"integrity","Value":"sha256-0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0="},{"Name":"label","Value":"_framework/System.Threading.Timer.wasm"},{"Name":"original-resource","Value":"\"0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0=\""}]},{"Route":"_framework/System.Threading.Timer.y8l1kxazi5.wasm.gz","AssetFile":"_framework/System.Threading.Timer.y8l1kxazi5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2137"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y8l1kxazi5"},{"Name":"integrity","Value":"sha256-pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M="},{"Name":"label","Value":"_framework/System.Threading.Timer.wasm.gz"}]},{"Route":"_framework/System.Threading.wasm","AssetFile":"_framework/System.Threading.47ucbn1gg1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts="}]},{"Route":"_framework/System.Threading.wasm","AssetFile":"_framework/System.Threading.47ucbn1gg1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000068045727"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14695"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts="},{"Name":"original-resource","Value":"\"ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts=\""}]},{"Route":"_framework/System.Threading.wasm.gz","AssetFile":"_framework/System.Threading.47ucbn1gg1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14695"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g="}]},{"Route":"_framework/System.Transactions.Local.cig01jt23c.wasm","AssetFile":"_framework/System.Transactions.Local.cig01jt23c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"165653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cig01jt23c"},{"Name":"integrity","Value":"sha256-lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4="},{"Name":"label","Value":"_framework/System.Transactions.Local.wasm"}]},{"Route":"_framework/System.Transactions.Local.cig01jt23c.wasm","AssetFile":"_framework/System.Transactions.Local.cig01jt23c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000019435590"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"51451"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cig01jt23c"},{"Name":"integrity","Value":"sha256-lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4="},{"Name":"label","Value":"_framework/System.Transactions.Local.wasm"},{"Name":"original-resource","Value":"\"lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4=\""}]},{"Route":"_framework/System.Transactions.Local.cig01jt23c.wasm.gz","AssetFile":"_framework/System.Transactions.Local.cig01jt23c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"51451"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cig01jt23c"},{"Name":"integrity","Value":"sha256-ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8="},{"Name":"label","Value":"_framework/System.Transactions.Local.wasm.gz"}]},{"Route":"_framework/System.Transactions.Local.wasm","AssetFile":"_framework/System.Transactions.Local.cig01jt23c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"165653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4="}]},{"Route":"_framework/System.Transactions.Local.wasm","AssetFile":"_framework/System.Transactions.Local.cig01jt23c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000019435590"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"51451"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4="},{"Name":"original-resource","Value":"\"lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4=\""}]},{"Route":"_framework/System.Transactions.Local.wasm.gz","AssetFile":"_framework/System.Transactions.Local.cig01jt23c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"51451"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8="}]},{"Route":"_framework/System.Transactions.pl50n6qbg7.wasm","AssetFile":"_framework/System.Transactions.pl50n6qbg7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pl50n6qbg7"},{"Name":"integrity","Value":"sha256-XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio="},{"Name":"label","Value":"_framework/System.Transactions.wasm"}]},{"Route":"_framework/System.Transactions.pl50n6qbg7.wasm","AssetFile":"_framework/System.Transactions.pl50n6qbg7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000419287212"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2384"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pl50n6qbg7"},{"Name":"integrity","Value":"sha256-XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio="},{"Name":"label","Value":"_framework/System.Transactions.wasm"},{"Name":"original-resource","Value":"\"XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio=\""}]},{"Route":"_framework/System.Transactions.pl50n6qbg7.wasm.gz","AssetFile":"_framework/System.Transactions.pl50n6qbg7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2384"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pl50n6qbg7"},{"Name":"integrity","Value":"sha256-Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA="},{"Name":"label","Value":"_framework/System.Transactions.wasm.gz"}]},{"Route":"_framework/System.Transactions.wasm","AssetFile":"_framework/System.Transactions.pl50n6qbg7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio="}]},{"Route":"_framework/System.Transactions.wasm","AssetFile":"_framework/System.Transactions.pl50n6qbg7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000419287212"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2384"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio="},{"Name":"original-resource","Value":"\"XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio=\""}]},{"Route":"_framework/System.Transactions.wasm.gz","AssetFile":"_framework/System.Transactions.pl50n6qbg7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2384"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA="}]},{"Route":"_framework/System.ValueTuple.mj3r9p0pcw.wasm","AssetFile":"_framework/System.ValueTuple.mj3r9p0pcw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mj3r9p0pcw"},{"Name":"integrity","Value":"sha256-Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY="},{"Name":"label","Value":"_framework/System.ValueTuple.wasm"}]},{"Route":"_framework/System.ValueTuple.mj3r9p0pcw.wasm","AssetFile":"_framework/System.ValueTuple.mj3r9p0pcw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455788514"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2193"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mj3r9p0pcw"},{"Name":"integrity","Value":"sha256-Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY="},{"Name":"label","Value":"_framework/System.ValueTuple.wasm"},{"Name":"original-resource","Value":"\"Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY=\""}]},{"Route":"_framework/System.ValueTuple.mj3r9p0pcw.wasm.gz","AssetFile":"_framework/System.ValueTuple.mj3r9p0pcw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2193"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mj3r9p0pcw"},{"Name":"integrity","Value":"sha256-qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY="},{"Name":"label","Value":"_framework/System.ValueTuple.wasm.gz"}]},{"Route":"_framework/System.ValueTuple.wasm","AssetFile":"_framework/System.ValueTuple.mj3r9p0pcw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY="}]},{"Route":"_framework/System.ValueTuple.wasm","AssetFile":"_framework/System.ValueTuple.mj3r9p0pcw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455788514"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2193"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY="},{"Name":"original-resource","Value":"\"Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY=\""}]},{"Route":"_framework/System.ValueTuple.wasm.gz","AssetFile":"_framework/System.ValueTuple.mj3r9p0pcw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2193"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY="}]},{"Route":"_framework/System.Web.2a6wq9gv6d.wasm","AssetFile":"_framework/System.Web.2a6wq9gv6d.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2a6wq9gv6d"},{"Name":"integrity","Value":"sha256-Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk="},{"Name":"label","Value":"_framework/System.Web.wasm"}]},{"Route":"_framework/System.Web.2a6wq9gv6d.wasm","AssetFile":"_framework/System.Web.2a6wq9gv6d.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000469924812"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2127"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2a6wq9gv6d"},{"Name":"integrity","Value":"sha256-Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk="},{"Name":"label","Value":"_framework/System.Web.wasm"},{"Name":"original-resource","Value":"\"Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk=\""}]},{"Route":"_framework/System.Web.2a6wq9gv6d.wasm.gz","AssetFile":"_framework/System.Web.2a6wq9gv6d.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2127"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2a6wq9gv6d"},{"Name":"integrity","Value":"sha256-UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4="},{"Name":"label","Value":"_framework/System.Web.wasm.gz"}]},{"Route":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm","AssetFile":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"19733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3jfxpyq4in"},{"Name":"integrity","Value":"sha256-IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4="},{"Name":"label","Value":"_framework/System.Web.HttpUtility.wasm"}]},{"Route":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm","AssetFile":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000104766894"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9544"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3jfxpyq4in"},{"Name":"integrity","Value":"sha256-IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4="},{"Name":"label","Value":"_framework/System.Web.HttpUtility.wasm"},{"Name":"original-resource","Value":"\"IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4=\""}]},{"Route":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm.gz","AssetFile":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9544"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3jfxpyq4in"},{"Name":"integrity","Value":"sha256-eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg="},{"Name":"label","Value":"_framework/System.Web.HttpUtility.wasm.gz"}]},{"Route":"_framework/System.Web.HttpUtility.wasm","AssetFile":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"19733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4="}]},{"Route":"_framework/System.Web.HttpUtility.wasm","AssetFile":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000104766894"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9544"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4="},{"Name":"original-resource","Value":"\"IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4=\""}]},{"Route":"_framework/System.Web.HttpUtility.wasm.gz","AssetFile":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9544"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg="}]},{"Route":"_framework/System.Web.wasm","AssetFile":"_framework/System.Web.2a6wq9gv6d.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk="}]},{"Route":"_framework/System.Web.wasm","AssetFile":"_framework/System.Web.2a6wq9gv6d.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000469924812"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2127"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk="},{"Name":"original-resource","Value":"\"Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk=\""}]},{"Route":"_framework/System.Web.wasm.gz","AssetFile":"_framework/System.Web.2a6wq9gv6d.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2127"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4="}]},{"Route":"_framework/System.Windows.bw79ix589z.wasm","AssetFile":"_framework/System.Windows.bw79ix589z.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bw79ix589z"},{"Name":"integrity","Value":"sha256-O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA="},{"Name":"label","Value":"_framework/System.Windows.wasm"}]},{"Route":"_framework/System.Windows.bw79ix589z.wasm","AssetFile":"_framework/System.Windows.bw79ix589z.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438212095"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bw79ix589z"},{"Name":"integrity","Value":"sha256-O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA="},{"Name":"label","Value":"_framework/System.Windows.wasm"},{"Name":"original-resource","Value":"\"O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA=\""}]},{"Route":"_framework/System.Windows.bw79ix589z.wasm.gz","AssetFile":"_framework/System.Windows.bw79ix589z.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bw79ix589z"},{"Name":"integrity","Value":"sha256-YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs="},{"Name":"label","Value":"_framework/System.Windows.wasm.gz"}]},{"Route":"_framework/System.Windows.wasm","AssetFile":"_framework/System.Windows.bw79ix589z.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA="}]},{"Route":"_framework/System.Windows.wasm","AssetFile":"_framework/System.Windows.bw79ix589z.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438212095"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA="},{"Name":"original-resource","Value":"\"O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA=\""}]},{"Route":"_framework/System.Windows.wasm.gz","AssetFile":"_framework/System.Windows.bw79ix589z.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs="}]},{"Route":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm","AssetFile":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvnhbwdsg6"},{"Name":"integrity","Value":"sha256-I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE="},{"Name":"label","Value":"_framework/System.Xml.Linq.wasm"}]},{"Route":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm","AssetFile":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000452488688"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2209"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvnhbwdsg6"},{"Name":"integrity","Value":"sha256-I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE="},{"Name":"label","Value":"_framework/System.Xml.Linq.wasm"},{"Name":"original-resource","Value":"\"I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE=\""}]},{"Route":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm.gz","AssetFile":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2209"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvnhbwdsg6"},{"Name":"integrity","Value":"sha256-NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog="},{"Name":"label","Value":"_framework/System.Xml.Linq.wasm.gz"}]},{"Route":"_framework/System.Xml.Linq.wasm","AssetFile":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE="}]},{"Route":"_framework/System.Xml.Linq.wasm","AssetFile":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000452488688"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2209"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE="},{"Name":"original-resource","Value":"\"I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE=\""}]},{"Route":"_framework/System.Xml.Linq.wasm.gz","AssetFile":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2209"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog="}]},{"Route":"_framework/System.Xml.ReaderWriter.szsdminork.wasm","AssetFile":"_framework/System.Xml.ReaderWriter.szsdminork.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"szsdminork"},{"Name":"integrity","Value":"sha256-+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho="},{"Name":"label","Value":"_framework/System.Xml.ReaderWriter.wasm"}]},{"Route":"_framework/System.Xml.ReaderWriter.szsdminork.wasm","AssetFile":"_framework/System.Xml.ReaderWriter.szsdminork.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000248632521"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"szsdminork"},{"Name":"integrity","Value":"sha256-+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho="},{"Name":"label","Value":"_framework/System.Xml.ReaderWriter.wasm"},{"Name":"original-resource","Value":"\"+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho=\""}]},{"Route":"_framework/System.Xml.ReaderWriter.szsdminork.wasm.gz","AssetFile":"_framework/System.Xml.ReaderWriter.szsdminork.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"szsdminork"},{"Name":"integrity","Value":"sha256-v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI="},{"Name":"label","Value":"_framework/System.Xml.ReaderWriter.wasm.gz"}]},{"Route":"_framework/System.Xml.ReaderWriter.wasm","AssetFile":"_framework/System.Xml.ReaderWriter.szsdminork.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho="}]},{"Route":"_framework/System.Xml.ReaderWriter.wasm","AssetFile":"_framework/System.Xml.ReaderWriter.szsdminork.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000248632521"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho="},{"Name":"original-resource","Value":"\"+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho=\""}]},{"Route":"_framework/System.Xml.ReaderWriter.wasm.gz","AssetFile":"_framework/System.Xml.ReaderWriter.szsdminork.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI="}]},{"Route":"_framework/System.Xml.Serialization.b9imguls9w.wasm","AssetFile":"_framework/System.Xml.Serialization.b9imguls9w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b9imguls9w"},{"Name":"integrity","Value":"sha256-EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8="},{"Name":"label","Value":"_framework/System.Xml.Serialization.wasm"}]},{"Route":"_framework/System.Xml.Serialization.b9imguls9w.wasm","AssetFile":"_framework/System.Xml.Serialization.b9imguls9w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000443852641"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2252"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b9imguls9w"},{"Name":"integrity","Value":"sha256-EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8="},{"Name":"label","Value":"_framework/System.Xml.Serialization.wasm"},{"Name":"original-resource","Value":"\"EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8=\""}]},{"Route":"_framework/System.Xml.Serialization.b9imguls9w.wasm.gz","AssetFile":"_framework/System.Xml.Serialization.b9imguls9w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2252"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b9imguls9w"},{"Name":"integrity","Value":"sha256-UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M="},{"Name":"label","Value":"_framework/System.Xml.Serialization.wasm.gz"}]},{"Route":"_framework/System.Xml.Serialization.wasm","AssetFile":"_framework/System.Xml.Serialization.b9imguls9w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8="}]},{"Route":"_framework/System.Xml.Serialization.wasm","AssetFile":"_framework/System.Xml.Serialization.b9imguls9w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000443852641"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2252"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8="},{"Name":"original-resource","Value":"\"EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8=\""}]},{"Route":"_framework/System.Xml.Serialization.wasm.gz","AssetFile":"_framework/System.Xml.Serialization.b9imguls9w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2252"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M="}]},{"Route":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm","AssetFile":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8hg6c0at0c"},{"Name":"integrity","Value":"sha256-7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk="},{"Name":"label","Value":"_framework/System.Xml.XDocument.wasm"}]},{"Route":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm","AssetFile":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000417362270"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2395"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8hg6c0at0c"},{"Name":"integrity","Value":"sha256-7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk="},{"Name":"label","Value":"_framework/System.Xml.XDocument.wasm"},{"Name":"original-resource","Value":"\"7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk=\""}]},{"Route":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm.gz","AssetFile":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2395"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8hg6c0at0c"},{"Name":"integrity","Value":"sha256-JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU="},{"Name":"label","Value":"_framework/System.Xml.XDocument.wasm.gz"}]},{"Route":"_framework/System.Xml.XDocument.wasm","AssetFile":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk="}]},{"Route":"_framework/System.Xml.XDocument.wasm","AssetFile":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000417362270"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2395"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk="},{"Name":"original-resource","Value":"\"7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk=\""}]},{"Route":"_framework/System.Xml.XDocument.wasm.gz","AssetFile":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2395"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU="}]},{"Route":"_framework/System.Xml.XPath.11wk1hhnfk.wasm","AssetFile":"_framework/System.Xml.XPath.11wk1hhnfk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"11wk1hhnfk"},{"Name":"integrity","Value":"sha256-28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM="},{"Name":"label","Value":"_framework/System.Xml.XPath.wasm"}]},{"Route":"_framework/System.Xml.XPath.11wk1hhnfk.wasm","AssetFile":"_framework/System.Xml.XPath.11wk1hhnfk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000430848772"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2320"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"11wk1hhnfk"},{"Name":"integrity","Value":"sha256-28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM="},{"Name":"label","Value":"_framework/System.Xml.XPath.wasm"},{"Name":"original-resource","Value":"\"28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM=\""}]},{"Route":"_framework/System.Xml.XPath.11wk1hhnfk.wasm.gz","AssetFile":"_framework/System.Xml.XPath.11wk1hhnfk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2320"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"11wk1hhnfk"},{"Name":"integrity","Value":"sha256-5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM="},{"Name":"label","Value":"_framework/System.Xml.XPath.wasm.gz"}]},{"Route":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm","AssetFile":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g7i5gd64yo"},{"Name":"integrity","Value":"sha256-bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg="},{"Name":"label","Value":"_framework/System.Xml.XPath.XDocument.wasm"}]},{"Route":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm","AssetFile":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000401284109"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2491"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g7i5gd64yo"},{"Name":"integrity","Value":"sha256-bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg="},{"Name":"label","Value":"_framework/System.Xml.XPath.XDocument.wasm"},{"Name":"original-resource","Value":"\"bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg=\""}]},{"Route":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm.gz","AssetFile":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2491"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g7i5gd64yo"},{"Name":"integrity","Value":"sha256-6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918="},{"Name":"label","Value":"_framework/System.Xml.XPath.XDocument.wasm.gz"}]},{"Route":"_framework/System.Xml.XPath.XDocument.wasm","AssetFile":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg="}]},{"Route":"_framework/System.Xml.XPath.XDocument.wasm","AssetFile":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000401284109"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2491"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg="},{"Name":"original-resource","Value":"\"bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg=\""}]},{"Route":"_framework/System.Xml.XPath.XDocument.wasm.gz","AssetFile":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2491"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918="}]},{"Route":"_framework/System.Xml.XPath.wasm","AssetFile":"_framework/System.Xml.XPath.11wk1hhnfk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM="}]},{"Route":"_framework/System.Xml.XPath.wasm","AssetFile":"_framework/System.Xml.XPath.11wk1hhnfk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000430848772"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2320"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM="},{"Name":"original-resource","Value":"\"28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM=\""}]},{"Route":"_framework/System.Xml.XPath.wasm.gz","AssetFile":"_framework/System.Xml.XPath.11wk1hhnfk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2320"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM="}]},{"Route":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm","AssetFile":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"isetn6xlxa"},{"Name":"integrity","Value":"sha256-Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw="},{"Name":"label","Value":"_framework/System.Xml.XmlDocument.wasm"}]},{"Route":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm","AssetFile":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000423190859"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"isetn6xlxa"},{"Name":"integrity","Value":"sha256-Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw="},{"Name":"label","Value":"_framework/System.Xml.XmlDocument.wasm"},{"Name":"original-resource","Value":"\"Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw=\""}]},{"Route":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm.gz","AssetFile":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"isetn6xlxa"},{"Name":"integrity","Value":"sha256-520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs="},{"Name":"label","Value":"_framework/System.Xml.XmlDocument.wasm.gz"}]},{"Route":"_framework/System.Xml.XmlDocument.wasm","AssetFile":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw="}]},{"Route":"_framework/System.Xml.XmlDocument.wasm","AssetFile":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000423190859"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw="},{"Name":"original-resource","Value":"\"Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw=\""}]},{"Route":"_framework/System.Xml.XmlDocument.wasm.gz","AssetFile":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs="}]},{"Route":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm","AssetFile":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"7445"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"okgnp5v9bw"},{"Name":"integrity","Value":"sha256-WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U="},{"Name":"label","Value":"_framework/System.Xml.XmlSerializer.wasm"}]},{"Route":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm","AssetFile":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000349406010"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"okgnp5v9bw"},{"Name":"integrity","Value":"sha256-WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U="},{"Name":"label","Value":"_framework/System.Xml.XmlSerializer.wasm"},{"Name":"original-resource","Value":"\"WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U=\""}]},{"Route":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm.gz","AssetFile":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"okgnp5v9bw"},{"Name":"integrity","Value":"sha256-WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA="},{"Name":"label","Value":"_framework/System.Xml.XmlSerializer.wasm.gz"}]},{"Route":"_framework/System.Xml.XmlSerializer.wasm","AssetFile":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"7445"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U="}]},{"Route":"_framework/System.Xml.XmlSerializer.wasm","AssetFile":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000349406010"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U="},{"Name":"original-resource","Value":"\"WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U=\""}]},{"Route":"_framework/System.Xml.XmlSerializer.wasm.gz","AssetFile":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA="}]},{"Route":"_framework/System.Xml.wasm","AssetFile":"_framework/System.Xml.zjgi7nrlno.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas="}]},{"Route":"_framework/System.Xml.wasm","AssetFile":"_framework/System.Xml.zjgi7nrlno.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000237079184"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4217"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas="},{"Name":"original-resource","Value":"\"scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas=\""}]},{"Route":"_framework/System.Xml.wasm.gz","AssetFile":"_framework/System.Xml.zjgi7nrlno.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4217"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY="}]},{"Route":"_framework/System.Xml.zjgi7nrlno.wasm","AssetFile":"_framework/System.Xml.zjgi7nrlno.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zjgi7nrlno"},{"Name":"integrity","Value":"sha256-scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas="},{"Name":"label","Value":"_framework/System.Xml.wasm"}]},{"Route":"_framework/System.Xml.zjgi7nrlno.wasm","AssetFile":"_framework/System.Xml.zjgi7nrlno.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000237079184"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4217"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zjgi7nrlno"},{"Name":"integrity","Value":"sha256-scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas="},{"Name":"label","Value":"_framework/System.Xml.wasm"},{"Name":"original-resource","Value":"\"scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas=\""}]},{"Route":"_framework/System.Xml.zjgi7nrlno.wasm.gz","AssetFile":"_framework/System.Xml.zjgi7nrlno.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4217"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zjgi7nrlno"},{"Name":"integrity","Value":"sha256-Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY="},{"Name":"label","Value":"_framework/System.Xml.wasm.gz"}]},{"Route":"_framework/System.wasm","AssetFile":"_framework/System.7rk3uansaa.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"39701"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q="}]},{"Route":"_framework/System.wasm","AssetFile":"_framework/System.7rk3uansaa.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000084875233"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q="},{"Name":"original-resource","Value":"\"00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q=\""}]},{"Route":"_framework/System.wasm.gz","AssetFile":"_framework/System.7rk3uansaa.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI="}]},{"Route":"_framework/WindowsBase.wasm","AssetFile":"_framework/WindowsBase.wz82kkc1p3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ="}]},{"Route":"_framework/WindowsBase.wasm","AssetFile":"_framework/WindowsBase.wz82kkc1p3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000395726157"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2526"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ="},{"Name":"original-resource","Value":"\"DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ=\""}]},{"Route":"_framework/WindowsBase.wasm.gz","AssetFile":"_framework/WindowsBase.wz82kkc1p3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2526"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc="}]},{"Route":"_framework/WindowsBase.wz82kkc1p3.wasm","AssetFile":"_framework/WindowsBase.wz82kkc1p3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wz82kkc1p3"},{"Name":"integrity","Value":"sha256-DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ="},{"Name":"label","Value":"_framework/WindowsBase.wasm"}]},{"Route":"_framework/WindowsBase.wz82kkc1p3.wasm","AssetFile":"_framework/WindowsBase.wz82kkc1p3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000395726157"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2526"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wz82kkc1p3"},{"Name":"integrity","Value":"sha256-DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ="},{"Name":"label","Value":"_framework/WindowsBase.wasm"},{"Name":"original-resource","Value":"\"DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ=\""}]},{"Route":"_framework/WindowsBase.wz82kkc1p3.wasm.gz","AssetFile":"_framework/WindowsBase.wz82kkc1p3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2526"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wz82kkc1p3"},{"Name":"integrity","Value":"sha256-b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc="},{"Name":"label","Value":"_framework/WindowsBase.wasm.gz"}]},{"Route":"_framework/blazor.webassembly.js","AssetFile":"_framework/blazor.webassembly.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"60278"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3lCWrko3zwspV40aQhs2S/IMkRSarnHRKIdkHhuXIBA=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 20:10:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3lCWrko3zwspV40aQhs2S/IMkRSarnHRKIdkHhuXIBA="}]},{"Route":"_framework/blazor.webassembly.js","AssetFile":"_framework/blazor.webassembly.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053404539"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18724"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"5Igt0nmzlphL04ESrb7MBY9ts2dhz5i3UJ+aCoJbK0Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3lCWrko3zwspV40aQhs2S/IMkRSarnHRKIdkHhuXIBA="},{"Name":"original-resource","Value":"\"3lCWrko3zwspV40aQhs2S/IMkRSarnHRKIdkHhuXIBA=\""}]},{"Route":"_framework/blazor.webassembly.js.gz","AssetFile":"_framework/blazor.webassembly.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18724"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"5Igt0nmzlphL04ESrb7MBY9ts2dhz5i3UJ+aCoJbK0Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5Igt0nmzlphL04ESrb7MBY9ts2dhz5i3UJ+aCoJbK0Y="}]},{"Route":"_framework/dotnet.js","AssetFile":"_framework/dotnet.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"93305"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk="}]},{"Route":"_framework/dotnet.js","AssetFile":"_framework/dotnet.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000039508514"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25310"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk="},{"Name":"original-resource","Value":"\"WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk=\""}]},{"Route":"_framework/dotnet.js.clndu25lif.map","AssetFile":"_framework/dotnet.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"51818"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:10 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clndu25lif"},{"Name":"integrity","Value":"sha256-sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU="},{"Name":"label","Value":"_framework/dotnet.js.map"}]},{"Route":"_framework/dotnet.js.clndu25lif.map","AssetFile":"_framework/dotnet.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051805419"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19302"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clndu25lif"},{"Name":"integrity","Value":"sha256-sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU="},{"Name":"label","Value":"_framework/dotnet.js.map"},{"Name":"original-resource","Value":"\"sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU=\""}]},{"Route":"_framework/dotnet.js.clndu25lif.map.gz","AssetFile":"_framework/dotnet.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19302"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clndu25lif"},{"Name":"integrity","Value":"sha256-viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs="},{"Name":"label","Value":"_framework/dotnet.js.map.gz"}]},{"Route":"_framework/dotnet.js.gz","AssetFile":"_framework/dotnet.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25310"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I="}]},{"Route":"_framework/dotnet.js.map","AssetFile":"_framework/dotnet.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"51818"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:10 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU="}]},{"Route":"_framework/dotnet.js.map","AssetFile":"_framework/dotnet.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051805419"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19302"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU="},{"Name":"original-resource","Value":"\"sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU=\""}]},{"Route":"_framework/dotnet.js.map.gz","AssetFile":"_framework/dotnet.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19302"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs="}]},{"Route":"_framework/dotnet.kx7meqmil2.js","AssetFile":"_framework/dotnet.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"93305"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"PreloadAs","Value":"script"},{"Name":"PreloadCrossorigin","Value":"anonymous"},{"Name":"PreloadGroup","Value":"webassembly"},{"Name":"PreloadOrder","Value":"1"},{"Name":"PreloadPriority","Value":"high"},{"Name":"PreloadRel","Value":"preload"},{"Name":"fingerprint","Value":"kx7meqmil2"},{"Name":"integrity","Value":"sha256-WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk="},{"Name":"label","Value":"_framework/dotnet.js"}]},{"Route":"_framework/dotnet.kx7meqmil2.js","AssetFile":"_framework/dotnet.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000039508514"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25310"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"PreloadAs","Value":"script"},{"Name":"PreloadCrossorigin","Value":"anonymous"},{"Name":"PreloadGroup","Value":"webassembly"},{"Name":"PreloadOrder","Value":"1"},{"Name":"PreloadPriority","Value":"high"},{"Name":"PreloadRel","Value":"preload"},{"Name":"fingerprint","Value":"kx7meqmil2"},{"Name":"integrity","Value":"sha256-WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk="},{"Name":"label","Value":"_framework/dotnet.js"},{"Name":"original-resource","Value":"\"WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk=\""}]},{"Route":"_framework/dotnet.kx7meqmil2.js.gz","AssetFile":"_framework/dotnet.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25310"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kx7meqmil2"},{"Name":"integrity","Value":"sha256-Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I="},{"Name":"label","Value":"_framework/dotnet.js.gz"}]},{"Route":"_framework/dotnet.native.53ez3dx5uy.wasm","AssetFile":"_framework/dotnet.native.53ez3dx5uy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3002101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:42 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"53ez3dx5uy"},{"Name":"integrity","Value":"sha256-Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU="},{"Name":"label","Value":"_framework/dotnet.native.wasm"}]},{"Route":"_framework/dotnet.native.53ez3dx5uy.wasm","AssetFile":"_framework/dotnet.native.53ez3dx5uy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000842441"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1187026"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"53ez3dx5uy"},{"Name":"integrity","Value":"sha256-Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU="},{"Name":"label","Value":"_framework/dotnet.native.wasm"},{"Name":"original-resource","Value":"\"Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU=\""}]},{"Route":"_framework/dotnet.native.53ez3dx5uy.wasm.gz","AssetFile":"_framework/dotnet.native.53ez3dx5uy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1187026"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"53ez3dx5uy"},{"Name":"integrity","Value":"sha256-SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw="},{"Name":"label","Value":"_framework/dotnet.native.wasm.gz"}]},{"Route":"_framework/dotnet.native.js","AssetFile":"_framework/dotnet.native.ykrnppwhq2.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"145050"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:42 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U="}]},{"Route":"_framework/dotnet.native.js","AssetFile":"_framework/dotnet.native.ykrnppwhq2.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000028845876"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"34666"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U="},{"Name":"original-resource","Value":"\"nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U=\""}]},{"Route":"_framework/dotnet.native.js.gz","AssetFile":"_framework/dotnet.native.ykrnppwhq2.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"34666"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0="}]},{"Route":"_framework/dotnet.native.wasm","AssetFile":"_framework/dotnet.native.53ez3dx5uy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3002101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:42 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU="}]},{"Route":"_framework/dotnet.native.wasm","AssetFile":"_framework/dotnet.native.53ez3dx5uy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000842441"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1187026"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU="},{"Name":"original-resource","Value":"\"Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU=\""}]},{"Route":"_framework/dotnet.native.wasm.gz","AssetFile":"_framework/dotnet.native.53ez3dx5uy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1187026"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw="}]},{"Route":"_framework/dotnet.native.ykrnppwhq2.js","AssetFile":"_framework/dotnet.native.ykrnppwhq2.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"145050"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:42 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ykrnppwhq2"},{"Name":"integrity","Value":"sha256-nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U="},{"Name":"label","Value":"_framework/dotnet.native.js"}]},{"Route":"_framework/dotnet.native.ykrnppwhq2.js","AssetFile":"_framework/dotnet.native.ykrnppwhq2.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000028845876"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"34666"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ykrnppwhq2"},{"Name":"integrity","Value":"sha256-nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U="},{"Name":"label","Value":"_framework/dotnet.native.js"},{"Name":"original-resource","Value":"\"nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U=\""}]},{"Route":"_framework/dotnet.native.ykrnppwhq2.js.gz","AssetFile":"_framework/dotnet.native.ykrnppwhq2.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"34666"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ykrnppwhq2"},{"Name":"integrity","Value":"sha256-iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0="},{"Name":"label","Value":"_framework/dotnet.native.js.gz"}]},{"Route":"_framework/dotnet.runtime.js","AssetFile":"_framework/dotnet.runtime.peu2mfb29t.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"198479"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:16 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM="}]},{"Route":"_framework/dotnet.runtime.js","AssetFile":"_framework/dotnet.runtime.peu2mfb29t.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017664099"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56611"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM="},{"Name":"original-resource","Value":"\"cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM=\""}]},{"Route":"_framework/dotnet.runtime.js.gz","AssetFile":"_framework/dotnet.runtime.peu2mfb29t.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56611"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak="}]},{"Route":"_framework/dotnet.runtime.js.map","AssetFile":"_framework/dotnet.runtime.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"276757"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:16 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE="}]},{"Route":"_framework/dotnet.runtime.js.map","AssetFile":"_framework/dotnet.runtime.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011299052"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"88502"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE="},{"Name":"original-resource","Value":"\"+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE=\""}]},{"Route":"_framework/dotnet.runtime.js.map.gz","AssetFile":"_framework/dotnet.runtime.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"88502"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4="}]},{"Route":"_framework/dotnet.runtime.js.y1cse46x0j.map","AssetFile":"_framework/dotnet.runtime.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"276757"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:16 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y1cse46x0j"},{"Name":"integrity","Value":"sha256-+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE="},{"Name":"label","Value":"_framework/dotnet.runtime.js.map"}]},{"Route":"_framework/dotnet.runtime.js.y1cse46x0j.map","AssetFile":"_framework/dotnet.runtime.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011299052"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"88502"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y1cse46x0j"},{"Name":"integrity","Value":"sha256-+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE="},{"Name":"label","Value":"_framework/dotnet.runtime.js.map"},{"Name":"original-resource","Value":"\"+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE=\""}]},{"Route":"_framework/dotnet.runtime.js.y1cse46x0j.map.gz","AssetFile":"_framework/dotnet.runtime.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"88502"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y1cse46x0j"},{"Name":"integrity","Value":"sha256-8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4="},{"Name":"label","Value":"_framework/dotnet.runtime.js.map.gz"}]},{"Route":"_framework/dotnet.runtime.peu2mfb29t.js","AssetFile":"_framework/dotnet.runtime.peu2mfb29t.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"198479"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:16 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"peu2mfb29t"},{"Name":"integrity","Value":"sha256-cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM="},{"Name":"label","Value":"_framework/dotnet.runtime.js"}]},{"Route":"_framework/dotnet.runtime.peu2mfb29t.js","AssetFile":"_framework/dotnet.runtime.peu2mfb29t.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017664099"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56611"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"peu2mfb29t"},{"Name":"integrity","Value":"sha256-cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM="},{"Name":"label","Value":"_framework/dotnet.runtime.js"},{"Name":"original-resource","Value":"\"cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM=\""}]},{"Route":"_framework/dotnet.runtime.peu2mfb29t.js.gz","AssetFile":"_framework/dotnet.runtime.peu2mfb29t.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56611"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"peu2mfb29t"},{"Name":"integrity","Value":"sha256-1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak="},{"Name":"label","Value":"_framework/dotnet.runtime.js.gz"}]},{"Route":"_framework/icudt_CJK.dat","AssetFile":"_framework/icudt_CJK.tjcz0u77k5.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"956416"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk="}]},{"Route":"_framework/icudt_CJK.dat","AssetFile":"_framework/icudt_CJK.tjcz0u77k5.dat.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003002002"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"333110"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk="},{"Name":"original-resource","Value":"\"SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=\""}]},{"Route":"_framework/icudt_CJK.dat.gz","AssetFile":"_framework/icudt_CJK.tjcz0u77k5.dat.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"333110"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g="}]},{"Route":"_framework/icudt_CJK.tjcz0u77k5.dat","AssetFile":"_framework/icudt_CJK.tjcz0u77k5.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"956416"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tjcz0u77k5"},{"Name":"integrity","Value":"sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk="},{"Name":"label","Value":"_framework/icudt_CJK.dat"}]},{"Route":"_framework/icudt_CJK.tjcz0u77k5.dat","AssetFile":"_framework/icudt_CJK.tjcz0u77k5.dat.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003002002"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"333110"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tjcz0u77k5"},{"Name":"integrity","Value":"sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk="},{"Name":"label","Value":"_framework/icudt_CJK.dat"},{"Name":"original-resource","Value":"\"SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=\""}]},{"Route":"_framework/icudt_CJK.tjcz0u77k5.dat.gz","AssetFile":"_framework/icudt_CJK.tjcz0u77k5.dat.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"333110"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tjcz0u77k5"},{"Name":"integrity","Value":"sha256-JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g="},{"Name":"label","Value":"_framework/icudt_CJK.dat.gz"}]},{"Route":"_framework/icudt_EFIGS.dat","AssetFile":"_framework/icudt_EFIGS.tptq2av103.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"550832"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc="}]},{"Route":"_framework/icudt_EFIGS.dat","AssetFile":"_framework/icudt_EFIGS.tptq2av103.dat.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005101052"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196037"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc="},{"Name":"original-resource","Value":"\"8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=\""}]},{"Route":"_framework/icudt_EFIGS.dat.gz","AssetFile":"_framework/icudt_EFIGS.tptq2av103.dat.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196037"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE="}]},{"Route":"_framework/icudt_EFIGS.tptq2av103.dat","AssetFile":"_framework/icudt_EFIGS.tptq2av103.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"550832"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tptq2av103"},{"Name":"integrity","Value":"sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc="},{"Name":"label","Value":"_framework/icudt_EFIGS.dat"}]},{"Route":"_framework/icudt_EFIGS.tptq2av103.dat","AssetFile":"_framework/icudt_EFIGS.tptq2av103.dat.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005101052"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196037"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tptq2av103"},{"Name":"integrity","Value":"sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc="},{"Name":"label","Value":"_framework/icudt_EFIGS.dat"},{"Name":"original-resource","Value":"\"8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=\""}]},{"Route":"_framework/icudt_EFIGS.tptq2av103.dat.gz","AssetFile":"_framework/icudt_EFIGS.tptq2av103.dat.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196037"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tptq2av103"},{"Name":"integrity","Value":"sha256-G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE="},{"Name":"label","Value":"_framework/icudt_EFIGS.dat.gz"}]},{"Route":"_framework/icudt_no_CJK.dat","AssetFile":"_framework/icudt_no_CJK.lfu7j35m59.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1107168"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs="}]},{"Route":"_framework/icudt_no_CJK.dat","AssetFile":"_framework/icudt_no_CJK.lfu7j35m59.dat.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003148426"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"317618"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs="},{"Name":"original-resource","Value":"\"L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs=\""}]},{"Route":"_framework/icudt_no_CJK.dat.gz","AssetFile":"_framework/icudt_no_CJK.lfu7j35m59.dat.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"317618"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk="}]},{"Route":"_framework/icudt_no_CJK.lfu7j35m59.dat","AssetFile":"_framework/icudt_no_CJK.lfu7j35m59.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1107168"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lfu7j35m59"},{"Name":"integrity","Value":"sha256-L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs="},{"Name":"label","Value":"_framework/icudt_no_CJK.dat"}]},{"Route":"_framework/icudt_no_CJK.lfu7j35m59.dat","AssetFile":"_framework/icudt_no_CJK.lfu7j35m59.dat.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003148426"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"317618"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lfu7j35m59"},{"Name":"integrity","Value":"sha256-L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs="},{"Name":"label","Value":"_framework/icudt_no_CJK.dat"},{"Name":"original-resource","Value":"\"L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs=\""}]},{"Route":"_framework/icudt_no_CJK.lfu7j35m59.dat.gz","AssetFile":"_framework/icudt_no_CJK.lfu7j35m59.dat.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"317618"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lfu7j35m59"},{"Name":"integrity","Value":"sha256-S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk="},{"Name":"label","Value":"_framework/icudt_no_CJK.dat.gz"}]},{"Route":"_framework/mscorlib.555t1ekkz8.wasm","AssetFile":"_framework/mscorlib.555t1ekkz8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"49429"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"555t1ekkz8"},{"Name":"integrity","Value":"sha256-SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M="},{"Name":"label","Value":"_framework/mscorlib.wasm"}]},{"Route":"_framework/mscorlib.555t1ekkz8.wasm","AssetFile":"_framework/mscorlib.555t1ekkz8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067417245"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"555t1ekkz8"},{"Name":"integrity","Value":"sha256-SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M="},{"Name":"label","Value":"_framework/mscorlib.wasm"},{"Name":"original-resource","Value":"\"SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M=\""}]},{"Route":"_framework/mscorlib.555t1ekkz8.wasm.gz","AssetFile":"_framework/mscorlib.555t1ekkz8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"555t1ekkz8"},{"Name":"integrity","Value":"sha256-qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4="},{"Name":"label","Value":"_framework/mscorlib.wasm.gz"}]},{"Route":"_framework/mscorlib.wasm","AssetFile":"_framework/mscorlib.555t1ekkz8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"49429"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M="}]},{"Route":"_framework/mscorlib.wasm","AssetFile":"_framework/mscorlib.555t1ekkz8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067417245"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M="},{"Name":"original-resource","Value":"\"SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M=\""}]},{"Route":"_framework/mscorlib.wasm.gz","AssetFile":"_framework/mscorlib.555t1ekkz8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4="}]},{"Route":"_framework/netstandard.0e3bjkca9m.wasm","AssetFile":"_framework/netstandard.0e3bjkca9m.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"90389"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0e3bjkca9m"},{"Name":"integrity","Value":"sha256-6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs="},{"Name":"label","Value":"_framework/netstandard.wasm"}]},{"Route":"_framework/netstandard.0e3bjkca9m.wasm","AssetFile":"_framework/netstandard.0e3bjkca9m.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038333269"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26086"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0e3bjkca9m"},{"Name":"integrity","Value":"sha256-6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs="},{"Name":"label","Value":"_framework/netstandard.wasm"},{"Name":"original-resource","Value":"\"6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs=\""}]},{"Route":"_framework/netstandard.0e3bjkca9m.wasm.gz","AssetFile":"_framework/netstandard.0e3bjkca9m.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26086"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0e3bjkca9m"},{"Name":"integrity","Value":"sha256-GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE="},{"Name":"label","Value":"_framework/netstandard.wasm.gz"}]},{"Route":"_framework/netstandard.wasm","AssetFile":"_framework/netstandard.0e3bjkca9m.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"90389"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs="}]},{"Route":"_framework/netstandard.wasm","AssetFile":"_framework/netstandard.0e3bjkca9m.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038333269"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26086"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs="},{"Name":"original-resource","Value":"\"6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs=\""}]},{"Route":"_framework/netstandard.wasm.gz","AssetFile":"_framework/netstandard.0e3bjkca9m.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26086"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE="}]},{"Route":"appsettings.Development.json","AssetFile":"appsettings.Development.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009174311927"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"original-resource","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""}]},{"Route":"appsettings.Development.json","AssetFile":"appsettings.Development.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="}]},{"Route":"appsettings.Development.json.gz","AssetFile":"appsettings.Development.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4="}]},{"Route":"appsettings.Development.x0ueugt8gp.json","AssetFile":"appsettings.Development.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009174311927"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"label","Value":"appsettings.Development.json"},{"Name":"original-resource","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""}]},{"Route":"appsettings.Development.x0ueugt8gp.json","AssetFile":"appsettings.Development.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"label","Value":"appsettings.Development.json"}]},{"Route":"appsettings.Development.x0ueugt8gp.json.gz","AssetFile":"appsettings.Development.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4="},{"Name":"label","Value":"appsettings.Development.json.gz"}]},{"Route":"appsettings.json","AssetFile":"appsettings.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009174311927"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"original-resource","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""}]},{"Route":"appsettings.json","AssetFile":"appsettings.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="}]},{"Route":"appsettings.json.gz","AssetFile":"appsettings.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4="}]},{"Route":"appsettings.x0ueugt8gp.json","AssetFile":"appsettings.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009174311927"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"label","Value":"appsettings.json"},{"Name":"original-resource","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""}]},{"Route":"appsettings.x0ueugt8gp.json","AssetFile":"appsettings.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"label","Value":"appsettings.json"}]},{"Route":"appsettings.x0ueugt8gp.json.gz","AssetFile":"appsettings.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4="},{"Name":"label","Value":"appsettings.json.gz"}]}]} \ No newline at end of file diff --git a/OnProfNext.Client/bin/Debug/net10.0/OnProfNext.Client.staticwebassets.runtime.json b/OnProfNext.Client/bin/Debug/net10.0/OnProfNext.Client.staticwebassets.runtime.json new file mode 100644 index 0000000..38d5115 --- /dev/null +++ b/OnProfNext.Client/bin/Debug/net10.0/OnProfNext.Client.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\","D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\scopedcss\\bundle\\","D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\","C:\\Users\\wiela\\.nuget\\packages\\microsoft.dotnet.hotreload.webassembly.browser\\10.0.201\\staticwebassets\\","C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\"],"Root":{"Children":{"appsettings.Development.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"appsettings.Development.json"},"Patterns":null},"appsettings.Development.json.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"bfkt9xtjsh-{0}-x0ueugt8gp-x0ueugt8gp.gz"},"Patterns":null},"appsettings.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"appsettings.json"},"Patterns":null},"appsettings.json.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3hvscw4lq4-{0}-x0ueugt8gp-x0ueugt8gp.gz"},"Patterns":null},"OnProfNext.Client.styles.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"OnProfNext.Client.styles.css"},"Patterns":null},"OnProfNext.Client.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hd2b1ihltm-{0}-uzl7ca9j9c-uzl7ca9j9c.gz"},"Patterns":null},"_framework":{"Children":{"blazor.webassembly.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/blazor.webassembly.js"},"Patterns":null},"blazor.webassembly.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vbwtfewq79-{0}-66stpp682q-66stpp682q.gz"},"Patterns":null},"dotnet.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/dotnet.js"},"Patterns":null},"dotnet.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"qz9h56e7z8-{0}-kx7meqmil2-kx7meqmil2.gz"},"Patterns":null},"dotnet.js.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/dotnet.js.map"},"Patterns":null},"dotnet.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jg5bcwzjkb-{0}-clndu25lif-clndu25lif.gz"},"Patterns":null},"dotnet.native.53ez3dx5uy.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/dotnet.native.53ez3dx5uy.wasm"},"Patterns":null},"dotnet.native.53ez3dx5uy.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"4gmvxkcg2g-{0}-53ez3dx5uy-53ez3dx5uy.gz"},"Patterns":null},"dotnet.native.ykrnppwhq2.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/dotnet.native.ykrnppwhq2.js"},"Patterns":null},"dotnet.native.ykrnppwhq2.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"4131vl2c0u-{0}-ykrnppwhq2-ykrnppwhq2.gz"},"Patterns":null},"dotnet.runtime.js.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/dotnet.runtime.js.map"},"Patterns":null},"dotnet.runtime.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"6fczie0f1k-{0}-y1cse46x0j-y1cse46x0j.gz"},"Patterns":null},"dotnet.runtime.peu2mfb29t.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/dotnet.runtime.peu2mfb29t.js"},"Patterns":null},"dotnet.runtime.peu2mfb29t.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"arn1xqjw1x-{0}-peu2mfb29t-peu2mfb29t.gz"},"Patterns":null},"icudt_CJK.tjcz0u77k5.dat":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/icudt_CJK.tjcz0u77k5.dat"},"Patterns":null},"icudt_CJK.tjcz0u77k5.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"2noakrdf2j-{0}-tjcz0u77k5-tjcz0u77k5.gz"},"Patterns":null},"icudt_EFIGS.tptq2av103.dat":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/icudt_EFIGS.tptq2av103.dat"},"Patterns":null},"icudt_EFIGS.tptq2av103.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"yee81ivl95-{0}-tptq2av103-tptq2av103.gz"},"Patterns":null},"icudt_no_CJK.lfu7j35m59.dat":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/icudt_no_CJK.lfu7j35m59.dat"},"Patterns":null},"icudt_no_CJK.lfu7j35m59.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gnkv5k3g9v-{0}-lfu7j35m59-lfu7j35m59.gz"},"Patterns":null},"Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm"},"Patterns":null},"Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"5g3srlr8jx-{0}-roqc1km2rj-roqc1km2rj.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm"},"Patterns":null},"Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"qlfvznror3-{0}-zrueb40r85-zrueb40r85.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.uddsvpv1sv.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm"},"Patterns":null},"Microsoft.AspNetCore.Components.uddsvpv1sv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fs9spivh8g-{0}-uddsvpv1sv-uddsvpv1sv.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm"},"Patterns":null},"Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gx4y3aoczp-{0}-g5qdp1mxha-g5qdp1mxha.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm"},"Patterns":null},"Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"mx4r46cpu7-{0}-9mjwvs1qyp-9mjwvs1qyp.gz"},"Patterns":null},"Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm"},"Patterns":null},"Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zpx4nb1yyz-{0}-m3mxap0jif-m3mxap0jif.gz"},"Patterns":null},"Microsoft.CSharp.452y5fjxmv.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.CSharp.452y5fjxmv.wasm"},"Patterns":null},"Microsoft.CSharp.452y5fjxmv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"yva5srnvsu-{0}-452y5fjxmv-452y5fjxmv.gz"},"Patterns":null},"Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm"},"Patterns":null},"Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3of7h5c6n8-{0}-hrhwg3a64c-hrhwg3a64c.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm"},"Patterns":null},"Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"s4opith0ak-{0}-thew1o6jcx-thew1o6jcx.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm"},"Patterns":null},"Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"11oooy7jd2-{0}-7o70008j8o-7o70008j8o.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm"},"Patterns":null},"Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"dnrp0xl7wy-{0}-fgwnqtu7qk-fgwnqtu7qk.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm"},"Patterns":null},"Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vhumncwy1p-{0}-ouivavlhyy-ouivavlhyy.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm"},"Patterns":null},"Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"69vphje66t-{0}-giv4t23za9-giv4t23za9.gz"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kstk0dzyw1-{0}-ud13mwbta3-ud13mwbta3.gz"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"epsgnejg6l-{0}-vs620n44bv-vs620n44bv.gz"},"Patterns":null},"Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm"},"Patterns":null},"Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0o3yap4xcv-{0}-v59ymogeuz-v59ymogeuz.gz"},"Patterns":null},"Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm"},"Patterns":null},"Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3rwukvhyra-{0}-jnogfbng3i-jnogfbng3i.gz"},"Patterns":null},"Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm"},"Patterns":null},"Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ezxlu8d1x1-{0}-ssv83rveyv-ssv83rveyv.gz"},"Patterns":null},"Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm"},"Patterns":null},"Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"keeokmerp8-{0}-8gz29xpyh3-8gz29xpyh3.gz"},"Patterns":null},"Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm"},"Patterns":null},"Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"l2v44xhbzj-{0}-ozuva4e3vv-ozuva4e3vv.gz"},"Patterns":null},"Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm"},"Patterns":null},"Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tezhiquus4-{0}-6jkolue1ka-6jkolue1ka.gz"},"Patterns":null},"Microsoft.Extensions.Localization.xcslyy3nju.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm"},"Patterns":null},"Microsoft.Extensions.Localization.xcslyy3nju.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"84jx0dmgdc-{0}-xcslyy3nju-xcslyy3nju.gz"},"Patterns":null},"Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm"},"Patterns":null},"Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"sn0mpm6uvc-{0}-1q3x7vre4l-1q3x7vre4l.gz"},"Patterns":null},"Microsoft.Extensions.Logging.y4ydx3rk2c.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm"},"Patterns":null},"Microsoft.Extensions.Logging.y4ydx3rk2c.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"oix89w3uk2-{0}-y4ydx3rk2c-y4ydx3rk2c.gz"},"Patterns":null},"Microsoft.Extensions.Options.2rz5zbidnd.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm"},"Patterns":null},"Microsoft.Extensions.Options.2rz5zbidnd.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"u4abyqnekj-{0}-2rz5zbidnd-2rz5zbidnd.gz"},"Patterns":null},"Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm"},"Patterns":null},"Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ozc2mb3rdz-{0}-zmb03w0weu-zmb03w0weu.gz"},"Patterns":null},"Microsoft.Extensions.Primitives.bd164v6l3f.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm"},"Patterns":null},"Microsoft.Extensions.Primitives.bd164v6l3f.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"co27dkpaxa-{0}-bd164v6l3f-bd164v6l3f.gz"},"Patterns":null},"Microsoft.Extensions.Validation.r1sv3m5lsf.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm"},"Patterns":null},"Microsoft.Extensions.Validation.r1sv3m5lsf.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fappprmifz-{0}-r1sv3m5lsf-r1sv3m5lsf.gz"},"Patterns":null},"Microsoft.JSInterop.1r0ampr2q1.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm"},"Patterns":null},"Microsoft.JSInterop.1r0ampr2q1.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"pro4ajsvfg-{0}-1r0ampr2q1-1r0ampr2q1.gz"},"Patterns":null},"Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm"},"Patterns":null},"Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"6mv5cent6u-{0}-oz8fkrrrd6-oz8fkrrrd6.gz"},"Patterns":null},"Microsoft.VisualBasic.91iw3j3d9p.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm"},"Patterns":null},"Microsoft.VisualBasic.91iw3j3d9p.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"akapjt0sxo-{0}-91iw3j3d9p-91iw3j3d9p.gz"},"Patterns":null},"Microsoft.VisualBasic.Core.re3geseai5.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm"},"Patterns":null},"Microsoft.VisualBasic.Core.re3geseai5.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"du4skpg5oq-{0}-re3geseai5-re3geseai5.gz"},"Patterns":null},"Microsoft.Win32.Primitives.2mjytoh92q.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm"},"Patterns":null},"Microsoft.Win32.Primitives.2mjytoh92q.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"i7n8kqec4e-{0}-2mjytoh92q-2mjytoh92q.gz"},"Patterns":null},"Microsoft.Win32.Registry.yz8nt3ycsq.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm"},"Patterns":null},"Microsoft.Win32.Registry.yz8nt3ycsq.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"553rwsqb4a-{0}-yz8nt3ycsq-yz8nt3ycsq.gz"},"Patterns":null},"mscorlib.555t1ekkz8.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/mscorlib.555t1ekkz8.wasm"},"Patterns":null},"mscorlib.555t1ekkz8.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"6ixuumt5h1-{0}-555t1ekkz8-555t1ekkz8.gz"},"Patterns":null},"MudBlazor.k6079czmkm.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/MudBlazor.k6079czmkm.wasm"},"Patterns":null},"MudBlazor.k6079czmkm.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"w2iaa8sc3u-{0}-k6079czmkm-k6079czmkm.gz"},"Patterns":null},"netstandard.0e3bjkca9m.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/netstandard.0e3bjkca9m.wasm"},"Patterns":null},"netstandard.0e3bjkca9m.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8dl34ipw8j-{0}-0e3bjkca9m-0e3bjkca9m.gz"},"Patterns":null},"OnProfNext.Client.lplk7v275j.pdb":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/OnProfNext.Client.lplk7v275j.pdb"},"Patterns":null},"OnProfNext.Client.lplk7v275j.pdb.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"cycczivqx5-{0}-lplk7v275j-lplk7v275j.gz"},"Patterns":null},"OnProfNext.Client.xhq6acanj0.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/OnProfNext.Client.xhq6acanj0.wasm"},"Patterns":null},"OnProfNext.Client.xhq6acanj0.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"f6u1msztxb-{0}-xhq6acanj0-xhq6acanj0.gz"},"Patterns":null},"System.7rk3uansaa.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.7rk3uansaa.wasm"},"Patterns":null},"System.7rk3uansaa.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"5onvg4v1ie-{0}-7rk3uansaa-7rk3uansaa.gz"},"Patterns":null},"System.AppContext.uwq3fpef1w.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.AppContext.uwq3fpef1w.wasm"},"Patterns":null},"System.AppContext.uwq3fpef1w.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jcwxb5s78i-{0}-uwq3fpef1w-uwq3fpef1w.gz"},"Patterns":null},"System.Buffers.m4yhcvz2y2.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Buffers.m4yhcvz2y2.wasm"},"Patterns":null},"System.Buffers.m4yhcvz2y2.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8u2rup9szd-{0}-m4yhcvz2y2-m4yhcvz2y2.gz"},"Patterns":null},"System.Collections.63jrcion39.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Collections.63jrcion39.wasm"},"Patterns":null},"System.Collections.63jrcion39.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3zhncs8zdy-{0}-63jrcion39-63jrcion39.gz"},"Patterns":null},"System.Collections.Concurrent.1zv6wuzklu.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm"},"Patterns":null},"System.Collections.Concurrent.1zv6wuzklu.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"niv8zsbxhl-{0}-1zv6wuzklu-1zv6wuzklu.gz"},"Patterns":null},"System.Collections.Immutable.6uzpuv4o5d.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm"},"Patterns":null},"System.Collections.Immutable.6uzpuv4o5d.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3k0w0ci5df-{0}-6uzpuv4o5d-6uzpuv4o5d.gz"},"Patterns":null},"System.Collections.NonGeneric.k5rgagff9o.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm"},"Patterns":null},"System.Collections.NonGeneric.k5rgagff9o.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"r1c02csw1u-{0}-k5rgagff9o-k5rgagff9o.gz"},"Patterns":null},"System.Collections.Specialized.84wojkejb4.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Collections.Specialized.84wojkejb4.wasm"},"Patterns":null},"System.Collections.Specialized.84wojkejb4.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"q6am3o85wz-{0}-84wojkejb4-84wojkejb4.gz"},"Patterns":null},"System.ComponentModel.Annotations.cjsvkufomv.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm"},"Patterns":null},"System.ComponentModel.Annotations.cjsvkufomv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"wj9cgpvw17-{0}-cjsvkufomv-cjsvkufomv.gz"},"Patterns":null},"System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm"},"Patterns":null},"System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jimv6lw5j5-{0}-vpng0qt4u6-vpng0qt4u6.gz"},"Patterns":null},"System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm"},"Patterns":null},"System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ixx2bqnfah-{0}-en4q13ibd5-en4q13ibd5.gz"},"Patterns":null},"System.ComponentModel.m11rh1qn2x.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.ComponentModel.m11rh1qn2x.wasm"},"Patterns":null},"System.ComponentModel.m11rh1qn2x.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ffumllgt4m-{0}-m11rh1qn2x-m11rh1qn2x.gz"},"Patterns":null},"System.ComponentModel.Primitives.u0y5oi3qdg.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm"},"Patterns":null},"System.ComponentModel.Primitives.u0y5oi3qdg.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"nu73pdet4t-{0}-u0y5oi3qdg-u0y5oi3qdg.gz"},"Patterns":null},"System.ComponentModel.TypeConverter.e2hbv9lola.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm"},"Patterns":null},"System.ComponentModel.TypeConverter.e2hbv9lola.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gpzobq46fp-{0}-e2hbv9lola-e2hbv9lola.gz"},"Patterns":null},"System.Configuration.j8qjkqg593.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Configuration.j8qjkqg593.wasm"},"Patterns":null},"System.Configuration.j8qjkqg593.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"o9xpqh7wzb-{0}-j8qjkqg593-j8qjkqg593.gz"},"Patterns":null},"System.Console.x9at0eh4vs.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Console.x9at0eh4vs.wasm"},"Patterns":null},"System.Console.x9at0eh4vs.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ea8uo6cwb8-{0}-x9at0eh4vs-x9at0eh4vs.gz"},"Patterns":null},"System.Core.ickp29885z.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Core.ickp29885z.wasm"},"Patterns":null},"System.Core.ickp29885z.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"edgswerp4g-{0}-ickp29885z-ickp29885z.gz"},"Patterns":null},"System.Data.0h75nr7qqd.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Data.0h75nr7qqd.wasm"},"Patterns":null},"System.Data.0h75nr7qqd.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"y20kxtztgi-{0}-0h75nr7qqd-0h75nr7qqd.gz"},"Patterns":null},"System.Data.Common.4wisaz8pj4.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Data.Common.4wisaz8pj4.wasm"},"Patterns":null},"System.Data.Common.4wisaz8pj4.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"68hq2gv5cb-{0}-4wisaz8pj4-4wisaz8pj4.gz"},"Patterns":null},"System.Data.DataSetExtensions.904tnen1ot.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm"},"Patterns":null},"System.Data.DataSetExtensions.904tnen1ot.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"sm8o0gwk5g-{0}-904tnen1ot-904tnen1ot.gz"},"Patterns":null},"System.Diagnostics.Contracts.z1eotzj35n.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm"},"Patterns":null},"System.Diagnostics.Contracts.z1eotzj35n.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"wgdliulfxe-{0}-z1eotzj35n-z1eotzj35n.gz"},"Patterns":null},"System.Diagnostics.Debug.aeh9b1tcuc.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm"},"Patterns":null},"System.Diagnostics.Debug.aeh9b1tcuc.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"i9mn6d27vy-{0}-aeh9b1tcuc-aeh9b1tcuc.gz"},"Patterns":null},"System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm"},"Patterns":null},"System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lgx6p69ons-{0}-ou2dt7nfo2-ou2dt7nfo2.gz"},"Patterns":null},"System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm"},"Patterns":null},"System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"i7dsezujyr-{0}-kv9gl8mgag-kv9gl8mgag.gz"},"Patterns":null},"System.Diagnostics.Process.lqtqkmw274.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm"},"Patterns":null},"System.Diagnostics.Process.lqtqkmw274.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"67s0zux9y9-{0}-lqtqkmw274-lqtqkmw274.gz"},"Patterns":null},"System.Diagnostics.StackTrace.wvlboxd9cz.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm"},"Patterns":null},"System.Diagnostics.StackTrace.wvlboxd9cz.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ae1qv5wfu3-{0}-wvlboxd9cz-wvlboxd9cz.gz"},"Patterns":null},"System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm"},"Patterns":null},"System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"5psn88uayv-{0}-mx5w1z1p6w-mx5w1z1p6w.gz"},"Patterns":null},"System.Diagnostics.Tools.862j1ozg5o.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm"},"Patterns":null},"System.Diagnostics.Tools.862j1ozg5o.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"6yvil548ai-{0}-862j1ozg5o-862j1ozg5o.gz"},"Patterns":null},"System.Diagnostics.TraceSource.j08okd90mo.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm"},"Patterns":null},"System.Diagnostics.TraceSource.j08okd90mo.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"w9uuhprkgr-{0}-j08okd90mo-j08okd90mo.gz"},"Patterns":null},"System.Diagnostics.Tracing.bnz7jo4op8.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm"},"Patterns":null},"System.Diagnostics.Tracing.bnz7jo4op8.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ymz6pz7ujf-{0}-bnz7jo4op8-bnz7jo4op8.gz"},"Patterns":null},"System.Drawing.Primitives.k3z431p3v7.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm"},"Patterns":null},"System.Drawing.Primitives.k3z431p3v7.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"beyjjw9nw7-{0}-k3z431p3v7-k3z431p3v7.gz"},"Patterns":null},"System.Drawing.v0usa2s224.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Drawing.v0usa2s224.wasm"},"Patterns":null},"System.Drawing.v0usa2s224.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"bm4t56k5pn-{0}-v0usa2s224-v0usa2s224.gz"},"Patterns":null},"System.Dynamic.Runtime.iktlm0yhdx.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm"},"Patterns":null},"System.Dynamic.Runtime.iktlm0yhdx.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"95o3q4uwxv-{0}-iktlm0yhdx-iktlm0yhdx.gz"},"Patterns":null},"System.Formats.Asn1.9iyl1hnh76.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm"},"Patterns":null},"System.Formats.Asn1.9iyl1hnh76.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"2eqyybz3l2-{0}-9iyl1hnh76-9iyl1hnh76.gz"},"Patterns":null},"System.Formats.Tar.9ikmelhi7g.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Formats.Tar.9ikmelhi7g.wasm"},"Patterns":null},"System.Formats.Tar.9ikmelhi7g.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"aawrgxq7b9-{0}-9ikmelhi7g-9ikmelhi7g.gz"},"Patterns":null},"System.Globalization.4ulc930few.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Globalization.4ulc930few.wasm"},"Patterns":null},"System.Globalization.4ulc930few.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"nvjr9jta08-{0}-4ulc930few-4ulc930few.gz"},"Patterns":null},"System.Globalization.Calendars.e8yl47y6cv.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm"},"Patterns":null},"System.Globalization.Calendars.e8yl47y6cv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"g4w42juzkx-{0}-e8yl47y6cv-e8yl47y6cv.gz"},"Patterns":null},"System.Globalization.Extensions.fvxkfs32tv.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm"},"Patterns":null},"System.Globalization.Extensions.fvxkfs32tv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"g3b5a282rj-{0}-fvxkfs32tv-fvxkfs32tv.gz"},"Patterns":null},"System.IO.Compression.Brotli.ibxx4kh8c6.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm"},"Patterns":null},"System.IO.Compression.Brotli.ibxx4kh8c6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"flmzbagm0p-{0}-ibxx4kh8c6-ibxx4kh8c6.gz"},"Patterns":null},"System.IO.Compression.FileSystem.bselp9vv9w.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm"},"Patterns":null},"System.IO.Compression.FileSystem.bselp9vv9w.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ffagyufl1o-{0}-bselp9vv9w-bselp9vv9w.gz"},"Patterns":null},"System.IO.Compression.sgbc42zrd8.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.Compression.sgbc42zrd8.wasm"},"Patterns":null},"System.IO.Compression.sgbc42zrd8.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"mk5261bq2v-{0}-sgbc42zrd8-sgbc42zrd8.gz"},"Patterns":null},"System.IO.Compression.ZipFile.b0ha8vyo8i.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm"},"Patterns":null},"System.IO.Compression.ZipFile.b0ha8vyo8i.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"a99cqvh69a-{0}-b0ha8vyo8i-b0ha8vyo8i.gz"},"Patterns":null},"System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm"},"Patterns":null},"System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"m3i6jtsneo-{0}-oi9xn5s0h3-oi9xn5s0h3.gz"},"Patterns":null},"System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm"},"Patterns":null},"System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8i8whn9pm1-{0}-fi1uhp9255-fi1uhp9255.gz"},"Patterns":null},"System.IO.FileSystem.fktu0k4b93.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.FileSystem.fktu0k4b93.wasm"},"Patterns":null},"System.IO.FileSystem.fktu0k4b93.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vnqjd4ny0q-{0}-fktu0k4b93-fktu0k4b93.gz"},"Patterns":null},"System.IO.FileSystem.Primitives.6j2ed42ac7.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm"},"Patterns":null},"System.IO.FileSystem.Primitives.6j2ed42ac7.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kzc385ysv6-{0}-6j2ed42ac7-6j2ed42ac7.gz"},"Patterns":null},"System.IO.FileSystem.Watcher.v9i07bnq2k.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm"},"Patterns":null},"System.IO.FileSystem.Watcher.v9i07bnq2k.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"m428rlfc87-{0}-v9i07bnq2k-v9i07bnq2k.gz"},"Patterns":null},"System.IO.i9g92fmb9y.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.i9g92fmb9y.wasm"},"Patterns":null},"System.IO.i9g92fmb9y.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kukm29h8dt-{0}-i9g92fmb9y-i9g92fmb9y.gz"},"Patterns":null},"System.IO.IsolatedStorage.8ll4gxwfs1.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm"},"Patterns":null},"System.IO.IsolatedStorage.8ll4gxwfs1.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"na7pgc18jv-{0}-8ll4gxwfs1-8ll4gxwfs1.gz"},"Patterns":null},"System.IO.MemoryMappedFiles.6do4olk7ib.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm"},"Patterns":null},"System.IO.MemoryMappedFiles.6do4olk7ib.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rsffl3vumf-{0}-6do4olk7ib-6do4olk7ib.gz"},"Patterns":null},"System.IO.Pipelines.21z0t9w6sq.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm"},"Patterns":null},"System.IO.Pipelines.21z0t9w6sq.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"pxy8xfz0ow-{0}-21z0t9w6sq-21z0t9w6sq.gz"},"Patterns":null},"System.IO.Pipes.AccessControl.5lvzz4lks7.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm"},"Patterns":null},"System.IO.Pipes.AccessControl.5lvzz4lks7.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lvyasyre47-{0}-5lvzz4lks7-5lvzz4lks7.gz"},"Patterns":null},"System.IO.Pipes.xosph8vk4a.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.Pipes.xosph8vk4a.wasm"},"Patterns":null},"System.IO.Pipes.xosph8vk4a.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vjl93wt59v-{0}-xosph8vk4a-xosph8vk4a.gz"},"Patterns":null},"System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm"},"Patterns":null},"System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"dzqyarawy9-{0}-d1pja42pyi-d1pja42pyi.gz"},"Patterns":null},"System.Linq.AsyncEnumerable.4m1mh525k0.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm"},"Patterns":null},"System.Linq.AsyncEnumerable.4m1mh525k0.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"1u9lol5zjk-{0}-4m1mh525k0-4m1mh525k0.gz"},"Patterns":null},"System.Linq.Expressions.4nat0rber0.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Linq.Expressions.4nat0rber0.wasm"},"Patterns":null},"System.Linq.Expressions.4nat0rber0.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"r0xa1dsvvu-{0}-4nat0rber0-4nat0rber0.gz"},"Patterns":null},"System.Linq.Parallel.qf7zemz9aw.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm"},"Patterns":null},"System.Linq.Parallel.qf7zemz9aw.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"35llacexwm-{0}-qf7zemz9aw-qf7zemz9aw.gz"},"Patterns":null},"System.Linq.Queryable.vwinf8twbn.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Linq.Queryable.vwinf8twbn.wasm"},"Patterns":null},"System.Linq.Queryable.vwinf8twbn.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hylqczc46z-{0}-vwinf8twbn-vwinf8twbn.gz"},"Patterns":null},"System.Linq.rp2jklkmsi.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Linq.rp2jklkmsi.wasm"},"Patterns":null},"System.Linq.rp2jklkmsi.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"p0pe0blimm-{0}-rp2jklkmsi-rp2jklkmsi.gz"},"Patterns":null},"System.Memory.3r0soomurg.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Memory.3r0soomurg.wasm"},"Patterns":null},"System.Memory.3r0soomurg.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zip5atfnk1-{0}-3r0soomurg-3r0soomurg.gz"},"Patterns":null},"System.Net.Http.9rl4gopayw.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.Http.9rl4gopayw.wasm"},"Patterns":null},"System.Net.Http.9rl4gopayw.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hz1tpel2o0-{0}-9rl4gopayw-9rl4gopayw.gz"},"Patterns":null},"System.Net.Http.Json.t9gqpmtbpb.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm"},"Patterns":null},"System.Net.Http.Json.t9gqpmtbpb.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zxgtro8yo7-{0}-t9gqpmtbpb-t9gqpmtbpb.gz"},"Patterns":null},"System.Net.HttpListener.zg37o92yol.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.HttpListener.zg37o92yol.wasm"},"Patterns":null},"System.Net.HttpListener.zg37o92yol.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"mkyh3erkm9-{0}-zg37o92yol-zg37o92yol.gz"},"Patterns":null},"System.Net.Mail.qk214miut2.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.Mail.qk214miut2.wasm"},"Patterns":null},"System.Net.Mail.qk214miut2.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"019ldzgpk2-{0}-qk214miut2-qk214miut2.gz"},"Patterns":null},"System.Net.NameResolution.50dzekuu9x.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.NameResolution.50dzekuu9x.wasm"},"Patterns":null},"System.Net.NameResolution.50dzekuu9x.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ui1ul8tpby-{0}-50dzekuu9x-50dzekuu9x.gz"},"Patterns":null},"System.Net.NetworkInformation.k8343mqust.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.NetworkInformation.k8343mqust.wasm"},"Patterns":null},"System.Net.NetworkInformation.k8343mqust.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"luuq2ppq8r-{0}-k8343mqust-k8343mqust.gz"},"Patterns":null},"System.Net.Ping.00vh2kvsiz.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.Ping.00vh2kvsiz.wasm"},"Patterns":null},"System.Net.Ping.00vh2kvsiz.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"yswenxxy60-{0}-00vh2kvsiz-00vh2kvsiz.gz"},"Patterns":null},"System.Net.Primitives.whs5oed1wm.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.Primitives.whs5oed1wm.wasm"},"Patterns":null},"System.Net.Primitives.whs5oed1wm.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"e2kh1woy2q-{0}-whs5oed1wm-whs5oed1wm.gz"},"Patterns":null},"System.Net.Quic.grloe2ix5j.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.Quic.grloe2ix5j.wasm"},"Patterns":null},"System.Net.Quic.grloe2ix5j.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"t7lpa3lwov-{0}-grloe2ix5j-grloe2ix5j.gz"},"Patterns":null},"System.Net.Requests.r8ar2pd94c.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.Requests.r8ar2pd94c.wasm"},"Patterns":null},"System.Net.Requests.r8ar2pd94c.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zy4nys0fbm-{0}-r8ar2pd94c-r8ar2pd94c.gz"},"Patterns":null},"System.Net.Security.yn3zcskz4j.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.Security.yn3zcskz4j.wasm"},"Patterns":null},"System.Net.Security.yn3zcskz4j.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"iem13k4n35-{0}-yn3zcskz4j-yn3zcskz4j.gz"},"Patterns":null},"System.Net.ServerSentEvents.37wbq4jfsy.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm"},"Patterns":null},"System.Net.ServerSentEvents.37wbq4jfsy.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"t2mopjsgs5-{0}-37wbq4jfsy-37wbq4jfsy.gz"},"Patterns":null},"System.Net.ServicePoint.j436yqvrg9.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm"},"Patterns":null},"System.Net.ServicePoint.j436yqvrg9.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"sz4qmwa0cz-{0}-j436yqvrg9-j436yqvrg9.gz"},"Patterns":null},"System.Net.Sockets.utzdm9sw2p.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.Sockets.utzdm9sw2p.wasm"},"Patterns":null},"System.Net.Sockets.utzdm9sw2p.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ozd9l95cy8-{0}-utzdm9sw2p-utzdm9sw2p.gz"},"Patterns":null},"System.Net.WebClient.e5a4gx4ylt.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm"},"Patterns":null},"System.Net.WebClient.e5a4gx4ylt.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0qximx7h6w-{0}-e5a4gx4ylt-e5a4gx4ylt.gz"},"Patterns":null},"System.Net.WebHeaderCollection.rbzkmij005.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm"},"Patterns":null},"System.Net.WebHeaderCollection.rbzkmij005.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"xfyu8pi705-{0}-rbzkmij005-rbzkmij005.gz"},"Patterns":null},"System.Net.WebProxy.38jcv8jeeu.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm"},"Patterns":null},"System.Net.WebProxy.38jcv8jeeu.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kwztau0oyy-{0}-38jcv8jeeu-38jcv8jeeu.gz"},"Patterns":null},"System.Net.WebSockets.Client.nv5izr3rt6.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm"},"Patterns":null},"System.Net.WebSockets.Client.nv5izr3rt6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zc08r46902-{0}-nv5izr3rt6-nv5izr3rt6.gz"},"Patterns":null},"System.Net.WebSockets.hdzn84g6uh.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm"},"Patterns":null},"System.Net.WebSockets.hdzn84g6uh.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ttu14uxg7m-{0}-hdzn84g6uh-hdzn84g6uh.gz"},"Patterns":null},"System.Net.zku96ychk7.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.zku96ychk7.wasm"},"Patterns":null},"System.Net.zku96ychk7.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"mwxs9jgpi5-{0}-zku96ychk7-zku96ychk7.gz"},"Patterns":null},"System.Numerics.on9qk50okp.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Numerics.on9qk50okp.wasm"},"Patterns":null},"System.Numerics.on9qk50okp.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fmcag5xdn2-{0}-on9qk50okp-on9qk50okp.gz"},"Patterns":null},"System.Numerics.Vectors.1l8xruz8uh.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm"},"Patterns":null},"System.Numerics.Vectors.1l8xruz8uh.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tmgotixosa-{0}-1l8xruz8uh-1l8xruz8uh.gz"},"Patterns":null},"System.ObjectModel.4omhtq90sd.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.ObjectModel.4omhtq90sd.wasm"},"Patterns":null},"System.ObjectModel.4omhtq90sd.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"f62yejuwjc-{0}-4omhtq90sd-4omhtq90sd.gz"},"Patterns":null},"System.Private.CoreLib.koxlwnosh6.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Private.CoreLib.koxlwnosh6.wasm"},"Patterns":null},"System.Private.CoreLib.koxlwnosh6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3zyfvkhmnk-{0}-koxlwnosh6-koxlwnosh6.gz"},"Patterns":null},"System.Private.DataContractSerialization.zlwtcvnuqv.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm"},"Patterns":null},"System.Private.DataContractSerialization.zlwtcvnuqv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"g0qzdert85-{0}-zlwtcvnuqv-zlwtcvnuqv.gz"},"Patterns":null},"System.Private.Uri.clehp4avpy.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Private.Uri.clehp4avpy.wasm"},"Patterns":null},"System.Private.Uri.clehp4avpy.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"e67ma35du3-{0}-clehp4avpy-clehp4avpy.gz"},"Patterns":null},"System.Private.Xml.g9rvjereoe.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Private.Xml.g9rvjereoe.wasm"},"Patterns":null},"System.Private.Xml.g9rvjereoe.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"byxake4xdz-{0}-g9rvjereoe-g9rvjereoe.gz"},"Patterns":null},"System.Private.Xml.Linq.ga3n3gh9b6.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm"},"Patterns":null},"System.Private.Xml.Linq.ga3n3gh9b6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"93opzeh57b-{0}-ga3n3gh9b6-ga3n3gh9b6.gz"},"Patterns":null},"System.Reflection.DispatchProxy.b7qn4zpc0q.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm"},"Patterns":null},"System.Reflection.DispatchProxy.b7qn4zpc0q.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jjcxq3ejac-{0}-b7qn4zpc0q-b7qn4zpc0q.gz"},"Patterns":null},"System.Reflection.Emit.3t7flfwg7o.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm"},"Patterns":null},"System.Reflection.Emit.3t7flfwg7o.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"p1p1dduoka-{0}-3t7flfwg7o-3t7flfwg7o.gz"},"Patterns":null},"System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm"},"Patterns":null},"System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"i8msa0z88m-{0}-x0vkqyycss-x0vkqyycss.gz"},"Patterns":null},"System.Reflection.Emit.Lightweight.3tzjd7znni.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm"},"Patterns":null},"System.Reflection.Emit.Lightweight.3tzjd7znni.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gremm5qhcr-{0}-3tzjd7znni-3tzjd7znni.gz"},"Patterns":null},"System.Reflection.Extensions.ymwga5opgl.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm"},"Patterns":null},"System.Reflection.Extensions.ymwga5opgl.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vtgrfa0p11-{0}-ymwga5opgl-ymwga5opgl.gz"},"Patterns":null},"System.Reflection.Metadata.9lgg9wjd2a.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm"},"Patterns":null},"System.Reflection.Metadata.9lgg9wjd2a.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"k6k7jlyl2f-{0}-9lgg9wjd2a-9lgg9wjd2a.gz"},"Patterns":null},"System.Reflection.Primitives.n2ngq6as7g.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm"},"Patterns":null},"System.Reflection.Primitives.n2ngq6as7g.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tdpp3qw974-{0}-n2ngq6as7g-n2ngq6as7g.gz"},"Patterns":null},"System.Reflection.TypeExtensions.ivmzcfvrc6.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm"},"Patterns":null},"System.Reflection.TypeExtensions.ivmzcfvrc6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hoalsbog2o-{0}-ivmzcfvrc6-ivmzcfvrc6.gz"},"Patterns":null},"System.Reflection.v4mfyzbte8.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Reflection.v4mfyzbte8.wasm"},"Patterns":null},"System.Reflection.v4mfyzbte8.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"m0i5wjywsx-{0}-v4mfyzbte8-v4mfyzbte8.gz"},"Patterns":null},"System.Resources.Reader.c9z9nieytf.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Resources.Reader.c9z9nieytf.wasm"},"Patterns":null},"System.Resources.Reader.c9z9nieytf.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"xtefui8dpc-{0}-c9z9nieytf-c9z9nieytf.gz"},"Patterns":null},"System.Resources.ResourceManager.f3fiwdwb50.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm"},"Patterns":null},"System.Resources.ResourceManager.f3fiwdwb50.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"qrheoix2ig-{0}-f3fiwdwb50-f3fiwdwb50.gz"},"Patterns":null},"System.Resources.Writer.tx9namivq6.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Resources.Writer.tx9namivq6.wasm"},"Patterns":null},"System.Resources.Writer.tx9namivq6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"szit2ufpnx-{0}-tx9namivq6-tx9namivq6.gz"},"Patterns":null},"System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm"},"Patterns":null},"System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3txc49hfsy-{0}-5yw8jyjkyt-5yw8jyjkyt.gz"},"Patterns":null},"System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm"},"Patterns":null},"System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"me1or200pv-{0}-ddbsai2xh9-ddbsai2xh9.gz"},"Patterns":null},"System.Runtime.Extensions.f4fqaba1oz.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm"},"Patterns":null},"System.Runtime.Extensions.f4fqaba1oz.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"4syo1xqmc8-{0}-f4fqaba1oz-f4fqaba1oz.gz"},"Patterns":null},"System.Runtime.Handles.kpe61fymig.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.Handles.kpe61fymig.wasm"},"Patterns":null},"System.Runtime.Handles.kpe61fymig.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fz4pecsmjf-{0}-kpe61fymig-kpe61fymig.gz"},"Patterns":null},"System.Runtime.InteropServices.02r2ubft18.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm"},"Patterns":null},"System.Runtime.InteropServices.02r2ubft18.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0st0knthx5-{0}-02r2ubft18-02r2ubft18.gz"},"Patterns":null},"System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm"},"Patterns":null},"System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"h9925thw3k-{0}-ythr5w8c2e-ythr5w8c2e.gz"},"Patterns":null},"System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm"},"Patterns":null},"System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zx6kj3xmnr-{0}-esodb2rpbi-esodb2rpbi.gz"},"Patterns":null},"System.Runtime.Intrinsics.j8lrpban8m.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm"},"Patterns":null},"System.Runtime.Intrinsics.j8lrpban8m.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"7yd9j54hd0-{0}-j8lrpban8m-j8lrpban8m.gz"},"Patterns":null},"System.Runtime.k6ze2203p2.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.k6ze2203p2.wasm"},"Patterns":null},"System.Runtime.k6ze2203p2.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"9ru0gm9zti-{0}-k6ze2203p2-k6ze2203p2.gz"},"Patterns":null},"System.Runtime.Loader.bm8d2pac0a.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm"},"Patterns":null},"System.Runtime.Loader.bm8d2pac0a.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"06jmrwgemt-{0}-bm8d2pac0a-bm8d2pac0a.gz"},"Patterns":null},"System.Runtime.Numerics.e3fl2oogjk.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm"},"Patterns":null},"System.Runtime.Numerics.e3fl2oogjk.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"b1pqie8d42-{0}-e3fl2oogjk-e3fl2oogjk.gz"},"Patterns":null},"System.Runtime.Serialization.Formatters.a0v88kqnif.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm"},"Patterns":null},"System.Runtime.Serialization.Formatters.a0v88kqnif.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"4k92vl8md2-{0}-a0v88kqnif-a0v88kqnif.gz"},"Patterns":null},"System.Runtime.Serialization.Json.pez04wd9mo.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm"},"Patterns":null},"System.Runtime.Serialization.Json.pez04wd9mo.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"wxwyng4xk0-{0}-pez04wd9mo-pez04wd9mo.gz"},"Patterns":null},"System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm"},"Patterns":null},"System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"j81tt1y6rj-{0}-xy5d3j3dn1-xy5d3j3dn1.gz"},"Patterns":null},"System.Runtime.Serialization.qfpmfujegm.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm"},"Patterns":null},"System.Runtime.Serialization.qfpmfujegm.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"mkj61d469a-{0}-qfpmfujegm-qfpmfujegm.gz"},"Patterns":null},"System.Runtime.Serialization.Xml.mmwsbcsgly.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm"},"Patterns":null},"System.Runtime.Serialization.Xml.mmwsbcsgly.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8pmauzinw9-{0}-mmwsbcsgly-mmwsbcsgly.gz"},"Patterns":null},"System.Security.AccessControl.4mxo8hy5cn.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm"},"Patterns":null},"System.Security.AccessControl.4mxo8hy5cn.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"9n1qe841ua-{0}-4mxo8hy5cn-4mxo8hy5cn.gz"},"Patterns":null},"System.Security.Claims.9n1yusa5e5.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.Claims.9n1yusa5e5.wasm"},"Patterns":null},"System.Security.Claims.9n1yusa5e5.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"awwlmj7zy5-{0}-9n1yusa5e5-9n1yusa5e5.gz"},"Patterns":null},"System.Security.Cryptography.5rp84ijz8t.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm"},"Patterns":null},"System.Security.Cryptography.5rp84ijz8t.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gqmneoqstx-{0}-5rp84ijz8t-5rp84ijz8t.gz"},"Patterns":null},"System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm"},"Patterns":null},"System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"m02xm5ue7p-{0}-4dnz7b15a9-4dnz7b15a9.gz"},"Patterns":null},"System.Security.Cryptography.Cng.dyaxkkx3lb.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm"},"Patterns":null},"System.Security.Cryptography.Cng.dyaxkkx3lb.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jhjpqkptaq-{0}-dyaxkkx3lb-dyaxkkx3lb.gz"},"Patterns":null},"System.Security.Cryptography.Csp.20t5iw27a6.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm"},"Patterns":null},"System.Security.Cryptography.Csp.20t5iw27a6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"v9jar86jna-{0}-20t5iw27a6-20t5iw27a6.gz"},"Patterns":null},"System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm"},"Patterns":null},"System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"uu7wfp4do2-{0}-0lu5m0tfx2-0lu5m0tfx2.gz"},"Patterns":null},"System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm"},"Patterns":null},"System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"12m83h5a1i-{0}-4m4pzjxi3g-4m4pzjxi3g.gz"},"Patterns":null},"System.Security.Cryptography.Primitives.7bcdd4uolu.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm"},"Patterns":null},"System.Security.Cryptography.Primitives.7bcdd4uolu.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ly70359tb6-{0}-7bcdd4uolu-7bcdd4uolu.gz"},"Patterns":null},"System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm"},"Patterns":null},"System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rz1qtq0z6d-{0}-dmew7c9amv-dmew7c9amv.gz"},"Patterns":null},"System.Security.Principal.j5dp7k8x6u.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.Principal.j5dp7k8x6u.wasm"},"Patterns":null},"System.Security.Principal.j5dp7k8x6u.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8ynwqwcefg-{0}-j5dp7k8x6u-j5dp7k8x6u.gz"},"Patterns":null},"System.Security.Principal.Windows.7ssqvw2wfy.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm"},"Patterns":null},"System.Security.Principal.Windows.7ssqvw2wfy.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"sl0sft7bkv-{0}-7ssqvw2wfy-7ssqvw2wfy.gz"},"Patterns":null},"System.Security.SecureString.7weoywtuje.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.SecureString.7weoywtuje.wasm"},"Patterns":null},"System.Security.SecureString.7weoywtuje.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ogcs9ucvrf-{0}-7weoywtuje-7weoywtuje.gz"},"Patterns":null},"System.Security.snpv53zusk.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.snpv53zusk.wasm"},"Patterns":null},"System.Security.snpv53zusk.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8srr1acehr-{0}-snpv53zusk-snpv53zusk.gz"},"Patterns":null},"System.ServiceModel.Web.3f1khl8k32.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm"},"Patterns":null},"System.ServiceModel.Web.3f1khl8k32.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"i30lqfoca8-{0}-3f1khl8k32-3f1khl8k32.gz"},"Patterns":null},"System.ServiceProcess.a95c1olw0i.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.ServiceProcess.a95c1olw0i.wasm"},"Patterns":null},"System.ServiceProcess.a95c1olw0i.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zlxnfbxifc-{0}-a95c1olw0i-a95c1olw0i.gz"},"Patterns":null},"System.Text.Encoding.CodePages.8bhn50uz8f.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm"},"Patterns":null},"System.Text.Encoding.CodePages.8bhn50uz8f.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"d2kqqmb0bv-{0}-8bhn50uz8f-8bhn50uz8f.gz"},"Patterns":null},"System.Text.Encoding.Extensions.tqz9dyg6j7.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm"},"Patterns":null},"System.Text.Encoding.Extensions.tqz9dyg6j7.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"m10se0yx1g-{0}-tqz9dyg6j7-tqz9dyg6j7.gz"},"Patterns":null},"System.Text.Encoding.s9ic8sulfi.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Text.Encoding.s9ic8sulfi.wasm"},"Patterns":null},"System.Text.Encoding.s9ic8sulfi.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"w4xw0gq3pj-{0}-s9ic8sulfi-s9ic8sulfi.gz"},"Patterns":null},"System.Text.Encodings.Web.07hq35kp92.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm"},"Patterns":null},"System.Text.Encodings.Web.07hq35kp92.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"wqsee81gb1-{0}-07hq35kp92-07hq35kp92.gz"},"Patterns":null},"System.Text.Json.2alhj4y3bm.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Text.Json.2alhj4y3bm.wasm"},"Patterns":null},"System.Text.Json.2alhj4y3bm.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0064fe6uur-{0}-2alhj4y3bm-2alhj4y3bm.gz"},"Patterns":null},"System.Text.RegularExpressions.h1qtkesphd.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm"},"Patterns":null},"System.Text.RegularExpressions.h1qtkesphd.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"7d15z782y2-{0}-h1qtkesphd-h1qtkesphd.gz"},"Patterns":null},"System.Threading.47ucbn1gg1.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Threading.47ucbn1gg1.wasm"},"Patterns":null},"System.Threading.47ucbn1gg1.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"e2ypaal8k2-{0}-47ucbn1gg1-47ucbn1gg1.gz"},"Patterns":null},"System.Threading.AccessControl.ruehy0ud5k.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm"},"Patterns":null},"System.Threading.AccessControl.ruehy0ud5k.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lbcric48ji-{0}-ruehy0ud5k-ruehy0ud5k.gz"},"Patterns":null},"System.Threading.Channels.s3i62rxr2p.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Threading.Channels.s3i62rxr2p.wasm"},"Patterns":null},"System.Threading.Channels.s3i62rxr2p.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rma0vjtbld-{0}-s3i62rxr2p-s3i62rxr2p.gz"},"Patterns":null},"System.Threading.Overlapped.lzl7igry1t.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm"},"Patterns":null},"System.Threading.Overlapped.lzl7igry1t.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ywpa2qpg55-{0}-lzl7igry1t-lzl7igry1t.gz"},"Patterns":null},"System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm"},"Patterns":null},"System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"to8tkrj8cc-{0}-p9bjzp5pyo-p9bjzp5pyo.gz"},"Patterns":null},"System.Threading.Tasks.Extensions.unp0hcfijn.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm"},"Patterns":null},"System.Threading.Tasks.Extensions.unp0hcfijn.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"7o4w0lfocu-{0}-unp0hcfijn-unp0hcfijn.gz"},"Patterns":null},"System.Threading.Tasks.Parallel.hyku0ejwye.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm"},"Patterns":null},"System.Threading.Tasks.Parallel.hyku0ejwye.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ohlfbgu01g-{0}-hyku0ejwye-hyku0ejwye.gz"},"Patterns":null},"System.Threading.Tasks.t0sjw89o0i.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm"},"Patterns":null},"System.Threading.Tasks.t0sjw89o0i.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8rrnar5gtv-{0}-t0sjw89o0i-t0sjw89o0i.gz"},"Patterns":null},"System.Threading.Thread.nfbg9v9bn0.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm"},"Patterns":null},"System.Threading.Thread.nfbg9v9bn0.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"wi7nbv7im4-{0}-nfbg9v9bn0-nfbg9v9bn0.gz"},"Patterns":null},"System.Threading.ThreadPool.jrzo6stg1k.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm"},"Patterns":null},"System.Threading.ThreadPool.jrzo6stg1k.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"5g4i44bi6s-{0}-jrzo6stg1k-jrzo6stg1k.gz"},"Patterns":null},"System.Threading.Timer.y8l1kxazi5.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Threading.Timer.y8l1kxazi5.wasm"},"Patterns":null},"System.Threading.Timer.y8l1kxazi5.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hq538hfxem-{0}-y8l1kxazi5-y8l1kxazi5.gz"},"Patterns":null},"System.Transactions.Local.cig01jt23c.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Transactions.Local.cig01jt23c.wasm"},"Patterns":null},"System.Transactions.Local.cig01jt23c.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"uz6wr238mp-{0}-cig01jt23c-cig01jt23c.gz"},"Patterns":null},"System.Transactions.pl50n6qbg7.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Transactions.pl50n6qbg7.wasm"},"Patterns":null},"System.Transactions.pl50n6qbg7.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kmdzqqqt27-{0}-pl50n6qbg7-pl50n6qbg7.gz"},"Patterns":null},"System.ValueTuple.mj3r9p0pcw.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.ValueTuple.mj3r9p0pcw.wasm"},"Patterns":null},"System.ValueTuple.mj3r9p0pcw.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"dy6tcjmb9q-{0}-mj3r9p0pcw-mj3r9p0pcw.gz"},"Patterns":null},"System.Web.2a6wq9gv6d.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Web.2a6wq9gv6d.wasm"},"Patterns":null},"System.Web.2a6wq9gv6d.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"iok845swr0-{0}-2a6wq9gv6d-2a6wq9gv6d.gz"},"Patterns":null},"System.Web.HttpUtility.3jfxpyq4in.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm"},"Patterns":null},"System.Web.HttpUtility.3jfxpyq4in.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"pfi56k79hn-{0}-3jfxpyq4in-3jfxpyq4in.gz"},"Patterns":null},"System.Windows.bw79ix589z.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Windows.bw79ix589z.wasm"},"Patterns":null},"System.Windows.bw79ix589z.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tvvpa50077-{0}-bw79ix589z-bw79ix589z.gz"},"Patterns":null},"System.Xml.Linq.nvnhbwdsg6.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm"},"Patterns":null},"System.Xml.Linq.nvnhbwdsg6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"79deazooef-{0}-nvnhbwdsg6-nvnhbwdsg6.gz"},"Patterns":null},"System.Xml.ReaderWriter.szsdminork.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Xml.ReaderWriter.szsdminork.wasm"},"Patterns":null},"System.Xml.ReaderWriter.szsdminork.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kmp1cwjk7f-{0}-szsdminork-szsdminork.gz"},"Patterns":null},"System.Xml.Serialization.b9imguls9w.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Xml.Serialization.b9imguls9w.wasm"},"Patterns":null},"System.Xml.Serialization.b9imguls9w.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"cagt9idkdm-{0}-b9imguls9w-b9imguls9w.gz"},"Patterns":null},"System.Xml.XDocument.8hg6c0at0c.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm"},"Patterns":null},"System.Xml.XDocument.8hg6c0at0c.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"blwck2749u-{0}-8hg6c0at0c-8hg6c0at0c.gz"},"Patterns":null},"System.Xml.XmlDocument.isetn6xlxa.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm"},"Patterns":null},"System.Xml.XmlDocument.isetn6xlxa.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ww3wnv8b6s-{0}-isetn6xlxa-isetn6xlxa.gz"},"Patterns":null},"System.Xml.XmlSerializer.okgnp5v9bw.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm"},"Patterns":null},"System.Xml.XmlSerializer.okgnp5v9bw.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"qt3o35adbl-{0}-okgnp5v9bw-okgnp5v9bw.gz"},"Patterns":null},"System.Xml.XPath.11wk1hhnfk.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Xml.XPath.11wk1hhnfk.wasm"},"Patterns":null},"System.Xml.XPath.11wk1hhnfk.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"xo45czuveq-{0}-11wk1hhnfk-11wk1hhnfk.gz"},"Patterns":null},"System.Xml.XPath.XDocument.g7i5gd64yo.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm"},"Patterns":null},"System.Xml.XPath.XDocument.g7i5gd64yo.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gsr2zhdiud-{0}-g7i5gd64yo-g7i5gd64yo.gz"},"Patterns":null},"System.Xml.zjgi7nrlno.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Xml.zjgi7nrlno.wasm"},"Patterns":null},"System.Xml.zjgi7nrlno.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ra6e7v46m5-{0}-zjgi7nrlno-zjgi7nrlno.gz"},"Patterns":null},"WindowsBase.wz82kkc1p3.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/WindowsBase.wz82kkc1p3.wasm"},"Patterns":null},"WindowsBase.wz82kkc1p3.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"10vfj5e8p2-{0}-wz82kkc1p3-wz82kkc1p3.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Layout":{"Children":{"ReconnectModal.razor.js":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"Layout/ReconnectModal.razor.js"},"Patterns":null},"ReconnectModal.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ug9ge1behf-{0}-ycbzh0sbjd-ycbzh0sbjd.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"_content":{"Children":{"Microsoft.DotNet.HotReload.WebAssembly.Browser":{"Children":{"Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js"},"Patterns":null}},"Asset":null,"Patterns":null},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"MudBlazor.min.js"},"Patterns":null},"MudBlazor.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"MudBlazor.min.js.map"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.AppContext.dll b/OnProfNext.Client/bin/Debug/net10.0/System.AppContext.dll new file mode 100644 index 0000000..fd2ca83 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.AppContext.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Buffers.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Buffers.dll new file mode 100644 index 0000000..6ff5673 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Buffers.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Collections.Concurrent.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Collections.Concurrent.dll new file mode 100644 index 0000000..02ce5a5 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Collections.Concurrent.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Collections.Immutable.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Collections.Immutable.dll new file mode 100644 index 0000000..561b9e3 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Collections.Immutable.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Collections.NonGeneric.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Collections.NonGeneric.dll new file mode 100644 index 0000000..17b92b8 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Collections.NonGeneric.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Collections.Specialized.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Collections.Specialized.dll new file mode 100644 index 0000000..ddb5f9c Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Collections.Specialized.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Collections.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Collections.dll new file mode 100644 index 0000000..250e9dd Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Collections.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.ComponentModel.Annotations.dll b/OnProfNext.Client/bin/Debug/net10.0/System.ComponentModel.Annotations.dll new file mode 100644 index 0000000..0db08db Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.ComponentModel.Annotations.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.ComponentModel.DataAnnotations.dll b/OnProfNext.Client/bin/Debug/net10.0/System.ComponentModel.DataAnnotations.dll new file mode 100644 index 0000000..96a522a Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.ComponentModel.DataAnnotations.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.ComponentModel.EventBasedAsync.dll b/OnProfNext.Client/bin/Debug/net10.0/System.ComponentModel.EventBasedAsync.dll new file mode 100644 index 0000000..ec30287 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.ComponentModel.EventBasedAsync.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.ComponentModel.Primitives.dll b/OnProfNext.Client/bin/Debug/net10.0/System.ComponentModel.Primitives.dll new file mode 100644 index 0000000..1ed4ebd Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.ComponentModel.Primitives.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.ComponentModel.TypeConverter.dll b/OnProfNext.Client/bin/Debug/net10.0/System.ComponentModel.TypeConverter.dll new file mode 100644 index 0000000..61f5deb Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.ComponentModel.TypeConverter.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.ComponentModel.dll b/OnProfNext.Client/bin/Debug/net10.0/System.ComponentModel.dll new file mode 100644 index 0000000..d20074b Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.ComponentModel.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Configuration.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Configuration.dll new file mode 100644 index 0000000..0b67ac4 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Configuration.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Console.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Console.dll new file mode 100644 index 0000000..a84e9b9 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Console.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Core.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Core.dll new file mode 100644 index 0000000..1f208e0 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Core.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Data.Common.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Data.Common.dll new file mode 100644 index 0000000..2648911 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Data.Common.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Data.DataSetExtensions.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Data.DataSetExtensions.dll new file mode 100644 index 0000000..6e116b8 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Data.DataSetExtensions.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Data.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Data.dll new file mode 100644 index 0000000..516b018 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Data.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Diagnostics.Contracts.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Diagnostics.Contracts.dll new file mode 100644 index 0000000..7928ce8 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Diagnostics.Contracts.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Diagnostics.Debug.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Diagnostics.Debug.dll new file mode 100644 index 0000000..660997b Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Diagnostics.Debug.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Diagnostics.DiagnosticSource.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 0000000..c7cc870 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Diagnostics.DiagnosticSource.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Diagnostics.FileVersionInfo.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Diagnostics.FileVersionInfo.dll new file mode 100644 index 0000000..6136c06 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Diagnostics.FileVersionInfo.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Diagnostics.Process.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Diagnostics.Process.dll new file mode 100644 index 0000000..6589219 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Diagnostics.Process.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Diagnostics.StackTrace.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Diagnostics.StackTrace.dll new file mode 100644 index 0000000..e648699 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Diagnostics.StackTrace.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Diagnostics.TextWriterTraceListener.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Diagnostics.TextWriterTraceListener.dll new file mode 100644 index 0000000..3c9c7bf Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Diagnostics.Tools.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Diagnostics.Tools.dll new file mode 100644 index 0000000..8603a06 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Diagnostics.Tools.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Diagnostics.TraceSource.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Diagnostics.TraceSource.dll new file mode 100644 index 0000000..1dabf29 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Diagnostics.TraceSource.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Diagnostics.Tracing.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Diagnostics.Tracing.dll new file mode 100644 index 0000000..b547941 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Diagnostics.Tracing.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Drawing.Primitives.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Drawing.Primitives.dll new file mode 100644 index 0000000..46530df Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Drawing.Primitives.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Drawing.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Drawing.dll new file mode 100644 index 0000000..be5e4d6 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Drawing.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Dynamic.Runtime.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Dynamic.Runtime.dll new file mode 100644 index 0000000..dce497f Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Dynamic.Runtime.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Formats.Asn1.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Formats.Asn1.dll new file mode 100644 index 0000000..a771d4b Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Formats.Asn1.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Formats.Tar.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Formats.Tar.dll new file mode 100644 index 0000000..26b3dbc Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Formats.Tar.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Globalization.Calendars.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Globalization.Calendars.dll new file mode 100644 index 0000000..6cd70df Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Globalization.Calendars.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Globalization.Extensions.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Globalization.Extensions.dll new file mode 100644 index 0000000..e223425 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Globalization.Extensions.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Globalization.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Globalization.dll new file mode 100644 index 0000000..f3dc368 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Globalization.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.IO.Compression.Brotli.dll b/OnProfNext.Client/bin/Debug/net10.0/System.IO.Compression.Brotli.dll new file mode 100644 index 0000000..fcd09c9 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.IO.Compression.Brotli.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.IO.Compression.FileSystem.dll b/OnProfNext.Client/bin/Debug/net10.0/System.IO.Compression.FileSystem.dll new file mode 100644 index 0000000..512355f Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.IO.Compression.FileSystem.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.IO.Compression.ZipFile.dll b/OnProfNext.Client/bin/Debug/net10.0/System.IO.Compression.ZipFile.dll new file mode 100644 index 0000000..5862c97 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.IO.Compression.ZipFile.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.IO.Compression.dll b/OnProfNext.Client/bin/Debug/net10.0/System.IO.Compression.dll new file mode 100644 index 0000000..0ee3397 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.IO.Compression.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.IO.FileSystem.AccessControl.dll b/OnProfNext.Client/bin/Debug/net10.0/System.IO.FileSystem.AccessControl.dll new file mode 100644 index 0000000..e6defb4 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.IO.FileSystem.AccessControl.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.IO.FileSystem.DriveInfo.dll b/OnProfNext.Client/bin/Debug/net10.0/System.IO.FileSystem.DriveInfo.dll new file mode 100644 index 0000000..528735d Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.IO.FileSystem.DriveInfo.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.IO.FileSystem.Primitives.dll b/OnProfNext.Client/bin/Debug/net10.0/System.IO.FileSystem.Primitives.dll new file mode 100644 index 0000000..eae96b7 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.IO.FileSystem.Primitives.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.IO.FileSystem.Watcher.dll b/OnProfNext.Client/bin/Debug/net10.0/System.IO.FileSystem.Watcher.dll new file mode 100644 index 0000000..7d11f02 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.IO.FileSystem.Watcher.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.IO.FileSystem.dll b/OnProfNext.Client/bin/Debug/net10.0/System.IO.FileSystem.dll new file mode 100644 index 0000000..3ec1a86 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.IO.FileSystem.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.IO.IsolatedStorage.dll b/OnProfNext.Client/bin/Debug/net10.0/System.IO.IsolatedStorage.dll new file mode 100644 index 0000000..6d147e5 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.IO.IsolatedStorage.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.IO.MemoryMappedFiles.dll b/OnProfNext.Client/bin/Debug/net10.0/System.IO.MemoryMappedFiles.dll new file mode 100644 index 0000000..b7fe59a Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.IO.MemoryMappedFiles.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.IO.Pipelines.dll b/OnProfNext.Client/bin/Debug/net10.0/System.IO.Pipelines.dll new file mode 100644 index 0000000..7cc7843 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.IO.Pipelines.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.IO.Pipes.AccessControl.dll b/OnProfNext.Client/bin/Debug/net10.0/System.IO.Pipes.AccessControl.dll new file mode 100644 index 0000000..7305c39 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.IO.Pipes.AccessControl.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.IO.Pipes.dll b/OnProfNext.Client/bin/Debug/net10.0/System.IO.Pipes.dll new file mode 100644 index 0000000..c0d0def Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.IO.Pipes.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.IO.UnmanagedMemoryStream.dll b/OnProfNext.Client/bin/Debug/net10.0/System.IO.UnmanagedMemoryStream.dll new file mode 100644 index 0000000..20c3034 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.IO.UnmanagedMemoryStream.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.IO.dll b/OnProfNext.Client/bin/Debug/net10.0/System.IO.dll new file mode 100644 index 0000000..925d3a1 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.IO.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Linq.AsyncEnumerable.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Linq.AsyncEnumerable.dll new file mode 100644 index 0000000..ded9607 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Linq.AsyncEnumerable.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Linq.Expressions.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Linq.Expressions.dll new file mode 100644 index 0000000..c0f5787 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Linq.Expressions.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Linq.Parallel.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Linq.Parallel.dll new file mode 100644 index 0000000..17466d6 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Linq.Parallel.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Linq.Queryable.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Linq.Queryable.dll new file mode 100644 index 0000000..3db4a1c Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Linq.Queryable.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Linq.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Linq.dll new file mode 100644 index 0000000..8fc8803 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Linq.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Memory.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Memory.dll new file mode 100644 index 0000000..d7de265 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Memory.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Net.Http.Json.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Net.Http.Json.dll new file mode 100644 index 0000000..3f33d6d Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Net.Http.Json.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Net.Http.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Net.Http.dll new file mode 100644 index 0000000..738ead7 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Net.Http.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Net.HttpListener.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Net.HttpListener.dll new file mode 100644 index 0000000..1924fa6 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Net.HttpListener.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Net.Mail.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Net.Mail.dll new file mode 100644 index 0000000..b46ae0a Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Net.Mail.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Net.NameResolution.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Net.NameResolution.dll new file mode 100644 index 0000000..e90f788 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Net.NameResolution.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Net.NetworkInformation.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Net.NetworkInformation.dll new file mode 100644 index 0000000..9f64678 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Net.NetworkInformation.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Net.Ping.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Net.Ping.dll new file mode 100644 index 0000000..a9c0516 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Net.Ping.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Net.Primitives.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Net.Primitives.dll new file mode 100644 index 0000000..ea40de7 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Net.Primitives.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Net.Quic.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Net.Quic.dll new file mode 100644 index 0000000..f964749 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Net.Quic.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Net.Requests.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Net.Requests.dll new file mode 100644 index 0000000..b6847f3 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Net.Requests.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Net.Security.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Net.Security.dll new file mode 100644 index 0000000..9360d9b Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Net.Security.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Net.ServerSentEvents.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Net.ServerSentEvents.dll new file mode 100644 index 0000000..ebb9caf Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Net.ServerSentEvents.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Net.ServicePoint.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Net.ServicePoint.dll new file mode 100644 index 0000000..1874f7f Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Net.ServicePoint.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Net.Sockets.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Net.Sockets.dll new file mode 100644 index 0000000..08b7547 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Net.Sockets.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Net.WebClient.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Net.WebClient.dll new file mode 100644 index 0000000..7e3c8d4 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Net.WebClient.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Net.WebHeaderCollection.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Net.WebHeaderCollection.dll new file mode 100644 index 0000000..095542c Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Net.WebHeaderCollection.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Net.WebProxy.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Net.WebProxy.dll new file mode 100644 index 0000000..2e79a50 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Net.WebProxy.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Net.WebSockets.Client.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Net.WebSockets.Client.dll new file mode 100644 index 0000000..8738079 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Net.WebSockets.Client.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Net.WebSockets.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Net.WebSockets.dll new file mode 100644 index 0000000..43c83a8 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Net.WebSockets.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Net.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Net.dll new file mode 100644 index 0000000..37b67df Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Net.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Numerics.Vectors.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Numerics.Vectors.dll new file mode 100644 index 0000000..726c6d1 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Numerics.Vectors.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Numerics.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Numerics.dll new file mode 100644 index 0000000..b94accd Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Numerics.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.ObjectModel.dll b/OnProfNext.Client/bin/Debug/net10.0/System.ObjectModel.dll new file mode 100644 index 0000000..7f362a0 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.ObjectModel.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Private.CoreLib.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Private.CoreLib.dll new file mode 100644 index 0000000..68ad4dc Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Private.CoreLib.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Private.DataContractSerialization.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Private.DataContractSerialization.dll new file mode 100644 index 0000000..a6719c2 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Private.DataContractSerialization.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Private.Uri.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Private.Uri.dll new file mode 100644 index 0000000..85e89e8 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Private.Uri.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Private.Xml.Linq.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Private.Xml.Linq.dll new file mode 100644 index 0000000..5375f2e Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Private.Xml.Linq.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Private.Xml.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Private.Xml.dll new file mode 100644 index 0000000..572f13e Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Private.Xml.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Reflection.DispatchProxy.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Reflection.DispatchProxy.dll new file mode 100644 index 0000000..599877b Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Reflection.DispatchProxy.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Reflection.Emit.ILGeneration.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Reflection.Emit.ILGeneration.dll new file mode 100644 index 0000000..20bfd32 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Reflection.Emit.ILGeneration.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Reflection.Emit.Lightweight.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Reflection.Emit.Lightweight.dll new file mode 100644 index 0000000..5425baa Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Reflection.Emit.Lightweight.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Reflection.Emit.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Reflection.Emit.dll new file mode 100644 index 0000000..fae3a2a Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Reflection.Emit.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Reflection.Extensions.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Reflection.Extensions.dll new file mode 100644 index 0000000..7c4f779 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Reflection.Extensions.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Reflection.Metadata.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Reflection.Metadata.dll new file mode 100644 index 0000000..3b51b5d Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Reflection.Metadata.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Reflection.Primitives.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Reflection.Primitives.dll new file mode 100644 index 0000000..cb59489 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Reflection.Primitives.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Reflection.TypeExtensions.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Reflection.TypeExtensions.dll new file mode 100644 index 0000000..fa1d8d6 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Reflection.TypeExtensions.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Reflection.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Reflection.dll new file mode 100644 index 0000000..eac415a Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Reflection.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Resources.Reader.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Resources.Reader.dll new file mode 100644 index 0000000..e94d977 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Resources.Reader.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Resources.ResourceManager.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Resources.ResourceManager.dll new file mode 100644 index 0000000..3b5c58c Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Resources.ResourceManager.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Resources.Writer.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Resources.Writer.dll new file mode 100644 index 0000000..5cb6f36 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Resources.Writer.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.CompilerServices.Unsafe.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.CompilerServices.Unsafe.dll new file mode 100644 index 0000000..293270b Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.CompilerServices.VisualC.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.CompilerServices.VisualC.dll new file mode 100644 index 0000000..ef24882 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.CompilerServices.VisualC.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.Extensions.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.Extensions.dll new file mode 100644 index 0000000..7278887 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.Extensions.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.Handles.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.Handles.dll new file mode 100644 index 0000000..0e36315 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.Handles.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.InteropServices.JavaScript.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.InteropServices.JavaScript.dll new file mode 100644 index 0000000..fb264a2 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.InteropServices.JavaScript.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.InteropServices.RuntimeInformation.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100644 index 0000000..a2beb9b Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.InteropServices.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.InteropServices.dll new file mode 100644 index 0000000..3d1c9af Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.InteropServices.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.Intrinsics.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.Intrinsics.dll new file mode 100644 index 0000000..a27cdbd Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.Intrinsics.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.Loader.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.Loader.dll new file mode 100644 index 0000000..51abc30 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.Loader.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.Numerics.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.Numerics.dll new file mode 100644 index 0000000..1e60975 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.Numerics.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.Serialization.Formatters.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.Serialization.Formatters.dll new file mode 100644 index 0000000..fdf3eb9 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.Serialization.Formatters.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.Serialization.Json.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.Serialization.Json.dll new file mode 100644 index 0000000..f16a23b Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.Serialization.Json.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.Serialization.Primitives.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.Serialization.Primitives.dll new file mode 100644 index 0000000..9a01c3b Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.Serialization.Primitives.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.Serialization.Xml.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.Serialization.Xml.dll new file mode 100644 index 0000000..79fe835 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.Serialization.Xml.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.Serialization.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.Serialization.dll new file mode 100644 index 0000000..af37560 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.Serialization.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.dll new file mode 100644 index 0000000..8e6a03c Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Runtime.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Security.AccessControl.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Security.AccessControl.dll new file mode 100644 index 0000000..0e983ff Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Security.AccessControl.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Security.Claims.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Security.Claims.dll new file mode 100644 index 0000000..d051a2e Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Security.Claims.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Security.Cryptography.Algorithms.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Security.Cryptography.Algorithms.dll new file mode 100644 index 0000000..f54918a Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Security.Cryptography.Algorithms.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Security.Cryptography.Cng.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Security.Cryptography.Cng.dll new file mode 100644 index 0000000..d5273a0 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Security.Cryptography.Cng.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Security.Cryptography.Csp.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Security.Cryptography.Csp.dll new file mode 100644 index 0000000..ac57d1a Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Security.Cryptography.Csp.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Security.Cryptography.Encoding.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Security.Cryptography.Encoding.dll new file mode 100644 index 0000000..47357dd Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Security.Cryptography.Encoding.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Security.Cryptography.OpenSsl.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Security.Cryptography.OpenSsl.dll new file mode 100644 index 0000000..0471b00 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Security.Cryptography.OpenSsl.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Security.Cryptography.Primitives.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Security.Cryptography.Primitives.dll new file mode 100644 index 0000000..3e43266 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Security.Cryptography.Primitives.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Security.Cryptography.X509Certificates.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Security.Cryptography.X509Certificates.dll new file mode 100644 index 0000000..5d64b65 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Security.Cryptography.X509Certificates.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Security.Cryptography.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Security.Cryptography.dll new file mode 100644 index 0000000..cac3d81 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Security.Cryptography.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Security.Principal.Windows.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Security.Principal.Windows.dll new file mode 100644 index 0000000..c66f73d Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Security.Principal.Windows.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Security.Principal.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Security.Principal.dll new file mode 100644 index 0000000..da672da Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Security.Principal.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Security.SecureString.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Security.SecureString.dll new file mode 100644 index 0000000..b4d61a2 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Security.SecureString.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Security.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Security.dll new file mode 100644 index 0000000..d5fea87 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Security.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.ServiceModel.Web.dll b/OnProfNext.Client/bin/Debug/net10.0/System.ServiceModel.Web.dll new file mode 100644 index 0000000..355cf1c Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.ServiceModel.Web.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.ServiceProcess.dll b/OnProfNext.Client/bin/Debug/net10.0/System.ServiceProcess.dll new file mode 100644 index 0000000..2e8a705 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.ServiceProcess.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Text.Encoding.CodePages.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Text.Encoding.CodePages.dll new file mode 100644 index 0000000..abd4c83 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Text.Encoding.CodePages.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Text.Encoding.Extensions.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Text.Encoding.Extensions.dll new file mode 100644 index 0000000..dd2b5ad Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Text.Encoding.Extensions.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Text.Encoding.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Text.Encoding.dll new file mode 100644 index 0000000..a02182c Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Text.Encoding.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Text.Encodings.Web.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Text.Encodings.Web.dll new file mode 100644 index 0000000..ba8409e Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Text.Encodings.Web.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Text.Json.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Text.Json.dll new file mode 100644 index 0000000..73ef9fa Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Text.Json.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Text.RegularExpressions.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Text.RegularExpressions.dll new file mode 100644 index 0000000..df118ef Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Text.RegularExpressions.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Threading.AccessControl.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Threading.AccessControl.dll new file mode 100644 index 0000000..c9ead5e Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Threading.AccessControl.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Threading.Channels.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Threading.Channels.dll new file mode 100644 index 0000000..743bef4 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Threading.Channels.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Threading.Overlapped.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Threading.Overlapped.dll new file mode 100644 index 0000000..16c8560 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Threading.Overlapped.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Threading.Tasks.Dataflow.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Threading.Tasks.Dataflow.dll new file mode 100644 index 0000000..321ab67 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Threading.Tasks.Dataflow.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Threading.Tasks.Extensions.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Threading.Tasks.Extensions.dll new file mode 100644 index 0000000..b252e3e Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Threading.Tasks.Extensions.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Threading.Tasks.Parallel.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Threading.Tasks.Parallel.dll new file mode 100644 index 0000000..4ef11ae Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Threading.Tasks.Parallel.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Threading.Tasks.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Threading.Tasks.dll new file mode 100644 index 0000000..b6ff0b8 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Threading.Tasks.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Threading.Thread.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Threading.Thread.dll new file mode 100644 index 0000000..3a3d1d8 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Threading.Thread.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Threading.ThreadPool.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Threading.ThreadPool.dll new file mode 100644 index 0000000..540239f Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Threading.ThreadPool.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Threading.Timer.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Threading.Timer.dll new file mode 100644 index 0000000..3fa7d4e Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Threading.Timer.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Threading.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Threading.dll new file mode 100644 index 0000000..e442bd8 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Threading.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Transactions.Local.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Transactions.Local.dll new file mode 100644 index 0000000..bdd0e6d Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Transactions.Local.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Transactions.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Transactions.dll new file mode 100644 index 0000000..09a8295 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Transactions.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.ValueTuple.dll b/OnProfNext.Client/bin/Debug/net10.0/System.ValueTuple.dll new file mode 100644 index 0000000..3610d27 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.ValueTuple.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Web.HttpUtility.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Web.HttpUtility.dll new file mode 100644 index 0000000..5abf2fc Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Web.HttpUtility.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Web.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Web.dll new file mode 100644 index 0000000..0b173da Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Web.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Windows.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Windows.dll new file mode 100644 index 0000000..ae78c76 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Windows.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Xml.Linq.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Xml.Linq.dll new file mode 100644 index 0000000..5381eb3 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Xml.Linq.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Xml.ReaderWriter.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Xml.ReaderWriter.dll new file mode 100644 index 0000000..486d516 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Xml.ReaderWriter.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Xml.Serialization.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Xml.Serialization.dll new file mode 100644 index 0000000..e45e192 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Xml.Serialization.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Xml.XDocument.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Xml.XDocument.dll new file mode 100644 index 0000000..f550e6f Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Xml.XDocument.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Xml.XPath.XDocument.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Xml.XPath.XDocument.dll new file mode 100644 index 0000000..a8d3369 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Xml.XPath.XDocument.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Xml.XPath.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Xml.XPath.dll new file mode 100644 index 0000000..6007215 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Xml.XPath.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Xml.XmlDocument.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Xml.XmlDocument.dll new file mode 100644 index 0000000..cbb58a0 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Xml.XmlDocument.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Xml.XmlSerializer.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Xml.XmlSerializer.dll new file mode 100644 index 0000000..56ee568 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Xml.XmlSerializer.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.Xml.dll b/OnProfNext.Client/bin/Debug/net10.0/System.Xml.dll new file mode 100644 index 0000000..ac30977 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.Xml.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/System.dll b/OnProfNext.Client/bin/Debug/net10.0/System.dll new file mode 100644 index 0000000..7f6ef7a Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/System.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/WindowsBase.dll b/OnProfNext.Client/bin/Debug/net10.0/WindowsBase.dll new file mode 100644 index 0000000..0600e15 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/WindowsBase.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/dotnet.js b/OnProfNext.Client/bin/Debug/net10.0/dotnet.js new file mode 100644 index 0000000..787ee4d --- /dev/null +++ b/OnProfNext.Client/bin/Debug/net10.0/dotnet.js @@ -0,0 +1,4 @@ +//! Licensed to the .NET Foundation under one or more agreements. +//! The .NET Foundation licenses this file to you under the MIT license. +/*! bundlerFriendlyImports */ +var e=!1;const t=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,4,1,96,0,0,3,2,1,0,10,8,1,6,0,6,64,25,11,11])),o=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,5,1,96,0,1,123,3,2,1,0,10,15,1,13,0,65,1,253,15,65,2,253,15,253,128,2,11])),n=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,5,1,96,0,1,123,3,2,1,0,10,10,1,8,0,65,0,253,15,253,98,11])),r=Symbol.for("wasm promise_control");function i(e,t){let o=null;const n=new Promise((function(n,r){o={isDone:!1,promise:null,resolve:t=>{o.isDone||(o.isDone=!0,n(t),e&&e())},reject:e=>{o.isDone||(o.isDone=!0,r(e),t&&t())}}}));o.promise=n;const i=n;return i[r]=o,{promise:i,promise_control:o}}function s(e){return e[r]}function a(e){e&&function(e){return void 0!==e[r]}(e)||Be(!1,"Promise is not controllable")}const l="__mono_message__",c=["debug","log","trace","warn","info","error"],d="MONO_WASM: ";let u,f,m,g,p,h;function w(e){g=e}function b(e){if(Pe.diagnosticTracing){const t="function"==typeof e?e():e;console.debug(d+t)}}function y(e,...t){console.info(d+e,...t)}function v(e,...t){console.info(e,...t)}function E(e,...t){console.warn(d+e,...t)}function _(e,...t){if(t&&t.length>0&&t[0]&&"object"==typeof t[0]){if(t[0].silent)return;if(t[0].toString)return void console.error(d+e,t[0].toString())}console.error(d+e,...t)}function x(e,t,o){return function(...n){try{let r=n[0];if(void 0===r)r="undefined";else if(null===r)r="null";else if("function"==typeof r)r=r.toString();else if("string"!=typeof r)try{r=JSON.stringify(r)}catch(e){r=r.toString()}t(o?JSON.stringify({method:e,payload:r,arguments:n.slice(1)}):[e+r,...n.slice(1)])}catch(e){m.error(`proxyConsole failed: ${e}`)}}}function j(e,t,o){f=t,g=e,m={...t};const n=`${o}/console`.replace("https://","wss://").replace("http://","ws://");u=new WebSocket(n),u.addEventListener("error",A),u.addEventListener("close",S),function(){for(const e of c)f[e]=x(`console.${e}`,T,!0)}()}function R(e){let t=30;const o=()=>{u?0==u.bufferedAmount||0==t?(e&&v(e),function(){for(const e of c)f[e]=x(`console.${e}`,m.log,!1)}(),u.removeEventListener("error",A),u.removeEventListener("close",S),u.close(1e3,e),u=void 0):(t--,globalThis.setTimeout(o,100)):e&&m&&m.log(e)};o()}function T(e){u&&u.readyState===WebSocket.OPEN?u.send(e):m.log(e)}function A(e){m.error(`[${g}] proxy console websocket error: ${e}`,e)}function S(e){m.debug(`[${g}] proxy console websocket closed: ${e}`,e)}function D(){Pe.preferredIcuAsset=O(Pe.config);let e="invariant"==Pe.config.globalizationMode;if(!e)if(Pe.preferredIcuAsset)Pe.diagnosticTracing&&b("ICU data archive(s) available, disabling invariant mode");else{if("custom"===Pe.config.globalizationMode||"all"===Pe.config.globalizationMode||"sharded"===Pe.config.globalizationMode){const e="invariant globalization mode is inactive and no ICU data archives are available";throw _(`ERROR: ${e}`),new Error(e)}Pe.diagnosticTracing&&b("ICU data archive(s) not available, using invariant globalization mode"),e=!0,Pe.preferredIcuAsset=null}const t="DOTNET_SYSTEM_GLOBALIZATION_INVARIANT",o=Pe.config.environmentVariables;if(void 0===o[t]&&e&&(o[t]="1"),void 0===o.TZ)try{const e=Intl.DateTimeFormat().resolvedOptions().timeZone||null;e&&(o.TZ=e)}catch(e){y("failed to detect timezone, will fallback to UTC")}}function O(e){var t;if((null===(t=e.resources)||void 0===t?void 0:t.icu)&&"invariant"!=e.globalizationMode){const t=e.applicationCulture||(ke?globalThis.navigator&&globalThis.navigator.languages&&globalThis.navigator.languages[0]:Intl.DateTimeFormat().resolvedOptions().locale),o=e.resources.icu;let n=null;if("custom"===e.globalizationMode){if(o.length>=1)return o[0].name}else t&&"all"!==e.globalizationMode?"sharded"===e.globalizationMode&&(n=function(e){const t=e.split("-")[0];return"en"===t||["fr","fr-FR","it","it-IT","de","de-DE","es","es-ES"].includes(e)?"icudt_EFIGS.dat":["zh","ko","ja"].includes(t)?"icudt_CJK.dat":"icudt_no_CJK.dat"}(t)):n="icudt.dat";if(n)for(let e=0;enull},url:e,arrayBuffer:()=>r,json:()=>JSON.parse(r),text:()=>{throw new Error("NotImplementedException")}}}if(o)return globalThis.fetch(e,t||{credentials:"same-origin"});if("function"==typeof read)return{ok:!0,url:e,headers:{length:0,get:()=>null},arrayBuffer:()=>new Uint8Array(read(e,"binary")),json:()=>JSON.parse(read(e,"utf8")),text:()=>read(e,"utf8")}}catch(t){return{ok:!1,url:e,status:500,headers:{length:0,get:()=>null},statusText:"ERR28: "+t,arrayBuffer:()=>{throw t},json:()=>{throw t},text:()=>{throw t}}}throw new Error("No fetch implementation available")}function I(e){return"string"!=typeof e&&Be(!1,"url must be a string"),!M(e)&&0!==e.indexOf("./")&&0!==e.indexOf("../")&&globalThis.URL&&globalThis.document&&globalThis.document.baseURI&&(e=new URL(e,globalThis.document.baseURI).toString()),e}const U=/^[a-zA-Z][a-zA-Z\d+\-.]*?:\/\//,P=/[a-zA-Z]:[\\/]/;function M(e){return Se||Ie?e.startsWith("/")||e.startsWith("\\")||-1!==e.indexOf("///")||P.test(e):U.test(e)}let L,N=0;const $=[],z=[],W=new Map,F={"js-module-threads":!0,"js-module-runtime":!0,"js-module-dotnet":!0,"js-module-native":!0,"js-module-diagnostics":!0},B={...F,"js-module-library-initializer":!0},V={...F,dotnetwasm:!0,heap:!0,manifest:!0},q={...B,manifest:!0},H={...B,dotnetwasm:!0},J={dotnetwasm:!0,symbols:!0},Z={...B,dotnetwasm:!0,symbols:!0},Q={symbols:!0};function G(e){return!("icu"==e.behavior&&e.name!=Pe.preferredIcuAsset)}function K(e,t,o){null!=t||(t=[]),Be(1==t.length,`Expect to have one ${o} asset in resources`);const n=t[0];return n.behavior=o,X(n),e.push(n),n}function X(e){V[e.behavior]&&W.set(e.behavior,e)}function Y(e){Be(V[e],`Unknown single asset behavior ${e}`);const t=W.get(e);if(t&&!t.resolvedUrl)if(t.resolvedUrl=Pe.locateFile(t.name),F[t.behavior]){const e=ge(t);e?("string"!=typeof e&&Be(!1,"loadBootResource response for 'dotnetjs' type should be a URL string"),t.resolvedUrl=e):t.resolvedUrl=ce(t.resolvedUrl,t.behavior)}else if("dotnetwasm"!==t.behavior)throw new Error(`Unknown single asset behavior ${e}`);return t}function ee(e){const t=Y(e);return Be(t,`Single asset for ${e} not found`),t}let te=!1;async function oe(){if(!te){te=!0,Pe.diagnosticTracing&&b("mono_download_assets");try{const e=[],t=[],o=(e,t)=>{!Z[e.behavior]&&G(e)&&Pe.expected_instantiated_assets_count++,!H[e.behavior]&&G(e)&&(Pe.expected_downloaded_assets_count++,t.push(se(e)))};for(const t of $)o(t,e);for(const e of z)o(e,t);Pe.allDownloadsQueued.promise_control.resolve(),Promise.all([...e,...t]).then((()=>{Pe.allDownloadsFinished.promise_control.resolve()})).catch((e=>{throw Pe.err("Error in mono_download_assets: "+e),Xe(1,e),e})),await Pe.runtimeModuleLoaded.promise;const n=async e=>{const t=await e;if(t.buffer){if(!Z[t.behavior]){t.buffer&&"object"==typeof t.buffer||Be(!1,"asset buffer must be array-like or buffer-like or promise of these"),"string"!=typeof t.resolvedUrl&&Be(!1,"resolvedUrl must be string");const e=t.resolvedUrl,o=await t.buffer,n=new Uint8Array(o);pe(t),await Ue.beforeOnRuntimeInitialized.promise,Ue.instantiate_asset(t,e,n)}}else J[t.behavior]?("symbols"===t.behavior&&(await Ue.instantiate_symbols_asset(t),pe(t)),J[t.behavior]&&++Pe.actual_downloaded_assets_count):(t.isOptional||Be(!1,"Expected asset to have the downloaded buffer"),!H[t.behavior]&&G(t)&&Pe.expected_downloaded_assets_count--,!Z[t.behavior]&&G(t)&&Pe.expected_instantiated_assets_count--)},r=[],i=[];for(const t of e)r.push(n(t));for(const e of t)i.push(n(e));Promise.all(r).then((()=>{Ce||Ue.coreAssetsInMemory.promise_control.resolve()})).catch((e=>{throw Pe.err("Error in mono_download_assets: "+e),Xe(1,e),e})),Promise.all(i).then((async()=>{Ce||(await Ue.coreAssetsInMemory.promise,Ue.allAssetsInMemory.promise_control.resolve())})).catch((e=>{throw Pe.err("Error in mono_download_assets: "+e),Xe(1,e),e}))}catch(e){throw Pe.err("Error in mono_download_assets: "+e),e}}}let ne=!1;function re(){if(ne)return;ne=!0;const e=Pe.config,t=[];if(e.assets)for(const t of e.assets)"object"!=typeof t&&Be(!1,`asset must be object, it was ${typeof t} : ${t}`),"string"!=typeof t.behavior&&Be(!1,"asset behavior must be known string"),"string"!=typeof t.name&&Be(!1,"asset name must be string"),t.resolvedUrl&&"string"!=typeof t.resolvedUrl&&Be(!1,"asset resolvedUrl could be string"),t.hash&&"string"!=typeof t.hash&&Be(!1,"asset resolvedUrl could be string"),t.pendingDownload&&"object"!=typeof t.pendingDownload&&Be(!1,"asset pendingDownload could be object"),t.isCore?$.push(t):z.push(t),X(t);else if(e.resources){const o=e.resources;o.wasmNative||Be(!1,"resources.wasmNative must be defined"),o.jsModuleNative||Be(!1,"resources.jsModuleNative must be defined"),o.jsModuleRuntime||Be(!1,"resources.jsModuleRuntime must be defined"),K(z,o.wasmNative,"dotnetwasm"),K(t,o.jsModuleNative,"js-module-native"),K(t,o.jsModuleRuntime,"js-module-runtime"),o.jsModuleDiagnostics&&K(t,o.jsModuleDiagnostics,"js-module-diagnostics");const n=(e,t,o)=>{const n=e;n.behavior=t,o?(n.isCore=!0,$.push(n)):z.push(n)};if(o.coreAssembly)for(let e=0;eglobalThis.setTimeout(e,100))),Pe.diagnosticTracing&&b(`Retrying download (2) '${e.name}' after delay`),await ae(e)}}}async function ae(e){for(;L;)await L.promise;try{++N,N==Pe.maxParallelDownloads&&(Pe.diagnosticTracing&&b("Throttling further parallel downloads"),L=i());const t=await async function(e){if(e.pendingDownload&&(e.pendingDownloadInternal=e.pendingDownload),e.pendingDownloadInternal&&e.pendingDownloadInternal.response)return e.pendingDownloadInternal.response;if(e.buffer){const t=await e.buffer;return e.resolvedUrl||(e.resolvedUrl="undefined://"+e.name),e.pendingDownloadInternal={url:e.resolvedUrl,name:e.name,response:Promise.resolve({ok:!0,arrayBuffer:()=>t,json:()=>JSON.parse(new TextDecoder("utf-8").decode(t)),text:()=>{throw new Error("NotImplementedException")},headers:{get:()=>{}}})},e.pendingDownloadInternal.response}const t=e.loadRemote&&Pe.config.remoteSources?Pe.config.remoteSources:[""];let o;for(let n of t){n=n.trim(),"./"===n&&(n="");const t=le(e,n);e.name===t?Pe.diagnosticTracing&&b(`Attempting to download '${t}'`):Pe.diagnosticTracing&&b(`Attempting to download '${t}' for ${e.name}`);try{e.resolvedUrl=t;const n=fe(e);if(e.pendingDownloadInternal=n,o=await n.response,!o||!o.ok)continue;return o}catch(e){o||(o={ok:!1,url:t,status:0,statusText:""+e});continue}}const n=e.isOptional||e.name.match(/\.pdb$/)&&Pe.config.ignorePdbLoadErrors;if(o||Be(!1,`Response undefined ${e.name}`),!n){const t=new Error(`download '${o.url}' for ${e.name} failed ${o.status} ${o.statusText}`);throw t.status=o.status,t}y(`optional download '${o.url}' for ${e.name} failed ${o.status} ${o.statusText}`)}(e);return t?(J[e.behavior]||(e.buffer=await t.arrayBuffer(),++Pe.actual_downloaded_assets_count),e):e}finally{if(--N,L&&N==Pe.maxParallelDownloads-1){Pe.diagnosticTracing&&b("Resuming more parallel downloads");const e=L;L=void 0,e.promise_control.resolve()}}}function le(e,t){let o;return null==t&&Be(!1,`sourcePrefix must be provided for ${e.name}`),e.resolvedUrl?o=e.resolvedUrl:(o=""===t?"assembly"===e.behavior||"pdb"===e.behavior?e.name:"resource"===e.behavior&&e.culture&&""!==e.culture?`${e.culture}/${e.name}`:e.name:t+e.name,o=ce(Pe.locateFile(o),e.behavior)),o&&"string"==typeof o||Be(!1,"attemptUrl need to be path or url string"),o}function ce(e,t){return Pe.modulesUniqueQuery&&q[t]&&(e+=Pe.modulesUniqueQuery),e}let de=0;const ue=new Set;function fe(e){try{e.resolvedUrl||Be(!1,"Request's resolvedUrl must be set");const t=function(e){let t=e.resolvedUrl;if(Pe.loadBootResource){const o=ge(e);if(o instanceof Promise)return o;"string"==typeof o&&(t=o)}const o={};return e.cache?o.cache=e.cache:Pe.config.disableNoCacheFetch||(o.cache="no-cache"),e.useCredentials?o.credentials="include":!Pe.config.disableIntegrityCheck&&e.hash&&(o.integrity=e.hash),Pe.fetch_like(t,o)}(e),o={name:e.name,url:e.resolvedUrl,response:t};return ue.add(e.name),o.response.then((()=>{"assembly"==e.behavior&&Pe.loadedAssemblies.push(e.name),de++,Pe.onDownloadResourceProgress&&Pe.onDownloadResourceProgress(de,ue.size)})),o}catch(t){const o={ok:!1,url:e.resolvedUrl,status:500,statusText:"ERR29: "+t,arrayBuffer:()=>{throw t},json:()=>{throw t}};return{name:e.name,url:e.resolvedUrl,response:Promise.resolve(o)}}}const me={resource:"assembly",assembly:"assembly",pdb:"pdb",icu:"globalization",vfs:"configuration",manifest:"manifest",dotnetwasm:"dotnetwasm","js-module-dotnet":"dotnetjs","js-module-native":"dotnetjs","js-module-runtime":"dotnetjs","js-module-threads":"dotnetjs"};function ge(e){var t;if(Pe.loadBootResource){const o=null!==(t=e.hash)&&void 0!==t?t:"",n=e.resolvedUrl,r=me[e.behavior];if(r){const t=Pe.loadBootResource(r,e.name,n,o,e.behavior);return"string"==typeof t?I(t):t}}}function pe(e){e.pendingDownloadInternal=null,e.pendingDownload=null,e.buffer=null,e.moduleExports=null}function he(e){let t=e.lastIndexOf("/");return t>=0&&t++,e.substring(t)}async function we(e){e&&await Promise.all((null!=e?e:[]).map((e=>async function(e){try{const t=e.name;if(!e.moduleExports){const o=ce(Pe.locateFile(t),"js-module-library-initializer");Pe.diagnosticTracing&&b(`Attempting to import '${o}' for ${e}`),e.moduleExports=await import(/*! webpackIgnore: true */o)}Pe.libraryInitializers.push({scriptName:t,exports:e.moduleExports})}catch(t){E(`Failed to import library initializer '${e}': ${t}`)}}(e))))}async function be(e,t){if(!Pe.libraryInitializers)return;const o=[];for(let n=0;nr.exports[e](...t))))}await Promise.all(o)}async function ye(e,t,o){try{await o()}catch(o){throw E(`Failed to invoke '${t}' on library initializer '${e}': ${o}`),Xe(1,o),o}}function ve(e,t){if(e===t)return e;const o={...t};return void 0!==o.assets&&o.assets!==e.assets&&(o.assets=[...e.assets||[],...o.assets||[]]),void 0!==o.resources&&(o.resources=_e(e.resources||{assembly:[],jsModuleNative:[],jsModuleRuntime:[],wasmNative:[]},o.resources)),void 0!==o.environmentVariables&&(o.environmentVariables={...e.environmentVariables||{},...o.environmentVariables||{}}),void 0!==o.runtimeOptions&&o.runtimeOptions!==e.runtimeOptions&&(o.runtimeOptions=[...e.runtimeOptions||[],...o.runtimeOptions||[]]),Object.assign(e,o)}function Ee(e,t){if(e===t)return e;const o={...t};return o.config&&(e.config||(e.config={}),o.config=ve(e.config,o.config)),Object.assign(e,o)}function _e(e,t){if(e===t)return e;const o={...t};return void 0!==o.coreAssembly&&(o.coreAssembly=[...e.coreAssembly||[],...o.coreAssembly||[]]),void 0!==o.assembly&&(o.assembly=[...e.assembly||[],...o.assembly||[]]),void 0!==o.lazyAssembly&&(o.lazyAssembly=[...e.lazyAssembly||[],...o.lazyAssembly||[]]),void 0!==o.corePdb&&(o.corePdb=[...e.corePdb||[],...o.corePdb||[]]),void 0!==o.pdb&&(o.pdb=[...e.pdb||[],...o.pdb||[]]),void 0!==o.jsModuleWorker&&(o.jsModuleWorker=[...e.jsModuleWorker||[],...o.jsModuleWorker||[]]),void 0!==o.jsModuleNative&&(o.jsModuleNative=[...e.jsModuleNative||[],...o.jsModuleNative||[]]),void 0!==o.jsModuleDiagnostics&&(o.jsModuleDiagnostics=[...e.jsModuleDiagnostics||[],...o.jsModuleDiagnostics||[]]),void 0!==o.jsModuleRuntime&&(o.jsModuleRuntime=[...e.jsModuleRuntime||[],...o.jsModuleRuntime||[]]),void 0!==o.wasmSymbols&&(o.wasmSymbols=[...e.wasmSymbols||[],...o.wasmSymbols||[]]),void 0!==o.wasmNative&&(o.wasmNative=[...e.wasmNative||[],...o.wasmNative||[]]),void 0!==o.icu&&(o.icu=[...e.icu||[],...o.icu||[]]),void 0!==o.satelliteResources&&(o.satelliteResources=function(e,t){if(e===t)return e;for(const o in t)e[o]=[...e[o]||[],...t[o]||[]];return e}(e.satelliteResources||{},o.satelliteResources||{})),void 0!==o.modulesAfterConfigLoaded&&(o.modulesAfterConfigLoaded=[...e.modulesAfterConfigLoaded||[],...o.modulesAfterConfigLoaded||[]]),void 0!==o.modulesAfterRuntimeReady&&(o.modulesAfterRuntimeReady=[...e.modulesAfterRuntimeReady||[],...o.modulesAfterRuntimeReady||[]]),void 0!==o.extensions&&(o.extensions={...e.extensions||{},...o.extensions||{}}),void 0!==o.vfs&&(o.vfs=[...e.vfs||[],...o.vfs||[]]),Object.assign(e,o)}function xe(){const e=Pe.config;if(e.environmentVariables=e.environmentVariables||{},e.runtimeOptions=e.runtimeOptions||[],e.resources=e.resources||{assembly:[],jsModuleNative:[],jsModuleWorker:[],jsModuleRuntime:[],wasmNative:[],vfs:[],satelliteResources:{}},e.assets){Pe.diagnosticTracing&&b("config.assets is deprecated, use config.resources instead");for(const t of e.assets){const o={};switch(t.behavior){case"assembly":o.assembly=[t];break;case"pdb":o.pdb=[t];break;case"resource":o.satelliteResources={},o.satelliteResources[t.culture]=[t];break;case"icu":o.icu=[t];break;case"symbols":o.wasmSymbols=[t];break;case"vfs":o.vfs=[t];break;case"dotnetwasm":o.wasmNative=[t];break;case"js-module-threads":o.jsModuleWorker=[t];break;case"js-module-runtime":o.jsModuleRuntime=[t];break;case"js-module-native":o.jsModuleNative=[t];break;case"js-module-diagnostics":o.jsModuleDiagnostics=[t];break;case"js-module-dotnet":break;default:throw new Error(`Unexpected behavior ${t.behavior} of asset ${t.name}`)}_e(e.resources,o)}}e.debugLevel,e.applicationEnvironment||(e.applicationEnvironment="Production"),e.applicationCulture&&(e.environmentVariables.LANG=`${e.applicationCulture}.UTF-8`),Ue.diagnosticTracing=Pe.diagnosticTracing=!!e.diagnosticTracing,Ue.waitForDebugger=e.waitForDebugger,Pe.maxParallelDownloads=e.maxParallelDownloads||Pe.maxParallelDownloads,Pe.enableDownloadRetry=void 0!==e.enableDownloadRetry?e.enableDownloadRetry:Pe.enableDownloadRetry}let je=!1;async function Re(e){var t;if(je)return void await Pe.afterConfigLoaded.promise;let o;try{if(e.configSrc||Pe.config&&0!==Object.keys(Pe.config).length&&(Pe.config.assets||Pe.config.resources)||(e.configSrc="dotnet.boot.js"),o=e.configSrc,je=!0,o&&(Pe.diagnosticTracing&&b("mono_wasm_load_config"),await async function(e){const t=e.configSrc,o=Pe.locateFile(t);let n=null;void 0!==Pe.loadBootResource&&(n=Pe.loadBootResource("manifest",t,o,"","manifest"));let r,i=null;if(n)if("string"==typeof n)n.includes(".json")?(i=await s(I(n)),r=await Ae(i)):r=(await import(I(n))).config;else{const e=await n;"function"==typeof e.json?(i=e,r=await Ae(i)):r=e.config}else o.includes(".json")?(i=await s(ce(o,"manifest")),r=await Ae(i)):r=(await import(ce(o,"manifest"))).config;function s(e){return Pe.fetch_like(e,{method:"GET",credentials:"include",cache:"no-cache"})}Pe.config.applicationEnvironment&&(r.applicationEnvironment=Pe.config.applicationEnvironment),ve(Pe.config,r)}(e)),xe(),await we(null===(t=Pe.config.resources)||void 0===t?void 0:t.modulesAfterConfigLoaded),await be("onRuntimeConfigLoaded",[Pe.config]),e.onConfigLoaded)try{await e.onConfigLoaded(Pe.config,Le),xe()}catch(e){throw _("onConfigLoaded() failed",e),e}xe(),Pe.afterConfigLoaded.promise_control.resolve(Pe.config)}catch(t){const n=`Failed to load config file ${o} ${t} ${null==t?void 0:t.stack}`;throw Pe.config=e.config=Object.assign(Pe.config,{message:n,error:t,isError:!0}),Xe(1,new Error(n)),t}}function Te(){return!!globalThis.navigator&&(Pe.isChromium||Pe.isFirefox)}async function Ae(e){const t=Pe.config,o=await e.json();t.applicationEnvironment||o.applicationEnvironment||(o.applicationEnvironment=e.headers.get("Blazor-Environment")||e.headers.get("DotNet-Environment")||void 0),o.environmentVariables||(o.environmentVariables={});const n=e.headers.get("DOTNET-MODIFIABLE-ASSEMBLIES");n&&(o.environmentVariables.DOTNET_MODIFIABLE_ASSEMBLIES=n);const r=e.headers.get("ASPNETCORE-BROWSER-TOOLS");return r&&(o.environmentVariables.__ASPNETCORE_BROWSER_TOOLS=r),o}"function"!=typeof importScripts||globalThis.onmessage||(globalThis.dotnetSidecar=!0);const Se="object"==typeof process&&"object"==typeof process.versions&&"string"==typeof process.versions.node,De="function"==typeof importScripts,Oe=De&&"undefined"!=typeof dotnetSidecar,Ce=De&&!Oe,ke="object"==typeof window||De&&!Se,Ie=!ke&&!Se;let Ue={},Pe={},Me={},Le={},Ne={},$e=!1;const ze={},We={config:ze},Fe={mono:{},binding:{},internal:Ne,module:We,loaderHelpers:Pe,runtimeHelpers:Ue,diagnosticHelpers:Me,api:Le};function Be(e,t){if(e)return;const o="Assert failed: "+("function"==typeof t?t():t),n=new Error(o);_(o,n),Ue.nativeAbort(n)}function Ve(){return void 0!==Pe.exitCode}function qe(){return Ue.runtimeReady&&!Ve()}function He(){Ve()&&Be(!1,`.NET runtime already exited with ${Pe.exitCode} ${Pe.exitReason}. You can use runtime.runMain() which doesn't exit the runtime.`),Ue.runtimeReady||Be(!1,".NET runtime didn't start yet. Please call dotnet.create() first.")}function Je(){ke&&(globalThis.addEventListener("unhandledrejection",et),globalThis.addEventListener("error",tt))}let Ze,Qe;function Ge(e){Qe&&Qe(e),Xe(e,Pe.exitReason)}function Ke(e){Ze&&Ze(e||Pe.exitReason),Xe(1,e||Pe.exitReason)}function Xe(t,o){var n,r;const i=o&&"object"==typeof o;t=i&&"number"==typeof o.status?o.status:void 0===t?-1:t;const s=i&&"string"==typeof o.message?o.message:""+o;(o=i?o:Ue.ExitStatus?function(e,t){const o=new Ue.ExitStatus(e);return o.message=t,o.toString=()=>t,o}(t,s):new Error("Exit with code "+t+" "+s)).status=t,o.message||(o.message=s);const a=""+(o.stack||(new Error).stack);try{Object.defineProperty(o,"stack",{get:()=>a})}catch(e){}const l=!!o.silent;if(o.silent=!0,Ve())Pe.diagnosticTracing&&b("mono_exit called after exit");else{try{We.onAbort==Ke&&(We.onAbort=Ze),We.onExit==Ge&&(We.onExit=Qe),ke&&(globalThis.removeEventListener("unhandledrejection",et),globalThis.removeEventListener("error",tt)),Ue.runtimeReady?(Ue.jiterpreter_dump_stats&&Ue.jiterpreter_dump_stats(!1),0===t&&(null===(n=Pe.config)||void 0===n?void 0:n.interopCleanupOnExit)&&Ue.forceDisposeProxies(!0,!0),e&&0!==t&&(null===(r=Pe.config)||void 0===r||r.dumpThreadsOnNonZeroExit)):(Pe.diagnosticTracing&&b(`abort_startup, reason: ${o}`),function(e){Pe.allDownloadsQueued.promise_control.reject(e),Pe.allDownloadsFinished.promise_control.reject(e),Pe.afterConfigLoaded.promise_control.reject(e),Pe.wasmCompilePromise.promise_control.reject(e),Pe.runtimeModuleLoaded.promise_control.reject(e),Ue.dotnetReady&&(Ue.dotnetReady.promise_control.reject(e),Ue.afterInstantiateWasm.promise_control.reject(e),Ue.beforePreInit.promise_control.reject(e),Ue.afterPreInit.promise_control.reject(e),Ue.afterPreRun.promise_control.reject(e),Ue.beforeOnRuntimeInitialized.promise_control.reject(e),Ue.afterOnRuntimeInitialized.promise_control.reject(e),Ue.afterPostRun.promise_control.reject(e))}(o))}catch(e){E("mono_exit A failed",e)}try{l||(function(e,t){if(0!==e&&t){const e=Ue.ExitStatus&&t instanceof Ue.ExitStatus?b:_;"string"==typeof t?e(t):(void 0===t.stack&&(t.stack=(new Error).stack+""),t.message?e(Ue.stringify_as_error_with_stack?Ue.stringify_as_error_with_stack(t.message+"\n"+t.stack):t.message+"\n"+t.stack):e(JSON.stringify(t)))}!Ce&&Pe.config&&(Pe.config.logExitCode?Pe.config.forwardConsoleLogsToWS?R("WASM EXIT "+e):v("WASM EXIT "+e):Pe.config.forwardConsoleLogsToWS&&R())}(t,o),function(e){if(ke&&!Ce&&Pe.config&&Pe.config.appendElementOnExit&&document){const t=document.createElement("label");t.id="tests_done",0!==e&&(t.style.background="red"),t.innerHTML=""+e,document.body.appendChild(t)}}(t))}catch(e){E("mono_exit B failed",e)}Pe.exitCode=t,Pe.exitReason||(Pe.exitReason=o),!Ce&&Ue.runtimeReady&&We.runtimeKeepalivePop()}if(Pe.config&&Pe.config.asyncFlushOnExit&&0===t)throw(async()=>{try{await async function(){try{const e=await import(/*! webpackIgnore: true */"process"),t=e=>new Promise(((t,o)=>{e.on("error",o),e.end("","utf8",t)})),o=t(e.stderr),n=t(e.stdout);let r;const i=new Promise((e=>{r=setTimeout((()=>e("timeout")),1e3)}));await Promise.race([Promise.all([n,o]),i]),clearTimeout(r)}catch(e){_(`flushing std* streams failed: ${e}`)}}()}finally{Ye(t,o)}})(),o;Ye(t,o)}function Ye(e,t){if(Ue.runtimeReady&&Ue.nativeExit)try{Ue.nativeExit(e)}catch(e){!Ue.ExitStatus||e instanceof Ue.ExitStatus||E("set_exit_code_and_quit_now failed: "+e.toString())}if(0!==e||!ke)throw Se&&Ne.process?Ne.process.exit(e):Ue.quit&&Ue.quit(e,t),t}function et(e){ot(e,e.reason,"rejection")}function tt(e){ot(e,e.error,"error")}function ot(e,t,o){e.preventDefault();try{t||(t=new Error("Unhandled "+o)),void 0===t.stack&&(t.stack=(new Error).stack),t.stack=t.stack+"",t.silent||(_("Unhandled error:",t),Xe(1,t))}catch(e){}}!function(e){if($e)throw new Error("Loader module already loaded");$e=!0,Ue=e.runtimeHelpers,Pe=e.loaderHelpers,Me=e.diagnosticHelpers,Le=e.api,Ne=e.internal,Object.assign(Le,{INTERNAL:Ne,invokeLibraryInitializers:be}),Object.assign(e.module,{config:ve(ze,{environmentVariables:{}})});const r={mono_wasm_bindings_is_ready:!1,config:e.module.config,diagnosticTracing:!1,nativeAbort:e=>{throw e||new Error("abort")},nativeExit:e=>{throw new Error("exit:"+e)}},l={gitHash:"a612c2a1056fe3265387ae3ff7c94eba1505caf9",config:e.module.config,diagnosticTracing:!1,maxParallelDownloads:16,enableDownloadRetry:!0,_loaded_files:[],loadedFiles:[],loadedAssemblies:[],libraryInitializers:[],workerNextNumber:1,actual_downloaded_assets_count:0,actual_instantiated_assets_count:0,expected_downloaded_assets_count:0,expected_instantiated_assets_count:0,afterConfigLoaded:i(),allDownloadsQueued:i(),allDownloadsFinished:i(),wasmCompilePromise:i(),runtimeModuleLoaded:i(),loadingWorkers:i(),is_exited:Ve,is_runtime_running:qe,assert_runtime_running:He,mono_exit:Xe,createPromiseController:i,getPromiseController:s,assertIsControllablePromise:a,mono_download_assets:oe,resolve_single_asset_path:ee,setup_proxy_console:j,set_thread_prefix:w,installUnhandledErrorHandler:Je,retrieve_asset_download:ie,invokeLibraryInitializers:be,isDebuggingSupported:Te,exceptions:t,simd:n,relaxedSimd:o};Object.assign(Ue,r),Object.assign(Pe,l)}(Fe);let nt,rt,it,st=!1,at=!1;async function lt(e){if(!at){if(at=!0,ke&&Pe.config.forwardConsoleLogsToWS&&void 0!==globalThis.WebSocket&&j("main",globalThis.console,globalThis.location.origin),We||Be(!1,"Null moduleConfig"),Pe.config||Be(!1,"Null moduleConfig.config"),"function"==typeof e){const t=e(Fe.api);if(t.ready)throw new Error("Module.ready couldn't be redefined.");Object.assign(We,t),Ee(We,t)}else{if("object"!=typeof e)throw new Error("Can't use moduleFactory callback of createDotnetRuntime function.");Ee(We,e)}await async function(e){if(Se){const e=await import(/*! webpackIgnore: true */"process"),t=14;if(e.versions.node.split(".")[0]0&&(Pe.modulesUniqueQuery=t.substring(o)),Pe.scriptUrl=t.replace(/\\/g,"/").replace(/[?#].*/,""),Pe.scriptDirectory=(n=Pe.scriptUrl).slice(0,n.lastIndexOf("/"))+"/",Pe.locateFile=e=>"URL"in globalThis&&globalThis.URL!==C?new URL(e,Pe.scriptDirectory).toString():M(e)?e:Pe.scriptDirectory+e,Pe.fetch_like=k,Pe.out=console.log,Pe.err=console.error,Pe.onDownloadResourceProgress=e.onDownloadResourceProgress,ke&&globalThis.navigator){const e=globalThis.navigator,t=e.userAgentData&&e.userAgentData.brands;t&&t.length>0?Pe.isChromium=t.some((e=>"Google Chrome"===e.brand||"Microsoft Edge"===e.brand||"Chromium"===e.brand)):e.userAgent&&(Pe.isChromium=e.userAgent.includes("Chrome"),Pe.isFirefox=e.userAgent.includes("Firefox"))}Ne.require=Se?await import(/*! webpackIgnore: true */"module").then((e=>e.createRequire(/*! webpackIgnore: true */import.meta.url))):Promise.resolve((()=>{throw new Error("require not supported")})),void 0===globalThis.URL&&(globalThis.URL=C)}(We)}}async function ct(e){return await lt(e),Ze=We.onAbort,Qe=We.onExit,We.onAbort=Ke,We.onExit=Ge,We.ENVIRONMENT_IS_PTHREAD?async function(){(function(){const e=new MessageChannel,t=e.port1,o=e.port2;t.addEventListener("message",(e=>{var n,r;n=JSON.parse(e.data.config),r=JSON.parse(e.data.monoThreadInfo),st?Pe.diagnosticTracing&&b("mono config already received"):(ve(Pe.config,n),Ue.monoThreadInfo=r,xe(),Pe.diagnosticTracing&&b("mono config received"),st=!0,Pe.afterConfigLoaded.promise_control.resolve(Pe.config),ke&&n.forwardConsoleLogsToWS&&void 0!==globalThis.WebSocket&&Pe.setup_proxy_console("worker-idle",console,globalThis.location.origin)),t.close(),o.close()}),{once:!0}),t.start(),self.postMessage({[l]:{monoCmd:"preload",port:o}},[o])})(),await Pe.afterConfigLoaded.promise,function(){const e=Pe.config;e.assets||Be(!1,"config.assets must be defined");for(const t of e.assets)X(t),Q[t.behavior]&&z.push(t)}(),setTimeout((async()=>{try{await oe()}catch(e){Xe(1,e)}}),0);const e=dt(),t=await Promise.all(e);return await ut(t),We}():async function(){var e;await Re(We),re();const t=dt();(async function(){try{const e=ee("dotnetwasm");await se(e),e&&e.pendingDownloadInternal&&e.pendingDownloadInternal.response||Be(!1,"Can't load dotnet.native.wasm");const t=await e.pendingDownloadInternal.response,o=t.headers&&t.headers.get?t.headers.get("Content-Type"):void 0;let n;if("function"==typeof WebAssembly.compileStreaming&&"application/wasm"===o)n=await WebAssembly.compileStreaming(t);else{ke&&"application/wasm"!==o&&E('WebAssembly resource does not have the expected content type "application/wasm", so falling back to slower ArrayBuffer instantiation.');const e=await t.arrayBuffer();Pe.diagnosticTracing&&b("instantiate_wasm_module buffered"),n=Ie?await Promise.resolve(new WebAssembly.Module(e)):await WebAssembly.compile(e)}e.pendingDownloadInternal=null,e.pendingDownload=null,e.buffer=null,e.moduleExports=null,Pe.wasmCompilePromise.promise_control.resolve(n)}catch(e){Pe.wasmCompilePromise.promise_control.reject(e)}})(),setTimeout((async()=>{try{D(),await oe()}catch(e){Xe(1,e)}}),0);const o=await Promise.all(t);return await ut(o),await Ue.dotnetReady.promise,await we(null===(e=Pe.config.resources)||void 0===e?void 0:e.modulesAfterRuntimeReady),await be("onRuntimeReady",[Fe.api]),Le}()}function dt(){const e=ee("js-module-runtime"),t=ee("js-module-native");if(nt&&rt)return[nt,rt,it];"object"==typeof e.moduleExports?nt=e.moduleExports:(Pe.diagnosticTracing&&b(`Attempting to import '${e.resolvedUrl}' for ${e.name}`),nt=import(/*! webpackIgnore: true */e.resolvedUrl)),"object"==typeof t.moduleExports?rt=t.moduleExports:(Pe.diagnosticTracing&&b(`Attempting to import '${t.resolvedUrl}' for ${t.name}`),rt=import(/*! webpackIgnore: true */t.resolvedUrl));const o=Y("js-module-diagnostics");return o&&("object"==typeof o.moduleExports?it=o.moduleExports:(Pe.diagnosticTracing&&b(`Attempting to import '${o.resolvedUrl}' for ${o.name}`),it=import(/*! webpackIgnore: true */o.resolvedUrl))),[nt,rt,it]}async function ut(e){const{initializeExports:t,initializeReplacements:o,configureRuntimeStartup:n,configureEmscriptenStartup:r,configureWorkerStartup:i,setRuntimeGlobals:s,passEmscriptenInternals:a}=e[0],{default:l}=e[1],c=e[2];s(Fe),t(Fe),c&&c.setRuntimeGlobals(Fe),await n(We),Pe.runtimeModuleLoaded.promise_control.resolve(),l((e=>(Object.assign(We,{ready:e.ready,__dotnet_runtime:{initializeReplacements:o,configureEmscriptenStartup:r,configureWorkerStartup:i,passEmscriptenInternals:a}}),We))).catch((e=>{if(e.message&&e.message.toLowerCase().includes("out of memory"))throw new Error(".NET runtime has failed to start, because too much memory was requested. Please decrease the memory by adjusting EmccMaximumHeapSize. See also https://aka.ms/dotnet-wasm-features");throw e}))}const ft=new class{withModuleConfig(e){try{return Ee(We,e),this}catch(e){throw Xe(1,e),e}}withOnConfigLoaded(e){try{return Ee(We,{onConfigLoaded:e}),this}catch(e){throw Xe(1,e),e}}withConsoleForwarding(){try{return ve(ze,{forwardConsoleLogsToWS:!0}),this}catch(e){throw Xe(1,e),e}}withExitOnUnhandledError(){try{return ve(ze,{exitOnUnhandledError:!0}),Je(),this}catch(e){throw Xe(1,e),e}}withAsyncFlushOnExit(){try{return ve(ze,{asyncFlushOnExit:!0}),this}catch(e){throw Xe(1,e),e}}withExitCodeLogging(){try{return ve(ze,{logExitCode:!0}),this}catch(e){throw Xe(1,e),e}}withElementOnExit(){try{return ve(ze,{appendElementOnExit:!0}),this}catch(e){throw Xe(1,e),e}}withInteropCleanupOnExit(){try{return ve(ze,{interopCleanupOnExit:!0}),this}catch(e){throw Xe(1,e),e}}withDumpThreadsOnNonZeroExit(){try{return ve(ze,{dumpThreadsOnNonZeroExit:!0}),this}catch(e){throw Xe(1,e),e}}withWaitingForDebugger(e){try{return ve(ze,{waitForDebugger:e}),this}catch(e){throw Xe(1,e),e}}withInterpreterPgo(e,t){try{return ve(ze,{interpreterPgo:e,interpreterPgoSaveDelay:t}),ze.runtimeOptions?ze.runtimeOptions.push("--interp-pgo-recording"):ze.runtimeOptions=["--interp-pgo-recording"],this}catch(e){throw Xe(1,e),e}}withConfig(e){try{return ve(ze,e),this}catch(e){throw Xe(1,e),e}}withConfigSrc(e){try{return e&&"string"==typeof e||Be(!1,"must be file path or URL"),Ee(We,{configSrc:e}),this}catch(e){throw Xe(1,e),e}}withVirtualWorkingDirectory(e){try{return e&&"string"==typeof e||Be(!1,"must be directory path"),ve(ze,{virtualWorkingDirectory:e}),this}catch(e){throw Xe(1,e),e}}withEnvironmentVariable(e,t){try{const o={};return o[e]=t,ve(ze,{environmentVariables:o}),this}catch(e){throw Xe(1,e),e}}withEnvironmentVariables(e){try{return e&&"object"==typeof e||Be(!1,"must be dictionary object"),ve(ze,{environmentVariables:e}),this}catch(e){throw Xe(1,e),e}}withDiagnosticTracing(e){try{return"boolean"!=typeof e&&Be(!1,"must be boolean"),ve(ze,{diagnosticTracing:e}),this}catch(e){throw Xe(1,e),e}}withDebugging(e){try{return null!=e&&"number"==typeof e||Be(!1,"must be number"),ve(ze,{debugLevel:e}),this}catch(e){throw Xe(1,e),e}}withApplicationArguments(...e){try{return e&&Array.isArray(e)||Be(!1,"must be array of strings"),ve(ze,{applicationArguments:e}),this}catch(e){throw Xe(1,e),e}}withRuntimeOptions(e){try{return e&&Array.isArray(e)||Be(!1,"must be array of strings"),ze.runtimeOptions?ze.runtimeOptions.push(...e):ze.runtimeOptions=e,this}catch(e){throw Xe(1,e),e}}withMainAssembly(e){try{return ve(ze,{mainAssemblyName:e}),this}catch(e){throw Xe(1,e),e}}withApplicationArgumentsFromQuery(){try{if(!globalThis.window)throw new Error("Missing window to the query parameters from");if(void 0===globalThis.URLSearchParams)throw new Error("URLSearchParams is supported");const e=new URLSearchParams(globalThis.window.location.search).getAll("arg");return this.withApplicationArguments(...e)}catch(e){throw Xe(1,e),e}}withApplicationEnvironment(e){try{return ve(ze,{applicationEnvironment:e}),this}catch(e){throw Xe(1,e),e}}withApplicationCulture(e){try{return ve(ze,{applicationCulture:e}),this}catch(e){throw Xe(1,e),e}}withResourceLoader(e){try{return Pe.loadBootResource=e,this}catch(e){throw Xe(1,e),e}}async download(){try{await async function(){lt(We),await Re(We),re(),D(),oe(),await Pe.allDownloadsFinished.promise}()}catch(e){throw Xe(1,e),e}}async create(){try{return this.instance||(this.instance=await async function(){return await ct(We),Fe.api}()),this.instance}catch(e){throw Xe(1,e),e}}async run(){try{return We.config||Be(!1,"Null moduleConfig.config"),this.instance||await this.create(),this.instance.runMainAndExit()}catch(e){throw Xe(1,e),e}}},mt=Xe,gt=ct;Ie||"function"==typeof globalThis.URL||Be(!1,"This browser/engine doesn't support URL API. Please use a modern version. See also https://aka.ms/dotnet-wasm-features"),"function"!=typeof globalThis.BigInt64Array&&Be(!1,"This browser/engine doesn't support BigInt64Array API. Please use a modern version. See also https://aka.ms/dotnet-wasm-features"),ft.withConfig(/*! dotnetBootConfig */{});export{gt as default,ft as dotnet,mt as exit}; diff --git a/OnProfNext.Client/bin/Debug/net10.0/dotnet.js.map b/OnProfNext.Client/bin/Debug/net10.0/dotnet.js.map new file mode 100644 index 0000000..492d724 --- /dev/null +++ b/OnProfNext.Client/bin/Debug/net10.0/dotnet.js.map @@ -0,0 +1 @@ +{"version":3,"file":"dotnet.js","sources":["https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/node_modules/wasm-feature-detect/dist/esm/index.js","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/loader/promise-controller.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/types/internal.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/loader/logging.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/loader/polyfills.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/loader/icu.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/loader/assets.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/loader/libraryInitializers.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/loader/config.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/loader/globals.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/loader/exit.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/loader/worker.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/loader/run.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/loader/index.ts"],"sourcesContent":["export const bigInt=()=>(async e=>{try{return(await WebAssembly.instantiate(e)).instance.exports.b(BigInt(0))===BigInt(0)}catch(e){return!1}})(new Uint8Array([0,97,115,109,1,0,0,0,1,6,1,96,1,126,1,126,3,2,1,0,7,5,1,1,98,0,0,10,6,1,4,0,32,0,11])),bulkMemory=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,4,1,96,0,0,3,2,1,0,5,3,1,0,1,10,14,1,12,0,65,0,65,0,65,0,252,10,0,0,11])),exceptions=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,4,1,96,0,0,3,2,1,0,10,8,1,6,0,6,64,25,11,11])),extendedConst=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,5,3,1,0,1,11,9,1,0,65,1,65,2,106,11,0])),gc=()=>(async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,5,1,95,1,120,0])))(),jspi=()=>(async()=>\"Suspender\"in WebAssembly)(),memory64=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,5,3,1,4,1])),multiMemory=()=>(async()=>{try{return new WebAssembly.Module(new Uint8Array([0,97,115,109,1,0,0,0,5,5,2,0,0,0,0])),!0}catch(e){return!1}})(),multiValue=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,6,1,96,0,2,127,127,3,2,1,0,10,8,1,6,0,65,0,65,0,11])),mutableGlobals=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,2,8,1,1,97,1,98,3,127,1,6,6,1,127,1,65,0,11,7,5,1,1,97,3,1])),referenceTypes=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,4,1,96,0,0,3,2,1,0,10,7,1,5,0,208,112,26,11])),relaxedSimd=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,5,1,96,0,1,123,3,2,1,0,10,15,1,13,0,65,1,253,15,65,2,253,15,253,128,2,11])),saturatedFloatToInt=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,4,1,96,0,0,3,2,1,0,10,12,1,10,0,67,0,0,0,0,252,0,26,11])),signExtensions=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,4,1,96,0,0,3,2,1,0,10,8,1,6,0,65,0,192,26,11])),simd=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,5,1,96,0,1,123,3,2,1,0,10,10,1,8,0,65,0,253,15,253,98,11])),streamingCompilation=()=>(async()=>\"compileStreaming\"in WebAssembly)(),tailCall=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,4,1,96,0,0,3,2,1,0,10,6,1,4,0,18,0,11])),threads=()=>(async e=>{try{return\"undefined\"!=typeof MessageChannel&&(new MessageChannel).port1.postMessage(new SharedArrayBuffer(1)),WebAssembly.validate(e)}catch(e){return!1}})(new Uint8Array([0,97,115,109,1,0,0,0,1,4,1,96,0,0,3,2,1,0,5,4,1,3,1,1,10,11,1,9,0,65,0,254,16,2,0,26,11])),typeReflection=()=>(async()=>\"Function\"in WebAssembly)();\n",null,null,null,null,null,null,null,null,null,null,null,null,null],"names":["exceptions","async","WebAssembly","validate","Uint8Array","relaxedSimd","simd","promise_control_symbol","Symbol","for","createPromiseController","afterResolve","afterReject","promise_control","promise","Promise","resolve","reject","isDone","data","reason","controllablePromise","getPromiseController","assertIsControllablePromise","undefined","isControllablePromise","mono_assert","monoMessageSymbol","methods","prefix","consoleWebSocket","theConsoleApi","originalConsoleMethods","threadNamePrefix","node_fs","node_url","set_thread_prefix","threadPrefix","mono_log_debug","messageFactory","loaderHelpers","diagnosticTracing","message","console","debug","mono_log_info","msg","info","mono_log_info_no_prefix","mono_log_warn","warn","mono_log_error","length","silent","toString","error","proxyConsoleMethod","func","asJson","args","payload","JSON","stringify","e","method","arguments","slice","err","setup_proxy_console","id","origin","consoleUrl","replace","WebSocket","addEventListener","logWSError","logWSClose","m","send","setupWS","teardown_proxy_console","counter","stop_when_ws_buffer_empty","bufferedAmount","log","setupOriginal","removeEventListener","close","globalThis","setTimeout","readyState","OPEN","event","init_globalization","preferredIcuAsset","getIcuResourceName","config","invariantMode","globalizationMode","Error","invariantEnv","env_variables","environmentVariables","timezone","Intl","DateTimeFormat","resolvedOptions","timeZone","_a","resources","icu","culture","applicationCulture","ENVIRONMENT_IS_WEB","navigator","languages","locale","icuFiles","icuFile","name","split","includes","getShardedIcuResourceName","i","asset","virtualPath","Date","valueOf","URLPolyfill","constructor","url","this","fetch_like","init","hasFetch","ENVIRONMENT_IS_NODE","isFileUrl","startsWith","fetch","credentials","INTERNAL","require","fileURLToPath","arrayBuffer","promises","readFile","ok","headers","get","json","parse","text","read","status","statusText","makeURLAbsoluteWithApplicationBase","isPathAbsolute","indexOf","URL","document","baseURI","protocolRx","windowsAbsoluteRx","path","ENVIRONMENT_IS_SHELL","test","throttlingPromise","parallel_count","coreAssetsToLoad","assetsToLoad","singleAssets","Map","jsRuntimeModulesAssetTypes","jsModulesAssetTypes","singleAssetTypes","dotnetwasm","heap","manifest","appendQueryAssetTypes","skipDownloadsByAssetTypes","skipBufferByAssetTypes","symbols","skipInstantiateByAssetTypes","loadIntoWorker","shouldLoadIcuAsset","behavior","convert_single_asset","assetsCollection","resource","assetEntry","set_single_asset","push","set","try_resolve_single_asset_path","resolvedUrl","locateFile","customLoadResult","invokeLoadBootResource","appendUniqueQuery","resolve_single_asset_path","downloadAssetsStarted","mono_download_assets","promises_of_assets_core","promises_of_assets_remaining","countAndStartDownload","promises_list","expected_instantiated_assets_count","expected_downloaded_assets_count","start_asset_download","allDownloadsQueued","all","then","allDownloadsFinished","catch","mono_exit","runtimeModuleLoaded","instantiate","downloadPromise","buffer","cleanupAsset","runtimeHelpers","beforeOnRuntimeInitialized","instantiate_asset","instantiate_symbols_asset","actual_downloaded_assets_count","promises_of_asset_instantiation_core","promises_of_asset_instantiation_remaining","ENVIRONMENT_IS_WORKER","coreAssetsInMemory","allAssetsInMemory","assetsPrepared","prepareAssets","modulesAssets","assets","hash","pendingDownload","isCore","wasmNative","jsModuleNative","jsModuleRuntime","jsModuleDiagnostics","addAsset","coreAssembly","assembly","debugLevel","isDebuggingSupported","corePdb","pdb","loadAllSatelliteResources","satelliteResources","coreVfs","vfs","icuDataResourceName","wasmSymbols","appsettings","configUrl","configFileName","fileName","applicationEnvironment","cache","useCredentials","retrieve_asset_download","pendingAsset","pendingDownloadInternal","response","start_asset_download_with_throttle","enableDownloadRetry","maxParallelDownloads","TextDecoder","decode","sourcesList","loadRemote","remoteSources","sourcePrefix","trim","attemptUrl","resolve_path","loadingResource","download_resource","isOkToFail","isOptional","match","ignorePdbLoadErrors","start_asset_download_sources","old_throttling","modulesUniqueQuery","resourcesLoaded","totalResources","Set","fetchResponse","loadBootResource","fetchOptions","disableNoCacheFetch","disableIntegrityCheck","integrity","fetchResource","add","loadedAssemblies","onDownloadResourceProgress","size","monoToBlazorAssetTypeMap","requestHash","resourceType","moduleExports","lastIndexOfSlash","lastIndexOf","substring","importLibraryInitializers","libraryInitializers","map","adjustedPath","import","scriptName","exports","importInitializer","invokeLibraryInitializers","functionName","initializer","abortStartupOnError","methodName","callback","deep_merge_config","target","source","providedConfig","deep_merge_resources","runtimeOptions","Object","assign","deep_merge_module","providedResources","lazyAssembly","jsModuleWorker","key","deepMergeSatelliteResources","modulesAfterConfigLoaded","modulesAfterRuntimeReady","extensions","normalizeConfig","toMerge","waitForDebugger","configLoaded","mono_wasm_load_config","module","afterConfigLoaded","configFilePath","configSrc","keys","defaultConfigSrc","defaultConfigUrl","loaderResponse","loadedConfig","loadedConfigResponse","fetchBootConfig","readBootConfigResponse","loadedResponse","loadBootConfig","onConfigLoaded","exportedRuntimeAPI","errMessage","stack","isError","isChromium","isFirefox","loadConfigResponse","modifiableAssemblies","aspnetCoreBrowserTools","importScripts","onmessage","dotnetSidecar","process","versions","node","ENVIRONMENT_IS_WEB_WORKER","ENVIRONMENT_IS_SIDECAR","window","diagnosticHelpers","_loaderModuleLoaded","monoConfig","emscriptenModule","globalObjectsRoot","mono","binding","internal","api","condition","nativeAbort","is_exited","exitCode","is_runtime_running","runtimeReady","assert_runtime_running","exitReason","installUnhandledErrorHandler","unhandledrejection_handler","error_handler","originalOnAbort","originalOnExit","onExit","code","onAbort","exit_code","is_object","ExitStatus","ex","createExitStatus","defineProperty","alreadySilent","jiterpreter_dump_stats","interopCleanupOnExit","forceDisposeProxies","WasmEnableThreads","_b","dumpThreadsOnNonZeroExit","wasmCompilePromise","dotnetReady","afterInstantiateWasm","beforePreInit","afterPreInit","afterPreRun","afterOnRuntimeInitialized","afterPostRun","abort_promises","mono_log","stringify_as_error_with_stack","logExitCode","forwardConsoleLogsToWS","logOnExit","appendElementOnExit","tests_done_elem","createElement","style","background","innerHTML","body","appendChild","runtimeKeepalivePop","asyncFlushOnExit","flushStream","stream","on","end","stderrFlushed","stderr","stdoutFlushed","stdout","timeoutId","timeout","race","clearTimeout","flush_node_streams","set_exit_code_and_quit_now","nativeExit","exit","quit","fatal_handler","type","preventDefault","globalObjects","rh","mono_wasm_bindings_is_ready","lh","gitHash","_loaded_files","loadedFiles","workerNextNumber","actual_instantiated_assets_count","loadingWorkers","setLoaderGlobals","jsModuleRuntimePromise","jsModuleNativePromise","jsModuleDiagnosticPromise","workerMonoConfigReceived","emscriptenPrepared","prepareEmscripten","moduleFactory","location","extension","ready","minNodeVersion","execPath","scriptUrlQuery","queryIndex","dir","scriptUrl","scriptDirectory","out","brands","userAgentData","some","b","brand","userAgent","mod","createRequire","detect_features_and_polyfill","createEmscripten","ENVIRONMENT_IS_PTHREAD","channel","MessageChannel","workerPort","port1","mainPort","port2","monoThreadInfo","once","start","self","postMessage","monoCmd","port","setupPreloadChannelToMainThread","prepareAssetsWorker","importModules","es6Modules","initializeModules","createEmscriptenWorker","wasmModuleAsset","contentType","compiledModule","compileStreaming","Module","compile","streamingCompileWasm","createEmscriptenMain","jsModuleRuntimeAsset","jsModuleNativeAsset","jsModuleDiagnosticAsset","initializeExports","initializeReplacements","configureRuntimeStartup","configureEmscriptenStartup","configureWorkerStartup","setRuntimeGlobals","passEmscriptenInternals","default","emscriptenFactory","diagnosticModule","originalModule","__dotnet_runtime","toLowerCase","dotnet","withModuleConfig","moduleConfig","withOnConfigLoaded","withConsoleForwarding","withExitOnUnhandledError","exitOnUnhandledError","withAsyncFlushOnExit","withExitCodeLogging","withElementOnExit","withInteropCleanupOnExit","withDumpThreadsOnNonZeroExit","withWaitingForDebugger","level","withInterpreterPgo","value","autoSaveDelay","interpreterPgo","interpreterPgoSaveDelay","withConfig","withConfigSrc","withVirtualWorkingDirectory","vfsPath","virtualWorkingDirectory","withEnvironmentVariable","withEnvironmentVariables","variables","withDiagnosticTracing","enabled","withDebugging","withApplicationArguments","Array","isArray","applicationArguments","withRuntimeOptions","withMainAssembly","mainAssemblyName","withApplicationArgumentsFromQuery","URLSearchParams","values","search","getAll","withApplicationEnvironment","withApplicationCulture","withResourceLoader","download","downloadOnly","create","instance","createApi","run","runMainAndExit","legacyEntrypoint","BigInt64Array"],"mappings":"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","x_google_ignoreList":[0]} \ No newline at end of file diff --git a/OnProfNext.Client/bin/Debug/net10.0/dotnet.native.js b/OnProfNext.Client/bin/Debug/net10.0/dotnet.native.js new file mode 100644 index 0000000..bbbcf33 --- /dev/null +++ b/OnProfNext.Client/bin/Debug/net10.0/dotnet.native.js @@ -0,0 +1,16 @@ + +var createDotnetRuntime = (() => { + var _scriptDir = import.meta.url; + + return ( +async function(moduleArg = {}) { + +var Module=moduleArg;var readyPromiseResolve,readyPromiseReject;Module["ready"]=new Promise((resolve,reject)=>{readyPromiseResolve=resolve;readyPromiseReject=reject});if(_nativeModuleLoaded)throw new Error("Native module already loaded");_nativeModuleLoaded=true;createDotnetRuntime=Module=moduleArg(Module);var moduleOverrides=Object.assign({},Module);var arguments_=[];var thisProgram="./this.program";var quit_=(status,toThrow)=>{throw toThrow};var ENVIRONMENT_IS_WEB=typeof window=="object";var ENVIRONMENT_IS_WORKER=typeof importScripts=="function";var ENVIRONMENT_IS_NODE=typeof process=="object"&&typeof process.versions=="object"&&typeof process.versions.node=="string";var 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;if(ENVIRONMENT_IS_NODE){const{createRequire:createRequire}=await import("module");var require=createRequire(import.meta.url);var fs=require("fs");var nodePath=require("path");if(ENVIRONMENT_IS_WORKER){scriptDirectory=nodePath.dirname(scriptDirectory)+"/"}else{scriptDirectory=require("url").fileURLToPath(new URL("./",import.meta.url))}read_=(filename,binary)=>{filename=isFileURI(filename)?new URL(filename):nodePath.normalize(filename);return fs.readFileSync(filename,binary?undefined:"utf8")};readBinary=filename=>{var ret=read_(filename,true);if(!ret.buffer){ret=new Uint8Array(ret)}return ret};readAsync=(filename,onload,onerror,binary=true)=>{filename=isFileURI(filename)?new URL(filename):nodePath.normalize(filename);fs.readFile(filename,binary?undefined:"utf8",(err,data)=>{if(err)onerror(err);else onload(binary?data.buffer:data)})};if(!Module["thisProgram"]&&process.argv.length>1){thisProgram=process.argv[1].replace(/\\/g,"/")}arguments_=process.argv.slice(2);quit_=(status,toThrow)=>{process.exitCode=status;throw toThrow}}else if(ENVIRONMENT_IS_SHELL){if(typeof read!="undefined"){read_=read}readBinary=f=>{if(typeof readbuffer=="function"){return new Uint8Array(readbuffer(f))}let data=read(f,"binary");assert(typeof data=="object");return data};readAsync=(f,onload,onerror)=>{setTimeout(()=>onload(readBinary(f)))};if(typeof clearTimeout=="undefined"){globalThis.clearTimeout=id=>{}}if(typeof setTimeout=="undefined"){globalThis.setTimeout=f=>typeof f=="function"?f():abort()}if(typeof scriptArgs!="undefined"){arguments_=scriptArgs}else if(typeof arguments!="undefined"){arguments_=arguments}if(typeof quit=="function"){quit_=(status,toThrow)=>{setTimeout(()=>{if(!(toThrow instanceof ExitStatus)){let toLog=toThrow;if(toThrow&&typeof toThrow=="object"&&toThrow.stack){toLog=[toThrow,toThrow.stack]}err(`exiting due to exception: ${toLog}`)}quit(status)});throw toThrow}}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(_scriptDir){scriptDirectory=_scriptDir}if(scriptDirectory.startsWith("blob:")){scriptDirectory=""}else{scriptDirectory=scriptDirectory.substr(0,scriptDirectory.replace(/[?#].*/,"").lastIndexOf("/")+1)}{read_=url=>{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.send(null);return xhr.responseText};if(ENVIRONMENT_IS_WORKER){readBinary=url=>{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.responseType="arraybuffer";xhr.send(null);return new Uint8Array(xhr.response)}}readAsync=(url,onload,onerror)=>{var xhr=new XMLHttpRequest;xhr.open("GET",url,true);xhr.responseType="arraybuffer";xhr.onload=()=>{if(xhr.status==200||xhr.status==0&&xhr.response){onload(xhr.response);return}onerror()};xhr.onerror=onerror;xhr.send(null)}}}else{}var out=Module["print"]||console.log.bind(console);var err=Module["printErr"]||console.error.bind(console);Object.assign(Module,moduleOverrides);moduleOverrides=null;if(Module["arguments"])arguments_=Module["arguments"];if(Module["thisProgram"])thisProgram=Module["thisProgram"];if(Module["quit"])quit_=Module["quit"];var wasmBinary;if(Module["wasmBinary"])wasmBinary=Module["wasmBinary"];if(typeof atob=="undefined"){if(typeof global!="undefined"&&typeof globalThis=="undefined"){globalThis=global}globalThis.atob=function(input){var keyStr="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";var output="";var chr1,chr2,chr3;var enc1,enc2,enc3,enc4;var i=0;input=input.replace(/[^A-Za-z0-9\+\/\=]/g,"");do{enc1=keyStr.indexOf(input.charAt(i++));enc2=keyStr.indexOf(input.charAt(i++));enc3=keyStr.indexOf(input.charAt(i++));enc4=keyStr.indexOf(input.charAt(i++));chr1=enc1<<2|enc2>>4;chr2=(enc2&15)<<4|enc3>>2;chr3=(enc3&3)<<6|enc4;output=output+String.fromCharCode(chr1);if(enc3!==64){output=output+String.fromCharCode(chr2)}if(enc4!==64){output=output+String.fromCharCode(chr3)}}while(ifilename.startsWith(dataURIPrefix);var isFileURI=filename=>filename.startsWith("file://");var wasmBinaryFile;if(Module["locateFile"]){wasmBinaryFile="dotnet.native.wasm";if(!isDataURI(wasmBinaryFile)){wasmBinaryFile=locateFile(wasmBinaryFile)}}else{if(ENVIRONMENT_IS_SHELL)wasmBinaryFile="dotnet.native.wasm";else wasmBinaryFile=new URL("dotnet.native.wasm",import.meta.url).href}function getBinarySync(file){if(file==wasmBinaryFile&&wasmBinary){return new Uint8Array(wasmBinary)}if(readBinary){return readBinary(file)}throw"both async and sync fetching of the wasm failed"}function getBinaryPromise(binaryFile){if(!wasmBinary&&(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER)){if(typeof fetch=="function"&&!isFileURI(binaryFile)){return fetch(binaryFile,{credentials:"same-origin"}).then(response=>{if(!response["ok"]){throw`failed to load wasm binary file at '${binaryFile}'`}return response["arrayBuffer"]()}).catch(()=>getBinarySync(binaryFile))}else if(readAsync){return new Promise((resolve,reject)=>{readAsync(binaryFile,response=>resolve(new Uint8Array(response)),reject)})}}return Promise.resolve().then(()=>getBinarySync(binaryFile))}function instantiateArrayBuffer(binaryFile,imports,receiver){return getBinaryPromise(binaryFile).then(binary=>WebAssembly.instantiate(binary,imports)).then(receiver,reason=>{err(`failed to asynchronously prepare wasm: ${reason}`);abort(reason)})}function instantiateAsync(binary,binaryFile,imports,callback){if(!binary&&typeof WebAssembly.instantiateStreaming=="function"&&!isDataURI(binaryFile)&&!isFileURI(binaryFile)&&!ENVIRONMENT_IS_NODE&&typeof fetch=="function"){return fetch(binaryFile,{credentials:"same-origin"}).then(response=>{var result=WebAssembly.instantiateStreaming(response,imports);return result.then(callback,function(reason){err(`wasm streaming compile failed: ${reason}`);err("falling back to ArrayBuffer instantiation");return instantiateArrayBuffer(binaryFile,imports,callback)})})}return instantiateArrayBuffer(binaryFile,imports,callback)}function createWasm(){var info={"env":wasmImports,"wasi_snapshot_preview1":wasmImports};function receiveInstance(instance,module){wasmExports=instance.exports;Module["wasmExports"]=wasmExports;wasmMemory=wasmExports["memory"];updateMemoryViews();wasmTable=wasmExports["__indirect_function_table"];addOnInit(wasmExports["__wasm_call_ctors"]);removeRunDependency("wasm-instantiate");return wasmExports}addRunDependency("wasm-instantiate");function receiveInstantiationResult(result){receiveInstance(result["instance"])}if(Module["instantiateWasm"]){try{return Module["instantiateWasm"](info,receiveInstance)}catch(e){err(`Module.instantiateWasm callback failed with error: ${e}`);readyPromiseReject(e)}}instantiateAsync(wasmBinary,wasmBinaryFile,info,receiveInstantiationResult).catch(readyPromiseReject);return{}}function ExitStatus(status){this.name="ExitStatus";this.message=`Program terminated with exit(${status})`;this.status=status}var callRuntimeCallbacks=callbacks=>{while(callbacks.length>0){callbacks.shift()(Module)}};function getValue(ptr,type="i8"){if(type.endsWith("*"))type="*";switch(type){case"i1":return HEAP8[ptr];case"i8":return HEAP8[ptr];case"i16":return HEAP16[ptr>>1];case"i32":return HEAP32[ptr>>2];case"i64":return HEAP64[ptr>>3];case"float":return HEAPF32[ptr>>2];case"double":return HEAPF64[ptr>>3];case"*":return HEAPU32[ptr>>2];default:abort(`invalid type for getValue: ${type}`)}}var noExitRuntime=Module["noExitRuntime"]||false;function setValue(ptr,value,type="i8"){if(type.endsWith("*"))type="*";switch(type){case"i1":HEAP8[ptr]=value;break;case"i8":HEAP8[ptr]=value;break;case"i16":HEAP16[ptr>>1]=value;break;case"i32":HEAP32[ptr>>2]=value;break;case"i64":HEAP64[ptr>>3]=BigInt(value);break;case"float":HEAPF32[ptr>>2]=value;break;case"double":HEAPF64[ptr>>3]=value;break;case"*":HEAPU32[ptr>>2]=value;break;default:abort(`invalid type for setValue: ${type}`)}}var exceptionCaught=[];var uncaughtExceptionCount=0;var ___cxa_begin_catch=ptr=>{var info=new ExceptionInfo(ptr);if(!info.get_caught()){info.set_caught(true);uncaughtExceptionCount--}info.set_rethrown(false);exceptionCaught.push(info);___cxa_increment_exception_refcount(info.excPtr);return info.get_exception_ptr()};var exceptionLast=0;var ___cxa_end_catch=()=>{_setThrew(0,0);var info=exceptionCaught.pop();___cxa_decrement_exception_refcount(info.excPtr);exceptionLast=0};class ExceptionInfo{constructor(excPtr){this.excPtr=excPtr;this.ptr=excPtr-24}set_type(type){HEAPU32[this.ptr+4>>2]=type}get_type(){return HEAPU32[this.ptr+4>>2]}set_destructor(destructor){HEAPU32[this.ptr+8>>2]=destructor}get_destructor(){return HEAPU32[this.ptr+8>>2]}set_caught(caught){caught=caught?1:0;HEAP8[this.ptr+12]=caught}get_caught(){return HEAP8[this.ptr+12]!=0}set_rethrown(rethrown){rethrown=rethrown?1:0;HEAP8[this.ptr+13]=rethrown}get_rethrown(){return HEAP8[this.ptr+13]!=0}init(type,destructor){this.set_adjusted_ptr(0);this.set_type(type);this.set_destructor(destructor)}set_adjusted_ptr(adjustedPtr){HEAPU32[this.ptr+16>>2]=adjustedPtr}get_adjusted_ptr(){return HEAPU32[this.ptr+16>>2]}get_exception_ptr(){var isPointer=___cxa_is_pointer_type(this.get_type());if(isPointer){return HEAPU32[this.excPtr>>2]}var adjusted=this.get_adjusted_ptr();if(adjusted!==0)return adjusted;return this.excPtr}}var ___resumeException=ptr=>{if(!exceptionLast){exceptionLast=ptr}throw exceptionLast};var findMatchingCatch=args=>{var thrown=exceptionLast;if(!thrown){setTempRet0(0);return 0}var info=new ExceptionInfo(thrown);info.set_adjusted_ptr(thrown);var thrownType=info.get_type();if(!thrownType){setTempRet0(0);return thrown}for(var arg in args){var caughtType=args[arg];if(caughtType===0||caughtType===thrownType){break}var adjusted_ptr_addr=info.ptr+16;if(___cxa_can_catch(caughtType,thrownType,adjusted_ptr_addr)){setTempRet0(caughtType);return thrown}}setTempRet0(thrownType);return thrown};var ___cxa_find_matching_catch_3=arg0=>findMatchingCatch([arg0]);var ___cxa_throw=(ptr,type,destructor)=>{var info=new ExceptionInfo(ptr);info.init(type,destructor);exceptionLast=ptr;uncaughtExceptionCount++;throw exceptionLast};var PATH={isAbs:path=>path.charAt(0)==="/",splitPath:filename=>{var splitPathRe=/^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/;return splitPathRe.exec(filename).slice(1)},normalizeArray:(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:path=>{var isAbsolute=PATH.isAbs(path),trailingSlash=path.substr(-1)==="/";path=PATH.normalizeArray(path.split("/").filter(p=>!!p),!isAbsolute).join("/");if(!path&&!isAbsolute){path="."}if(path&&trailingSlash){path+="/"}return(isAbsolute?"/":"")+path},dirname: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: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)},join:(...paths)=>PATH.normalize(paths.join("/")),join2:(l,r)=>PATH.normalize(l+"/"+r)};var initRandomFill=()=>{if(typeof crypto=="object"&&typeof crypto["getRandomValues"]=="function"){return view=>crypto.getRandomValues(view)}else if(ENVIRONMENT_IS_NODE){try{var crypto_module=require("crypto");var randomFillSync=crypto_module["randomFillSync"];if(randomFillSync){return view=>crypto_module["randomFillSync"](view)}var randomBytes=crypto_module["randomBytes"];return view=>(view.set(randomBytes(view.byteLength)),view)}catch(e){}}abort("initRandomDevice")};var randomFill=view=>(randomFill=initRandomFill())(view);var PATH_FS={resolve:(...args)=>{var resolvedPath="",resolvedAbsolute=false;for(var i=args.length-1;i>=-1&&!resolvedAbsolute;i--){var path=i>=0?args[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.isAbs(path)}resolvedPath=PATH.normalizeArray(resolvedPath.split("/").filter(p=>!!p),!resolvedAbsolute).join("/");return(resolvedAbsolute?"/":"")+resolvedPath||"."},relative:(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;i{var endIdx=idx+maxBytesToRead;var endPtr=idx;while(heapOrArray[endPtr]&&!(endPtr>=endIdx))++endPtr;if(endPtr-idx>16&&heapOrArray.buffer&&UTF8Decoder){return UTF8Decoder.decode(heapOrArray.subarray(idx,endPtr))}var str="";while(idx>10,56320|ch&1023)}}return str};var FS_stdin_getChar_buffer=[];var lengthBytesUTF8=str=>{var len=0;for(var i=0;i=55296&&c<=57343){len+=4;++i}else{len+=3}}return len};var 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 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 FS_stdin_getChar=()=>{if(!FS_stdin_getChar_buffer.length){var result=null;if(ENVIRONMENT_IS_NODE){var BUFSIZE=256;var buf=Buffer.alloc(BUFSIZE);var bytesRead=0;var fd=process.stdin.fd;try{bytesRead=fs.readSync(fd,buf)}catch(e){if(e.toString().includes("EOF"))bytesRead=0;else throw e}if(bytesRead>0){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}FS_stdin_getChar_buffer=intArrayFromString(result,true)}return FS_stdin_getChar_buffer.shift()};var TTY={ttys:[],init(){},shutdown(){},register(dev,ops){TTY.ttys[dev]={input:[],output:[],ops:ops};FS.registerDevice(dev,TTY.stream_ops)},stream_ops:{open(stream){var tty=TTY.ttys[stream.node.rdev];if(!tty){throw new FS.ErrnoError(43)}stream.tty=tty;stream.seekable=false},close(stream){stream.tty.ops.fsync(stream.tty)},fsync(stream){stream.tty.ops.fsync(stream.tty)},read(stream,buffer,offset,length,pos){if(!stream.tty||!stream.tty.ops.get_char){throw new FS.ErrnoError(60)}var bytesRead=0;for(var i=0;i0){out(UTF8ArrayToString(tty.output,0));tty.output=[]}},ioctl_tcgets(tty){return{c_iflag:25856,c_oflag:5,c_cflag:191,c_lflag:35387,c_cc:[3,28,127,21,4,0,1,0,17,19,26,0,18,15,23,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}},ioctl_tcsets(tty,optional_actions,data){return 0},ioctl_tiocgwinsz(tty){return[24,80]}},default_tty1_ops:{put_char(tty,val){if(val===null||val===10){err(UTF8ArrayToString(tty.output,0));tty.output=[]}else{if(val!=0)tty.output.push(val)}},fsync(tty){if(tty.output&&tty.output.length>0){err(UTF8ArrayToString(tty.output,0));tty.output=[]}}}};var zeroMemory=(address,size)=>{HEAPU8.fill(0,address,address+size);return address};var alignMemory=(size,alignment)=>Math.ceil(size/alignment)*alignment;var mmapAlloc=size=>{size=alignMemory(size,65536);var ptr=_emscripten_builtin_memalign(65536,size);if(!ptr)return 0;return zeroMemory(ptr,size)};var MEMFS={ops_table:null,mount(mount){return MEMFS.createNode(null,"/",16384|511,0)},createNode(parent,name,mode,dev){if(FS.isBlkdev(mode)||FS.isFIFO(mode)){throw new FS.ErrnoError(63)}MEMFS.ops_table||={dir:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr,lookup:MEMFS.node_ops.lookup,mknod:MEMFS.node_ops.mknod,rename:MEMFS.node_ops.rename,unlink:MEMFS.node_ops.unlink,rmdir:MEMFS.node_ops.rmdir,readdir:MEMFS.node_ops.readdir,symlink:MEMFS.node_ops.symlink},stream:{llseek:MEMFS.stream_ops.llseek}},file:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr},stream:{llseek:MEMFS.stream_ops.llseek,read:MEMFS.stream_ops.read,write:MEMFS.stream_ops.write,allocate:MEMFS.stream_ops.allocate,mmap:MEMFS.stream_ops.mmap,msync:MEMFS.stream_ops.msync}},link:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr,readlink:MEMFS.node_ops.readlink},stream:{}},chrdev:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr},stream:FS.chrdev_stream_ops}};var node=FS.createNode(parent,name,mode,dev);if(FS.isDir(node.mode)){node.node_ops=MEMFS.ops_table.dir.node;node.stream_ops=MEMFS.ops_table.dir.stream;node.contents={}}else if(FS.isFile(node.mode)){node.node_ops=MEMFS.ops_table.file.node;node.stream_ops=MEMFS.ops_table.file.stream;node.usedBytes=0;node.contents=null}else if(FS.isLink(node.mode)){node.node_ops=MEMFS.ops_table.link.node;node.stream_ops=MEMFS.ops_table.link.stream}else if(FS.isChrdev(node.mode)){node.node_ops=MEMFS.ops_table.chrdev.node;node.stream_ops=MEMFS.ops_table.chrdev.stream}node.timestamp=Date.now();if(parent){parent.contents[name]=node;parent.timestamp=node.timestamp}return node},getFileDataAsTypedArray(node){if(!node.contents)return new Uint8Array(0);if(node.contents.subarray)return node.contents.subarray(0,node.usedBytes);return new Uint8Array(node.contents)},expandFileStorage(node,newCapacity){var prevCapacity=node.contents?node.contents.length:0;if(prevCapacity>=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(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(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(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(parent,name){throw FS.genericErrors[44]},mknod(parent,name,mode,dev){return MEMFS.createNode(parent,name,mode,dev)},rename(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(parent,name){delete parent.contents[name];parent.timestamp=Date.now()},rmdir(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(node){var entries=[".",".."];for(var key of Object.keys(node.contents)){entries.push(key)}return entries},symlink(parent,newname,oldpath){var node=MEMFS.createNode(parent,newname,511|40960,0);node.link=oldpath;return node},readlink(node){if(!FS.isLink(node.mode)){throw new FS.ErrnoError(28)}return node.link}},stream_ops:{read(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+length{var dep=!noRunDep?getUniqueRunDependency(`al ${url}`):"";readAsync(url,arrayBuffer=>{onload(new Uint8Array(arrayBuffer));if(dep)removeRunDependency(dep)},event=>{if(onerror){onerror()}else{throw`Loading data file "${url}" failed.`}});if(dep)addRunDependency(dep)};var FS_createDataFile=(parent,name,fileData,canRead,canWrite,canOwn)=>{FS.createDataFile(parent,name,fileData,canRead,canWrite,canOwn)};var preloadPlugins=Module["preloadPlugins"]||[];var FS_handledByPreloadPlugin=(byteArray,fullname,finish,onerror)=>{if(typeof Browser!="undefined")Browser.init();var handled=false;preloadPlugins.forEach(plugin=>{if(handled)return;if(plugin["canHandle"](fullname)){plugin["handle"](byteArray,fullname,finish,onerror);handled=true}});return handled};var FS_createPreloadedFile=(parent,name,url,canRead,canWrite,onload,onerror,dontCreateFile,canOwn,preFinish)=>{var fullname=name?PATH_FS.resolve(PATH.join2(parent,name)):parent;var dep=getUniqueRunDependency(`cp ${fullname}`);function processData(byteArray){function finish(byteArray){preFinish?.();if(!dontCreateFile){FS_createDataFile(parent,name,byteArray,canRead,canWrite,canOwn)}onload?.();removeRunDependency(dep)}if(FS_handledByPreloadPlugin(byteArray,fullname,finish,()=>{onerror?.();removeRunDependency(dep)})){return}finish(byteArray)}addRunDependency(dep);if(typeof url=="string"){asyncLoad(url,processData,onerror)}else{processData(url)}};var FS_modeStringToFlags=str=>{var flagModes={"r":0,"r+":2,"w":512|64|1,"w+":512|64|2,"a":1024|64|1,"a+":1024|64|2};var flags=flagModes[str];if(typeof flags=="undefined"){throw new Error(`Unknown file open mode: ${str}`)}return flags};var FS_getMode=(canRead,canWrite)=>{var mode=0;if(canRead)mode|=292|73;if(canWrite)mode|=146;return mode};var FS={root:null,mounts:[],devices:{},streams:[],nextInode:1,nameTable:null,currentPath:"/",initialized:false,ignorePermissions:true,ErrnoError:class{constructor(errno){this.name="ErrnoError";this.errno=errno}},genericErrors:{},filesystems:null,syncFSRequests:0,FSStream:class{constructor(){this.shared={}}get object(){return this.node}set object(val){this.node=val}get isRead(){return(this.flags&2097155)!==1}get isWrite(){return(this.flags&2097155)!==0}get isAppend(){return this.flags&1024}get flags(){return this.shared.flags}set flags(val){this.shared.flags=val}get position(){return this.shared.position}set position(val){this.shared.position=val}},FSNode:class{constructor(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;this.readMode=292|73;this.writeMode=146}get read(){return(this.mode&this.readMode)===this.readMode}set read(val){val?this.mode|=this.readMode:this.mode&=~this.readMode}get write(){return(this.mode&this.writeMode)===this.writeMode}set write(val){val?this.mode|=this.writeMode:this.mode&=~this.writeMode}get isFolder(){return FS.isDir(this.mode)}get isDevice(){return FS.isChrdev(this.mode)}},lookupPath(path,opts={}){path=PATH_FS.resolve(path);if(!path)return{path:"",node:null};var defaults={follow_mount:true,recurse_count:0};opts=Object.assign(defaults,opts);if(opts.recurse_count>8){throw new FS.ErrnoError(32)}var parts=path.split("/").filter(p=>!!p);var current=FS.root;var current_path="/";for(var i=0;i40){throw new FS.ErrnoError(32)}}}}return{path:current_path,node:current}},getPath(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(parentid,name){var hash=0;for(var i=0;i>>0)%FS.nameTable.length},hashAddNode(node){var hash=FS.hashName(node.parent.id,node.name);node.name_next=FS.nameTable[hash];FS.nameTable[hash]=node},hashRemoveNode(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(parent,name){var errCode=FS.mayLookup(parent);if(errCode){throw new FS.ErrnoError(errCode)}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(parent,name,mode,rdev){var node=new FS.FSNode(parent,name,mode,rdev);FS.hashAddNode(node);return node},destroyNode(node){FS.hashRemoveNode(node)},isRoot(node){return node===node.parent},isMountpoint(node){return!!node.mounted},isFile(mode){return(mode&61440)===32768},isDir(mode){return(mode&61440)===16384},isLink(mode){return(mode&61440)===40960},isChrdev(mode){return(mode&61440)===8192},isBlkdev(mode){return(mode&61440)===24576},isFIFO(mode){return(mode&61440)===4096},isSocket(mode){return(mode&49152)===49152},flagsToPermissionString(flag){var perms=["r","w","rw"][flag&3];if(flag&512){perms+="w"}return perms},nodePermissions(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(dir){if(!FS.isDir(dir.mode))return 54;var errCode=FS.nodePermissions(dir,"x");if(errCode)return errCode;if(!dir.node_ops.lookup)return 2;return 0},mayCreate(dir,name){try{var node=FS.lookupNode(dir,name);return 20}catch(e){}return FS.nodePermissions(dir,"wx")},mayDelete(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(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(){for(var fd=0;fd<=FS.MAX_OPEN_FDS;fd++){if(!FS.streams[fd]){return fd}}throw new FS.ErrnoError(33)},getStreamChecked(fd){var stream=FS.getStream(fd);if(!stream){throw new FS.ErrnoError(8)}return stream},getStream:fd=>FS.streams[fd],createStream(stream,fd=-1){stream=Object.assign(new FS.FSStream,stream);if(fd==-1){fd=FS.nextfd()}stream.fd=fd;FS.streams[fd]=stream;return stream},closeStream(fd){FS.streams[fd]=null},dupStream(origStream,fd=-1){var stream=FS.createStream(origStream,fd);stream.stream_ops?.dup?.(stream);return stream},chrdev_stream_ops:{open(stream){var device=FS.getDevice(stream.node.rdev);stream.stream_ops=device.stream_ops;stream.stream_ops.open?.(stream)},llseek(){throw new FS.ErrnoError(70)}},major:dev=>dev>>8,minor:dev=>dev&255,makedev:(ma,mi)=>ma<<8|mi,registerDevice(dev,ops){FS.devices[dev]={stream_ops:ops}},getDevice:dev=>FS.devices[dev],getMounts(mount){var mounts=[];var check=[mount];while(check.length){var m=check.pop();mounts.push(m);check.push(...m.mounts)}return mounts},syncfs(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(mount=>{if(!mount.type.syncfs){return done(null)}mount.type.syncfs(mount,populate,done)})},mount(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(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(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(parent,name){return parent.node_ops.lookup(parent,name)},mknod(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(path,mode){mode=mode!==undefined?mode:438;mode&=4095;mode|=32768;return FS.mknod(path,mode,0)},mkdir(path,mode){mode=mode!==undefined?mode:511;mode&=511|512;mode|=16384;return FS.mknod(path,mode,0)},mkdirTree(path,mode){var dirs=path.split("/");var d="";for(var i=0;iFS.currentPath,chdir(path){var lookup=FS.lookupPath(path,{follow:true});if(lookup.node===null){throw new FS.ErrnoError(44)}if(!FS.isDir(lookup.node.mode)){throw new FS.ErrnoError(54)}var errCode=FS.nodePermissions(lookup.node,"x");if(errCode){throw new FS.ErrnoError(errCode)}FS.currentPath=lookup.path},createDefaultDirectories(){FS.mkdir("/tmp");FS.mkdir("/home");FS.mkdir("/home/web_user")},createDefaultDevices(){FS.mkdir("/dev");FS.registerDevice(FS.makedev(1,3),{read:()=>0,write:(stream,buffer,offset,length,pos)=>length});FS.mkdev("/dev/null",FS.makedev(1,3));TTY.register(FS.makedev(5,0),TTY.default_tty_ops);TTY.register(FS.makedev(6,0),TTY.default_tty1_ops);FS.mkdev("/dev/tty",FS.makedev(5,0));FS.mkdev("/dev/tty1",FS.makedev(6,0));var randomBuffer=new Uint8Array(1024),randomLeft=0;var randomByte=()=>{if(randomLeft===0){randomLeft=randomFill(randomBuffer).byteLength}return randomBuffer[--randomLeft]};FS.createDevice("/dev","random",randomByte);FS.createDevice("/dev","urandom",randomByte);FS.mkdir("/dev/shm");FS.mkdir("/dev/shm/tmp")},createSpecialDirectories(){FS.mkdir("/proc");var proc_self=FS.mkdir("/proc/self");FS.mkdir("/proc/self/fd");FS.mount({mount(){var node=FS.createNode(proc_self,"fd",16384|511,73);node.node_ops={lookup(parent,name){var fd=+name;var stream=FS.getStreamChecked(fd);var ret={parent:null,mount:{mountpoint:"fake"},node_ops:{readlink:()=>stream.path}};ret.parent=ret;return ret}};return node}},{},"/proc/self/fd")},createStandardStreams(){if(Module["stdin"]){FS.createDevice("/dev","stdin",Module["stdin"])}else{FS.symlink("/dev/tty","/dev/stdin")}if(Module["stdout"]){FS.createDevice("/dev","stdout",null,Module["stdout"])}else{FS.symlink("/dev/tty","/dev/stdout")}if(Module["stderr"]){FS.createDevice("/dev","stderr",null,Module["stderr"])}else{FS.symlink("/dev/tty1","/dev/stderr")}var stdin=FS.open("/dev/stdin",0);var stdout=FS.open("/dev/stdout",1);var stderr=FS.open("/dev/stderr",1)},staticInit(){[44].forEach(code=>{FS.genericErrors[code]=new FS.ErrnoError(code);FS.genericErrors[code].stack=""});FS.nameTable=new Array(4096);FS.mount(MEMFS,{},"/");FS.createDefaultDirectories();FS.createDefaultDevices();FS.createSpecialDirectories();FS.filesystems={"MEMFS":MEMFS}},init(input,output,error){FS.init.initialized=true;Module["stdin"]=input||Module["stdin"];Module["stdout"]=output||Module["stdout"];Module["stderr"]=error||Module["stderr"];FS.createStandardStreams()},quit(){FS.init.initialized=false;_fflush(0);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]}setDataGetter(getter){this.getter=getter}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=(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);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||[])}return intArrayFromString(xhr.responseText||"",true)};var lazyArray=this;lazyArray.setDataGetter(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}get length(){if(!this.lengthKnown){this.cacheLength()}return this._length}get chunkSize(){if(!this.lengthKnown){this.cacheLength()}return this._chunkSize}}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;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(key=>{var fn=node.stream_ops[key];stream_ops[key]=(...args)=>{FS.forceLoadFile(node);return fn(...args)}});function writeChunks(stream,buffer,offset,length,position){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{FS.forceLoadFile(node);return writeChunks(stream,buffer,offset,length,position)};stream_ops.mmap=(stream,length,position,prot,flags)=>{FS.forceLoadFile(node);var ptr=mmapAlloc(length);if(!ptr){throw new FS.ErrnoError(48)}writeChunks(stream,HEAP8,ptr,length,position);return{ptr:ptr,allocated:true}};node.stream_ops=stream_ops;return node}};var UTF8ToString=(ptr,maxBytesToRead)=>ptr?UTF8ArrayToString(HEAPU8,ptr,maxBytesToRead):"";var SYSCALLS={DEFAULT_POLLMASK:5,calculateAt(dirfd,path,allowEmpty){if(PATH.isAbs(path)){return path}var dir;if(dirfd===-100){dir=FS.cwd()}else{var dirstream=SYSCALLS.getStreamFromFD(dirfd);dir=dirstream.path}if(path.length==0){if(!allowEmpty){throw new FS.ErrnoError(44)}return dir}return PATH.join2(dir,path)},doStat(func,path,buf){var stat=func(path);HEAP32[buf>>2]=stat.dev;HEAP32[buf+4>>2]=stat.mode;HEAPU32[buf+8>>2]=stat.nlink;HEAP32[buf+12>>2]=stat.uid;HEAP32[buf+16>>2]=stat.gid;HEAP32[buf+20>>2]=stat.rdev;HEAP64[buf+24>>3]=BigInt(stat.size);HEAP32[buf+32>>2]=4096;HEAP32[buf+36>>2]=stat.blocks;var atime=stat.atime.getTime();var mtime=stat.mtime.getTime();var ctime=stat.ctime.getTime();HEAP64[buf+40>>3]=BigInt(Math.floor(atime/1e3));HEAPU32[buf+48>>2]=atime%1e3*1e3;HEAP64[buf+56>>3]=BigInt(Math.floor(mtime/1e3));HEAPU32[buf+64>>2]=mtime%1e3*1e3;HEAP64[buf+72>>3]=BigInt(Math.floor(ctime/1e3));HEAPU32[buf+80>>2]=ctime%1e3*1e3;HEAP64[buf+88>>3]=BigInt(stat.ino);return 0},doMsync(addr,stream,len,flags,offset){if(!FS.isFile(stream.node.mode)){throw new FS.ErrnoError(43)}if(flags&2){return 0}var buffer=HEAPU8.slice(addr,addr+len);FS.msync(stream,buffer,offset,len,flags)},varargs:undefined,get(){var ret=HEAP32[+SYSCALLS.varargs>>2];SYSCALLS.varargs+=4;return ret},getp(){return SYSCALLS.get()},getStr(ptr){var ret=UTF8ToString(ptr);return ret},getStreamFromFD(fd){var stream=FS.getStreamChecked(fd);return stream}};function ___syscall_chdir(path){try{path=SYSCALLS.getStr(path);FS.chdir(path);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_chmod(path,mode){try{path=SYSCALLS.getStr(path);FS.chmod(path,mode);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}var SOCKFS={mount(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(family,type,protocol){type&=~526336;var streaming=type==1;if(streaming&&protocol&&protocol!=6){throw new FS.ErrnoError(66)}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(fd){var stream=FS.getStream(fd);if(!stream||!FS.isSocket(stream.node.mode)){return null}return stream.node.sock},stream_ops:{poll(stream){var sock=stream.node.sock;return sock.sock_ops.poll(sock)},ioctl(stream,request,varargs){var sock=stream.node.sock;return sock.sock_ops.ioctl(sock,request,varargs)},read(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(stream,buffer,offset,length,position){var sock=stream.node.sock;return sock.sock_ops.sendmsg(sock,buffer,offset,length)},close(stream){var sock=stream.node.sock;sock.sock_ops.close(sock)}},nextname(){if(!SOCKFS.nextname.current){SOCKFS.nextname.current=0}return"socket["+SOCKFS.nextname.current+++"]"},websocket_sock_ops:{createPeer(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=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(23)}}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(sock,addr,port){return sock.peers[addr+":"+port]},addPeer(sock,peer){sock.peers[peer.addr+":"+peer.port]=peer},removePeer(sock,peer){delete sock.peers[peer.addr+":"+peer.port]},handlePeerEvents(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}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,isBinary){if(!isBinary){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=14;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=14;Module["websocket"].emit("error",[sock.stream.fd,sock.error,"ECONNREFUSED: Connection refused"])}}},poll(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(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 28}},close(sock){if(sock.server){try{sock.server.close()}catch(e){}sock.server=null}var peers=Object.keys(sock.peers);for(var i=0;i{var socket=SOCKFS.getSocket(fd);if(!socket)throw new FS.ErrnoError(8);return socket};var inetNtop4=addr=>(addr&255)+"."+(addr>>8&255)+"."+(addr>>16&255)+"."+(addr>>24&255);var 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{var family=HEAP16[sa>>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}};var 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};var jstoi_q=str=>parseInt(str);var 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{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 ___syscall_connect(fd,addr,addrlen,d1,d2,d3){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.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_faccessat(dirfd,path,amode,flags){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);if(amode&~7){return-28}var lookup=FS.lookupPath(path,{follow:true});var 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}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}var ___syscall_fadvise64=(fd,offset,len,advice)=>0;function ___syscall_fchmod(fd,mode){try{FS.fchmod(fd,mode);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_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}while(FS.streams[arg]){arg++}var newStream;newStream=FS.dupStream(stream,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.getp();var offset=0;HEAP16[arg+offset>>1]=2;return 0}case 13:case 14:return 0}return-28}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_fstat64(fd,buf){try{var stream=SYSCALLS.getStreamFromFD(fd);return SYSCALLS.doStat(FS.stat,stream.path,buf)}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_statfs64(path,size,buf){try{path=SYSCALLS.getStr(path);HEAP32[buf+4>>2]=4096;HEAP32[buf+40>>2]=4096;HEAP32[buf+8>>2]=1e6;HEAP32[buf+12>>2]=5e5;HEAP32[buf+16>>2]=5e5;HEAP32[buf+20>>2]=FS.nextInode;HEAP32[buf+24>>2]=1e6;HEAP32[buf+28>>2]=42;HEAP32[buf+44>>2]=2;HEAP32[buf+36>>2]=255;return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_fstatfs64(fd,size,buf){try{var stream=SYSCALLS.getStreamFromFD(fd);return ___syscall_statfs64(0,size,buf)}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}var MAX_INT53=9007199254740992;var MIN_INT53=-9007199254740992;var bigintToI53Checked=num=>numMAX_INT53?NaN:Number(num);function ___syscall_ftruncate64(fd,length){length=bigintToI53Checked(length);try{if(isNaN(length))return 61;FS.ftruncate(fd,length);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}var stringToUTF8=(str,outPtr,maxBytesToWrite)=>stringToUTF8Array(str,HEAPU8,outPtr,maxBytesToWrite);function ___syscall_getcwd(buf,size){try{if(size===0)return-28;var cwd=FS.cwd();var cwdLengthInBytes=lengthBytesUTF8(cwd)+1;if(size>3]=BigInt(id);HEAP64[dirp+pos+8>>3]=BigInt((idx+1)*struct_size);HEAP16[dirp+pos+16>>1]=280;HEAP8[dirp+pos+18]=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.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_ioctl(fd,op,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(fd);switch(op){case 21509:{if(!stream.tty)return-59;return 0}case 21505:{if(!stream.tty)return-59;if(stream.tty.ops.ioctl_tcgets){var termios=stream.tty.ops.ioctl_tcgets(stream);var argp=SYSCALLS.getp();HEAP32[argp>>2]=termios.c_iflag||0;HEAP32[argp+4>>2]=termios.c_oflag||0;HEAP32[argp+8>>2]=termios.c_cflag||0;HEAP32[argp+12>>2]=termios.c_lflag||0;for(var i=0;i<32;i++){HEAP8[argp+i+17]=termios.c_cc[i]||0}return 0}return 0}case 21510:case 21511:case 21512:{if(!stream.tty)return-59;return 0}case 21506:case 21507:case 21508:{if(!stream.tty)return-59;if(stream.tty.ops.ioctl_tcsets){var argp=SYSCALLS.getp();var c_iflag=HEAP32[argp>>2];var c_oflag=HEAP32[argp+4>>2];var c_cflag=HEAP32[argp+8>>2];var c_lflag=HEAP32[argp+12>>2];var c_cc=[];for(var i=0;i<32;i++){c_cc.push(HEAP8[argp+i+17])}return stream.tty.ops.ioctl_tcsets(stream.tty,op,{c_iflag:c_iflag,c_oflag:c_oflag,c_cflag:c_cflag,c_lflag:c_lflag,c_cc:c_cc})}return 0}case 21519:{if(!stream.tty)return-59;var argp=SYSCALLS.getp();HEAP32[argp>>2]=0;return 0}case 21520:{if(!stream.tty)return-59;return-28}case 21531:{var argp=SYSCALLS.getp();return FS.ioctl(stream,op,argp)}case 21523:{if(!stream.tty)return-59;if(stream.tty.ops.ioctl_tiocgwinsz){var winsize=stream.tty.ops.ioctl_tiocgwinsz(stream.tty);var argp=SYSCALLS.getp();HEAP16[argp>>1]=winsize[0];HEAP16[argp+2>>1]=winsize[1]}return 0}case 21524:{if(!stream.tty)return-59;return 0}case 21515:{if(!stream.tty)return-59;return 0}default:return-28}}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_lstat64(path,buf){try{path=SYSCALLS.getStr(path);return SYSCALLS.doStat(FS.lstat,path,buf)}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_mkdirat(dirfd,path,mode){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);path=PATH.normalize(path);if(path[path.length-1]==="/")path=path.substr(0,path.length-1);FS.mkdir(path,mode,0);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_newfstatat(dirfd,path,buf,flags){try{path=SYSCALLS.getStr(path);var nofollow=flags&256;var allowEmpty=flags&4096;flags=flags&~6400;path=SYSCALLS.calculateAt(dirfd,path,allowEmpty);return SYSCALLS.doStat(nofollow?FS.lstat:FS.stat,path,buf)}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_openat(dirfd,path,flags,varargs){SYSCALLS.varargs=varargs;try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);var mode=varargs?SYSCALLS.get():0;return FS.open(path,flags,mode).fd}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_readlinkat(dirfd,path,buf,bufsize){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);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}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}var writeSockaddr=(sa,family,addr,port,addrlen)=>{switch(family){case 2:addr=inetPton4(addr);zeroMemory(sa,16);if(addrlen){HEAP32[addrlen>>2]=16}HEAP16[sa>>1]=family;HEAP32[sa+4>>2]=addr;HEAP16[sa+2>>1]=_htons(port);break;case 10:addr=inetPton6(addr);zeroMemory(sa,28);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);break;default:return 5}return 0};function ___syscall_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.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_renameat(olddirfd,oldpath,newdirfd,newpath){try{oldpath=SYSCALLS.getStr(oldpath);newpath=SYSCALLS.getStr(newpath);oldpath=SYSCALLS.calculateAt(olddirfd,oldpath);newpath=SYSCALLS.calculateAt(newdirfd,newpath);FS.rename(oldpath,newpath);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_rmdir(path){try{path=SYSCALLS.getStr(path);FS.rmdir(path);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_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)}return sock.sock_ops.sendmsg(sock,HEAP8,message,length,dest.addr,dest.port)}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_socket(domain,type,protocol){try{var sock=SOCKFS.createSocket(domain,type,protocol);return sock.stream.fd}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_stat64(path,buf){try{path=SYSCALLS.getStr(path);return SYSCALLS.doStat(FS.stat,path,buf)}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_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.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_unlinkat(dirfd,path,flags){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);if(flags===0){FS.unlink(path)}else if(flags===512){FS.rmdir(path)}else{abort("Invalid flags passed to unlinkat")}return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}var readI53FromI64=ptr=>HEAPU32[ptr>>2]+HEAP32[ptr+4>>2]*4294967296;function ___syscall_utimensat(dirfd,path,times,flags){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path,true);if(!times){var atime=Date.now();var mtime=atime}else{var seconds=readI53FromI64(times);var nanoseconds=HEAP32[times+8>>2];atime=seconds*1e3+nanoseconds/(1e3*1e3);times+=16;seconds=readI53FromI64(times);nanoseconds=HEAP32[times+8>>2];mtime=seconds*1e3+nanoseconds/(1e3*1e3)}FS.utime(path,atime,mtime);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}var nowIsMonotonic=1;var __emscripten_get_now_is_monotonic=()=>nowIsMonotonic;function __gmtime_js(time,tmPtr){time=bigintToI53Checked(time);var date=new Date(time*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();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}var isLeapYear=year=>year%4===0&&(year%100!==0||year%400===0);var MONTH_DAYS_LEAP_CUMULATIVE=[0,31,60,91,121,152,182,213,244,274,305,335];var MONTH_DAYS_REGULAR_CUMULATIVE=[0,31,59,90,120,151,181,212,243,273,304,334];var ydayFromDate=date=>{var leap=isLeapYear(date.getFullYear());var monthDaysCumulative=leap?MONTH_DAYS_LEAP_CUMULATIVE:MONTH_DAYS_REGULAR_CUMULATIVE;var yday=monthDaysCumulative[date.getMonth()]+date.getDate()-1;return yday};function __localtime_js(time,tmPtr){time=bigintToI53Checked(time);var date=new Date(time*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 yday=ydayFromDate(date)|0;HEAP32[tmPtr+28>>2]=yday;HEAP32[tmPtr+36>>2]=-(date.getTimezoneOffset()*60);var start=new Date(date.getFullYear(),0,1);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}function __mmap_js(len,prot,flags,fd,offset,allocated,addr){offset=bigintToI53Checked(offset);try{if(isNaN(offset))return 61;var stream=SYSCALLS.getStreamFromFD(fd);var res=FS.mmap(stream,len,offset,prot,flags);var ptr=res.ptr;HEAP32[allocated>>2]=res.allocated;HEAPU32[addr>>2]=ptr;return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function __msync_js(addr,len,prot,flags,fd,offset){offset=bigintToI53Checked(offset);try{if(isNaN(offset))return 61;SYSCALLS.doMsync(addr,SYSCALLS.getStreamFromFD(fd),len,flags,offset);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function __munmap_js(addr,len,prot,flags,fd,offset){offset=bigintToI53Checked(offset);try{var stream=SYSCALLS.getStreamFromFD(fd);if(prot&2){SYSCALLS.doMsync(addr,stream,len,flags,offset)}}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}var __tzset_js=(timezone,daylight,std_name,dst_name)=>{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);HEAPU32[timezone>>2]=stdTimezoneOffset*60;HEAP32[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);if(summerOffset{abort("")};var _emscripten_date_now=()=>Date.now();var runtimeKeepaliveCounter=0;var keepRuntimeAlive=()=>noExitRuntime||runtimeKeepaliveCounter>0;var _proc_exit=code=>{EXITSTATUS=code;if(!keepRuntimeAlive()){Module["onExit"]?.(code);ABORT=true}quit_(code,new ExitStatus(code))};var exitJS=(status,implicit)=>{EXITSTATUS=status;if(!keepRuntimeAlive()){exitRuntime()}_proc_exit(status)};var _exit=exitJS;var __emscripten_runtime_keepalive_clear=()=>{noExitRuntime=false;runtimeKeepaliveCounter=0};var _emscripten_force_exit=status=>{__emscripten_runtime_keepalive_clear();_exit(status)};Module["_emscripten_force_exit"]=_emscripten_force_exit;var getHeapMax=()=>2147483648;var _emscripten_get_heap_max=()=>getHeapMax();var _emscripten_get_now;_emscripten_get_now=()=>performance.now();var _emscripten_get_now_res=()=>{if(ENVIRONMENT_IS_NODE){return 1}return 1e3};var growMemory=size=>{var b=wasmMemory.buffer;var pages=(size-b.byteLength+65535)/65536;try{wasmMemory.grow(pages);updateMemoryViews();return 1}catch(e){}};var _emscripten_resize_heap=requestedSize=>{var oldSize=HEAPU8.length;requestedSize>>>=0;var maxHeapSize=getHeapMax();if(requestedSize>maxHeapSize){return false}var alignUp=(x,multiple)=>x+(multiple-x%multiple)%multiple;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=growMemory(newSize);if(replacement){return true}}return false};var ENV={};var getExecutableName=()=>thisProgram||"./this.program";var getEnvStrings=()=>{if(!getEnvStrings.strings){var lang=(typeof navigator=="object"&&navigator.languages&&navigator.languages[0]||"C").replace("-","_")+".UTF-8";var env={"USER":"web_user","LOGNAME":"web_user","PATH":"/","PWD":"/","HOME":"/home/web_user","LANG":lang,"_":getExecutableName()};for(var x in ENV){if(ENV[x]===undefined)delete env[x];else env[x]=ENV[x]}var strings=[];for(var x in env){strings.push(`${x}=${env[x]}`)}getEnvStrings.strings=strings}return getEnvStrings.strings};var stringToAscii=(str,buffer)=>{for(var i=0;i{var bufSize=0;getEnvStrings().forEach((string,i)=>{var ptr=environ_buf+bufSize;HEAPU32[__environ+i*4>>2]=ptr;stringToAscii(string,ptr);bufSize+=string.length+1});return 0};var _environ_sizes_get=(penviron_count,penviron_buf_size)=>{var strings=getEnvStrings();HEAPU32[penviron_count>>2]=strings.length;var bufSize=0;strings.forEach(string=>bufSize+=string.length+1);HEAPU32[penviron_buf_size>>2]=bufSize;return 0};function _fd_close(fd){try{var stream=SYSCALLS.getStreamFromFD(fd);FS.close(stream);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return e.errno}}function _fd_fdstat_get(fd,pbuf){try{var rightsBase=0;var rightsInheriting=0;var flags=0;{var stream=SYSCALLS.getStreamFromFD(fd);var type=stream.tty?2:FS.isDir(stream.mode)?3:FS.isLink(stream.mode)?7:4}HEAP8[pbuf]=type;HEAP16[pbuf+2>>1]=flags;HEAP64[pbuf+8>>3]=BigInt(rightsBase);HEAP64[pbuf+16>>3]=BigInt(rightsInheriting);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return e.errno}}var doReadv=(stream,iov,iovcnt,offset)=>{var ret=0;for(var i=0;i>2];var len=HEAPU32[iov+4>>2];iov+=8;var curr=FS.read(stream,HEAP8,ptr,len,offset);if(curr<0)return-1;ret+=curr;if(curr>2]=num;return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return e.errno}}var doWritev=(stream,iov,iovcnt,offset)=>{var ret=0;for(var i=0;i>2];var len=HEAPU32[iov+4>>2];iov+=8;var curr=FS.write(stream,HEAP8,ptr,len,offset);if(curr<0)return-1;ret+=curr;if(typeof offset!=="undefined"){offset+=curr}}return ret};function _fd_pwrite(fd,iov,iovcnt,offset,pnum){offset=bigintToI53Checked(offset);try{if(isNaN(offset))return 61;var stream=SYSCALLS.getStreamFromFD(fd);var num=doWritev(stream,iov,iovcnt,offset);HEAPU32[pnum>>2]=num;return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return e.errno}}function _fd_read(fd,iov,iovcnt,pnum){try{var stream=SYSCALLS.getStreamFromFD(fd);var num=doReadv(stream,iov,iovcnt);HEAPU32[pnum>>2]=num;return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return e.errno}}function _fd_seek(fd,offset,whence,newOffset){offset=bigintToI53Checked(offset);try{if(isNaN(offset))return 61;var stream=SYSCALLS.getStreamFromFD(fd);FS.llseek(stream,offset,whence);HEAP64[newOffset>>3]=BigInt(stream.position);if(stream.getdents&&offset===0&&whence===0)stream.getdents=null;return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return e.errno}}function _fd_sync(fd){try{var stream=SYSCALLS.getStreamFromFD(fd);if(stream.stream_ops?.fsync){return stream.stream_ops.fsync(stream)}return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return e.errno}}function _fd_write(fd,iov,iovcnt,pnum){try{var stream=SYSCALLS.getStreamFromFD(fd);var num=doWritev(stream,iov,iovcnt);HEAPU32[pnum>>2]=num;return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return e.errno}}var _llvm_eh_typeid_for=type=>type;var DOTNET={setup:function setup(emscriptenBuildOptions){const modulePThread={};const ENVIRONMENT_IS_PTHREAD=false;const dotnet_replacements={fetch:globalThis.fetch,ENVIRONMENT_IS_WORKER:ENVIRONMENT_IS_WORKER,require:require,modulePThread:modulePThread,scriptDirectory:scriptDirectory};ENVIRONMENT_IS_WORKER=dotnet_replacements.ENVIRONMENT_IS_WORKER;Module.__dotnet_runtime.initializeReplacements(dotnet_replacements);noExitRuntime=dotnet_replacements.noExitRuntime;fetch=dotnet_replacements.fetch;require=dotnet_replacements.require;_scriptDir=__dirname=scriptDirectory=dotnet_replacements.scriptDirectory;Module.__dotnet_runtime.passEmscriptenInternals({isPThread:ENVIRONMENT_IS_PTHREAD,quit_:quit_,ExitStatus:ExitStatus,updateMemoryViews:updateMemoryViews,getMemory:()=>wasmMemory,getWasmIndirectFunctionTable:()=>wasmTable},emscriptenBuildOptions);Module.__dotnet_runtime.configureEmscriptenStartup(Module)}};function _mono_interp_flush_jitcall_queue(){return{runtime_idx:12}}function _mono_interp_invoke_wasm_jit_call_trampoline(){return{runtime_idx:11}}function _mono_interp_jit_wasm_entry_trampoline(){return{runtime_idx:9}}function _mono_interp_jit_wasm_jit_call_trampoline(){return{runtime_idx:10}}function _mono_interp_record_interp_entry(){return{runtime_idx:8}}function _mono_interp_tier_prepare_jiterpreter(){return{runtime_idx:7}}function _mono_wasm_add_dbg_command_received(){return{runtime_idx:3}}function _mono_wasm_asm_loaded(){return{runtime_idx:1}}function _mono_wasm_bind_js_import_ST(){return{runtime_idx:22}}function _mono_wasm_browser_entropy(){return{runtime_idx:18}}function _mono_wasm_cancel_promise(){return{runtime_idx:26}}function _mono_wasm_console_clear(){return{runtime_idx:20}}function _mono_wasm_debugger_log(){return{runtime_idx:2}}function _mono_wasm_fire_debugger_agent_message_with_data(){return{runtime_idx:4}}function _mono_wasm_free_method_data(){return{runtime_idx:13}}function _mono_wasm_get_locale_info(){return{runtime_idx:27}}function _mono_wasm_invoke_js_function(){return{runtime_idx:23}}function _mono_wasm_invoke_jsimport_ST(){return{runtime_idx:24}}function _mono_wasm_process_current_pid(){return{runtime_idx:19}}function _mono_wasm_release_cs_owned_object(){return{runtime_idx:21}}function _mono_wasm_resolve_or_reject_promise(){return{runtime_idx:25}}function _mono_wasm_schedule_timer(){return{runtime_idx:0}}function _mono_wasm_set_entrypoint_breakpoint(){return{runtime_idx:17}}function _mono_wasm_trace_logger(){return{runtime_idx:16}}function _schedule_background_exec(){return{runtime_idx:6}}var 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];var 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};var writeArrayToMemory=(array,buffer)=>{HEAP8.set(array,buffer)};var _strftime=(s,maxsize,format,tm)=>{var tm_zone=HEAPU32[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}return thisDate.getFullYear()}return thisDate.getFullYear()-1}var EXPANSION_RULES_2={"%a":date=>WEEKDAYS[date.tm_wday].substring(0,3),"%A":date=>WEEKDAYS[date.tm_wday],"%b":date=>MONTHS[date.tm_mon].substring(0,3),"%B":date=>MONTHS[date.tm_mon],"%C":date=>{var year=date.tm_year+1900;return leadingNulls(year/100|0,2)},"%d":date=>leadingNulls(date.tm_mday,2),"%e":date=>leadingSomething(date.tm_mday,2," "),"%g":date=>getWeekBasedYear(date).toString().substring(2),"%G":getWeekBasedYear,"%H":date=>leadingNulls(date.tm_hour,2),"%I":date=>{var twelveHour=date.tm_hour;if(twelveHour==0)twelveHour=12;else if(twelveHour>12)twelveHour-=12;return leadingNulls(twelveHour,2)},"%j":date=>leadingNulls(date.tm_mday+arraySum(isLeapYear(date.tm_year+1900)?MONTH_DAYS_LEAP:MONTH_DAYS_REGULAR,date.tm_mon-1),3),"%m":date=>leadingNulls(date.tm_mon+1,2),"%M":date=>leadingNulls(date.tm_min,2),"%n":()=>"\n","%p":date=>{if(date.tm_hour>=0&&date.tm_hour<12){return"AM"}return"PM"},"%S":date=>leadingNulls(date.tm_sec,2),"%t":()=>"\t","%u":date=>date.tm_wday||7,"%U":date=>{var days=date.tm_yday+7-date.tm_wday;return leadingNulls(Math.floor(days/7),2)},"%V":date=>{var val=Math.floor((date.tm_yday+7-(date.tm_wday+6)%7)/7);if((date.tm_wday+371-date.tm_yday-2)%7<=2){val++}if(!val){val=52;var dec31=(date.tm_wday+7-date.tm_yday-1)%7;if(dec31==4||dec31==5&&isLeapYear(date.tm_year%400-1)){val++}}else if(val==53){var jan1=(date.tm_wday+371-date.tm_yday)%7;if(jan1!=4&&(jan1!=3||!isLeapYear(date.tm_year)))val=1}return leadingNulls(val,2)},"%w":date=>date.tm_wday,"%W":date=>{var days=date.tm_yday+7-(date.tm_wday+6)%7;return leadingNulls(Math.floor(days/7),2)},"%y":date=>(date.tm_year+1900).toString().substring(2),"%Y":date=>date.tm_year+1900,"%z":date=>{var off=date.tm_gmtoff;var ahead=off>=0;off=Math.abs(off)/60;off=off/60*100+off%60;return(ahead?"+":"-")+String("0000"+off).slice(-4)},"%Z":date=>date.tm_zone,"%%":()=>"%"};pattern=pattern.replace(/%%/g,"\0\0");for(var rule in EXPANSION_RULES_2){if(pattern.includes(rule)){pattern=pattern.replace(new RegExp(rule,"g"),EXPANSION_RULES_2[rule](date))}}pattern=pattern.replace(/\0\0/g,"%");var bytes=intArrayFromString(pattern,false);if(bytes.length>maxsize){return 0}writeArrayToMemory(bytes,s);return bytes.length-1};var wasmTableMirror=[];var wasmTable;var getWasmTableEntry=funcPtr=>{var func=wasmTableMirror[funcPtr];if(!func){if(funcPtr>=wasmTableMirror.length)wasmTableMirror.length=funcPtr+1;wasmTableMirror[funcPtr]=func=wasmTable.get(funcPtr)}return func};var getCFunc=ident=>{var func=Module["_"+ident];return func};var stringToUTF8OnStack=str=>{var size=lengthBytesUTF8(str)+1;var ret=stackAlloc(size);stringToUTF8(str,ret,size);return ret};var ccall=(ident,returnType,argTypes,args,opts)=>{var toC={"string":str=>{var ret=0;if(str!==null&&str!==undefined&&str!==0){ret=stringToUTF8OnStack(str)}return ret},"array":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{var numericArgs=!argTypes||argTypes.every(type=>type==="number"||type==="boolean");var numericRet=returnType!=="string";if(numericRet&&numericArgs&&!opts){return getCFunc(ident)}return(...args)=>ccall(ident,returnType,argTypes,args,opts)};var uleb128Encode=(n,target)=>{if(n<128){target.push(n)}else{target.push(n%128|128,n>>7)}};var sigToWasmTypes=sig=>{var typeNames={"i":"i32","j":"i64","f":"f32","d":"f64","e":"externref","p":"i32"};var type={parameters:[],results:sig[0]=="v"?[]:[typeNames[sig[0]]]};for(var i=1;i{var sigRet=sig.slice(0,1);var sigParam=sig.slice(1);var typeCodes={"i":127,"p":127,"j":126,"f":125,"d":124,"e":111};target.push(96);uleb128Encode(sigParam.length,target);for(var i=0;i{if(typeof WebAssembly.Function=="function"){return new WebAssembly.Function(sigToWasmTypes(sig),func)}var typeSectionBody=[1];generateFuncType(sig,typeSectionBody);var bytes=[0,97,115,109,1,0,0,0,1];uleb128Encode(typeSectionBody.length,bytes);bytes.push(...typeSectionBody);bytes.push(2,7,1,1,101,1,102,0,0,7,5,1,1,102,0,0);var module=new WebAssembly.Module(new Uint8Array(bytes));var instance=new WebAssembly.Instance(module,{"e":{"f":func}});var wrappedFunc=instance.exports["f"];return wrappedFunc};var updateTableMap=(offset,count)=>{if(functionsInTableMap){for(var i=offset;i{if(!functionsInTableMap){functionsInTableMap=new WeakMap;updateTableMap(0,wasmTable.length)}return functionsInTableMap.get(func)||0};var freeTableIndexes=[];var getEmptyTableSlot=()=>{if(freeTableIndexes.length){return freeTableIndexes.pop()}try{wasmTable.grow(1)}catch(err){if(!(err instanceof RangeError)){throw err}throw"Unable to grow wasm table. Set ALLOW_TABLE_GROWTH."}return wasmTable.length-1};var setWasmTableEntry=(idx,func)=>{wasmTable.set(idx,func);wasmTableMirror[idx]=wasmTable.get(idx)};var addFunction=(func,sig)=>{var rtn=getFunctionAddress(func);if(rtn){return rtn}var ret=getEmptyTableSlot();try{setWasmTableEntry(ret,func)}catch(err){if(!(err instanceof TypeError)){throw err}var wrapped=convertJsFunctionToWasm(func,sig);setWasmTableEntry(ret,wrapped)}functionsInTableMap.set(func,ret);return ret};var handleException=e=>{if(e instanceof ExitStatus||e=="unwind"){return EXITSTATUS}quit_(1,e)};var maybeExit=()=>{if(runtimeExited){return}if(!keepRuntimeAlive()){try{_exit(EXITSTATUS)}catch(e){handleException(e)}}};var callUserCallback=func=>{if(runtimeExited||ABORT){return}try{func();maybeExit()}catch(e){handleException(e)}};var runtimeKeepalivePush=()=>{runtimeKeepaliveCounter+=1};var runtimeKeepalivePop=()=>{runtimeKeepaliveCounter-=1};var safeSetTimeout=(func,timeout)=>{runtimeKeepalivePush();return setTimeout(()=>{runtimeKeepalivePop();callUserCallback(func)},timeout)};FS.createPreloadedFile=FS_createPreloadedFile;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_unlink"]=FS.unlink;Module["FS_createLazyFile"]=FS.createLazyFile;Module["FS_createDevice"]=FS.createDevice;DOTNET.setup({wasmEnableSIMD:true,wasmEnableEH:true,enableAotProfiler:false,enableDevToolsProfiler:false,enableLogProfiler:false,enableEventPipe:false,runAOTCompilation:false,wasmEnableThreads:false,gitHash:"a612c2a1056fe3265387ae3ff7c94eba1505caf9"});var wasmImports={__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,__syscall_chdir:___syscall_chdir,__syscall_chmod:___syscall_chmod,__syscall_connect:___syscall_connect,__syscall_faccessat:___syscall_faccessat,__syscall_fadvise64:___syscall_fadvise64,__syscall_fchmod:___syscall_fchmod,__syscall_fcntl64:___syscall_fcntl64,__syscall_fstat64:___syscall_fstat64,__syscall_fstatfs64:___syscall_fstatfs64,__syscall_ftruncate64:___syscall_ftruncate64,__syscall_getcwd:___syscall_getcwd,__syscall_getdents64:___syscall_getdents64,__syscall_ioctl:___syscall_ioctl,__syscall_lstat64:___syscall_lstat64,__syscall_mkdirat:___syscall_mkdirat,__syscall_newfstatat:___syscall_newfstatat,__syscall_openat:___syscall_openat,__syscall_readlinkat:___syscall_readlinkat,__syscall_recvfrom:___syscall_recvfrom,__syscall_renameat:___syscall_renameat,__syscall_rmdir:___syscall_rmdir,__syscall_sendto:___syscall_sendto,__syscall_socket:___syscall_socket,__syscall_stat64:___syscall_stat64,__syscall_symlink:___syscall_symlink,__syscall_unlinkat:___syscall_unlinkat,__syscall_utimensat:___syscall_utimensat,_emscripten_get_now_is_monotonic:__emscripten_get_now_is_monotonic,_gmtime_js:__gmtime_js,_localtime_js:__localtime_js,_mmap_js:__mmap_js,_msync_js:__msync_js,_munmap_js:__munmap_js,_tzset_js:__tzset_js,abort:_abort,emscripten_date_now:_emscripten_date_now,emscripten_force_exit:_emscripten_force_exit,emscripten_get_heap_max:_emscripten_get_heap_max,emscripten_get_now:_emscripten_get_now,emscripten_get_now_res:_emscripten_get_now_res,emscripten_resize_heap:_emscripten_resize_heap,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,invoke_vi:invoke_vi,llvm_eh_typeid_for:_llvm_eh_typeid_for,mono_interp_flush_jitcall_queue:_mono_interp_flush_jitcall_queue,mono_interp_invoke_wasm_jit_call_trampoline:_mono_interp_invoke_wasm_jit_call_trampoline,mono_interp_jit_wasm_entry_trampoline:_mono_interp_jit_wasm_entry_trampoline,mono_interp_jit_wasm_jit_call_trampoline:_mono_interp_jit_wasm_jit_call_trampoline,mono_interp_record_interp_entry:_mono_interp_record_interp_entry,mono_interp_tier_prepare_jiterpreter:_mono_interp_tier_prepare_jiterpreter,mono_wasm_add_dbg_command_received:_mono_wasm_add_dbg_command_received,mono_wasm_asm_loaded:_mono_wasm_asm_loaded,mono_wasm_bind_js_import_ST:_mono_wasm_bind_js_import_ST,mono_wasm_browser_entropy:_mono_wasm_browser_entropy,mono_wasm_cancel_promise:_mono_wasm_cancel_promise,mono_wasm_console_clear:_mono_wasm_console_clear,mono_wasm_debugger_log:_mono_wasm_debugger_log,mono_wasm_fire_debugger_agent_message_with_data:_mono_wasm_fire_debugger_agent_message_with_data,mono_wasm_free_method_data:_mono_wasm_free_method_data,mono_wasm_get_locale_info:_mono_wasm_get_locale_info,mono_wasm_invoke_js_function:_mono_wasm_invoke_js_function,mono_wasm_invoke_jsimport_ST:_mono_wasm_invoke_jsimport_ST,mono_wasm_process_current_pid:_mono_wasm_process_current_pid,mono_wasm_release_cs_owned_object:_mono_wasm_release_cs_owned_object,mono_wasm_resolve_or_reject_promise:_mono_wasm_resolve_or_reject_promise,mono_wasm_schedule_timer:_mono_wasm_schedule_timer,mono_wasm_set_entrypoint_breakpoint:_mono_wasm_set_entrypoint_breakpoint,mono_wasm_trace_logger:_mono_wasm_trace_logger,schedule_background_exec:_schedule_background_exec,strftime:_strftime};var wasmExports=createWasm();var ___wasm_call_ctors=()=>(___wasm_call_ctors=wasmExports["__wasm_call_ctors"])();var _malloc=Module["_malloc"]=a0=>(_malloc=Module["_malloc"]=wasmExports["malloc"])(a0);var _free=Module["_free"]=a0=>(_free=Module["_free"]=wasmExports["free"])(a0);var _mono_wasm_assembly_load=Module["_mono_wasm_assembly_load"]=a0=>(_mono_wasm_assembly_load=Module["_mono_wasm_assembly_load"]=wasmExports["mono_wasm_assembly_load"])(a0);var _mono_wasm_assembly_find_class=Module["_mono_wasm_assembly_find_class"]=(a0,a1,a2)=>(_mono_wasm_assembly_find_class=Module["_mono_wasm_assembly_find_class"]=wasmExports["mono_wasm_assembly_find_class"])(a0,a1,a2);var _mono_wasm_assembly_find_method=Module["_mono_wasm_assembly_find_method"]=(a0,a1,a2)=>(_mono_wasm_assembly_find_method=Module["_mono_wasm_assembly_find_method"]=wasmExports["mono_wasm_assembly_find_method"])(a0,a1,a2);var _mono_wasm_register_root=Module["_mono_wasm_register_root"]=(a0,a1,a2)=>(_mono_wasm_register_root=Module["_mono_wasm_register_root"]=wasmExports["mono_wasm_register_root"])(a0,a1,a2);var _mono_wasm_deregister_root=Module["_mono_wasm_deregister_root"]=a0=>(_mono_wasm_deregister_root=Module["_mono_wasm_deregister_root"]=wasmExports["mono_wasm_deregister_root"])(a0);var _mono_wasm_add_assembly=Module["_mono_wasm_add_assembly"]=(a0,a1,a2)=>(_mono_wasm_add_assembly=Module["_mono_wasm_add_assembly"]=wasmExports["mono_wasm_add_assembly"])(a0,a1,a2);var _mono_wasm_add_satellite_assembly=Module["_mono_wasm_add_satellite_assembly"]=(a0,a1,a2,a3)=>(_mono_wasm_add_satellite_assembly=Module["_mono_wasm_add_satellite_assembly"]=wasmExports["mono_wasm_add_satellite_assembly"])(a0,a1,a2,a3);var _mono_wasm_setenv=Module["_mono_wasm_setenv"]=(a0,a1)=>(_mono_wasm_setenv=Module["_mono_wasm_setenv"]=wasmExports["mono_wasm_setenv"])(a0,a1);var _mono_wasm_getenv=Module["_mono_wasm_getenv"]=a0=>(_mono_wasm_getenv=Module["_mono_wasm_getenv"]=wasmExports["mono_wasm_getenv"])(a0);var _mono_wasm_load_runtime=Module["_mono_wasm_load_runtime"]=(a0,a1,a2,a3)=>(_mono_wasm_load_runtime=Module["_mono_wasm_load_runtime"]=wasmExports["mono_wasm_load_runtime"])(a0,a1,a2,a3);var _mono_wasm_invoke_jsexport=Module["_mono_wasm_invoke_jsexport"]=(a0,a1)=>(_mono_wasm_invoke_jsexport=Module["_mono_wasm_invoke_jsexport"]=wasmExports["mono_wasm_invoke_jsexport"])(a0,a1);var _mono_wasm_string_from_utf16_ref=Module["_mono_wasm_string_from_utf16_ref"]=(a0,a1,a2)=>(_mono_wasm_string_from_utf16_ref=Module["_mono_wasm_string_from_utf16_ref"]=wasmExports["mono_wasm_string_from_utf16_ref"])(a0,a1,a2);var _mono_wasm_exec_regression=Module["_mono_wasm_exec_regression"]=(a0,a1)=>(_mono_wasm_exec_regression=Module["_mono_wasm_exec_regression"]=wasmExports["mono_wasm_exec_regression"])(a0,a1);var _mono_wasm_exit=Module["_mono_wasm_exit"]=a0=>(_mono_wasm_exit=Module["_mono_wasm_exit"]=wasmExports["mono_wasm_exit"])(a0);var _fflush=a0=>(_fflush=wasmExports["fflush"])(a0);var _mono_wasm_set_main_args=Module["_mono_wasm_set_main_args"]=(a0,a1)=>(_mono_wasm_set_main_args=Module["_mono_wasm_set_main_args"]=wasmExports["mono_wasm_set_main_args"])(a0,a1);var _mono_wasm_strdup=Module["_mono_wasm_strdup"]=a0=>(_mono_wasm_strdup=Module["_mono_wasm_strdup"]=wasmExports["mono_wasm_strdup"])(a0);var _mono_wasm_parse_runtime_options=Module["_mono_wasm_parse_runtime_options"]=(a0,a1)=>(_mono_wasm_parse_runtime_options=Module["_mono_wasm_parse_runtime_options"]=wasmExports["mono_wasm_parse_runtime_options"])(a0,a1);var _mono_wasm_intern_string_ref=Module["_mono_wasm_intern_string_ref"]=a0=>(_mono_wasm_intern_string_ref=Module["_mono_wasm_intern_string_ref"]=wasmExports["mono_wasm_intern_string_ref"])(a0);var _mono_wasm_string_get_data_ref=Module["_mono_wasm_string_get_data_ref"]=(a0,a1,a2,a3)=>(_mono_wasm_string_get_data_ref=Module["_mono_wasm_string_get_data_ref"]=wasmExports["mono_wasm_string_get_data_ref"])(a0,a1,a2,a3);var _mono_wasm_write_managed_pointer_unsafe=Module["_mono_wasm_write_managed_pointer_unsafe"]=(a0,a1)=>(_mono_wasm_write_managed_pointer_unsafe=Module["_mono_wasm_write_managed_pointer_unsafe"]=wasmExports["mono_wasm_write_managed_pointer_unsafe"])(a0,a1);var _mono_wasm_copy_managed_pointer=Module["_mono_wasm_copy_managed_pointer"]=(a0,a1)=>(_mono_wasm_copy_managed_pointer=Module["_mono_wasm_copy_managed_pointer"]=wasmExports["mono_wasm_copy_managed_pointer"])(a0,a1);var _mono_wasm_init_finalizer_thread=Module["_mono_wasm_init_finalizer_thread"]=()=>(_mono_wasm_init_finalizer_thread=Module["_mono_wasm_init_finalizer_thread"]=wasmExports["mono_wasm_init_finalizer_thread"])();var _mono_wasm_i52_to_f64=Module["_mono_wasm_i52_to_f64"]=(a0,a1)=>(_mono_wasm_i52_to_f64=Module["_mono_wasm_i52_to_f64"]=wasmExports["mono_wasm_i52_to_f64"])(a0,a1);var _mono_wasm_u52_to_f64=Module["_mono_wasm_u52_to_f64"]=(a0,a1)=>(_mono_wasm_u52_to_f64=Module["_mono_wasm_u52_to_f64"]=wasmExports["mono_wasm_u52_to_f64"])(a0,a1);var _mono_wasm_f64_to_u52=Module["_mono_wasm_f64_to_u52"]=(a0,a1)=>(_mono_wasm_f64_to_u52=Module["_mono_wasm_f64_to_u52"]=wasmExports["mono_wasm_f64_to_u52"])(a0,a1);var _mono_wasm_f64_to_i52=Module["_mono_wasm_f64_to_i52"]=(a0,a1)=>(_mono_wasm_f64_to_i52=Module["_mono_wasm_f64_to_i52"]=wasmExports["mono_wasm_f64_to_i52"])(a0,a1);var _mono_wasm_method_get_full_name=Module["_mono_wasm_method_get_full_name"]=a0=>(_mono_wasm_method_get_full_name=Module["_mono_wasm_method_get_full_name"]=wasmExports["mono_wasm_method_get_full_name"])(a0);var _mono_wasm_method_get_name=Module["_mono_wasm_method_get_name"]=a0=>(_mono_wasm_method_get_name=Module["_mono_wasm_method_get_name"]=wasmExports["mono_wasm_method_get_name"])(a0);var _mono_wasm_method_get_name_ex=Module["_mono_wasm_method_get_name_ex"]=a0=>(_mono_wasm_method_get_name_ex=Module["_mono_wasm_method_get_name_ex"]=wasmExports["mono_wasm_method_get_name_ex"])(a0);var _mono_wasm_get_f32_unaligned=Module["_mono_wasm_get_f32_unaligned"]=a0=>(_mono_wasm_get_f32_unaligned=Module["_mono_wasm_get_f32_unaligned"]=wasmExports["mono_wasm_get_f32_unaligned"])(a0);var _mono_wasm_get_f64_unaligned=Module["_mono_wasm_get_f64_unaligned"]=a0=>(_mono_wasm_get_f64_unaligned=Module["_mono_wasm_get_f64_unaligned"]=wasmExports["mono_wasm_get_f64_unaligned"])(a0);var _mono_wasm_get_i32_unaligned=Module["_mono_wasm_get_i32_unaligned"]=a0=>(_mono_wasm_get_i32_unaligned=Module["_mono_wasm_get_i32_unaligned"]=wasmExports["mono_wasm_get_i32_unaligned"])(a0);var _mono_wasm_is_zero_page_reserved=Module["_mono_wasm_is_zero_page_reserved"]=()=>(_mono_wasm_is_zero_page_reserved=Module["_mono_wasm_is_zero_page_reserved"]=wasmExports["mono_wasm_is_zero_page_reserved"])();var _mono_wasm_read_as_bool_or_null_unsafe=Module["_mono_wasm_read_as_bool_or_null_unsafe"]=a0=>(_mono_wasm_read_as_bool_or_null_unsafe=Module["_mono_wasm_read_as_bool_or_null_unsafe"]=wasmExports["mono_wasm_read_as_bool_or_null_unsafe"])(a0);var _mono_wasm_set_is_debugger_attached=Module["_mono_wasm_set_is_debugger_attached"]=a0=>(_mono_wasm_set_is_debugger_attached=Module["_mono_wasm_set_is_debugger_attached"]=wasmExports["mono_wasm_set_is_debugger_attached"])(a0);var _mono_wasm_change_debugger_log_level=Module["_mono_wasm_change_debugger_log_level"]=a0=>(_mono_wasm_change_debugger_log_level=Module["_mono_wasm_change_debugger_log_level"]=wasmExports["mono_wasm_change_debugger_log_level"])(a0);var _mono_wasm_send_dbg_command_with_parms=Module["_mono_wasm_send_dbg_command_with_parms"]=(a0,a1,a2,a3,a4,a5,a6)=>(_mono_wasm_send_dbg_command_with_parms=Module["_mono_wasm_send_dbg_command_with_parms"]=wasmExports["mono_wasm_send_dbg_command_with_parms"])(a0,a1,a2,a3,a4,a5,a6);var _mono_wasm_send_dbg_command=Module["_mono_wasm_send_dbg_command"]=(a0,a1,a2,a3,a4)=>(_mono_wasm_send_dbg_command=Module["_mono_wasm_send_dbg_command"]=wasmExports["mono_wasm_send_dbg_command"])(a0,a1,a2,a3,a4);var _mono_jiterp_register_jit_call_thunk=Module["_mono_jiterp_register_jit_call_thunk"]=(a0,a1)=>(_mono_jiterp_register_jit_call_thunk=Module["_mono_jiterp_register_jit_call_thunk"]=wasmExports["mono_jiterp_register_jit_call_thunk"])(a0,a1);var _mono_jiterp_stackval_to_data=Module["_mono_jiterp_stackval_to_data"]=(a0,a1,a2)=>(_mono_jiterp_stackval_to_data=Module["_mono_jiterp_stackval_to_data"]=wasmExports["mono_jiterp_stackval_to_data"])(a0,a1,a2);var _mono_jiterp_stackval_from_data=Module["_mono_jiterp_stackval_from_data"]=(a0,a1,a2)=>(_mono_jiterp_stackval_from_data=Module["_mono_jiterp_stackval_from_data"]=wasmExports["mono_jiterp_stackval_from_data"])(a0,a1,a2);var _mono_jiterp_get_arg_offset=Module["_mono_jiterp_get_arg_offset"]=(a0,a1,a2)=>(_mono_jiterp_get_arg_offset=Module["_mono_jiterp_get_arg_offset"]=wasmExports["mono_jiterp_get_arg_offset"])(a0,a1,a2);var _mono_jiterp_overflow_check_i4=Module["_mono_jiterp_overflow_check_i4"]=(a0,a1,a2)=>(_mono_jiterp_overflow_check_i4=Module["_mono_jiterp_overflow_check_i4"]=wasmExports["mono_jiterp_overflow_check_i4"])(a0,a1,a2);var _mono_jiterp_overflow_check_u4=Module["_mono_jiterp_overflow_check_u4"]=(a0,a1,a2)=>(_mono_jiterp_overflow_check_u4=Module["_mono_jiterp_overflow_check_u4"]=wasmExports["mono_jiterp_overflow_check_u4"])(a0,a1,a2);var _mono_jiterp_ld_delegate_method_ptr=Module["_mono_jiterp_ld_delegate_method_ptr"]=(a0,a1)=>(_mono_jiterp_ld_delegate_method_ptr=Module["_mono_jiterp_ld_delegate_method_ptr"]=wasmExports["mono_jiterp_ld_delegate_method_ptr"])(a0,a1);var _mono_jiterp_interp_entry=Module["_mono_jiterp_interp_entry"]=(a0,a1)=>(_mono_jiterp_interp_entry=Module["_mono_jiterp_interp_entry"]=wasmExports["mono_jiterp_interp_entry"])(a0,a1);var _memset=Module["_memset"]=(a0,a1,a2)=>(_memset=Module["_memset"]=wasmExports["memset"])(a0,a1,a2);var _fmodf=Module["_fmodf"]=(a0,a1)=>(_fmodf=Module["_fmodf"]=wasmExports["fmodf"])(a0,a1);var _fmod=Module["_fmod"]=(a0,a1)=>(_fmod=Module["_fmod"]=wasmExports["fmod"])(a0,a1);var _asin=Module["_asin"]=a0=>(_asin=Module["_asin"]=wasmExports["asin"])(a0);var _asinh=Module["_asinh"]=a0=>(_asinh=Module["_asinh"]=wasmExports["asinh"])(a0);var _acos=Module["_acos"]=a0=>(_acos=Module["_acos"]=wasmExports["acos"])(a0);var _acosh=Module["_acosh"]=a0=>(_acosh=Module["_acosh"]=wasmExports["acosh"])(a0);var _atan=Module["_atan"]=a0=>(_atan=Module["_atan"]=wasmExports["atan"])(a0);var _atanh=Module["_atanh"]=a0=>(_atanh=Module["_atanh"]=wasmExports["atanh"])(a0);var _cos=Module["_cos"]=a0=>(_cos=Module["_cos"]=wasmExports["cos"])(a0);var _cbrt=Module["_cbrt"]=a0=>(_cbrt=Module["_cbrt"]=wasmExports["cbrt"])(a0);var _cosh=Module["_cosh"]=a0=>(_cosh=Module["_cosh"]=wasmExports["cosh"])(a0);var _exp=Module["_exp"]=a0=>(_exp=Module["_exp"]=wasmExports["exp"])(a0);var _log=Module["_log"]=a0=>(_log=Module["_log"]=wasmExports["log"])(a0);var _log2=Module["_log2"]=a0=>(_log2=Module["_log2"]=wasmExports["log2"])(a0);var _log10=Module["_log10"]=a0=>(_log10=Module["_log10"]=wasmExports["log10"])(a0);var _sin=Module["_sin"]=a0=>(_sin=Module["_sin"]=wasmExports["sin"])(a0);var _sinh=Module["_sinh"]=a0=>(_sinh=Module["_sinh"]=wasmExports["sinh"])(a0);var _tan=Module["_tan"]=a0=>(_tan=Module["_tan"]=wasmExports["tan"])(a0);var _tanh=Module["_tanh"]=a0=>(_tanh=Module["_tanh"]=wasmExports["tanh"])(a0);var _atan2=Module["_atan2"]=(a0,a1)=>(_atan2=Module["_atan2"]=wasmExports["atan2"])(a0,a1);var _pow=Module["_pow"]=(a0,a1)=>(_pow=Module["_pow"]=wasmExports["pow"])(a0,a1);var _fma=Module["_fma"]=(a0,a1,a2)=>(_fma=Module["_fma"]=wasmExports["fma"])(a0,a1,a2);var _asinf=Module["_asinf"]=a0=>(_asinf=Module["_asinf"]=wasmExports["asinf"])(a0);var _asinhf=Module["_asinhf"]=a0=>(_asinhf=Module["_asinhf"]=wasmExports["asinhf"])(a0);var _acosf=Module["_acosf"]=a0=>(_acosf=Module["_acosf"]=wasmExports["acosf"])(a0);var _acoshf=Module["_acoshf"]=a0=>(_acoshf=Module["_acoshf"]=wasmExports["acoshf"])(a0);var _atanf=Module["_atanf"]=a0=>(_atanf=Module["_atanf"]=wasmExports["atanf"])(a0);var _atanhf=Module["_atanhf"]=a0=>(_atanhf=Module["_atanhf"]=wasmExports["atanhf"])(a0);var _cosf=Module["_cosf"]=a0=>(_cosf=Module["_cosf"]=wasmExports["cosf"])(a0);var _cbrtf=Module["_cbrtf"]=a0=>(_cbrtf=Module["_cbrtf"]=wasmExports["cbrtf"])(a0);var _coshf=Module["_coshf"]=a0=>(_coshf=Module["_coshf"]=wasmExports["coshf"])(a0);var _expf=Module["_expf"]=a0=>(_expf=Module["_expf"]=wasmExports["expf"])(a0);var _logf=Module["_logf"]=a0=>(_logf=Module["_logf"]=wasmExports["logf"])(a0);var _log2f=Module["_log2f"]=a0=>(_log2f=Module["_log2f"]=wasmExports["log2f"])(a0);var _log10f=Module["_log10f"]=a0=>(_log10f=Module["_log10f"]=wasmExports["log10f"])(a0);var _sinf=Module["_sinf"]=a0=>(_sinf=Module["_sinf"]=wasmExports["sinf"])(a0);var _sinhf=Module["_sinhf"]=a0=>(_sinhf=Module["_sinhf"]=wasmExports["sinhf"])(a0);var _tanf=Module["_tanf"]=a0=>(_tanf=Module["_tanf"]=wasmExports["tanf"])(a0);var _tanhf=Module["_tanhf"]=a0=>(_tanhf=Module["_tanhf"]=wasmExports["tanhf"])(a0);var _atan2f=Module["_atan2f"]=(a0,a1)=>(_atan2f=Module["_atan2f"]=wasmExports["atan2f"])(a0,a1);var _powf=Module["_powf"]=(a0,a1)=>(_powf=Module["_powf"]=wasmExports["powf"])(a0,a1);var _fmaf=Module["_fmaf"]=(a0,a1,a2)=>(_fmaf=Module["_fmaf"]=wasmExports["fmaf"])(a0,a1,a2);var _mono_jiterp_get_polling_required_address=Module["_mono_jiterp_get_polling_required_address"]=()=>(_mono_jiterp_get_polling_required_address=Module["_mono_jiterp_get_polling_required_address"]=wasmExports["mono_jiterp_get_polling_required_address"])();var _mono_jiterp_prof_enter=Module["_mono_jiterp_prof_enter"]=(a0,a1)=>(_mono_jiterp_prof_enter=Module["_mono_jiterp_prof_enter"]=wasmExports["mono_jiterp_prof_enter"])(a0,a1);var _mono_jiterp_prof_samplepoint=Module["_mono_jiterp_prof_samplepoint"]=(a0,a1)=>(_mono_jiterp_prof_samplepoint=Module["_mono_jiterp_prof_samplepoint"]=wasmExports["mono_jiterp_prof_samplepoint"])(a0,a1);var _mono_jiterp_prof_leave=Module["_mono_jiterp_prof_leave"]=(a0,a1)=>(_mono_jiterp_prof_leave=Module["_mono_jiterp_prof_leave"]=wasmExports["mono_jiterp_prof_leave"])(a0,a1);var _mono_jiterp_do_safepoint=Module["_mono_jiterp_do_safepoint"]=(a0,a1)=>(_mono_jiterp_do_safepoint=Module["_mono_jiterp_do_safepoint"]=wasmExports["mono_jiterp_do_safepoint"])(a0,a1);var _mono_jiterp_imethod_to_ftnptr=Module["_mono_jiterp_imethod_to_ftnptr"]=a0=>(_mono_jiterp_imethod_to_ftnptr=Module["_mono_jiterp_imethod_to_ftnptr"]=wasmExports["mono_jiterp_imethod_to_ftnptr"])(a0);var _mono_jiterp_enum_hasflag=Module["_mono_jiterp_enum_hasflag"]=(a0,a1,a2,a3)=>(_mono_jiterp_enum_hasflag=Module["_mono_jiterp_enum_hasflag"]=wasmExports["mono_jiterp_enum_hasflag"])(a0,a1,a2,a3);var _mono_jiterp_get_simd_intrinsic=Module["_mono_jiterp_get_simd_intrinsic"]=(a0,a1)=>(_mono_jiterp_get_simd_intrinsic=Module["_mono_jiterp_get_simd_intrinsic"]=wasmExports["mono_jiterp_get_simd_intrinsic"])(a0,a1);var _mono_jiterp_get_simd_opcode=Module["_mono_jiterp_get_simd_opcode"]=(a0,a1)=>(_mono_jiterp_get_simd_opcode=Module["_mono_jiterp_get_simd_opcode"]=wasmExports["mono_jiterp_get_simd_opcode"])(a0,a1);var _mono_jiterp_get_opcode_info=Module["_mono_jiterp_get_opcode_info"]=(a0,a1)=>(_mono_jiterp_get_opcode_info=Module["_mono_jiterp_get_opcode_info"]=wasmExports["mono_jiterp_get_opcode_info"])(a0,a1);var _mono_jiterp_placeholder_trace=Module["_mono_jiterp_placeholder_trace"]=(a0,a1,a2,a3)=>(_mono_jiterp_placeholder_trace=Module["_mono_jiterp_placeholder_trace"]=wasmExports["mono_jiterp_placeholder_trace"])(a0,a1,a2,a3);var _mono_jiterp_placeholder_jit_call=Module["_mono_jiterp_placeholder_jit_call"]=(a0,a1,a2,a3)=>(_mono_jiterp_placeholder_jit_call=Module["_mono_jiterp_placeholder_jit_call"]=wasmExports["mono_jiterp_placeholder_jit_call"])(a0,a1,a2,a3);var _mono_jiterp_get_interp_entry_func=Module["_mono_jiterp_get_interp_entry_func"]=a0=>(_mono_jiterp_get_interp_entry_func=Module["_mono_jiterp_get_interp_entry_func"]=wasmExports["mono_jiterp_get_interp_entry_func"])(a0);var _mono_jiterp_is_enabled=Module["_mono_jiterp_is_enabled"]=()=>(_mono_jiterp_is_enabled=Module["_mono_jiterp_is_enabled"]=wasmExports["mono_jiterp_is_enabled"])();var _mono_jiterp_encode_leb64_ref=Module["_mono_jiterp_encode_leb64_ref"]=(a0,a1,a2)=>(_mono_jiterp_encode_leb64_ref=Module["_mono_jiterp_encode_leb64_ref"]=wasmExports["mono_jiterp_encode_leb64_ref"])(a0,a1,a2);var _mono_jiterp_encode_leb52=Module["_mono_jiterp_encode_leb52"]=(a0,a1,a2)=>(_mono_jiterp_encode_leb52=Module["_mono_jiterp_encode_leb52"]=wasmExports["mono_jiterp_encode_leb52"])(a0,a1,a2);var _mono_jiterp_encode_leb_signed_boundary=Module["_mono_jiterp_encode_leb_signed_boundary"]=(a0,a1,a2)=>(_mono_jiterp_encode_leb_signed_boundary=Module["_mono_jiterp_encode_leb_signed_boundary"]=wasmExports["mono_jiterp_encode_leb_signed_boundary"])(a0,a1,a2);var _mono_jiterp_increase_entry_count=Module["_mono_jiterp_increase_entry_count"]=a0=>(_mono_jiterp_increase_entry_count=Module["_mono_jiterp_increase_entry_count"]=wasmExports["mono_jiterp_increase_entry_count"])(a0);var _mono_jiterp_object_unbox=Module["_mono_jiterp_object_unbox"]=a0=>(_mono_jiterp_object_unbox=Module["_mono_jiterp_object_unbox"]=wasmExports["mono_jiterp_object_unbox"])(a0);var _mono_jiterp_type_is_byref=Module["_mono_jiterp_type_is_byref"]=a0=>(_mono_jiterp_type_is_byref=Module["_mono_jiterp_type_is_byref"]=wasmExports["mono_jiterp_type_is_byref"])(a0);var _mono_jiterp_value_copy=Module["_mono_jiterp_value_copy"]=(a0,a1,a2)=>(_mono_jiterp_value_copy=Module["_mono_jiterp_value_copy"]=wasmExports["mono_jiterp_value_copy"])(a0,a1,a2);var _mono_jiterp_try_newobj_inlined=Module["_mono_jiterp_try_newobj_inlined"]=(a0,a1)=>(_mono_jiterp_try_newobj_inlined=Module["_mono_jiterp_try_newobj_inlined"]=wasmExports["mono_jiterp_try_newobj_inlined"])(a0,a1);var _mono_jiterp_try_newstr=Module["_mono_jiterp_try_newstr"]=(a0,a1)=>(_mono_jiterp_try_newstr=Module["_mono_jiterp_try_newstr"]=wasmExports["mono_jiterp_try_newstr"])(a0,a1);var _mono_jiterp_try_newarr=Module["_mono_jiterp_try_newarr"]=(a0,a1,a2)=>(_mono_jiterp_try_newarr=Module["_mono_jiterp_try_newarr"]=wasmExports["mono_jiterp_try_newarr"])(a0,a1,a2);var _mono_jiterp_gettype_ref=Module["_mono_jiterp_gettype_ref"]=(a0,a1)=>(_mono_jiterp_gettype_ref=Module["_mono_jiterp_gettype_ref"]=wasmExports["mono_jiterp_gettype_ref"])(a0,a1);var _mono_jiterp_has_parent_fast=Module["_mono_jiterp_has_parent_fast"]=(a0,a1)=>(_mono_jiterp_has_parent_fast=Module["_mono_jiterp_has_parent_fast"]=wasmExports["mono_jiterp_has_parent_fast"])(a0,a1);var _mono_jiterp_implements_interface=Module["_mono_jiterp_implements_interface"]=(a0,a1)=>(_mono_jiterp_implements_interface=Module["_mono_jiterp_implements_interface"]=wasmExports["mono_jiterp_implements_interface"])(a0,a1);var _mono_jiterp_is_special_interface=Module["_mono_jiterp_is_special_interface"]=a0=>(_mono_jiterp_is_special_interface=Module["_mono_jiterp_is_special_interface"]=wasmExports["mono_jiterp_is_special_interface"])(a0);var _mono_jiterp_implements_special_interface=Module["_mono_jiterp_implements_special_interface"]=(a0,a1,a2)=>(_mono_jiterp_implements_special_interface=Module["_mono_jiterp_implements_special_interface"]=wasmExports["mono_jiterp_implements_special_interface"])(a0,a1,a2);var _mono_jiterp_cast_v2=Module["_mono_jiterp_cast_v2"]=(a0,a1,a2,a3)=>(_mono_jiterp_cast_v2=Module["_mono_jiterp_cast_v2"]=wasmExports["mono_jiterp_cast_v2"])(a0,a1,a2,a3);var _mono_jiterp_localloc=Module["_mono_jiterp_localloc"]=(a0,a1,a2)=>(_mono_jiterp_localloc=Module["_mono_jiterp_localloc"]=wasmExports["mono_jiterp_localloc"])(a0,a1,a2);var _mono_jiterp_ldtsflda=Module["_mono_jiterp_ldtsflda"]=(a0,a1)=>(_mono_jiterp_ldtsflda=Module["_mono_jiterp_ldtsflda"]=wasmExports["mono_jiterp_ldtsflda"])(a0,a1);var _mono_jiterp_box_ref=Module["_mono_jiterp_box_ref"]=(a0,a1,a2,a3)=>(_mono_jiterp_box_ref=Module["_mono_jiterp_box_ref"]=wasmExports["mono_jiterp_box_ref"])(a0,a1,a2,a3);var _mono_jiterp_conv=Module["_mono_jiterp_conv"]=(a0,a1,a2)=>(_mono_jiterp_conv=Module["_mono_jiterp_conv"]=wasmExports["mono_jiterp_conv"])(a0,a1,a2);var _mono_jiterp_relop_fp=Module["_mono_jiterp_relop_fp"]=(a0,a1,a2)=>(_mono_jiterp_relop_fp=Module["_mono_jiterp_relop_fp"]=wasmExports["mono_jiterp_relop_fp"])(a0,a1,a2);var _mono_jiterp_get_size_of_stackval=Module["_mono_jiterp_get_size_of_stackval"]=()=>(_mono_jiterp_get_size_of_stackval=Module["_mono_jiterp_get_size_of_stackval"]=wasmExports["mono_jiterp_get_size_of_stackval"])();var _mono_jiterp_type_get_raw_value_size=Module["_mono_jiterp_type_get_raw_value_size"]=a0=>(_mono_jiterp_type_get_raw_value_size=Module["_mono_jiterp_type_get_raw_value_size"]=wasmExports["mono_jiterp_type_get_raw_value_size"])(a0);var _mono_jiterp_trace_bailout=Module["_mono_jiterp_trace_bailout"]=a0=>(_mono_jiterp_trace_bailout=Module["_mono_jiterp_trace_bailout"]=wasmExports["mono_jiterp_trace_bailout"])(a0);var _mono_jiterp_get_trace_bailout_count=Module["_mono_jiterp_get_trace_bailout_count"]=a0=>(_mono_jiterp_get_trace_bailout_count=Module["_mono_jiterp_get_trace_bailout_count"]=wasmExports["mono_jiterp_get_trace_bailout_count"])(a0);var _mono_jiterp_adjust_abort_count=Module["_mono_jiterp_adjust_abort_count"]=(a0,a1)=>(_mono_jiterp_adjust_abort_count=Module["_mono_jiterp_adjust_abort_count"]=wasmExports["mono_jiterp_adjust_abort_count"])(a0,a1);var _mono_jiterp_interp_entry_prologue=Module["_mono_jiterp_interp_entry_prologue"]=(a0,a1)=>(_mono_jiterp_interp_entry_prologue=Module["_mono_jiterp_interp_entry_prologue"]=wasmExports["mono_jiterp_interp_entry_prologue"])(a0,a1);var _mono_jiterp_get_opcode_value_table_entry=Module["_mono_jiterp_get_opcode_value_table_entry"]=a0=>(_mono_jiterp_get_opcode_value_table_entry=Module["_mono_jiterp_get_opcode_value_table_entry"]=wasmExports["mono_jiterp_get_opcode_value_table_entry"])(a0);var _mono_jiterp_get_trace_hit_count=Module["_mono_jiterp_get_trace_hit_count"]=a0=>(_mono_jiterp_get_trace_hit_count=Module["_mono_jiterp_get_trace_hit_count"]=wasmExports["mono_jiterp_get_trace_hit_count"])(a0);var _mono_jiterp_parse_option=Module["_mono_jiterp_parse_option"]=a0=>(_mono_jiterp_parse_option=Module["_mono_jiterp_parse_option"]=wasmExports["mono_jiterp_parse_option"])(a0);var _mono_jiterp_get_options_version=Module["_mono_jiterp_get_options_version"]=()=>(_mono_jiterp_get_options_version=Module["_mono_jiterp_get_options_version"]=wasmExports["mono_jiterp_get_options_version"])();var _mono_jiterp_get_options_as_json=Module["_mono_jiterp_get_options_as_json"]=()=>(_mono_jiterp_get_options_as_json=Module["_mono_jiterp_get_options_as_json"]=wasmExports["mono_jiterp_get_options_as_json"])();var _mono_jiterp_get_option_as_int=Module["_mono_jiterp_get_option_as_int"]=a0=>(_mono_jiterp_get_option_as_int=Module["_mono_jiterp_get_option_as_int"]=wasmExports["mono_jiterp_get_option_as_int"])(a0);var _mono_jiterp_object_has_component_size=Module["_mono_jiterp_object_has_component_size"]=a0=>(_mono_jiterp_object_has_component_size=Module["_mono_jiterp_object_has_component_size"]=wasmExports["mono_jiterp_object_has_component_size"])(a0);var _mono_jiterp_get_hashcode=Module["_mono_jiterp_get_hashcode"]=a0=>(_mono_jiterp_get_hashcode=Module["_mono_jiterp_get_hashcode"]=wasmExports["mono_jiterp_get_hashcode"])(a0);var _mono_jiterp_try_get_hashcode=Module["_mono_jiterp_try_get_hashcode"]=a0=>(_mono_jiterp_try_get_hashcode=Module["_mono_jiterp_try_get_hashcode"]=wasmExports["mono_jiterp_try_get_hashcode"])(a0);var _mono_jiterp_get_signature_has_this=Module["_mono_jiterp_get_signature_has_this"]=a0=>(_mono_jiterp_get_signature_has_this=Module["_mono_jiterp_get_signature_has_this"]=wasmExports["mono_jiterp_get_signature_has_this"])(a0);var _mono_jiterp_get_signature_return_type=Module["_mono_jiterp_get_signature_return_type"]=a0=>(_mono_jiterp_get_signature_return_type=Module["_mono_jiterp_get_signature_return_type"]=wasmExports["mono_jiterp_get_signature_return_type"])(a0);var _mono_jiterp_get_signature_param_count=Module["_mono_jiterp_get_signature_param_count"]=a0=>(_mono_jiterp_get_signature_param_count=Module["_mono_jiterp_get_signature_param_count"]=wasmExports["mono_jiterp_get_signature_param_count"])(a0);var _mono_jiterp_get_signature_params=Module["_mono_jiterp_get_signature_params"]=a0=>(_mono_jiterp_get_signature_params=Module["_mono_jiterp_get_signature_params"]=wasmExports["mono_jiterp_get_signature_params"])(a0);var _mono_jiterp_type_to_ldind=Module["_mono_jiterp_type_to_ldind"]=a0=>(_mono_jiterp_type_to_ldind=Module["_mono_jiterp_type_to_ldind"]=wasmExports["mono_jiterp_type_to_ldind"])(a0);var _mono_jiterp_type_to_stind=Module["_mono_jiterp_type_to_stind"]=a0=>(_mono_jiterp_type_to_stind=Module["_mono_jiterp_type_to_stind"]=wasmExports["mono_jiterp_type_to_stind"])(a0);var _mono_jiterp_get_array_rank=Module["_mono_jiterp_get_array_rank"]=(a0,a1)=>(_mono_jiterp_get_array_rank=Module["_mono_jiterp_get_array_rank"]=wasmExports["mono_jiterp_get_array_rank"])(a0,a1);var _mono_jiterp_get_array_element_size=Module["_mono_jiterp_get_array_element_size"]=(a0,a1)=>(_mono_jiterp_get_array_element_size=Module["_mono_jiterp_get_array_element_size"]=wasmExports["mono_jiterp_get_array_element_size"])(a0,a1);var _mono_jiterp_set_object_field=Module["_mono_jiterp_set_object_field"]=(a0,a1,a2,a3)=>(_mono_jiterp_set_object_field=Module["_mono_jiterp_set_object_field"]=wasmExports["mono_jiterp_set_object_field"])(a0,a1,a2,a3);var _mono_jiterp_debug_count=Module["_mono_jiterp_debug_count"]=()=>(_mono_jiterp_debug_count=Module["_mono_jiterp_debug_count"]=wasmExports["mono_jiterp_debug_count"])();var _mono_jiterp_stelem_ref=Module["_mono_jiterp_stelem_ref"]=(a0,a1,a2)=>(_mono_jiterp_stelem_ref=Module["_mono_jiterp_stelem_ref"]=wasmExports["mono_jiterp_stelem_ref"])(a0,a1,a2);var _mono_jiterp_get_member_offset=Module["_mono_jiterp_get_member_offset"]=a0=>(_mono_jiterp_get_member_offset=Module["_mono_jiterp_get_member_offset"]=wasmExports["mono_jiterp_get_member_offset"])(a0);var _mono_jiterp_get_counter=Module["_mono_jiterp_get_counter"]=a0=>(_mono_jiterp_get_counter=Module["_mono_jiterp_get_counter"]=wasmExports["mono_jiterp_get_counter"])(a0);var _mono_jiterp_modify_counter=Module["_mono_jiterp_modify_counter"]=(a0,a1)=>(_mono_jiterp_modify_counter=Module["_mono_jiterp_modify_counter"]=wasmExports["mono_jiterp_modify_counter"])(a0,a1);var _mono_jiterp_write_number_unaligned=Module["_mono_jiterp_write_number_unaligned"]=(a0,a1,a2)=>(_mono_jiterp_write_number_unaligned=Module["_mono_jiterp_write_number_unaligned"]=wasmExports["mono_jiterp_write_number_unaligned"])(a0,a1,a2);var _mono_jiterp_get_rejected_trace_count=Module["_mono_jiterp_get_rejected_trace_count"]=()=>(_mono_jiterp_get_rejected_trace_count=Module["_mono_jiterp_get_rejected_trace_count"]=wasmExports["mono_jiterp_get_rejected_trace_count"])();var _mono_jiterp_boost_back_branch_target=Module["_mono_jiterp_boost_back_branch_target"]=a0=>(_mono_jiterp_boost_back_branch_target=Module["_mono_jiterp_boost_back_branch_target"]=wasmExports["mono_jiterp_boost_back_branch_target"])(a0);var _mono_jiterp_is_imethod_var_address_taken=Module["_mono_jiterp_is_imethod_var_address_taken"]=(a0,a1)=>(_mono_jiterp_is_imethod_var_address_taken=Module["_mono_jiterp_is_imethod_var_address_taken"]=wasmExports["mono_jiterp_is_imethod_var_address_taken"])(a0,a1);var _mono_jiterp_initialize_table=Module["_mono_jiterp_initialize_table"]=(a0,a1,a2)=>(_mono_jiterp_initialize_table=Module["_mono_jiterp_initialize_table"]=wasmExports["mono_jiterp_initialize_table"])(a0,a1,a2);var _mono_jiterp_allocate_table_entry=Module["_mono_jiterp_allocate_table_entry"]=a0=>(_mono_jiterp_allocate_table_entry=Module["_mono_jiterp_allocate_table_entry"]=wasmExports["mono_jiterp_allocate_table_entry"])(a0);var _mono_jiterp_tlqueue_next=Module["_mono_jiterp_tlqueue_next"]=a0=>(_mono_jiterp_tlqueue_next=Module["_mono_jiterp_tlqueue_next"]=wasmExports["mono_jiterp_tlqueue_next"])(a0);var _mono_jiterp_tlqueue_add=Module["_mono_jiterp_tlqueue_add"]=(a0,a1)=>(_mono_jiterp_tlqueue_add=Module["_mono_jiterp_tlqueue_add"]=wasmExports["mono_jiterp_tlqueue_add"])(a0,a1);var _mono_jiterp_tlqueue_clear=Module["_mono_jiterp_tlqueue_clear"]=a0=>(_mono_jiterp_tlqueue_clear=Module["_mono_jiterp_tlqueue_clear"]=wasmExports["mono_jiterp_tlqueue_clear"])(a0);var _mono_interp_pgo_load_table=Module["_mono_interp_pgo_load_table"]=(a0,a1)=>(_mono_interp_pgo_load_table=Module["_mono_interp_pgo_load_table"]=wasmExports["mono_interp_pgo_load_table"])(a0,a1);var _mono_interp_pgo_save_table=Module["_mono_interp_pgo_save_table"]=(a0,a1)=>(_mono_interp_pgo_save_table=Module["_mono_interp_pgo_save_table"]=wasmExports["mono_interp_pgo_save_table"])(a0,a1);var _sbrk=Module["_sbrk"]=a0=>(_sbrk=Module["_sbrk"]=wasmExports["sbrk"])(a0);var _posix_memalign=Module["_posix_memalign"]=(a0,a1,a2)=>(_posix_memalign=Module["_posix_memalign"]=wasmExports["posix_memalign"])(a0,a1,a2);var _mono_background_exec=Module["_mono_background_exec"]=()=>(_mono_background_exec=Module["_mono_background_exec"]=wasmExports["mono_background_exec"])();var _mono_wasm_ds_exec=Module["_mono_wasm_ds_exec"]=()=>(_mono_wasm_ds_exec=Module["_mono_wasm_ds_exec"]=wasmExports["mono_wasm_ds_exec"])();var _htons=Module["_htons"]=a0=>(_htons=Module["_htons"]=wasmExports["htons"])(a0);var _mono_wasm_gc_lock=Module["_mono_wasm_gc_lock"]=()=>(_mono_wasm_gc_lock=Module["_mono_wasm_gc_lock"]=wasmExports["mono_wasm_gc_lock"])();var _mono_wasm_gc_unlock=Module["_mono_wasm_gc_unlock"]=()=>(_mono_wasm_gc_unlock=Module["_mono_wasm_gc_unlock"]=wasmExports["mono_wasm_gc_unlock"])();var _mono_print_method_from_ip=Module["_mono_print_method_from_ip"]=a0=>(_mono_print_method_from_ip=Module["_mono_print_method_from_ip"]=wasmExports["mono_print_method_from_ip"])(a0);var _mono_llvm_cpp_catch_exception=Module["_mono_llvm_cpp_catch_exception"]=(a0,a1,a2)=>(_mono_llvm_cpp_catch_exception=Module["_mono_llvm_cpp_catch_exception"]=wasmExports["mono_llvm_cpp_catch_exception"])(a0,a1,a2);var _mono_wasm_execute_timer=Module["_mono_wasm_execute_timer"]=()=>(_mono_wasm_execute_timer=Module["_mono_wasm_execute_timer"]=wasmExports["mono_wasm_execute_timer"])();var _mono_jiterp_begin_catch=Module["_mono_jiterp_begin_catch"]=a0=>(_mono_jiterp_begin_catch=Module["_mono_jiterp_begin_catch"]=wasmExports["mono_jiterp_begin_catch"])(a0);var _mono_jiterp_end_catch=Module["_mono_jiterp_end_catch"]=()=>(_mono_jiterp_end_catch=Module["_mono_jiterp_end_catch"]=wasmExports["mono_jiterp_end_catch"])();var _ntohs=Module["_ntohs"]=a0=>(_ntohs=Module["_ntohs"]=wasmExports["ntohs"])(a0);var _mono_wasm_load_icu_data=Module["_mono_wasm_load_icu_data"]=a0=>(_mono_wasm_load_icu_data=Module["_mono_wasm_load_icu_data"]=wasmExports["mono_wasm_load_icu_data"])(a0);var ___funcs_on_exit=()=>(___funcs_on_exit=wasmExports["__funcs_on_exit"])();var _htonl=a0=>(_htonl=wasmExports["htonl"])(a0);var _emscripten_builtin_memalign=(a0,a1)=>(_emscripten_builtin_memalign=wasmExports["emscripten_builtin_memalign"])(a0,a1);var _memalign=Module["_memalign"]=(a0,a1)=>(_memalign=Module["_memalign"]=wasmExports["memalign"])(a0,a1);var _setThrew=(a0,a1)=>(_setThrew=wasmExports["setThrew"])(a0,a1);var setTempRet0=a0=>(setTempRet0=wasmExports["setTempRet0"])(a0);var stackSave=Module["stackSave"]=()=>(stackSave=Module["stackSave"]=wasmExports["stackSave"])();var stackRestore=Module["stackRestore"]=a0=>(stackRestore=Module["stackRestore"]=wasmExports["stackRestore"])(a0);var stackAlloc=Module["stackAlloc"]=a0=>(stackAlloc=Module["stackAlloc"]=wasmExports["stackAlloc"])(a0);var ___cxa_decrement_exception_refcount=a0=>(___cxa_decrement_exception_refcount=wasmExports["__cxa_decrement_exception_refcount"])(a0);var ___cxa_increment_exception_refcount=a0=>(___cxa_increment_exception_refcount=wasmExports["__cxa_increment_exception_refcount"])(a0);var ___cxa_can_catch=(a0,a1,a2)=>(___cxa_can_catch=wasmExports["__cxa_can_catch"])(a0,a1,a2);var ___cxa_is_pointer_type=a0=>(___cxa_is_pointer_type=wasmExports["__cxa_is_pointer_type"])(a0);function invoke_vi(index,a1){var sp=stackSave();try{getWasmTableEntry(index)(a1)}catch(e){stackRestore(sp);if(e!==e+0)throw e;_setThrew(1,0)}}Module["addRunDependency"]=addRunDependency;Module["removeRunDependency"]=removeRunDependency;Module["FS_createPath"]=FS.createPath;Module["FS_createLazyFile"]=FS.createLazyFile;Module["FS_createDevice"]=FS.createDevice;Module["out"]=out;Module["err"]=err;Module["abort"]=abort;Module["wasmExports"]=wasmExports;Module["runtimeKeepalivePush"]=runtimeKeepalivePush;Module["runtimeKeepalivePop"]=runtimeKeepalivePop;Module["maybeExit"]=maybeExit;Module["ccall"]=ccall;Module["cwrap"]=cwrap;Module["addFunction"]=addFunction;Module["setValue"]=setValue;Module["getValue"]=getValue;Module["UTF8ArrayToString"]=UTF8ArrayToString;Module["UTF8ToString"]=UTF8ToString;Module["stringToUTF8Array"]=stringToUTF8Array;Module["lengthBytesUTF8"]=lengthBytesUTF8;Module["safeSetTimeout"]=safeSetTimeout;Module["FS_createPreloadedFile"]=FS.createPreloadedFile;Module["FS"]=FS;Module["FS_createDataFile"]=FS.createDataFile;Module["FS_unlink"]=FS.unlink;var calledRun;dependenciesFulfilled=function runCaller(){if(!calledRun)run();if(!calledRun)dependenciesFulfilled=runCaller};function run(){if(runDependencies>0){return}preRun();if(runDependencies>0){return}function doRun(){if(calledRun)return;calledRun=true;Module["calledRun"]=true;if(ABORT)return;initRuntime();readyPromiseResolve(Module);if(Module["onRuntimeInitialized"])Module["onRuntimeInitialized"]();postRun()}if(Module["setStatus"]){Module["setStatus"]("Running...");setTimeout(function(){setTimeout(function(){Module["setStatus"]("")},1);doRun()},1)}else{doRun()}}if(Module["preInit"]){if(typeof Module["preInit"]=="function")Module["preInit"]=[Module["preInit"]];while(Module["preInit"].length>0){Module["preInit"].pop()()}}run(); + + + return moduleArg.ready +} +); +})(); +export default createDotnetRuntime; +var fetch = fetch || undefined; var require = require || undefined; var __dirname = __dirname || ''; var _nativeModuleLoaded = false; diff --git a/OnProfNext.Client/bin/Debug/net10.0/dotnet.native.wasm b/OnProfNext.Client/bin/Debug/net10.0/dotnet.native.wasm new file mode 100644 index 0000000..0adfaff Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/dotnet.native.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/dotnet.runtime.js b/OnProfNext.Client/bin/Debug/net10.0/dotnet.runtime.js new file mode 100644 index 0000000..ffa78eb --- /dev/null +++ b/OnProfNext.Client/bin/Debug/net10.0/dotnet.runtime.js @@ -0,0 +1,4 @@ +//! Licensed to the .NET Foundation under one or more agreements. +//! The .NET Foundation licenses this file to you under the MIT license. +var e="10.0.5",t="Release",n=!1;const r=[[!0,"mono_wasm_register_root","number",["number","number","string"]],[!0,"mono_wasm_deregister_root",null,["number"]],[!0,"mono_wasm_string_get_data_ref",null,["number","number","number","number"]],[!0,"mono_wasm_set_is_debugger_attached","void",["bool"]],[!0,"mono_wasm_send_dbg_command","bool",["number","number","number","number","number"]],[!0,"mono_wasm_send_dbg_command_with_parms","bool",["number","number","number","number","number","number","string"]],[!0,"mono_wasm_setenv",null,["string","string"]],[!0,"mono_wasm_parse_runtime_options",null,["number","number"]],[!0,"mono_wasm_strdup","number",["string"]],[!0,"mono_background_exec",null,[]],[!0,"mono_wasm_ds_exec",null,[]],[!0,"mono_wasm_execute_timer",null,[]],[!0,"mono_wasm_load_icu_data","number",["number"]],[!1,"mono_wasm_add_assembly","number",["string","number","number"]],[!0,"mono_wasm_add_satellite_assembly","void",["string","string","number","number"]],[!1,"mono_wasm_load_runtime",null,["number","number","number","number"]],[!0,"mono_wasm_change_debugger_log_level","void",["number"]],[!0,"mono_wasm_assembly_load","number",["string"]],[!0,"mono_wasm_assembly_find_class","number",["number","string","string"]],[!0,"mono_wasm_assembly_find_method","number",["number","string","number"]],[!0,"mono_wasm_string_from_utf16_ref","void",["number","number","number"]],[!0,"mono_wasm_intern_string_ref","void",["number"]],[!1,"mono_wasm_exit","void",["number"]],[!0,"mono_wasm_getenv","number",["string"]],[!0,"mono_wasm_set_main_args","void",["number","number"]],[()=>!ct.emscriptenBuildOptions.enableAotProfiler,"mono_wasm_profiler_init_aot","void",["string"]],[()=>!ct.emscriptenBuildOptions.enableDevToolsProfiler,"mono_wasm_profiler_init_browser_devtools","void",["string"]],[()=>!ct.emscriptenBuildOptions.enableLogProfiler,"mono_wasm_profiler_init_log","void",["string"]],[!1,"mono_wasm_exec_regression","number",["number","string"]],[!1,"mono_wasm_invoke_jsexport","void",["number","number"]],[!0,"mono_wasm_write_managed_pointer_unsafe","void",["number","number"]],[!0,"mono_wasm_copy_managed_pointer","void",["number","number"]],[!0,"mono_wasm_i52_to_f64","number",["number","number"]],[!0,"mono_wasm_u52_to_f64","number",["number","number"]],[!0,"mono_wasm_f64_to_i52","number",["number","number"]],[!0,"mono_wasm_f64_to_u52","number",["number","number"]],[!0,"mono_wasm_method_get_name","number",["number"]],[!0,"mono_wasm_method_get_name_ex","number",["number"]],[!0,"mono_wasm_method_get_full_name","number",["number"]],[!0,"mono_wasm_gc_lock","void",[]],[!0,"mono_wasm_gc_unlock","void",[]],[!0,"mono_wasm_get_i32_unaligned","number",["number"]],[!0,"mono_wasm_get_f32_unaligned","number",["number"]],[!0,"mono_wasm_get_f64_unaligned","number",["number"]],[!0,"mono_wasm_read_as_bool_or_null_unsafe","number",["number"]],[!0,"mono_jiterp_trace_bailout","void",["number"]],[!0,"mono_jiterp_get_trace_bailout_count","number",["number"]],[!0,"mono_jiterp_value_copy","void",["number","number","number"]],[!0,"mono_jiterp_get_member_offset","number",["number"]],[!0,"mono_jiterp_encode_leb52","number",["number","number","number"]],[!0,"mono_jiterp_encode_leb64_ref","number",["number","number","number"]],[!0,"mono_jiterp_encode_leb_signed_boundary","number",["number","number","number"]],[!0,"mono_jiterp_write_number_unaligned","void",["number","number","number"]],[!0,"mono_jiterp_type_is_byref","number",["number"]],[!0,"mono_jiterp_get_size_of_stackval","number",[]],[!0,"mono_jiterp_parse_option","number",["string"]],[!0,"mono_jiterp_get_options_as_json","number",[]],[!0,"mono_jiterp_get_option_as_int","number",["string"]],[!0,"mono_jiterp_get_options_version","number",[]],[!0,"mono_jiterp_adjust_abort_count","number",["number","number"]],[!0,"mono_jiterp_register_jit_call_thunk","void",["number","number"]],[!0,"mono_jiterp_type_get_raw_value_size","number",["number"]],[!0,"mono_jiterp_get_signature_has_this","number",["number"]],[!0,"mono_jiterp_get_signature_return_type","number",["number"]],[!0,"mono_jiterp_get_signature_param_count","number",["number"]],[!0,"mono_jiterp_get_signature_params","number",["number"]],[!0,"mono_jiterp_type_to_ldind","number",["number"]],[!0,"mono_jiterp_type_to_stind","number",["number"]],[!0,"mono_jiterp_imethod_to_ftnptr","number",["number"]],[!0,"mono_jiterp_debug_count","number",[]],[!0,"mono_jiterp_get_trace_hit_count","number",["number"]],[!0,"mono_jiterp_get_polling_required_address","number",[]],[!0,"mono_jiterp_get_rejected_trace_count","number",[]],[!0,"mono_jiterp_boost_back_branch_target","void",["number"]],[!0,"mono_jiterp_is_imethod_var_address_taken","number",["number","number"]],[!0,"mono_jiterp_get_opcode_value_table_entry","number",["number"]],[!0,"mono_jiterp_get_simd_intrinsic","number",["number","number"]],[!0,"mono_jiterp_get_simd_opcode","number",["number","number"]],[!0,"mono_jiterp_get_arg_offset","number",["number","number","number"]],[!0,"mono_jiterp_get_opcode_info","number",["number","number"]],[!0,"mono_wasm_is_zero_page_reserved","number",[]],[!0,"mono_jiterp_is_special_interface","number",["number"]],[!0,"mono_jiterp_initialize_table","void",["number","number","number"]],[!0,"mono_jiterp_allocate_table_entry","number",["number"]],[!0,"mono_jiterp_get_interp_entry_func","number",["number"]],[!0,"mono_jiterp_get_counter","number",["number"]],[!0,"mono_jiterp_modify_counter","number",["number","number"]],[!0,"mono_jiterp_tlqueue_next","number",["number"]],[!0,"mono_jiterp_tlqueue_add","number",["number","number"]],[!0,"mono_jiterp_tlqueue_clear","void",["number"]],[!0,"mono_jiterp_begin_catch","void",["number"]],[!0,"mono_jiterp_end_catch","void",[]],[!0,"mono_interp_pgo_load_table","number",["number","number"]],[!0,"mono_interp_pgo_save_table","number",["number","number"]],[()=>!ct.emscriptenBuildOptions.enableEventPipe&&!ct.emscriptenBuildOptions.enableDevToolsProfiler,"mono_jiterp_prof_enter","void",["number","number"]],[()=>!ct.emscriptenBuildOptions.enableEventPipe&&!ct.emscriptenBuildOptions.enableDevToolsProfiler,"mono_jiterp_prof_samplepoint","void",["number","number"]],[()=>!ct.emscriptenBuildOptions.enableEventPipe&&!ct.emscriptenBuildOptions.enableDevToolsProfiler,"mono_jiterp_prof_leave","void",["number","number"]]],o={},s=o,a=o,i=["void","number",null];function c(e,t,n,r){let o=void 0===r&&i.indexOf(t)>=0&&(!n||n.every((e=>i.indexOf(e)>=0)))&&Ke.wasmExports?Ke.wasmExports[e]:void 0;if(o&&n&&o.length!==n.length&&(He(`argument count mismatch for cwrap ${e}`),o=void 0),"function"!=typeof o&&(o=Ke.cwrap(e,t,n,r)),"function"!=typeof o)throw new Error(`cwrap ${e} not found or not a function`);return o}const l=0,p=0,u=0,d=BigInt("9223372036854775807"),f=BigInt("-9223372036854775808");function _(e){return Ke._malloc(e)>>>0}function m(e){Ke._free(e)}function h(e,t,n){if(!Number.isSafeInteger(e))throw new Error(`Assert failed: Value is not an integer: ${e} (${typeof e})`);if(!(e>=t&&e<=n))throw new Error(`Assert failed: Overflow: value ${e} is out of ${t} ${n} range`)}function g(e,t){K().fill(0,e,e+t)}function b(e,t){const n=!!t;"number"==typeof t&&h(t,0,1),Ke.HEAP32[e>>>2]=n?1:0}function y(e,t){const n=!!t;"number"==typeof t&&h(t,0,1),Ke.HEAPU8[e]=n?1:0}function w(e,t){h(t,0,255),Ke.HEAPU8[e]=t}function k(e,t){h(t,0,65535),Ke.HEAPU16[e>>>1]=t}function S(e,t){h(t,0,4294967295),Ke.HEAPU32[e>>>2]=t}function v(e,t){h(t,-128,127),Ke.HEAP8[e]=t}function U(e,t){h(t,-32768,32767),Ke.HEAP16[e>>>1]=t}function T(e,t){h(t,-2147483648,2147483647),Ke.HEAP32[e>>>2]=t}function E(e){if(0!==e)switch(e){case 1:throw new Error("value was not an integer");case 2:throw new Error("value out of range");default:throw new Error("unknown internal error")}}function x(e,t){if(!Number.isSafeInteger(t))throw new Error(`Assert failed: Value is not a safe integer: ${t} (${typeof t})`);E(o.mono_wasm_f64_to_i52(e,t))}function I(e,t){if(!Number.isSafeInteger(t))throw new Error(`Assert failed: Value is not a safe integer: ${t} (${typeof t})`);if(!(t>=0))throw new Error("Assert failed: Can't convert negative Number into UInt64");E(o.mono_wasm_f64_to_u52(e,t))}function A(e,t){if("bigint"!=typeof t)throw new Error(`Assert failed: Value is not an bigint: ${t} (${typeof t})`);if(!(t>=f&&t<=d))throw new Error(`Assert failed: Overflow: value ${t} is out of ${f} ${d} range`);Ke.HEAP64[e>>>3]=t}function j(e,t){if("number"!=typeof t)throw new Error(`Assert failed: Value is not a Number: ${t} (${typeof t})`);Ke.HEAPF32[e>>>2]=t}function $(e,t){if("number"!=typeof t)throw new Error(`Assert failed: Value is not a Number: ${t} (${typeof t})`);Ke.HEAPF64[e>>>3]=t}let L=!0;function R(e){const t=Ke.HEAPU32[e>>>2];return t>1&&L&&(L=!1,We(`getB32: value at ${e} is not a boolean, but a number: ${t}`)),!!t}function B(e){return!!Ke.HEAPU8[e]}function N(e){return Ke.HEAPU8[e]}function O(e){return Ke.HEAPU16[e>>>1]}function C(e){return Ke.HEAPU32[e>>>2]}function D(e,t){return e[t>>>2]}function F(e){return o.mono_wasm_get_i32_unaligned(e)}function P(e){return o.mono_wasm_get_i32_unaligned(e)>>>0}function M(e){return Ke.HEAP8[e]}function z(e){return Ke.HEAP16[e>>>1]}function V(e){return Ke.HEAP32[e>>>2]}function W(e){const t=o.mono_wasm_i52_to_f64(e,ct._i52_error_scratch_buffer);return E(V(ct._i52_error_scratch_buffer)),t}function H(e){const t=o.mono_wasm_u52_to_f64(e,ct._i52_error_scratch_buffer);return E(V(ct._i52_error_scratch_buffer)),t}function q(e){return Ke.HEAP64[e>>>3]}function G(e){return Ke.HEAPF32[e>>>2]}function J(e){return Ke.HEAPF64[e>>>3]}function X(){return Ke.HEAP8}function Q(){return Ke.HEAP16}function Y(){return Ke.HEAP32}function Z(){return Ke.HEAP64}function K(){return Ke.HEAPU8}function ee(){return Ke.HEAPU16}function te(){return Ke.HEAPU32}function ne(){return Ke.HEAPF32}function re(){return Ke.HEAPF64}function oe(e,t){return e>>>t}let se=!1;function ae(){if(se)throw new Error("GC is already locked");se=!0}function ie(){if(!se)throw new Error("GC is not locked");se=!1}const ce=8192;let le=null,pe=null,ue=0;const de=[],fe=[];function _e(e,t){if(e<=0)throw new Error("capacity >= 1");const n=4*(e|=0),r=_(n);if(r%4!=0)throw new Error("Malloc returned an unaligned offset");return g(r,n),new me(r,e,!0,t)}class me{constructor(e,t,n,r){const s=4*t;this.__offset=e,this.__offset32=e>>>2,this.__count=t,this.length=t,this.__handle=o.mono_wasm_register_root(e,s,r||"noname"),this.__ownsAllocation=n}_throw_index_out_of_range(){throw new Error("index out of range")}_check_in_range(e){(e>=this.__count||e<0)&&this._throw_index_out_of_range()}get_address(e){return this._check_in_range(e),this.__offset+4*e}get_address_32(e){return this._check_in_range(e),this.__offset32+e}get(e){this._check_in_range(e);const t=this.get_address_32(e);return te()[t]}set(e,t){const n=this.get_address(e);return o.mono_wasm_write_managed_pointer_unsafe(n,t),t}copy_value_from_address(e,t){const n=this.get_address(e);o.mono_wasm_copy_managed_pointer(n,t)}_unsafe_get(e){return te()[this.__offset32+e]}_unsafe_set(e,t){const n=this.__offset+e;o.mono_wasm_write_managed_pointer_unsafe(n,t)}clear(){this.__offset&&g(this.__offset,4*this.__count)}release(){this.__offset&&this.__ownsAllocation&&(o.mono_wasm_deregister_root(this.__offset),g(this.__offset,4*this.__count),m(this.__offset)),this.__handle=this.__offset=this.__count=this.__offset32=0}toString(){return`[root buffer @${this.get_address(0)}, size ${this.__count} ]`}}class he{constructor(e,t){this.__buffer=e,this.__index=t}get_address(){return this.__buffer.get_address(this.__index)}get_address_32(){return this.__buffer.get_address_32(this.__index)}get address(){return this.__buffer.get_address(this.__index)}get(){return this.__buffer._unsafe_get(this.__index)}set(e){const t=this.__buffer.get_address(this.__index);return o.mono_wasm_write_managed_pointer_unsafe(t,e),e}copy_from(e){const t=e.address,n=this.address;o.mono_wasm_copy_managed_pointer(n,t)}copy_to(e){const t=this.address,n=e.address;o.mono_wasm_copy_managed_pointer(n,t)}copy_from_address(e){const t=this.address;o.mono_wasm_copy_managed_pointer(t,e)}copy_to_address(e){const t=this.address;o.mono_wasm_copy_managed_pointer(e,t)}get value(){return this.get()}set value(e){this.set(e)}valueOf(){throw new Error("Implicit conversion of roots to pointers is no longer supported. Use .value or .address as appropriate")}clear(){const e=this.__buffer.get_address_32(this.__index);te()[e]=0}release(){if(!this.__buffer)throw new Error("No buffer");var e;de.length>128?(void 0!==(e=this.__index)&&(le.set(e,0),pe[ue]=e,ue++),this.__buffer=null,this.__index=0):(this.set(0),de.push(this))}toString(){return`[root @${this.address}]`}}class ge{constructor(e){this.__external_address=0,this.__external_address_32=0,this._set_address(e)}_set_address(e){this.__external_address=e,this.__external_address_32=e>>>2}get address(){return this.__external_address}get_address(){return this.__external_address}get_address_32(){return this.__external_address_32}get(){return te()[this.__external_address_32]}set(e){return o.mono_wasm_write_managed_pointer_unsafe(this.__external_address,e),e}copy_from(e){const t=e.address,n=this.__external_address;o.mono_wasm_copy_managed_pointer(n,t)}copy_to(e){const t=this.__external_address,n=e.address;o.mono_wasm_copy_managed_pointer(n,t)}copy_from_address(e){const t=this.__external_address;o.mono_wasm_copy_managed_pointer(t,e)}copy_to_address(e){const t=this.__external_address;o.mono_wasm_copy_managed_pointer(e,t)}get value(){return this.get()}set value(e){this.set(e)}valueOf(){throw new Error("Implicit conversion of roots to pointers is no longer supported. Use .value or .address as appropriate")}clear(){te()[this.__external_address>>>2]=0}release(){fe.length<128&&fe.push(this)}toString(){return`[external root @${this.address}]`}}const be=new Map,ye="";let we;const ke=new Map;let Se,ve,Ue,Te,Ee,xe=0,Ie=null,Ae=0;function je(e){if(void 0===Te){const t=Ke.lengthBytesUTF8(e),n=new Uint8Array(t);return Ke.stringToUTF8Array(e,n,0,t),n}return Te.encode(e)}function $e(e){const t=Ke.lengthBytesUTF8(e)+1,n=_(t),r=K().subarray(n,n+t);return Ke.stringToUTF8Array(e,r,0,t),r[t-1]=0,n}function Le(e){const t=K();return function(e,t,n){const r=t+n;let o=t;for(;e[o]&&!(o>=r);)++o;if(o-t<=16)return Ke.UTF8ArrayToString(e,t,n);if(void 0===Ue)return Ke.UTF8ArrayToString(e,t,n);const s=Fe(e,t,o);return Ue.decode(s)}(t,e,t.length-e)}function Re(e,t){if(Se){const n=Fe(K(),e,t);return Se.decode(n)}return function(e,t){let n="";const r=ee();for(let o=e;o>>1];n+=String.fromCharCode(e)}return n}(e,t)}function Be(e,t,n){const r=ee(),o=n.length;for(let c=0;c>>1]=i,!((e+=2)>=t));c++);var s,a,i}function Ne(e){const t=2*(e.length+1),n=_(t);return g(n,2*e.length),Be(n,n+t,e),n}function Oe(e){if(e.value===p)return null;const t=we+0,n=we+4,r=we+8;let s;o.mono_wasm_string_get_data_ref(e.address,t,n,r);const a=te(),i=D(a,n),c=D(a,t),l=D(a,r);if(l&&(s=ke.get(e.value)),void 0===s&&(i&&c?(s=Re(c,c+i),l&&ke.set(e.value,s)):s=ye),void 0===s)throw new Error(`internal error when decoding string at location ${e.value}`);return s}function Ce(e,t){let n;if("symbol"==typeof e?(n=e.description,"string"!=typeof n&&(n=Symbol.keyFor(e)),"string"!=typeof n&&(n="")):"string"==typeof e&&(n=e),"string"!=typeof n)throw new Error(`Argument to stringToInternedMonoStringRoot must be a string but was ${e}`);if(0===n.length&&xe)return void t.set(xe);const r=be.get(n);r?t.set(r):(De(n,t),function(e,t,n){if(!t.value)throw new Error("null pointer passed to _store_string_in_intern_table");Ae>=8192&&(Ie=null),Ie||(Ie=_e(8192,"interned strings"),Ae=0);const r=Ie,s=Ae++;if(o.mono_wasm_intern_string_ref(t.address),!t.value)throw new Error("mono_wasm_intern_string_ref produced a null pointer");be.set(e,t.value),ke.set(t.value,e),0!==e.length||xe||(xe=t.value),r.copy_value_from_address(s,t.address)}(n,t))}function De(e,t){const n=2*(e.length+1),r=_(n);Be(r,r+n,e),o.mono_wasm_string_from_utf16_ref(r,e.length,t.address),m(r)}function Fe(e,t,n){return e.buffer,e.subarray(t,n)}function Pe(e){if(e===p)return null;Ee.value=e;const t=Oe(Ee);return Ee.value=p,t}let Me="MONO_WASM: ";function ze(e){if(ct.diagnosticTracing){const t="function"==typeof e?e():e;console.debug(Me+t)}}function Ve(e,...t){console.info(Me+e,...t)}function We(e,...t){console.warn(Me+e,...t)}function He(e,...t){if(t&&t.length>0&&t[0]&&"object"==typeof t[0]){if(t[0].silent)return;if(t[0].toString)return void console.error(Me+e,t[0].toString())}console.error(Me+e,...t)}const qe=new Map;let Ge;const Je=[];function Xe(e){try{if(Ye(),0==qe.size)return e;const t=e;for(let n=0;n{const n=t.find((e=>"object"==typeof e&&void 0!==e.replaceSection));if(void 0===n)return e;const r=n.funcNum,o=n.replaceSection,s=qe.get(Number(r));return void 0===s?e:e.replace(o,`${s} (${o})`)}));if(r!==t)return r}return t}catch(t){return console.debug(`failed to symbolicate: ${t}`),e}}function Qe(e){let t;return t="string"==typeof e?e:null==e||void 0===e.stack?(new Error).stack+"":e.stack+"",Xe(t)}function Ye(){if(!Ge)return;Je.push(/at (?[^:()]+:wasm-function\[(?\d+)\]:0x[a-fA-F\d]+)((?![^)a-fA-F\d])|$)/),Je.push(/(?:WASM \[[\da-zA-Z]+\], (?function #(?[\d]+) \(''\)))/),Je.push(/(?[a-z]+:\/\/[^ )]*:wasm-function\[(?\d+)\]:0x[a-fA-F\d]+)/),Je.push(/(?<[^ >]+>[.:]wasm-function\[(?[0-9]+)\])/);const e=Ge;Ge=void 0;try{e.split(/[\r\n]/).forEach((e=>{const t=e.split(/:/);t.length<2||(t[1]=t.splice(1).join(":"),qe.set(Number(t[0]),t[1]))})),lt.diagnosticTracing&&ze(`Loaded ${qe.size} symbols`)}catch(e){We(`Failed to load symbol map: ${e}`)}}function Ze(){return Ye(),[...qe.values()]}let Ke,et;const tt="object"==typeof process&&"object"==typeof process.versions&&"string"==typeof process.versions.node,nt="function"==typeof importScripts,rt=nt&&"undefined"!=typeof dotnetSidecar,ot=nt&&!rt,st="object"==typeof window||nt&&!tt,at=!st&&!tt;let it=null,ct=null,lt=null,pt=null,ut=!1;function dt(e,t){ct.emscriptenBuildOptions=t,e.isPThread,ct.quit=e.quit_,ct.ExitStatus=e.ExitStatus,ct.getMemory=e.getMemory,ct.getWasmIndirectFunctionTable=e.getWasmIndirectFunctionTable,ct.updateMemoryViews=e.updateMemoryViews}function ft(e){if(ut)throw new Error("Runtime module already loaded");ut=!0,Ke=e.module,et=e.internal,ct=e.runtimeHelpers,lt=e.loaderHelpers,pt=e.diagnosticHelpers,it=e.api;const t={gitHash:"a612c2a1056fe3265387ae3ff7c94eba1505caf9",coreAssetsInMemory:_t(),allAssetsInMemory:_t(),dotnetReady:_t(),afterInstantiateWasm:_t(),beforePreInit:_t(),afterPreInit:_t(),afterPreRun:_t(),beforeOnRuntimeInitialized:_t(),afterMonoStarted:_t(),afterDeputyReady:_t(),afterIOStarted:_t(),afterOnRuntimeInitialized:_t(),afterPostRun:_t(),nativeAbort:e=>{throw e||new Error("abort")},nativeExit:e=>{throw new Error("exit:"+e)}};Object.assign(ct,t),Object.assign(e.module.config,{}),Object.assign(e.api,{Module:e.module,...e.module}),Object.assign(e.api,{INTERNAL:e.internal})}function _t(e,t){return lt.createPromiseController(e,t)}function mt(e,t){if(e)return;const n="Assert failed: "+("function"==typeof t?t():t),r=new Error(n);He(n,r),ct.nativeAbort(r)}function ht(e,t,n){const r=function(e,t,n){let r,o=0;r=e.length-o;const s={read:function(){if(o>=r)return null;const t=e[o];return o+=1,t}};return Object.defineProperty(s,"eof",{get:function(){return o>=r},configurable:!0,enumerable:!0}),s}(e);let o="",s=0,a=0,i=0,c=0,l=0,p=0;for(;s=r.read(),a=r.read(),i=r.read(),null!==s;)null===a&&(a=0,l+=1),null===i&&(i=0,l+=1),p=s<<16|a<<8|i,c=(16777215&p)>>18,o+=gt[c],c=(262143&p)>>12,o+=gt[c],l<2&&(c=(4095&p)>>6,o+=gt[c]),2===l?o+="==":1===l?o+="=":(c=63&p,o+=gt[c]);return o}const gt=["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","+","/"],bt=new Map;bt.remove=function(e){const t=this.get(e);return this.delete(e),t};let yt,wt,kt,St={},vt=0,Ut=-1;function mono_wasm_fire_debugger_agent_message_with_data_to_pause(e){console.assert(!0,`mono_wasm_fire_debugger_agent_message_with_data ${e}`);debugger}function Tt(e){e.length>Ut&&(yt&&m(yt),Ut=Math.max(e.length,Ut,256),yt=_(Ut));const t=atob(e),n=K();for(let e=0;ee.value)),e;if(void 0===t.dimensionsDetails||1===t.dimensionsDetails.length)return e=t.items.map((e=>e.value)),e}const n={};return Object.keys(t).forEach((e=>{const r=t[e];void 0!==r.get?Object.defineProperty(n,r.name,{get:()=>xt(r.get.id,r.get.commandSet,r.get.command,r.get.buffer),set:function(e){return Et(r.set.id,r.set.commandSet,r.set.command,r.set.buffer,r.set.length,r.set.valtype,e),!0}}):void 0!==r.set?Object.defineProperty(n,r.name,{get:()=>r.value,set:function(e){return Et(r.set.id,r.set.commandSet,r.set.command,r.set.buffer,r.set.length,r.set.valtype,e),!0}}):n[r.name]=r.value})),n}(t,n);const o=null!=e.arguments?e.arguments.map((e=>JSON.stringify(e.value))):[],s=`const fn = ${e.functionDeclaration}; return fn.apply(proxy, [${o}]);`,a=new Function("proxy",s)(r);if(void 0===a)return{type:"undefined"};if(Object(a)!==a)return"object"==typeof a&&null==a?{type:typeof a,subtype:`${a}`,value:null}:{type:typeof a,description:`${a}`,value:`${a}`};if(e.returnByValue&&null==a.subtype)return{type:"object",value:a};if(Object.getPrototypeOf(a)==Array.prototype){const e=Ot(a);return{type:"object",subtype:"array",className:"Array",description:`Array(${a.length})`,objectId:e}}return void 0!==a.value||void 0!==a.subtype?a:a==r?{type:"object",className:"Object",description:"Object",objectId:t}:{type:"object",className:"Object",description:"Object",objectId:Ot(a)}}function Nt(e,t={}){return function(e,t){if(!(e in St))throw new Error(`Could not find any object with id ${e}`);const n=St[e],r=Object.getOwnPropertyDescriptors(n);t.accessorPropertiesOnly&&Object.keys(r).forEach((e=>{void 0===r[e].get&&Reflect.deleteProperty(r,e)}));const o=[];return Object.keys(r).forEach((e=>{let t;const n=r[e];t="object"==typeof n.value?Object.assign({name:e},n):void 0!==n.value?{name:e,value:Object.assign({type:typeof n.value,description:""+n.value},n)}:void 0!==n.get?{name:e,get:{className:"Function",description:`get ${e} () {}`,type:"function"}}:{name:e,value:{type:"symbol",value:"",description:""}},o.push(t)})),{__value_as_json_string__:JSON.stringify(o)}}(`dotnet:cfo_res:${e}`,t)}function Ot(e){const t="dotnet:cfo_res:"+vt++;return St[t]=e,t}function Ct(e){e in St&&delete St[e]}let Dt=!1;function Ft(){if(Dt)return globalThis.performance.now()}function Pt(e,t,n){if(Dt&&e){const r=st?{start:e}:{startTime:e},o=n?`${t}${n} `:t;globalThis.performance.measure(o,r)}}const Mt=new Map;function zt(e,t,n){if(0===t||1===t||2===t||26===t)return;let r,o,s,a;o=to(Cn(e)),s=to(Dn(e)),a=to(Fn(e));const i=On(e);r=Vt(i),19===t&&(t=i);const c=Vt(t),l=Cn(e),p=n*In;return e=>c(e+p,l,r,o,s,a)}function Vt(e){if(0===e||1===e)return;const t=vn.get(e);return t&&"function"==typeof t||mt(!1,`ERR41: Unknown converter for type ${e}. ${Kr}`),t}function Wt(e){return 0==zn(e)?null:function(e){return e||mt(!1,"Null arg"),B(e)}(e)}function Ht(e){return 0==zn(e)?null:function(e){return e||mt(!1,"Null arg"),N(e)}(e)}function qt(e){return 0==zn(e)?null:function(e){return e||mt(!1,"Null arg"),O(e)}(e)}function Gt(e){return 0==zn(e)?null:function(e){return e||mt(!1,"Null arg"),z(e)}(e)}function Jt(e){return 0==zn(e)?null:function(e){return e||mt(!1,"Null arg"),V(e)}(e)}function Xt(e){return 0==zn(e)?null:function(e){return e||mt(!1,"Null arg"),J(e)}(e)}function Qt(e){return 0==zn(e)?null:function(e){return e||mt(!1,"Null arg"),q(e)}(e)}function Yt(e){return 0==zn(e)?null:function(e){return e||mt(!1,"Null arg"),G(e)}(e)}function Zt(e){return 0==zn(e)?null:function(e){return e||mt(!1,"Null arg"),J(e)}(e)}function Kt(e){return 0==zn(e)?null:Hn(e)}function en(){return null}function tn(e){return 0===zn(e)?null:function(e){e||mt(!1,"Null arg");const t=J(e);return new Date(t)}(e)}function nn(e,t,n,r,o,s){if(0===zn(e))return null;const a=Zn(e);let i=qr(a);return null==i&&(i=(e,t,i)=>function(e,t,n,r,o,s,a,i){lt.assert_runtime_running();const c=Ke.stackSave();try{const c=$n(6),l=Ln(c,2);if(Wn(l,14),Kn(l,e),s&&s(Ln(c,3),t),a&&a(Ln(c,4),n),i&&i(Ln(c,5),r),kn(yn.CallDelegate,c),o)return o(Ln(c,1))}finally{lt.is_runtime_running()&&Ke.stackRestore(c)}}(a,e,t,i,n,r,o,s),i.dispose=()=>{i.isDisposed||(i.isDisposed=!0,Vr(i,a))},i.isDisposed=!1,zr(i,a)),i}class rn{constructor(e,t){this.promise=e,this.resolve_or_reject=t}}function on(e,t,n){const r=zn(e);30==r&&mt(!1,"Unexpected Task type: TaskPreCreated");const o=cn(e,r,n);if(!1!==o)return o;const s=Qn(e),a=ln(n);return function(e,t){hr(),xr[0-t]=e,Object.isExtensible(e)&&(e[Cr]=t)}(a,s),a.promise}function sn(e,t,n){const r=ln(n);return Yn(e,Pr(r)),Wn(e,30),r.promise}function an(e,t,n){const r=Ln(e,1),o=zn(r);if(30===o)return n;Mr(Pr(n));const s=cn(r,o,t);return!1===s&&mt(!1,`Expected synchronous result, got: ${o}`),s}function cn(e,t,n){if(0===t)return null;if(29===t)return Promise.reject(un(e));if(28===t){const t=Vn(e);if(1===t)return Promise.resolve();Wn(e,t),n||(n=vn.get(t)),n||mt(!1,`Unknown sub_converter for type ${t}. ${Kr}`);const r=n(e);return Promise.resolve(r)}return!1}function ln(e){const{promise:t,promise_control:n}=lt.createPromiseController();return new rn(t,((t,r,o)=>{if(29===t){const e=un(o);n.reject(e)}else if(28===t){const t=zn(o);if(1===t)n.resolve(void 0);else{e||(e=vn.get(t)),e||mt(!1,`Unknown sub_converter for type ${t}. ${Kr}`);const r=e(o);n.resolve(r)}}else mt(!1,`Unexpected type ${t}`);Mr(r)}))}function pn(e){if(0==zn(e))return null;{const t=er(e);try{return Oe(t)}finally{t.release()}}}function un(e){const t=zn(e);if(0==t)return null;if(27==t)return Fr(Qn(e));const n=Zn(e);let r=qr(n);if(null==r){const t=pn(e);r=new ManagedError(t),zr(r,n)}return r}function dn(e){if(0==zn(e))return null;const t=Qn(e),n=Fr(t);return void 0===n&&mt(!1,`JS object JSHandle ${t} was not found`),n}function fn(e){const t=zn(e);if(0==t)return null;if(13==t)return Fr(Qn(e));if(21==t)return mn(e,Vn(e));if(14==t){const t=Zn(e);if(t===u)return null;let n=qr(t);return n||(n=new ManagedObject,zr(n,t)),n}const n=vn.get(t);return n||mt(!1,`Unknown converter for type ${t}. ${Kr}`),n(e)}function _n(e,t){return t||mt(!1,"Expected valid element_type parameter"),mn(e,t)}function mn(e,t){if(0==zn(e))return null;-1==rr(t)&&mt(!1,`Element type ${t} not supported`);const n=Hn(e),r=tr(e);let s=null;if(15==t){s=new Array(r);for(let e=0;e0?(t=fe.pop(),t._set_address(e)):t=new ge(e),t}(e)}function tr(e){return e||mt(!1,"Null arg"),V(e+8)}function nr(e,t){e||mt(!1,"Null arg"),T(e+8,t)}class ManagedObject{dispose(){Vr(this,u)}get isDisposed(){return this[Or]===u}toString(){return`CsObject(gc_handle: ${this[Or]})`}}class ManagedError extends Error{constructor(e){super(e),this.superStack=Object.getOwnPropertyDescriptor(this,"stack"),Object.defineProperty(this,"stack",{get:this.getManageStack})}getSuperStack(){if(this.superStack){if(void 0!==this.superStack.value)return this.superStack.value;if(void 0!==this.superStack.get)return this.superStack.get.call(this)}return super.stack}getManageStack(){if(this.managed_stack)return this.managed_stack;if(!lt.is_runtime_running())return this.managed_stack="... omitted managed stack trace.\n"+this.getSuperStack(),this.managed_stack;{const e=this[Or];if(e!==u){const t=function(e){lt.assert_runtime_running();const t=Ke.stackSave();try{const t=$n(3),n=Ln(t,2);return Wn(n,16),Kn(n,e),kn(yn.GetManagedStackTrace,t),pn(Ln(t,1))}finally{lt.is_runtime_running()&&Ke.stackRestore(t)}}(e);if(t)return this.managed_stack=t+"\n"+this.getSuperStack(),this.managed_stack}}return this.getSuperStack()}dispose(){Vr(this,u)}get isDisposed(){return this[Or]===u}}function rr(e){return 4==e?1:7==e?4:8==e||10==e?8:15==e||14==e||13==e?In:-1}class or{constructor(e,t,n){this._pointer=e,this._length=t,this._viewType=n}_unsafe_create_view(){const e=0==this._viewType?new Uint8Array(K().buffer,this._pointer,this._length):1==this._viewType?new Int32Array(Y().buffer,this._pointer,this._length):2==this._viewType?new Float64Array(re().buffer,this._pointer,this._length):null;if(!e)throw new Error("NotImplementedException");return e}set(e,t){if(this.isDisposed)throw new Error("Assert failed: ObjectDisposedException");const n=this._unsafe_create_view();if(!e||!n||e.constructor!==n.constructor)throw new Error(`Assert failed: Expected ${n.constructor}`);n.set(e,t)}copyTo(e,t){if(this.isDisposed)throw new Error("Assert failed: ObjectDisposedException");const n=this._unsafe_create_view();if(!e||!n||e.constructor!==n.constructor)throw new Error(`Assert failed: Expected ${n.constructor}`);const r=n.subarray(t);e.set(r)}slice(e,t){if(this.isDisposed)throw new Error("Assert failed: ObjectDisposedException");return this._unsafe_create_view().slice(e,t)}get length(){if(this.isDisposed)throw new Error("Assert failed: ObjectDisposedException");return this._length}get byteLength(){if(this.isDisposed)throw new Error("Assert failed: ObjectDisposedException");return 0==this._viewType?this._length:1==this._viewType?this._length<<2:2==this._viewType?this._length<<3:0}}class Span extends or{constructor(e,t,n){super(e,t,n),this.is_disposed=!1}dispose(){this.is_disposed=!0}get isDisposed(){return this.is_disposed}}class ArraySegment extends or{constructor(e,t,n){super(e,t,n)}dispose(){Vr(this,u)}get isDisposed(){return this[Or]===u}}const sr=[null];function ar(e){const t=e.args_count,r=e.arg_marshalers,o=e.res_converter,s=e.arg_cleanup,a=e.has_cleanup,i=e.fn,c=e.fqn;return e=null,function(l){const p=Ft();try{n&&e.isDisposed;const c=new Array(t);for(let e=0;e{const o=await n;return r&&(_r.set(e,o),lt.diagnosticTracing&&ze(`imported ES6 module '${e}' from '${t}'`)),o}))}function hr(){lt.assert_runtime_running(),ct.mono_wasm_bindings_is_ready||mt(!1,"The runtime must be initialized.")}function gr(e){e()}const br="function"==typeof globalThis.WeakRef;function yr(e){return br?new WeakRef(e):function(e){return{deref:()=>e,dispose:()=>{e=null}}}(e)}function wr(e,t,n,r,o,s,a){const i=`[${t}] ${n}.${r}:${o}`,c=Ft();lt.diagnosticTracing&&ze(`Binding [JSExport] ${n}.${r}:${o} from ${t} assembly`);const l=Mn(a);2!==l&&mt(!1,`Signature version ${l} mismatch.`);const p=Pn(a),u=new Array(p);for(let e=0;e0}function Nr(e){return e<-1}Ur&&(Tr=new globalThis.FinalizationRegistry(Hr));const Or=Symbol.for("wasm js_owned_gc_handle"),Cr=Symbol.for("wasm cs_owned_js_handle"),Dr=Symbol.for("wasm do_not_force_dispose");function Fr(e){return Br(e)?Er[e]:Rr(e)?xr[0-e]:null}function Pr(e){if(hr(),e[Cr])return e[Cr];const t=Ir.length?Ir.pop():Ar++;return Er[t]=e,Object.isExtensible(e)&&("function"==typeof e&&Object.prototype.hasOwnProperty.call(e,"prototype")||(e[Cr]=t)),t}function Mr(e){let t;Br(e)?(t=Er[e],Er[e]=void 0,Ir.push(e)):Rr(e)&&(t=xr[0-e],xr[0-e]=void 0),null==t&&mt(!1,"ObjectDisposedException"),void 0!==t[Cr]&&(t[Cr]=void 0)}function zr(e,t){hr(),e[Or]=t,Ur&&Tr.register(e,t,e);const n=yr(e);jr.set(t,n)}function Vr(e,t,r){var o;hr(),e&&(t=e[Or],e[Or]=u,Ur&&Tr.unregister(e)),t!==u&&jr.delete(t)&&!r&<.is_runtime_running()&&!Gr&&function(e){e||mt(!1,"Must be valid gc_handle"),lt.assert_runtime_running();const t=Ke.stackSave();try{const t=$n(3),r=Ln(t,2);Wn(r,14),Kn(r,e),n&&!Nr(e)&&bn.isUI||kn(yn.ReleaseJSOwnedObjectByGCHandle,t)}finally{lt.is_runtime_running()&&Ke.stackRestore(t)}}(t),Nr(t)&&(o=t,$r.push(o))}function Wr(e){const t=e[Or];if(t==u)throw new Error("Assert failed: ObjectDisposedException");return t}function Hr(e){lt.is_runtime_running()&&Vr(null,e)}function qr(e){if(!e)return null;const t=jr.get(e);return t?t.deref():null}let Gr=!1;function Jr(e,t){let n=!1,r=!1;Gr=!0;let o=0,s=0,a=0,i=0;const c=[...jr.keys()];for(const e of c){const r=jr.get(e),o=r&&r.deref();if(Ur&&o&&Tr.unregister(o),o){const s="boolean"==typeof o[Dr]&&o[Dr];if(t&&We(`Proxy of C# ${typeof o} with GCHandle ${e} was still alive. ${s?"keeping":"disposing"}.`),s)n=!0;else{const t=lt.getPromiseController(o);t&&t.reject(new Error("WebWorker which is origin of the Task is being terminated.")),"function"==typeof o.dispose&&o.dispose(),o[Or]===e&&(o[Or]=u),!br&&r&&r.dispose(),a++}}}n||(jr.clear(),Ur&&(Tr=new globalThis.FinalizationRegistry(Hr)));const l=(e,n)=>{const o=n[e],s=o&&"boolean"==typeof o[Dr]&&o[Dr];if(s||(n[e]=void 0),o)if(t&&We(`Proxy of JS ${typeof o} with JSHandle ${e} was still alive. ${s?"keeping":"disposing"}.`),s)r=!0;else{const t=lt.getPromiseController(o);t&&t.reject(new Error("WebWorker which is origin of the Task is being terminated.")),"function"==typeof o.dispose&&o.dispose(),o[Cr]===e&&(o[Cr]=void 0),i++}};for(let e=0;en.resolve(e))).catch((e=>n.reject(e))),t}const Yr=Symbol.for("wasm promise_holder");class Zr extends ManagedObject{constructor(e,t,n,r){super(),this.promise=e,this.gc_handle=t,this.promiseHolderPtr=n,this.res_converter=r,this.isResolved=!1,this.isPosted=!1,this.isPostponed=!1,this.data=null,this.reason=void 0}setIsResolving(){return!0}resolve(e){lt.is_runtime_running()?(this.isResolved&&mt(!1,"resolve could be called only once"),this.isDisposed&&mt(!1,"resolve is already disposed."),this.isResolved=!0,this.complete_task_wrapper(e,null)):lt.diagnosticTracing&&ze("This promise resolution can't be propagated to managed code, mono runtime already exited.")}reject(e){lt.is_runtime_running()?(e||(e=new Error),this.isResolved&&mt(!1,"reject could be called only once"),this.isDisposed&&mt(!1,"resolve is already disposed."),e[Yr],this.isResolved=!0,this.complete_task_wrapper(null,e)):lt.diagnosticTracing&&ze("This promise rejection can't be propagated to managed code, mono runtime already exited.")}cancel(){if(lt.is_runtime_running())if(this.isResolved&&mt(!1,"cancel could be called only once"),this.isDisposed&&mt(!1,"resolve is already disposed."),this.isPostponed)this.isResolved=!0,void 0!==this.reason?this.complete_task_wrapper(null,this.reason):this.complete_task_wrapper(this.data,null);else{const e=this.promise;lt.assertIsControllablePromise(e);const t=lt.getPromiseController(e),n=new Error("OperationCanceledException");n[Yr]=this,t.reject(n)}else lt.diagnosticTracing&&ze("This promise cancelation can't be propagated to managed code, mono runtime already exited.")}complete_task_wrapper(e,t){try{this.isPosted&&mt(!1,"Promise is already posted to managed."),this.isPosted=!0,Vr(this,this.gc_handle,!0),function(e,t,n,r){lt.assert_runtime_running();const o=Ke.stackSave();try{const o=$n(5),s=Ln(o,2);Wn(s,14),Kn(s,e);const a=Ln(o,3);if(t)wo(a,t);else{Wn(a,0);const e=Ln(o,4);r||mt(!1,"res_converter missing"),r(e,n)}wn(ct.ioThreadTID,yn.CompleteTask,o)}finally{lt.is_runtime_running()&&Ke.stackRestore(o)}}(this.gc_handle,t,e,this.res_converter||So)}catch(e){try{lt.mono_exit(1,e)}catch(e){}}}}const Kr="For more information see https://aka.ms/dotnet-wasm-jsinterop";function eo(e,t,n){if(0===t||1===t||2===t||26===t)return;let r,o,s,a;o=Vt(Cn(e)),s=Vt(Dn(e)),a=Vt(Fn(e));const i=On(e);r=to(i),19===t&&(t=i);const c=to(t),l=Cn(e),p=n*In;return(e,t)=>{c(e+p,t,l,r,o,s,a)}}function to(e){if(0===e||1===e)return;const t=Un.get(e);return t&&"function"==typeof t||mt(!1,`ERR30: Unknown converter for type ${e}`),t}function no(e,t){null==t?Wn(e,0):(Wn(e,3),qn(e,t))}function ro(e,t){null==t?Wn(e,0):(Wn(e,4),function(e,t){e||mt(!1,"Null arg"),w(e,t)}(e,t))}function oo(e,t){null==t?Wn(e,0):(Wn(e,5),function(e,t){e||mt(!1,"Null arg"),k(e,t)}(e,t))}function so(e,t){null==t?Wn(e,0):(Wn(e,6),function(e,t){e||mt(!1,"Null arg"),U(e,t)}(e,t))}function ao(e,t){null==t?Wn(e,0):(Wn(e,7),function(e,t){e||mt(!1,"Null arg"),T(e,t)}(e,t))}function io(e,t){null==t?Wn(e,0):(Wn(e,8),function(e,t){if(e||mt(!1,"Null arg"),!Number.isSafeInteger(t))throw new Error(`Assert failed: Value is not an integer: ${t} (${typeof t})`);$(e,t)}(e,t))}function co(e,t){null==t?Wn(e,0):(Wn(e,9),function(e,t){e||mt(!1,"Null arg"),A(e,t)}(e,t))}function lo(e,t){null==t?Wn(e,0):(Wn(e,10),Xn(e,t))}function po(e,t){null==t?Wn(e,0):(Wn(e,11),function(e,t){e||mt(!1,"Null arg"),j(e,t)}(e,t))}function uo(e,t){null==t?Wn(e,0):(Wn(e,12),Gn(e,t))}function fo(e,t){if(null==t)Wn(e,0);else{if(!(t instanceof Date))throw new Error("Assert failed: Value is not a Date");Wn(e,17),Jn(e,t)}}function _o(e,t){if(null==t)Wn(e,0);else{if(!(t instanceof Date))throw new Error("Assert failed: Value is not a Date");Wn(e,18),Jn(e,t)}}function mo(e,t){if(null==t)Wn(e,0);else{if(Wn(e,15),"string"!=typeof t)throw new Error("Assert failed: Value is not a String");ho(e,t)}}function ho(e,t){{const n=er(e);try{!function(e,t){if(t.clear(),null!==e)if("symbol"==typeof e)Ce(e,t);else{if("string"!=typeof e)throw new Error("Expected string argument, got "+typeof e);if(0===e.length)Ce(e,t);else{if(e.length<=256){const n=be.get(e);if(n)return void t.set(n)}De(e,t)}}}(t,n)}finally{n.release()}}}function go(e){Wn(e,0)}function bo(e,t,r,o,s,a,i){if(null==t)return void Wn(e,0);if(!(t&&t instanceof Function))throw new Error("Assert failed: Value is not a Function");const c=function(e){const r=Ln(e,0),l=Ln(e,1),p=Ln(e,2),u=Ln(e,3),d=Ln(e,4),f=ct.isPendingSynchronousCall;try{let e,r,f;n&&c.isDisposed,s&&(e=s(p)),a&&(r=a(u)),i&&(f=i(d)),ct.isPendingSynchronousCall=!0;const _=t(e,r,f);o&&o(l,_)}catch(e){wo(r,e)}finally{ct.isPendingSynchronousCall=f}};c[En]=!0,c.isDisposed=!1,c.dispose=()=>{c.isDisposed=!0},Yn(e,Pr(c)),Wn(e,25)}function yo(e,t,n,r){const o=30==zn(e);if(null==t)return void Wn(e,0);if(!Xr(t))throw new Error("Assert failed: Value is not a Promise");const s=o?Zn(e):$r.length?$r.pop():Lr--;o||(Kn(e,s),Wn(e,20));const a=new Zr(t,s,0,r);zr(a,s),t.then((e=>a.resolve(e)),(e=>a.reject(e)))}function wo(e,t){if(null==t)Wn(e,0);else if(t instanceof ManagedError)Wn(e,16),Kn(e,Wr(t));else{if("object"!=typeof t&&"string"!=typeof t)throw new Error("Assert failed: Value is not an Error "+typeof t);Wn(e,27),ho(e,t.toString());const n=t[Cr];Yn(e,n||Pr(t))}}function ko(e,t){if(null==t)Wn(e,0);else{if(void 0!==t[Or])throw new Error(`Assert failed: JSObject proxy of ManagedObject proxy is not supported. ${Kr}`);if("function"!=typeof t&&"object"!=typeof t)throw new Error(`Assert failed: JSObject proxy of ${typeof t} is not supported`);Wn(e,13),Yn(e,Pr(t))}}function So(e,t){if(null==t)Wn(e,0);else{const n=t[Or],r=typeof t;if(void 0===n)if("string"===r||"symbol"===r)Wn(e,15),ho(e,t);else if("number"===r)Wn(e,10),Xn(e,t);else{if("bigint"===r)throw new Error("NotImplementedException: bigint");if("boolean"===r)Wn(e,3),qn(e,t);else if(t instanceof Date)Wn(e,17),Jn(e,t);else if(t instanceof Error)wo(e,t);else if(t instanceof Uint8Array)Uo(e,t,4);else if(t instanceof Float64Array)Uo(e,t,10);else if(t instanceof Int32Array)Uo(e,t,7);else if(Array.isArray(t))Uo(e,t,14);else{if(t instanceof Int16Array||t instanceof Int8Array||t instanceof Uint8ClampedArray||t instanceof Uint16Array||t instanceof Uint32Array||t instanceof Float32Array)throw new Error("NotImplementedException: TypedArray");if(Xr(t))yo(e,t);else{if(t instanceof Span)throw new Error("NotImplementedException: Span");if("object"!=r)throw new Error(`JSObject proxy is not supported for ${r} ${t}`);{const n=Pr(t);Wn(e,13),Yn(e,n)}}}}else{if(Wr(t),t instanceof ArraySegment)throw new Error("NotImplementedException: ArraySegment. "+Kr);if(t instanceof ManagedError)Wn(e,16),Kn(e,n);else{if(!(t instanceof ManagedObject))throw new Error("NotImplementedException "+r+". "+Kr);Wn(e,14),Kn(e,n)}}}}function vo(e,t,n){n||mt(!1,"Expected valid element_type parameter"),Uo(e,t,n)}function Uo(e,t,n){if(null==t)Wn(e,0);else{const r=rr(n);-1==r&&mt(!1,`Element type ${n} not supported`);const s=t.length,a=r*s,i=_(a);if(15==n){if(!Array.isArray(t))throw new Error("Assert failed: Value is not an Array");g(i,a),o.mono_wasm_register_root(i,a,"marshal_array_to_cs");for(let e=0;e{e&&"AbortError"!==e&&"AbortError"!==e.name&&ze("http muted: "+e)}))}function No(e){try{e.isAborted||(e.streamWriter&&(Bo(e.streamWriter.abort()),e.isAborted=!0),e.streamReader&&(Bo(e.streamReader.cancel()),e.isAborted=!0)),e.isAborted||e.abortController.signal.aborted||e.abortController.abort("AbortError")}catch(e){}}function Oo(e,t,n){n>0||mt(!1,"expected bufferLength > 0");const r=new Span(t,n,0).slice();return Qr((async()=>{e.streamWriter||mt(!1,"expected streamWriter"),e.responsePromise||mt(!1,"expected fetch promise");try{await e.streamWriter.ready,await e.streamWriter.write(r)}catch(e){throw new Error("BrowserHttpWriteStream.Rejected")}}))}function Co(e){return e||mt(!1,"expected controller"),Qr((async()=>{e.streamWriter||mt(!1,"expected streamWriter"),e.responsePromise||mt(!1,"expected fetch promise");try{await e.streamWriter.ready,await e.streamWriter.close()}catch(e){throw new Error("BrowserHttpWriteStream.Rejected")}}))}function Do(e,t,n,r,o,s){const a=new TransformStream;return e.streamWriter=a.writable.getWriter(),Bo(e.streamWriter.closed),Bo(e.streamWriter.ready),Po(e,t,n,r,o,s,a.readable)}function Fo(e,t,n,r,o,s,a,i){return Po(e,t,n,r,o,s,new Span(a,i,0).slice())}function Po(e,t,n,r,o,s,a){jo(),hr(),t&&"string"==typeof t||mt(!1,"expected url string"),n&&r&&Array.isArray(n)&&Array.isArray(r)&&n.length===r.length||mt(!1,"expected headerNames and headerValues arrays"),o&&s&&Array.isArray(o)&&Array.isArray(s)&&o.length===s.length||mt(!1,"expected headerNames and headerValues arrays");const i=new Headers;for(let e=0;elt.fetch_like(t,c).then((t=>(e.response=t,null))))),e.responsePromise.then((()=>{if(e.response||mt(!1,"expected response"),e.responseHeaderNames=[],e.responseHeaderValues=[],e.response.headers&&e.response.headers.entries){const t=e.response.headers.entries();for(const n of t)e.responseHeaderNames.push(n[0]),e.responseHeaderValues.push(n[1])}})).catch((()=>{})),e.responsePromise}function Mo(e){var t;return null===(t=e.response)||void 0===t?void 0:t.type}function zo(e){var t,n;return null!==(n=null===(t=e.response)||void 0===t?void 0:t.status)&&void 0!==n?n:0}function Vo(e){return e.responseHeaderNames||mt(!1,"expected responseHeaderNames"),e.responseHeaderNames}function Wo(e){return e.responseHeaderValues||mt(!1,"expected responseHeaderValues"),e.responseHeaderValues}function Ho(e){return Qr((async()=>{const t=await e.response.arrayBuffer();return e.responseBuffer=t,e.currentBufferOffset=0,t.byteLength}))}function qo(e,t){if(e||mt(!1,"expected controller"),e.responseBuffer||mt(!1,"expected resoved arrayBuffer"),null==e.currentBufferOffset&&mt(!1,"expected currentBufferOffset"),e.currentBufferOffset==e.responseBuffer.byteLength)return 0;const n=new Uint8Array(e.responseBuffer,e.currentBufferOffset);t.set(n,0);const r=Math.min(t.byteLength,n.byteLength);return e.currentBufferOffset+=r,r}function Go(e,t,n){const r=new Span(t,n,0);return Qr((async()=>{if(await e.responsePromise,e.response||mt(!1,"expected response"),!e.response.body)return 0;if(e.streamReader||(e.streamReader=e.response.body.getReader(),Bo(e.streamReader.closed)),e.currentStreamReaderChunk&&void 0!==e.currentBufferOffset||(e.currentStreamReaderChunk=await e.streamReader.read(),e.currentBufferOffset=0),e.currentStreamReaderChunk.done){if(e.isAborted)throw new Error("OperationCanceledException");return 0}const t=e.currentStreamReaderChunk.value.byteLength-e.currentBufferOffset;t>0||mt(!1,"expected remaining_source to be greater than 0");const n=Math.min(t,r.byteLength),o=e.currentStreamReaderChunk.value.subarray(e.currentBufferOffset,e.currentBufferOffset+n);return r.set(o,0),e.currentBufferOffset+=n,t==n&&(e.currentStreamReaderChunk=void 0),n}))}let Jo,Xo,Qo=0;function Yo(){if(!lt.isChromium)return;const e=(new Date).valueOf(),t=e+36e4;for(let n=Math.max(e+1e3,Qo);n=this.queue.length&&(this.queue=this.queue.slice(this.offset),this.offset=0),e}peek(){return this.queue.length>0?this.queue[this.offset]:void 0}drain(e){for(;this.getLength();)e(this.dequeue())}}const ts=Symbol.for("wasm ws_pending_send_buffer"),ns=Symbol.for("wasm ws_pending_send_buffer_offset"),rs=Symbol.for("wasm ws_pending_send_buffer_type"),os=Symbol.for("wasm ws_pending_receive_event_queue"),ss=Symbol.for("wasm ws_pending_receive_promise_queue"),as=Symbol.for("wasm ws_pending_open_promise"),is=Symbol.for("wasm wasm_ws_pending_open_promise_used"),cs=Symbol.for("wasm wasm_ws_pending_error"),ls=Symbol.for("wasm ws_pending_close_promises"),ps=Symbol.for("wasm ws_pending_send_promises"),us=Symbol.for("wasm ws_is_aborted"),ds=Symbol.for("wasm wasm_ws_close_sent"),fs=Symbol.for("wasm wasm_ws_close_received"),_s=Symbol.for("wasm ws_receive_status_ptr"),ms=65536,hs=new Uint8Array;function gs(e){var t,n;return e.readyState!=WebSocket.CLOSED?null!==(t=e.readyState)&&void 0!==t?t:-1:0==e[os].getLength()?null!==(n=e.readyState)&&void 0!==n?n:-1:e[ds]?WebSocket.CLOSING:WebSocket.OPEN}function bs(e,t,n){let r;!function(){if(at)throw new Error("WebSockets are not supported in shell JS engine.");if("function"!=typeof globalThis.WebSocket)throw new Error(tt?"Please install `ws` npm package to enable networking support. See also https://aka.ms/dotnet-wasm-features":"This browser doesn't support WebSocket API. Please use a modern browser. See also https://aka.ms/dotnet-wasm-features")}(),hr(),e&&"string"==typeof e||mt(!1,"ERR12: Invalid uri "+typeof e);try{r=new globalThis.WebSocket(e,t||void 0)}catch(e){throw We("WebSocket error in ws_wasm_create: "+e.toString()),e}const{promise_control:o}=_t();r[os]=new es,r[ss]=new es,r[as]=o,r[ps]=[],r[ls]=[],r[_s]=n,r.binaryType="arraybuffer";const s=()=>{try{if(r[us])return;if(!lt.is_runtime_running())return;o.resolve(r),Yo()}catch(e){We("failed to propagate WebSocket open event: "+e.toString())}},a=e=>{try{if(r[us])return;if(!lt.is_runtime_running())return;!function(e,t){const n=e[os],r=e[ss];if("string"==typeof t.data)n.enqueue({type:0,data:je(t.data),offset:0});else{if("ArrayBuffer"!==t.data.constructor.name)throw new Error("ERR19: WebSocket receive expected ArrayBuffer");n.enqueue({type:1,data:new Uint8Array(t.data),offset:0})}if(r.getLength()&&n.getLength()>1)throw new Error("ERR21: Invalid WS state");for(;r.getLength()&&n.getLength();){const t=r.dequeue();Ts(e,n,t.buffer_ptr,t.buffer_length),t.resolve()}Yo()}(r,e),Yo()}catch(e){We("failed to propagate WebSocket message event: "+e.toString())}},i=e=>{try{if(r.removeEventListener("message",a),r[us])return;if(!lt.is_runtime_running())return;r[fs]=!0,r.close_status=e.code,r.close_status_description=e.reason,r[is]&&o.reject(new Error(e.reason));for(const e of r[ls])e.resolve();Ke.safeSetTimeout((()=>{r[ss].drain((e=>{T(n,0),T(n+4,2),T(n+8,1),e.resolve()}))}),0)}catch(e){We("failed to propagate WebSocket close event: "+e.toString())}},c=e=>{try{if(r[us])return;if(!lt.is_runtime_running())return;r.removeEventListener("message",a);const t=e.message?"WebSocket error: "+e.message:"WebSocket error";We(t),r[cs]=t,Us(r,new Error(t))}catch(e){We("failed to propagate WebSocket error event: "+e.toString())}};return r.addEventListener("message",a),r.addEventListener("open",s,{once:!0}),r.addEventListener("close",i,{once:!0}),r.addEventListener("error",c,{once:!0}),r.dispose=()=>{r.removeEventListener("message",a),r.removeEventListener("open",s),r.removeEventListener("close",i),r.removeEventListener("error",c),vs(r)},r}function ys(e){if(e||mt(!1,"ERR17: expected ws instance"),e[cs])return Es(e[cs]);const t=e[as];return e[is]=!0,t.promise}function ws(e,t,n,r,o){if(e||mt(!1,"ERR17: expected ws instance"),e[cs])return Es(e[cs]);if(e[us]||e[ds])return Es("InvalidState: The WebSocket is not connected.");if(e.readyState==WebSocket.CLOSED)return null;const s=function(e,t,n,r){let o=e[ts],s=0;const a=t.byteLength;if(o){if(s=e[ns],n=e[rs],0!==a){if(s+a>o.length){const n=new Uint8Array(1.5*(s+a+50));n.set(o,0),n.subarray(s).set(t),e[ts]=o=n}else o.subarray(s).set(t);s+=a,e[ns]=s}}else r?0!==a&&(o=t,s=a):(0!==a&&(o=t.slice(),s=a,e[ns]=s,e[ts]=o),e[rs]=n);return r?0==s||null==o?hs:0===n?function(e){return void 0===ve?Ke.UTF8ArrayToString(e,0,e.byteLength):ve.decode(e)}(Fe(o,0,s)):o.subarray(0,s):null}(e,new Uint8Array(K().buffer,t,n),r,o);return o&&s?function(e,t){if(e.send(t),e[ts]=null,e.bufferedAmount{try{if(0===e.bufferedAmount)r.resolve();else{const t=e.readyState;if(t!=WebSocket.OPEN&&t!=WebSocket.CLOSING)r.reject(new Error(`InvalidState: ${t} The WebSocket is not connected.`));else if(!r.isDone)return globalThis.setTimeout(a,s),void(s=Math.min(1.5*s,1e3))}const t=o.indexOf(r);t>-1&&o.splice(t,1)}catch(e){We("WebSocket error in web_socket_send_and_wait: "+e.toString()),r.reject(e)}};return globalThis.setTimeout(a,0),n}(e,s):null}function ks(e,t,n){if(e||mt(!1,"ERR18: expected ws instance"),e[cs])return Es(e[cs]);if(e[us]){const t=e[_s];return T(t,0),T(t+4,2),T(t+8,1),null}const r=e[os],o=e[ss];if(r.getLength())return 0!=o.getLength()&&mt(!1,"ERR20: Invalid WS state"),Ts(e,r,t,n),null;if(e[fs]){const t=e[_s];return T(t,0),T(t+4,2),T(t+8,1),null}const{promise:s,promise_control:a}=_t(),i=a;return i.buffer_ptr=t,i.buffer_length=n,o.enqueue(i),s}function Ss(e,t,n,r){if(e||mt(!1,"ERR19: expected ws instance"),e[us]||e[ds]||e.readyState==WebSocket.CLOSED)return null;if(e[cs])return Es(e[cs]);if(e[ds]=!0,r){const{promise:r,promise_control:o}=_t();return e[ls].push(o),"string"==typeof n?e.close(t,n):e.close(t),r}return"string"==typeof n?e.close(t,n):e.close(t),null}function vs(e){if(e||mt(!1,"ERR18: expected ws instance"),!e[us]&&!e[ds]){e[us]=!0,Us(e,new Error("OperationCanceledException"));try{e.close(1e3,"Connection was aborted.")}catch(e){We("WebSocket error in ws_wasm_abort: "+e.toString())}}}function Us(e,t){const n=e[as],r=e[is];n&&r&&n.reject(t);for(const n of e[ls])n.reject(t);for(const n of e[ps])n.reject(t);e[ss].drain((e=>{e.reject(t)}))}function Ts(e,t,n,r){const o=t.peek(),s=Math.min(r,o.data.length-o.offset);if(s>0){const e=o.data.subarray(o.offset,o.offset+s);new Uint8Array(K().buffer,n,r).set(e,0),o.offset+=s}const a=o.data.length===o.offset?1:0;a&&t.dequeue();const i=e[_s];T(i,s),T(i+4,o.type),T(i+8,a)}function Es(e){return function(e){const{promise:t,promise_control:n}=_t();return e.then((e=>n.resolve(e))).catch((e=>n.reject(e))),t}(Promise.reject(new Error(e)))}function xs(e,t,n){lt.diagnosticTracing&&ze(`Loaded:${e.name} as ${e.behavior} size ${n.length} from ${t}`);const r=Ft(),s="string"==typeof e.virtualPath?e.virtualPath:e.name;let a=null;switch(e.behavior){case"dotnetwasm":case"js-module-threads":case"js-module-diagnostics":case"symbols":break;case"resource":case"assembly":case"pdb":lt._loaded_files.push({url:t,file:s});case"heap":case"icu":a=function(e){const t=e.length+16;let n=Ke._sbrk(t);if(n<=0){if(n=Ke._sbrk(t),n<=0)throw He(`sbrk failed to allocate ${t} bytes, and failed upon retry.`),new Error("Out of memory");We(`sbrk failed to allocate ${t} bytes, but succeeded upon retry!`)}return new Uint8Array(K().buffer,n,e.length).set(e),n}(n);break;case"vfs":{const e=s.lastIndexOf("/");let t=e>0?s.substring(0,e):null,r=e>0?s.substring(e+1):s;r.startsWith("/")&&(r=r.substring(1)),t?(t.startsWith("/")||(t="/"+t),ze(`Creating directory '${t}'`),Ke.FS_createPath("/",t,!0,!0)):t="/",lt.diagnosticTracing&&ze(`Creating file '${r}' in directory '${t}'`),Ke.FS_createDataFile(t,r,n,!0,!0,!0);break}default:throw new Error(`Unrecognized asset behavior:${e.behavior}, for asset ${e.name}`)}if("assembly"===e.behavior){if(!o.mono_wasm_add_assembly(s,a,n.length)){const e=lt._loaded_files.findIndex((e=>e.file==s));lt._loaded_files.splice(e,1)}}else"pdb"===e.behavior?o.mono_wasm_add_assembly(s,a,n.length):"icu"===e.behavior?function(e){if(!o.mono_wasm_load_icu_data(e))throw new Error("Failed to load ICU data")}(a):"resource"===e.behavior&&o.mono_wasm_add_satellite_assembly(s,e.culture||"",a,n.length);Pt(r,"mono.instantiateAsset:",e.name),++lt.actual_instantiated_assets_count}async function Is(e){try{const n=await e.pendingDownloadInternal.response;t=await n.text(),Ge&&mt(!1,"Another symbol map was already loaded"),Ge=t,lt.diagnosticTracing&&ze(`Deferred loading of ${t.length}ch symbol map`)}catch(t){Ve(`Error loading symbol file ${e.name}: ${JSON.stringify(t)}`)}var t}function As(){return lt.loadedFiles}const js={};function $s(e){let t=js[e];if("string"!=typeof t){const n=o.mono_jiterp_get_opcode_info(e,0);js[e]=t=Le(n)}return t}const Ls=2,Rs=64,Bs=64,Ns=-2147483648,Os={};class Cs{constructor(e){this.locals=new Map,this.permanentFunctionTypeCount=0,this.permanentFunctionTypes={},this.permanentFunctionTypesByShape={},this.permanentFunctionTypesByIndex={},this.functionTypesByIndex={},this.permanentImportedFunctionCount=0,this.permanentImportedFunctions={},this.nextImportIndex=0,this.functions=[],this.estimatedExportBytes=0,this.frame=0,this.traceBuf=[],this.branchTargets=new Set,this.constantSlots=[],this.backBranchOffsets=[],this.callHandlerReturnAddresses=[],this.nextConstantSlot=0,this.backBranchTraceLevel=0,this.compressImportNames=!1,this.lockImports=!1,this._assignParameterIndices=e=>{let t=0;for(const n in e)this.locals.set(n,t),t++;return t},this.stack=[new Ds],this.clear(e),this.cfg=new Fs(this),this.defineType("__cpp_exception",{ptr:127},64,!0)}clear(e){if(this.options=fa(),this.options.maxModuleSize>=24576)throw new Error(`blobBuilderCapacity 24576 is not large enough for jiterpreter-max-module-size of ${this.options.maxModuleSize}`);this.stackSize=1,this.inSection=!1,this.inFunction=!1,this.lockImports=!1,this.locals.clear(),this.functionTypeCount=this.permanentFunctionTypeCount,this.functionTypes=Object.create(this.permanentFunctionTypes),this.functionTypesByShape=Object.create(this.permanentFunctionTypesByShape),this.functionTypesByIndex=Object.create(this.permanentFunctionTypesByIndex),this.nextImportIndex=0,this.importedFunctionCount=0,this.importedFunctions=Object.create(this.permanentImportedFunctions);for(const e in this.importedFunctions)this.importedFunctions[e].index=void 0;this.functions.length=0,this.estimatedExportBytes=0,this.argumentCount=0,this.current.clear(),this.traceBuf.length=0,this.branchTargets.clear(),this.activeBlocks=0,this.nextConstantSlot=0,this.constantSlots.length=this.options.useConstants?e:0;for(let e=0;e=this.stack.length&&this.stack.push(new Ds),this.current.clear()}_pop(e){if(this.stackSize<=1)throw new Error("Stack empty");const t=this.current;return this.stackSize--,e?(this.appendULeb(t.size),t.copyTo(this.current),null):t.getArrayView(!1).slice(0,t.size)}setImportFunction(e,t){const n=this.importedFunctions[e];if(!n)throw new Error("No import named "+e);n.func=t}getExceptionTag(){const e=Ke.wasmExports.__cpp_exception;return void 0!==e&&(e instanceof WebAssembly.Tag||mt(!1,`expected __cpp_exception export from dotnet.wasm to be WebAssembly.Tag but was ${e}`)),e}getWasmImports(){const e=ct.getMemory();e instanceof WebAssembly.Memory||mt(!1,`expected heap import to be WebAssembly.Memory but was ${e}`);const t=this.getExceptionTag(),n={c:this.getConstants(),m:{h:e}};t&&(n.x={e:t});const r=this.getImportsToEmit();for(let e=0;e>>0||e>255)throw new Error(`Byte out of range: ${e}`);return this.current.appendU8(e)}appendSimd(e,t){return this.current.appendU8(253),0|e||0===e&&!0===t||mt(!1,"Expected non-v128_load simd opcode or allowLoad==true"),this.current.appendULeb(e)}appendAtomic(e,t){return this.current.appendU8(254),0|e||0===e&&!0===t||mt(!1,"Expected non-notify atomic opcode or allowNotify==true"),this.current.appendU8(e)}appendU32(e){return this.current.appendU32(e)}appendF32(e){return this.current.appendF32(e)}appendF64(e){return this.current.appendF64(e)}appendBoundaryValue(e,t){return this.current.appendBoundaryValue(e,t)}appendULeb(e){return this.current.appendULeb(e)}appendLeb(e){return this.current.appendLeb(e)}appendLebRef(e,t){return this.current.appendLebRef(e,t)}appendBytes(e){return this.current.appendBytes(e)}appendName(e){return this.current.appendName(e)}ret(e){this.ip_const(e),this.appendU8(15)}i32_const(e){this.appendU8(65),this.appendLeb(e)}ptr_const(e){let t=this.options.useConstants?this.constantSlots.indexOf(e):-1;this.options.useConstants&&t<0&&this.nextConstantSlot=0?(this.appendU8(35),this.appendLeb(t)):this.i32_const(e)}ip_const(e){this.appendU8(65),this.appendLeb(e-this.base)}i52_const(e){this.appendU8(66),this.appendLeb(e)}v128_const(e){if(0===e)this.local("v128_zero");else{if("object"!=typeof e)throw new Error("Expected v128_const arg to be 0 or a Uint8Array");{16!==e.byteLength&&mt(!1,"Expected v128_const arg to be 16 bytes in size");let t=!0;for(let n=0;n<16;n++)0!==e[n]&&(t=!1);t?this.local("v128_zero"):(this.appendSimd(12),this.appendBytes(e))}}}defineType(e,t,n,r){if(this.functionTypes[e])throw new Error(`Function type ${e} already defined`);if(r&&this.functionTypeCount>this.permanentFunctionTypeCount)throw new Error("New permanent function types cannot be defined after non-permanent ones");let o="";for(const e in t)o+=t[e]+",";o+=n;let s=this.functionTypesByShape[o];"number"!=typeof s&&(s=this.functionTypeCount++,r?(this.permanentFunctionTypeCount++,this.permanentFunctionTypesByShape[o]=s,this.permanentFunctionTypesByIndex[s]=[t,Object.values(t).length,n]):(this.functionTypesByShape[o]=s,this.functionTypesByIndex[s]=[t,Object.values(t).length,n]));const a=[s,t,n,`(${JSON.stringify(t)}) -> ${n}`,r];return r?this.permanentFunctionTypes[e]=a:this.functionTypes[e]=a,s}generateTypeSection(){this.beginSection(1),this.appendULeb(this.functionTypeCount);for(let e=0;ee.index-t.index)),e}_generateImportSection(e){const t=this.getImportsToEmit();if(this.lockImports=!0,!1!==e)throw new Error("function table imports are disabled");const n=void 0!==this.getExceptionTag();this.beginSection(2),this.appendULeb(1+(n?1:0)+t.length+this.constantSlots.length+(!1!==e?1:0));for(let e=0;e0)throw new Error("New permanent imports cannot be defined after any indexes have been assigned");const s=this.functionTypes[n];if(!s)throw new Error("No function type named "+n);if(r&&!s[4])throw new Error("A permanent import must have a permanent function type");const a=s[0],i=r?this.permanentImportedFunctions:this.importedFunctions;if("number"==typeof o&&(o=qs().get(o)),"function"!=typeof o&&void 0!==o)throw new Error(`Value passed for imported function ${t} was not a function or valid function pointer or undefined`);return i[t]={index:void 0,typeIndex:a,module:e,name:t,func:o}}markImportAsUsed(e){const t=this.importedFunctions[e];if(!t)throw new Error("No imported function named "+e);"number"!=typeof t.index&&(t.index=this.importedFunctionCount++)}getTypeIndex(e){const t=this.functionTypes[e];if(!t)throw new Error("No type named "+e);return t[0]}defineFunction(e,t){const n={index:this.functions.length,name:e.name,typeName:e.type,typeIndex:this.getTypeIndex(e.type),export:e.export,locals:e.locals,generator:t,error:null,blob:null};return this.functions.push(n),n.export&&(this.estimatedExportBytes+=n.name.length+8),n}emitImportsAndFunctions(e){let t=0;for(let e=0;e0)throw new Error(`${this.activeBlocks} unclosed block(s) at end of function`);const t=this._pop(e);return this.inFunction=!1,t}block(e,t){const n=this.appendU8(t||2);return e?this.appendU8(e):this.appendU8(64),this.activeBlocks++,n}endBlock(){if(this.activeBlocks<=0)throw new Error("No blocks active");this.activeBlocks--,this.appendU8(11)}arg(e,t){const n="string"==typeof e?this.locals.has(e)?this.locals.get(e):void 0:e;if("number"!=typeof n)throw new Error("No local named "+e);t&&this.appendU8(t),this.appendULeb(n)}local(e,t){const n="string"==typeof e?this.locals.has(e)?this.locals.get(e):void 0:e+this.argumentCount;if("number"!=typeof n)throw new Error("No local named "+e);t?this.appendU8(t):this.appendU8(32),this.appendULeb(n)}appendMemarg(e,t){this.appendULeb(t),this.appendULeb(e)}lea(e,t){"string"==typeof e?this.local(e):this.i32_const(e),this.i32_const(t),this.appendU8(106)}getArrayView(e,t){if(!0!==t&&this.stackSize>1)throw new Error("Jiterpreter block stack not empty");return this.stack[0].getArrayView(e)}getConstants(){const e={};for(let t=0;t=this.capacity)throw new Error("Buffer full");const t=this.size;return K()[this.buffer+this.size++]=e,t}appendU32(e){const t=this.size;return o.mono_jiterp_write_number_unaligned(this.buffer+this.size,e,0),this.size+=4,t}appendI32(e){const t=this.size;return o.mono_jiterp_write_number_unaligned(this.buffer+this.size,e,1),this.size+=4,t}appendF32(e){const t=this.size;return o.mono_jiterp_write_number_unaligned(this.buffer+this.size,e,2),this.size+=4,t}appendF64(e){const t=this.size;return o.mono_jiterp_write_number_unaligned(this.buffer+this.size,e,3),this.size+=8,t}appendBoundaryValue(e,t){if(this.size+8>=this.capacity)throw new Error("Buffer full");const n=o.mono_jiterp_encode_leb_signed_boundary(this.buffer+this.size,e,t);if(n<1)throw new Error(`Failed to encode ${e} bit boundary value with sign ${t}`);return this.size+=n,n}appendULeb(e){if("number"!=typeof e&&mt(!1,`appendULeb expected number but got ${e}`),e>=0||mt(!1,"cannot pass negative value to appendULeb"),e<127){if(this.size+1>=this.capacity)throw new Error("Buffer full");return this.appendU8(e),1}if(this.size+8>=this.capacity)throw new Error("Buffer full");const t=o.mono_jiterp_encode_leb52(this.buffer+this.size,e,0);if(t<1)throw new Error(`Failed to encode value '${e}' as unsigned leb`);return this.size+=t,t}appendLeb(e){if("number"!=typeof e&&mt(!1,`appendLeb expected number but got ${e}`),this.size+8>=this.capacity)throw new Error("Buffer full");const t=o.mono_jiterp_encode_leb52(this.buffer+this.size,e,1);if(t<1)throw new Error(`Failed to encode value '${e}' as signed leb`);return this.size+=t,t}appendLebRef(e,t){if(this.size+8>=this.capacity)throw new Error("Buffer full");const n=o.mono_jiterp_encode_leb64_ref(this.buffer+this.size,e,t?1:0);if(n<1)throw new Error("Failed to encode value as leb");return this.size+=n,n}copyTo(e,t){if("number"!=typeof t&&(t=this.size),e.size+t>=e.capacity)throw new Error("Destination buffer full");K().copyWithin(e.buffer+e.size,this.buffer,this.buffer+t),e.size+=t}appendBytes(e,t){const n=this.size,r=K(),o="number"!=typeof t?e.length:t;if(this.size+o>=this.capacity)throw new Error("Buffer full");return e.buffer===r.buffer?(r.copyWithin(this.buffer+n,e.byteOffset,e.byteOffset+o),this.size+=o):("number"==typeof t&&(e=new Uint8Array(e.buffer,e.byteOffset,t)),this.getArrayView(!0).set(e,this.size),this.size+=e.length),n}appendName(e){let t=e.length,n=1===e.length?e.charCodeAt(0):-1;if(n>127&&(n=-1),t&&n<0)if(this.encoder)t=this.encoder.encodeInto(e,this.textBuf).written||0;else for(let n=0;n127)throw new Error("Out of range character and no TextEncoder available");this.textBuf[n]=t}this.appendULeb(t),n>=0?this.appendU8(n):t>1&&this.appendBytes(this.textBuf,t)}getArrayView(e){return new Uint8Array(K().buffer,this.buffer,e?this.capacity:this.size)}}class Fs{constructor(e){this.segments=[],this.backBranchTargets=null,this.lastSegmentEnd=0,this.overheadBytes=0,this.blockStack=[],this.backDispatchOffsets=[],this.dispatchTable=new Map,this.observedBackBranchTargets=new Set,this.trace=0,this.builder=e}initialize(e,t,n){this.segments.length=0,this.blockStack.length=0,this.startOfBody=e,this.backBranchTargets=t,this.base=this.builder.base,this.ip=this.lastSegmentStartIp=this.firstOpcodeIp=this.builder.base,this.lastSegmentEnd=0,this.overheadBytes=10,this.dispatchTable.clear(),this.observedBackBranchTargets.clear(),this.trace=n,this.backDispatchOffsets.length=0}entry(e){this.entryIp=e;const t=o.mono_jiterp_get_opcode_info(676,1);return this.firstOpcodeIp=e+2*t,this.appendBlob(),1!==this.segments.length&&mt(!1,"expected 1 segment"),"blob"!==this.segments[0].type&&mt(!1,"expected blob"),this.entryBlob=this.segments[0],this.segments.length=0,this.overheadBytes+=9,this.backBranchTargets&&(this.overheadBytes+=20,this.overheadBytes+=this.backBranchTargets.length),this.firstOpcodeIp}appendBlob(){this.builder.current.size!==this.lastSegmentEnd&&(this.segments.push({type:"blob",ip:this.lastSegmentStartIp,start:this.lastSegmentEnd,length:this.builder.current.size-this.lastSegmentEnd}),this.lastSegmentStartIp=this.ip,this.lastSegmentEnd=this.builder.current.size,this.overheadBytes+=2)}startBranchBlock(e,t){this.appendBlob(),this.segments.push({type:"branch-block-header",ip:e,isBackBranchTarget:t}),this.overheadBytes+=1}branch(e,t,n){t&&this.observedBackBranchTargets.add(e),this.appendBlob(),this.segments.push({type:"branch",from:this.ip,target:e,isBackward:t,branchType:n}),this.overheadBytes+=4,t&&(this.overheadBytes+=4)}jumpTable(e,t){this.appendBlob(),this.segments.push({type:"jump-table",from:this.ip,targets:e,fallthrough:t}),this.overheadBytes+=4,this.overheadBytes+=e.length,this.overheadBytes+=24}emitBlob(e,t){const n=t.subarray(e.start,e.start+e.length);this.builder.appendBytes(n)}generate(){this.appendBlob();const e=this.builder.endFunction(!1);this.builder._push(),this.builder.base=this.base,this.emitBlob(this.entryBlob,e),this.backBranchTargets&&this.builder.block(64,3);for(let e=0;ee-t));for(let e=0;e0&&Ve("No back branch targets were reachable after filtering");else if(1===this.backDispatchOffsets.length)this.trace>0&&(this.backDispatchOffsets[0]===this.entryIp?Ve(`Exactly one back dispatch offset and it was the entry point 0x${this.entryIp.toString(16)}`):Ve(`Exactly one back dispatch offset and it was 0x${this.backDispatchOffsets[0].toString(16)}`)),this.builder.local("disp"),this.builder.appendU8(13),this.builder.appendULeb(this.blockStack.indexOf(this.backDispatchOffsets[0]));else{this.trace>0&&Ve(`${this.backDispatchOffsets.length} back branch offsets after filtering.`),this.builder.block(64),this.builder.block(64),this.builder.local("disp"),this.builder.appendU8(14),this.builder.appendULeb(this.backDispatchOffsets.length+1),this.builder.appendULeb(1);for(let e=0;e0&&this.blockStack.push(0)}this.trace>1&&Ve(`blockStack=${this.blockStack}`);for(let t=0;t=0?(da(13,1),this.builder.appendULeb(n+e)):(da(14,1),this.trace>0&&Ve(`Switch target ${t} not found in block stack ${this.blockStack}`),this.builder.appendULeb(0))}const t=this.blockStack.indexOf(n.fallthrough);t>=0?(da(13,1),this.builder.appendULeb(t+e)):(da(14,1),this.trace>0&&Ve(`Switch fallthrough ${n.fallthrough} not found in block stack ${this.blockStack}`),this.builder.appendULeb(0)),this.builder.appendU8(0);break}case"branch":{const e=n.isBackward?0:n.target;let t,r=this.blockStack.indexOf(e),o=!1;if(n.isBackward&&(this.dispatchTable.has(n.target)?(t=this.dispatchTable.get(n.target),this.trace>1&&Ve(`backward br from ${n.from.toString(16)} to ${n.target.toString(16)}: disp=${t}`),o=!0):(this.trace>0&&Ve(`br from ${n.from.toString(16)} to ${n.target.toString(16)} failed: back branch target not in dispatch table`),r=-1)),r>=0||o){let e=0;switch(n.branchType){case 2:this.builder,n.from,void 0!==t&&(this.builder.i32_const(t),this.builder.local("disp",33)),this.builder.appendU8(12);break;case 3:this.builder.block(64,4),this.builder,n.from,void 0!==t&&(this.builder.i32_const(t),this.builder.local("disp",33)),this.builder.appendU8(12),e=1;break;case 0:void 0!==t&&(this.builder.i32_const(t),this.builder.local("disp",33)),this.builder.appendU8(12);break;case 1:void 0!==t?(this.builder.block(64,4),this.builder.i32_const(t),this.builder.local("disp",33),e=1,this.builder.appendU8(12)):this.builder.appendU8(13);break;default:throw new Error("Unimplemented branch type")}this.builder.appendULeb(e+r),e&&this.builder.endBlock(),this.trace>1&&Ve(`br from ${n.from.toString(16)} to ${n.target.toString(16)} breaking out ${e+r+1} level(s)`)}else{if(this.trace>0){const e=this.base;n.target>=e&&n.target1&&Ve(`br from ${n.from.toString(16)} to ${n.target.toString(16)} failed (outside of trace 0x${e.toString(16)} - 0x${this.exitIp.toString(16)})`)}const e=1===n.branchType||3===n.branchType;e&&this.builder.block(64,4),Ws(this.builder,n.target,4),e&&this.builder.endBlock()}break}default:throw new Error("unreachable")}}return this.backBranchTargets&&(this.blockStack.length<=1||mt(!1,"expected one or zero entries in the block stack at the end"),this.blockStack.length&&this.blockStack.shift(),this.builder.endBlock()),0!==this.blockStack.length&&mt(!1,`expected block stack to be empty at end of function but it was ${this.blockStack}`),this.builder.ip_const(this.exitIp),this.builder.appendU8(15),this.builder.appendU8(11),this.builder._pop(!1)}}let Ps;const Ms={},zs=globalThis.performance&&globalThis.performance.now?globalThis.performance.now.bind(globalThis.performance):Date.now;function Vs(e,t,n){let r;switch(n){case 633:r="prof_enter";break;case 634:r="prof_samplepoint";break;case 635:case 636:r="prof_leave";break;default:throw new Error(`Unimplemented profiler event ${n}`)}e.local("frame"),e.i32_const(t),e.callImport(r)}function Ws(e,t,n){e.ip_const(t),e.options.countBailouts&&(e.i32_const(e.traceIndex),e.i32_const(n),e.callImport("bailout")),e.appendU8(15)}function Hs(e,t,n,r){e.local("cinfo"),e.block(64,4),e.local("cinfo"),e.local("disp"),e.appendU8(54),e.appendMemarg(ea(19),0),n<=e.options.monitoringLongDistance+2&&(e.local("cinfo"),e.i32_const(n),e.appendU8(54),e.appendMemarg(ea(20),0)),e.endBlock(),e.ip_const(t),e.options.countBailouts&&(e.i32_const(e.traceIndex),e.i32_const(r),e.callImport("bailout")),e.appendU8(15)}function qs(){if(Ps||(Ps=ct.getWasmIndirectFunctionTable()),!Ps)throw new Error("Module did not export the indirect function table");return Ps}function Gs(e,t){t||mt(!1,"Attempting to set null function into table");const n=o.mono_jiterp_allocate_table_entry(e);return n>0&&qs().set(n,t),n}function Js(e,t,n,r,o){if(r<=0)return o&&e.appendU8(26),!0;if(r>=Rs)return!1;const s=o?"memop_dest":"pLocals";o&&e.local(s,33);let a=o?0:t;if(e.options.enableSimd){const t=16;for(;r>=t;)e.local(s),e.v128_const(0),e.appendSimd(11),e.appendMemarg(a,0),a+=t,r-=t}for(;r>=8;)e.local(s),e.i52_const(0),e.appendU8(55),e.appendMemarg(a,0),a+=8,r-=8;for(;r>=1;){e.local(s),e.i32_const(0);let t=r%4;switch(t){case 0:t=4,e.appendU8(54);break;case 1:e.appendU8(58);break;case 3:case 2:t=2,e.appendU8(59)}e.appendMemarg(a,0),a+=t,r-=t}return!0}function Xs(e,t,n){Js(e,0,0,n,!0)||(e.i32_const(t),e.i32_const(n),e.appendU8(252),e.appendU8(11),e.appendU8(0))}function Qs(e,t,n,r,o,s,a){if(r<=0)return o&&(e.appendU8(26),e.appendU8(26)),!0;if(r>=Bs)return!1;o?(s=s||"memop_dest",a=a||"memop_src",e.local(a,33),e.local(s,33)):s&&a||(s=a="pLocals");let i=o?0:t,c=o?0:n;if(e.options.enableSimd){const t=16;for(;r>=t;)e.local(s),e.local(a),e.appendSimd(0,!0),e.appendMemarg(c,0),e.appendSimd(11),e.appendMemarg(i,0),i+=t,c+=t,r-=t}for(;r>=8;)e.local(s),e.local(a),e.appendU8(41),e.appendMemarg(c,0),e.appendU8(55),e.appendMemarg(i,0),i+=8,c+=8,r-=8;for(;r>=1;){let t,n,o=r%4;switch(o){case 0:o=4,t=40,n=54;break;default:case 1:o=1,t=44,n=58;break;case 3:case 2:o=2,t=46,n=59}e.local(s),e.local(a),e.appendU8(t),e.appendMemarg(c,0),e.appendU8(n),e.appendMemarg(i,0),c+=o,i+=o,r-=o}return!0}function Ys(e,t){return Qs(e,0,0,t,!0)||(e.i32_const(t),e.appendU8(252),e.appendU8(10),e.appendU8(0),e.appendU8(0)),!0}function Zs(){const e=da(5,1);e>=Ls&&(Ve(`Disabling jiterpreter after ${e} failures`),pa({enableTraces:!1,enableInterpEntry:!1,enableJitCall:!1}))}const Ks={};function ea(e){const t=Ks[e];return void 0===t?Ks[e]=o.mono_jiterp_get_member_offset(e):t}function ta(e){const t=Ke.wasmExports[e];if("function"!=typeof t)throw new Error(`raw cwrap ${e} not found`);return t}const na={};function ra(e){let t=na[e];return"number"!=typeof t&&(t=na[e]=o.mono_jiterp_get_opcode_value_table_entry(e)),t}function oa(e,t){return[e,e,t]}let sa;function aa(){if(!o.mono_wasm_is_zero_page_reserved())return!1;if(!0===sa)return!1;const e=te();for(let t=0;t<8;t++)if(0!==e[t])return!1===sa&&He(`Zero page optimizations are enabled but garbage appeared in memory at address ${4*t}: ${e[t]}`),sa=!0,!1;return sa=!1,!0}const ia={enableTraces:"jiterpreter-traces-enabled",enableInterpEntry:"jiterpreter-interp-entry-enabled",enableJitCall:"jiterpreter-jit-call-enabled",enableBackwardBranches:"jiterpreter-backward-branch-entries-enabled",enableCallResume:"jiterpreter-call-resume-enabled",enableWasmEh:"jiterpreter-wasm-eh-enabled",enableSimd:"jiterpreter-simd-enabled",enableAtomics:"jiterpreter-atomics-enabled",zeroPageOptimization:"jiterpreter-zero-page-optimization",cprop:"jiterpreter-constant-propagation",enableStats:"jiterpreter-stats-enabled",disableHeuristic:"jiterpreter-disable-heuristic",estimateHeat:"jiterpreter-estimate-heat",countBailouts:"jiterpreter-count-bailouts",dumpTraces:"jiterpreter-dump-traces",useConstants:"jiterpreter-use-constants",eliminateNullChecks:"jiterpreter-eliminate-null-checks",noExitBackwardBranches:"jiterpreter-backward-branches-enabled",directJitCalls:"jiterpreter-direct-jit-calls",minimumTraceValue:"jiterpreter-minimum-trace-value",minimumTraceHitCount:"jiterpreter-minimum-trace-hit-count",monitoringPeriod:"jiterpreter-trace-monitoring-period",monitoringShortDistance:"jiterpreter-trace-monitoring-short-distance",monitoringLongDistance:"jiterpreter-trace-monitoring-long-distance",monitoringMaxAveragePenalty:"jiterpreter-trace-monitoring-max-average-penalty",backBranchBoost:"jiterpreter-back-branch-boost",jitCallHitCount:"jiterpreter-jit-call-hit-count",jitCallFlushThreshold:"jiterpreter-jit-call-queue-flush-threshold",interpEntryHitCount:"jiterpreter-interp-entry-hit-count",interpEntryFlushThreshold:"jiterpreter-interp-entry-queue-flush-threshold",wasmBytesLimit:"jiterpreter-wasm-bytes-limit",tableSize:"jiterpreter-table-size",aotTableSize:"jiterpreter-aot-table-size",maxModuleSize:"jiterpreter-max-module-size",maxSwitchSize:"jiterpreter-max-switch-size"};let ca=-1,la={};function pa(e){for(const t in e){const n=ia[t];if(!n){He(`Unrecognized jiterpreter option: ${t}`);continue}const r=e[t];"boolean"==typeof r?o.mono_jiterp_parse_option((r?"--":"--no-")+n):"number"==typeof r?o.mono_jiterp_parse_option(`--${n}=${r}`):He(`Jiterpreter option must be a boolean or a number but was ${typeof r} '${r}'`)}}function ua(e){return o.mono_jiterp_get_counter(e)}function da(e,t){return o.mono_jiterp_modify_counter(e,t)}function fa(){const e=o.mono_jiterp_get_options_version();return e!==ca&&(function(){la={};for(const e in ia){const t=o.mono_jiterp_get_option_as_int(ia[e]);t!==Ns?la[e]=t:Ve(`Failed to retrieve value of option ${ia[e]}`)}}(),ca=e),la}function _a(e,t,n,r){const s=qs(),a=t,i=a+n-1;return i= ${s.length}`),s.set(a,r),o.mono_jiterp_initialize_table(e,a,i),t+n}let ma=!1;const ha=["Unknown","InterpreterTiering","NullCheck","VtableNotInitialized","Branch","BackwardBranch","ConditionalBranch","ConditionalBackwardBranch","ComplexBranch","ArrayLoadFailed","ArrayStoreFailed","StringOperationFailed","DivideByZero","Overflow","Return","Call","Throw","AllocFailed","SpanOperationFailed","CastFailed","SafepointBranchTaken","UnboxFailed","CallDelegate","Debugging","Icall","UnexpectedRetIp","LeaveCheck","SwitchSize","SwitchTarget"],ga={2:["V128_I1_NEGATION","V128_I2_NEGATION","V128_I4_NEGATION","V128_ONES_COMPLEMENT","V128_U2_WIDEN_LOWER","V128_U2_WIDEN_UPPER","V128_I1_CREATE_SCALAR","V128_I2_CREATE_SCALAR","V128_I4_CREATE_SCALAR","V128_I8_CREATE_SCALAR","V128_I1_EXTRACT_MSB","V128_I2_EXTRACT_MSB","V128_I4_EXTRACT_MSB","V128_I8_EXTRACT_MSB","V128_I1_CREATE","V128_I2_CREATE","V128_I4_CREATE","V128_I8_CREATE","SplatX1","SplatX2","SplatX4","SplatX8","NegateD1","NegateD2","NegateD4","NegateD8","NegateR4","NegateR8","SqrtR4","SqrtR8","CeilingR4","CeilingR8","FloorR4","FloorR8","TruncateR4","TruncateR8","RoundToNearestR4","RoundToNearestR8","NotANY","AnyTrueANY","AllTrueD1","AllTrueD2","AllTrueD4","AllTrueD8","PopCountU1","BitmaskD1","BitmaskD2","BitmaskD4","BitmaskD8","AddPairwiseWideningI1","AddPairwiseWideningU1","AddPairwiseWideningI2","AddPairwiseWideningU2","AbsI1","AbsI2","AbsI4","AbsI8","AbsR4","AbsR8","ConvertToSingleI4","ConvertToSingleU4","ConvertToSingleR8","ConvertToDoubleLowerI4","ConvertToDoubleLowerU4","ConvertToDoubleLowerR4","ConvertToInt32SaturateR4","ConvertToUInt32SaturateR4","ConvertToInt32SaturateR8","ConvertToUInt32SaturateR8","SignExtendWideningLowerD1","SignExtendWideningLowerD2","SignExtendWideningLowerD4","SignExtendWideningUpperD1","SignExtendWideningUpperD2","SignExtendWideningUpperD4","ZeroExtendWideningLowerD1","ZeroExtendWideningLowerD2","ZeroExtendWideningLowerD4","ZeroExtendWideningUpperD1","ZeroExtendWideningUpperD2","ZeroExtendWideningUpperD4","LoadVector128ANY","LoadScalarVector128X4","LoadScalarVector128X8","LoadScalarAndSplatVector128X1","LoadScalarAndSplatVector128X2","LoadScalarAndSplatVector128X4","LoadScalarAndSplatVector128X8","LoadWideningVector128I1","LoadWideningVector128U1","LoadWideningVector128I2","LoadWideningVector128U2","LoadWideningVector128I4","LoadWideningVector128U4"],3:["V128_I1_ADD","V128_I2_ADD","V128_I4_ADD","V128_R4_ADD","V128_I1_SUB","V128_I2_SUB","V128_I4_SUB","V128_R4_SUB","V128_BITWISE_AND","V128_BITWISE_OR","V128_BITWISE_EQUALITY","V128_BITWISE_INEQUALITY","V128_R4_FLOAT_EQUALITY","V128_R8_FLOAT_EQUALITY","V128_EXCLUSIVE_OR","V128_I1_MULTIPLY","V128_I2_MULTIPLY","V128_I4_MULTIPLY","V128_R4_MULTIPLY","V128_R4_DIVISION","V128_I1_LEFT_SHIFT","V128_I2_LEFT_SHIFT","V128_I4_LEFT_SHIFT","V128_I8_LEFT_SHIFT","V128_I1_RIGHT_SHIFT","V128_I2_RIGHT_SHIFT","V128_I4_RIGHT_SHIFT","V128_I1_URIGHT_SHIFT","V128_I2_URIGHT_SHIFT","V128_I4_URIGHT_SHIFT","V128_I8_URIGHT_SHIFT","V128_U1_NARROW","V128_U1_GREATER_THAN","V128_I1_LESS_THAN","V128_U1_LESS_THAN","V128_I2_LESS_THAN","V128_I1_EQUALS","V128_I2_EQUALS","V128_I4_EQUALS","V128_R4_EQUALS","V128_I8_EQUALS","V128_I1_EQUALS_ANY","V128_I2_EQUALS_ANY","V128_I4_EQUALS_ANY","V128_I8_EQUALS_ANY","V128_AND_NOT","V128_U2_LESS_THAN_EQUAL","V128_I1_SHUFFLE","V128_I2_SHUFFLE","V128_I4_SHUFFLE","V128_I8_SHUFFLE","ExtractScalarI1","ExtractScalarU1","ExtractScalarI2","ExtractScalarU2","ExtractScalarD4","ExtractScalarD8","ExtractScalarR4","ExtractScalarR8","SwizzleD1","AddD1","AddD2","AddD4","AddD8","AddR4","AddR8","SubtractD1","SubtractD2","SubtractD4","SubtractD8","SubtractR4","SubtractR8","MultiplyD2","MultiplyD4","MultiplyD8","MultiplyR4","MultiplyR8","DivideR4","DivideR8","DotI2","ShiftLeftD1","ShiftLeftD2","ShiftLeftD4","ShiftLeftD8","ShiftRightArithmeticD1","ShiftRightArithmeticD2","ShiftRightArithmeticD4","ShiftRightArithmeticD8","ShiftRightLogicalD1","ShiftRightLogicalD2","ShiftRightLogicalD4","ShiftRightLogicalD8","AndANY","AndNotANY","OrANY","XorANY","CompareEqualD1","CompareEqualD2","CompareEqualD4","CompareEqualD8","CompareEqualR4","CompareEqualR8","CompareNotEqualD1","CompareNotEqualD2","CompareNotEqualD4","CompareNotEqualD8","CompareNotEqualR4","CompareNotEqualR8","CompareLessThanI1","CompareLessThanU1","CompareLessThanI2","CompareLessThanU2","CompareLessThanI4","CompareLessThanU4","CompareLessThanI8","CompareLessThanR4","CompareLessThanR8","CompareLessThanOrEqualI1","CompareLessThanOrEqualU1","CompareLessThanOrEqualI2","CompareLessThanOrEqualU2","CompareLessThanOrEqualI4","CompareLessThanOrEqualU4","CompareLessThanOrEqualI8","CompareLessThanOrEqualR4","CompareLessThanOrEqualR8","CompareGreaterThanI1","CompareGreaterThanU1","CompareGreaterThanI2","CompareGreaterThanU2","CompareGreaterThanI4","CompareGreaterThanU4","CompareGreaterThanI8","CompareGreaterThanR4","CompareGreaterThanR8","CompareGreaterThanOrEqualI1","CompareGreaterThanOrEqualU1","CompareGreaterThanOrEqualI2","CompareGreaterThanOrEqualU2","CompareGreaterThanOrEqualI4","CompareGreaterThanOrEqualU4","CompareGreaterThanOrEqualI8","CompareGreaterThanOrEqualR4","CompareGreaterThanOrEqualR8","ConvertNarrowingSaturateSignedI2","ConvertNarrowingSaturateSignedI4","ConvertNarrowingSaturateUnsignedI2","ConvertNarrowingSaturateUnsignedI4","MultiplyWideningLowerI1","MultiplyWideningLowerI2","MultiplyWideningLowerI4","MultiplyWideningLowerU1","MultiplyWideningLowerU2","MultiplyWideningLowerU4","MultiplyWideningUpperI1","MultiplyWideningUpperI2","MultiplyWideningUpperI4","MultiplyWideningUpperU1","MultiplyWideningUpperU2","MultiplyWideningUpperU4","AddSaturateI1","AddSaturateU1","AddSaturateI2","AddSaturateU2","SubtractSaturateI1","SubtractSaturateU1","SubtractSaturateI2","SubtractSaturateU2","MultiplyRoundedSaturateQ15I2","MinI1","MinI2","MinI4","MinU1","MinU2","MinU4","MaxI1","MaxI2","MaxI4","MaxU1","MaxU2","MaxU4","AverageRoundedU1","AverageRoundedU2","MinR4","MinR8","MaxR4","MaxR8","PseudoMinR4","PseudoMinR8","PseudoMaxR4","PseudoMaxR8","StoreANY"],4:["V128_CONDITIONAL_SELECT","ReplaceScalarD1","ReplaceScalarD2","ReplaceScalarD4","ReplaceScalarD8","ReplaceScalarR4","ReplaceScalarR8","ShuffleD1","BitwiseSelectANY","LoadScalarAndInsertX1","LoadScalarAndInsertX2","LoadScalarAndInsertX4","LoadScalarAndInsertX8","StoreSelectedScalarX1","StoreSelectedScalarX2","StoreSelectedScalarX4","StoreSelectedScalarX8"]},ba={13:[65,0],14:[65,1]},ya={456:168,462:174,457:170,463:176},wa={508:[69,40,54],428:[106,40,54],430:[107,40,54],432:[107,40,54],436:[115,40,54],429:[124,41,55],431:[125,41,55],433:[125,41,55],437:[133,41,55],511:[106,40,54],515:[108,40,54],513:[124,41,55],517:[126,41,55],434:[140,42,56],435:[154,43,57],464:[178,40,56],467:[183,40,57],438:[184,40,57],465:[180,41,56],468:[185,41,57],439:[186,41,57],469:[187,42,57],466:[182,43,56],460:[1,52,55],461:[1,53,55],444:[113,40,54],452:[113,40,54],440:[117,40,54],448:[117,40,54],445:[113,41,54],453:[113,41,54],441:[117,41,54],449:[117,41,54],525:[116,40,54],526:[134,41,55],527:[117,40,54],528:[135,41,55],523:[118,40,54],524:[136,41,55],640:[119,40,54],641:[137,41,55],642:[120,40,54],643:[138,41,55],644:[103,40,54],646:[104,40,54],648:[105,40,54],645:[121,41,55],647:[122,41,55],649:[123,41,55],512:[106,40,54],516:[108,40,54],514:[124,41,55],518:[126,41,55],519:[113,40,54],520:[113,40,54],521:[114,40,54],522:[114,40,54]},ka={394:187,395:1,398:187,399:1,402:187,403:1,406:187,407:1,412:187,413:1,416:187,417:1,426:187,427:1,420:187,421:1,65536:187,65537:187,65535:187,65539:1,65540:1,65538:1},Sa={344:[106,40,54],362:[106,40,54],364:[106,40,54],348:[107,40,54],352:[108,40,54],366:[108,40,54],368:[108,40,54],356:[109,40,54],360:[110,40,54],380:[111,40,54],384:[112,40,54],374:[113,40,54],376:[114,40,54],378:[115,40,54],388:[116,40,54],390:[117,40,54],386:[118,40,54],345:[124,41,55],349:[125,41,55],353:[126,41,55],357:[127,41,55],381:[129,41,55],361:[128,41,55],385:[130,41,55],375:[131,41,55],377:[132,41,55],379:[133,41,55],389:[134,41,55],391:[135,41,55],387:[136,41,55],346:[146,42,56],350:[147,42,56],354:[148,42,56],358:[149,42,56],347:[160,43,57],351:[161,43,57],355:[162,43,57],359:[163,43,57],392:[70,40,54],396:[71,40,54],414:[72,40,54],400:[74,40,54],418:[76,40,54],404:[78,40,54],424:[73,40,54],410:[75,40,54],422:[77,40,54],408:[79,40,54],393:[81,41,54],397:[82,41,54],415:[83,41,54],401:[85,41,54],419:[87,41,54],405:[89,41,54],425:[84,41,54],411:[86,41,54],423:[88,41,54],409:[90,41,54]},va={187:392,207:396,195:400,215:410,199:414,223:424,191:404,211:408,203:418,219:422,231:[392,!1,!0],241:[396,!1,!0],235:[400,!1,!0],245:[410,!1,!0],237:[414,!1,!0],249:[424,!1,!0],233:[404,!1,!0],243:[408,!1,!0],239:[418,!1,!0],247:[422,!1,!0],251:[392,65,!0],261:[396,65,!0],255:[400,65,!0],265:[410,65,!0],257:[414,65,!0],269:[424,65,!0],253:[404,65,!0],263:[408,65,!0],259:[418,65,!0],267:[422,65,!0],188:393,208:397,196:401,216:411,200:415,224:425,192:405,212:409,204:419,220:423,252:[393,66,!0],256:[401,66,!0],266:[411,66,!0],258:[415,66,!0],270:[425,66,!0],254:[405,66,!0],264:[409,66,!0],260:[419,66,!0],268:[423,66,!0],189:394,209:65535,197:402,217:412,201:416,225:426,193:406,213:65536,205:420,221:65537,190:395,210:65538,198:403,218:413,202:417,226:427,194:407,214:65539,206:421,222:65540},Ua={599:[!0,!1,159],626:[!0,!0,145],586:[!0,!1,155],613:[!0,!0,141],592:[!0,!1,156],619:[!0,!0,142],603:[!0,!1,153],630:[!0,!0,139],581:[!0,!1,"acos"],608:[!0,!0,"acosf"],582:[!0,!1,"acosh"],609:[!0,!0,"acoshf"],587:[!0,!1,"cos"],614:[!0,!0,"cosf"],579:[!0,!1,"asin"],606:[!0,!0,"asinf"],580:[!0,!1,"asinh"],607:[!0,!0,"asinhf"],598:[!0,!1,"sin"],625:[!0,!0,"sinf"],583:[!0,!1,"atan"],610:[!0,!0,"atanf"],584:[!0,!1,"atanh"],611:[!0,!0,"atanhf"],601:[!0,!1,"tan"],628:[!0,!0,"tanf"],588:[!0,!1,"cbrt"],615:[!0,!0,"cbrtf"],590:[!0,!1,"exp"],617:[!0,!0,"expf"],593:[!0,!1,"log"],620:[!0,!0,"logf"],594:[!0,!1,"log2"],621:[!0,!0,"log2f"],595:[!0,!1,"log10"],622:[!0,!0,"log10f"],604:[!1,!1,164],631:[!1,!0,150],605:[!1,!1,165],632:[!1,!0,151],585:[!1,!1,"atan2"],612:[!1,!0,"atan2f"],596:[!1,!1,"pow"],623:[!1,!0,"powf"],383:[!1,!1,"fmod"],382:[!1,!0,"fmodf"]},Ta={560:[67,0,0],561:[67,192,0],562:[68,0,1],563:[68,193,1],564:[65,0,2],565:[66,0,3]},Ea={566:[74,0,0],567:[74,192,0],568:[75,0,1],569:[75,193,1],570:[72,0,2],571:[73,0,3]},xa={653:1,654:2,655:4,656:8},Ia={653:44,654:46,655:40,656:41},Aa={653:58,654:59,655:54,656:55},ja=new Set([20,21,22,23,24,25,26,27,28,29,30,80,81,82,83,84,85,86,87,88,89,90,91]),$a={51:[16,54],52:[16,54],53:[8,54],54:[8,54],55:[4,54],57:[4,56],56:[2,55],58:[2,57]},La={1:[16,40],2:[8,40],3:[4,40],5:[4,42],4:[2,41],6:[2,43]},Ra=new Set([81,84,85,86,87,82,83,88,89,90,91,92,93]),Ba={13:[16],14:[8],15:[4],16:[2]},Na={10:100,11:132,12:164,13:196,45:100,46:132,47:164,48:196},Oa={6:[44,23],7:[46,26],8:[40,28],9:[41,30]};function Ca(e,t){return O(e+2*t)}function Da(e,t){return z(e+2*t)}function Fa(e,t){return P(e+2*t)}function Pa(e,t){return F(e+2*t)}function Ma(e){return P(e+ea(4))}function za(e,t){const n=P(Ma(e)+ea(5));return P(n+t*gc)}function Va(e,t){const n=P(Ma(e)+ea(12));return P(n+t*gc)}function Wa(e,t,n){if(!n)return!1;for(let r=0;r=40||mt(!1,`Expected load opcode but got ${n}`),e.appendU8(n),void 0!==r)e.appendULeb(r);else if(253===n)throw new Error("PREFIX_simd ldloc without a simdOpcode");const o=ti(t,n,r);e.appendMemarg(t,o)}function oi(e,t,n,r){n>=54||mt(!1,`Expected store opcode but got ${n}`),e.appendU8(n),void 0!==r&&e.appendULeb(r);const o=ti(t,n,r);e.appendMemarg(t,o),Za(t),void 0!==r&&Za(t+8)}function si(e,t,n){n>0&&Ka(t,n),e.lea("pLocals",t)}function ai(e,t,n,r){Ka(t,r),Js(e,t,0,r,!1)||(si(e,t,r),Xs(e,n,r))}function ii(e,t,n,r){if(Ka(t,r),Qs(e,t,n,r,!1))return!0;si(e,t,r),si(e,n,0),Ys(e,r)}function ci(e,t){return 0!==o.mono_jiterp_is_imethod_var_address_taken(Ma(e.frame),t)}function li(e,t,n,r){if(e.allowNullCheckOptimization&&Xa.has(t)&&!ci(e,t))return da(7,1),void(Qa===t?r&&e.local("cknull_ptr"):(ri(e,t,40),e.local("cknull_ptr",r?34:33),Qa=t));ri(e,t,40),e.local("cknull_ptr",34),e.appendU8(69),e.block(64,4),Ws(e,n,2),e.endBlock(),r&&e.local("cknull_ptr"),e.allowNullCheckOptimization&&!ci(e,t)?(Xa.set(t,n),Qa=t):Qa=-1}function pi(e,t,n){let r,s=54;const a=ba[n];if(a)e.local("pLocals"),e.appendU8(a[0]),r=a[1],e.appendLeb(r);else switch(n){case 15:e.local("pLocals"),r=Da(t,2),e.i32_const(r);break;case 16:e.local("pLocals"),r=Pa(t,2),e.i32_const(r);break;case 17:e.local("pLocals"),e.i52_const(0),s=55;break;case 19:e.local("pLocals"),e.appendU8(66),e.appendLebRef(t+4,!0),s=55;break;case 18:e.local("pLocals"),e.i52_const(Da(t,2)),s=55;break;case 20:e.local("pLocals"),e.appendU8(67),e.appendF32(function(e,t){return n=e+2*t,o.mono_wasm_get_f32_unaligned(n);var n}(t,2)),s=56;break;case 21:e.local("pLocals"),e.appendU8(68),e.appendF64(function(e,t){return n=e+2*t,o.mono_wasm_get_f64_unaligned(n);var n}(t,2)),s=57;break;default:return!1}e.appendU8(s);const i=Ca(t,1);return e.appendMemarg(i,2),Za(i),"number"==typeof r?Ha.set(i,{type:"i32",value:r}):Ha.delete(i),!0}function ui(e,t,n){let r=40,o=54;switch(n){case 74:r=44;break;case 75:r=45;break;case 76:r=46;break;case 77:r=47;break;case 78:r=45,o=58;break;case 79:r=47,o=59;break;case 80:break;case 81:r=41,o=55;break;case 82:{const n=Ca(t,3);return ii(e,Ca(t,1),Ca(t,2),n),!0}case 83:return ii(e,Ca(t,1),Ca(t,2),8),ii(e,Ca(t,3),Ca(t,4),8),!0;case 84:return ii(e,Ca(t,1),Ca(t,2),8),ii(e,Ca(t,3),Ca(t,4),8),ii(e,Ca(t,5),Ca(t,6),8),!0;case 85:return ii(e,Ca(t,1),Ca(t,2),8),ii(e,Ca(t,3),Ca(t,4),8),ii(e,Ca(t,5),Ca(t,6),8),ii(e,Ca(t,7),Ca(t,8),8),!0;default:return!1}return e.local("pLocals"),ri(e,Ca(t,2),r),oi(e,Ca(t,1),o),!0}function di(e,t,n,r){const o=r>=23&&r<=36||r>=50&&r<=60,s=Ca(n,o?2:1),a=Ca(n,3),i=Ca(n,o?1:2),c=e.allowNullCheckOptimization&&Xa.has(s)&&!ci(e,s);36!==r&&45!==r&&li(e,s,n,!1);let l=54,p=40;switch(r){case 23:p=44;break;case 24:p=45;break;case 25:p=46;break;case 26:p=47;break;case 31:case 41:case 27:break;case 43:case 29:p=42,l=56;break;case 44:case 30:p=43,l=57;break;case 37:case 38:l=58;break;case 39:case 40:l=59;break;case 28:case 42:p=41,l=55;break;case 45:return c||e.block(),e.local("pLocals"),e.i32_const(a),e.i32_const(s),e.i32_const(i),e.callImport("stfld_o"),c?(e.appendU8(26),da(7,1)):(e.appendU8(13),e.appendULeb(0),Ws(e,n,2),e.endBlock()),!0;case 32:{const t=Ca(n,4);return si(e,i,t),e.local("cknull_ptr"),0!==a&&(e.i32_const(a),e.appendU8(106)),Ys(e,t),!0}case 46:{const r=za(t,Ca(n,4));return e.local("cknull_ptr"),0!==a&&(e.i32_const(a),e.appendU8(106)),si(e,i,0),e.ptr_const(r),e.callImport("value_copy"),!0}case 47:{const t=Ca(n,4);return e.local("cknull_ptr"),0!==a&&(e.i32_const(a),e.appendU8(106)),si(e,i,0),Ys(e,t),!0}case 36:case 35:return e.local("pLocals"),ri(e,s,40),0!==a&&(e.i32_const(a),e.appendU8(106)),oi(e,i,l),!0;default:return!1}return o&&e.local("pLocals"),e.local("cknull_ptr"),o?(e.appendU8(p),e.appendMemarg(a,0),oi(e,i,l),!0):(ri(e,i,p),e.appendU8(l),e.appendMemarg(a,0),!0)}function fi(e,t,n,r){const o=r>=23&&r<=36||r>=50&&r<=60,s=Ca(n,1),a=za(t,Ca(n,2)),i=za(t,Ca(n,3));!function(e,t,n){e.block(),e.ptr_const(t),e.appendU8(45),e.appendMemarg(ea(0),0),e.appendU8(13),e.appendULeb(0),Ws(e,n,3),e.endBlock()}(e,a,n);let c=54,l=40;switch(r){case 50:l=44;break;case 51:l=45;break;case 52:l=46;break;case 53:l=47;break;case 58:case 65:case 54:break;case 67:case 56:l=42,c=56;break;case 68:case 57:l=43,c=57;break;case 61:case 62:c=58;break;case 63:case 64:c=59;break;case 55:case 66:l=41,c=55;break;case 69:return e.ptr_const(i),si(e,s,0),e.callImport("copy_ptr"),!0;case 59:{const t=Ca(n,4);return si(e,s,t),e.ptr_const(i),Ys(e,t),!0}case 72:return e.local("pLocals"),e.ptr_const(i),oi(e,s,c),!0;default:return!1}return o?(e.local("pLocals"),e.ptr_const(i),e.appendU8(l),e.appendMemarg(0,0),oi(e,s,c),!0):(e.ptr_const(i),ri(e,s,l),e.appendU8(c),e.appendMemarg(0,0),!0)}function _i(e,t,n){let r,o,s,a,i="math_lhs32",c="math_rhs32",l=!1;const p=ka[n];if(p){e.local("pLocals");const r=1==p;return ri(e,Ca(t,2),r?43:42),r||e.appendU8(p),ri(e,Ca(t,3),r?43:42),r||e.appendU8(p),e.i32_const(n),e.callImport("relop_fp"),oi(e,Ca(t,1),54),!0}switch(n){case 382:case 383:return wi(e,t,n);default:if(a=Sa[n],!a)return!1;a.length>3?(r=a[1],o=a[2],s=a[3]):(r=o=a[1],s=a[2])}switch(n){case 356:case 357:case 360:case 361:case 380:case 381:case 384:case 385:{const s=361===n||385===n||357===n||381===n;i=s?"math_lhs64":"math_lhs32",c=s?"math_rhs64":"math_rhs32",e.block(),ri(e,Ca(t,2),r),e.local(i,33),ri(e,Ca(t,3),o),e.local(c,34),l=!0,s&&(e.appendU8(80),e.appendU8(69)),e.appendU8(13),e.appendULeb(0),Ws(e,t,12),e.endBlock(),356!==n&&380!==n&&357!==n&&381!==n||(e.block(),e.local(c),s?e.i52_const(-1):e.i32_const(-1),e.appendU8(s?82:71),e.appendU8(13),e.appendULeb(0),e.local(i),e.appendU8(s?66:65),e.appendBoundaryValue(s?64:32,-1),e.appendU8(s?82:71),e.appendU8(13),e.appendULeb(0),Ws(e,t,13),e.endBlock());break}case 362:case 364:case 366:case 368:ri(e,Ca(t,2),r),e.local(i,34),ri(e,Ca(t,3),o),e.local(c,34),e.i32_const(n),e.callImport(364===n||368===n?"ckovr_u4":"ckovr_i4"),e.block(64,4),Ws(e,t,13),e.endBlock(),l=!0}return e.local("pLocals"),l?(e.local(i),e.local(c)):(ri(e,Ca(t,2),r),ri(e,Ca(t,3),o)),e.appendU8(a[0]),oi(e,Ca(t,1),s),!0}function mi(e,t,n){const r=wa[n];if(!r)return!1;const o=r[1],s=r[2];switch((n<472||n>507)&&e.local("pLocals"),n){case 428:case 430:ri(e,Ca(t,2),o),e.i32_const(1);break;case 432:e.i32_const(0),ri(e,Ca(t,2),o);break;case 436:ri(e,Ca(t,2),o),e.i32_const(-1);break;case 444:case 445:ri(e,Ca(t,2),o),41===o&&e.appendU8(167),e.i32_const(255);break;case 452:case 453:ri(e,Ca(t,2),o),41===o&&e.appendU8(167),e.i32_const(65535);break;case 440:case 441:ri(e,Ca(t,2),o),41===o&&e.appendU8(167),e.i32_const(24),e.appendU8(116),e.i32_const(24);break;case 448:case 449:ri(e,Ca(t,2),o),41===o&&e.appendU8(167),e.i32_const(16),e.appendU8(116),e.i32_const(16);break;case 429:case 431:ri(e,Ca(t,2),o),e.i52_const(1);break;case 433:e.i52_const(0),ri(e,Ca(t,2),o);break;case 437:ri(e,Ca(t,2),o),e.i52_const(-1);break;case 511:case 515:case 519:case 521:case 525:case 527:case 523:case 640:case 642:ri(e,Ca(t,2),o),e.i32_const(Da(t,3));break;case 512:case 516:case 520:case 522:ri(e,Ca(t,2),o),e.i32_const(Pa(t,3));break;case 513:case 517:case 526:case 528:case 524:case 641:case 643:ri(e,Ca(t,2),o),e.i52_const(Da(t,3));break;case 514:case 518:ri(e,Ca(t,2),o),e.i52_const(Pa(t,3));break;default:ri(e,Ca(t,2),o)}return 1!==r[0]&&e.appendU8(r[0]),oi(e,Ca(t,1),s),!0}function hi(e,t,n,r){const o=133===r?t+6:t+8,s=Va(n,O(o-2));e.local("pLocals"),e.ptr_const(o),e.appendU8(54),e.appendMemarg(s,0),e.callHandlerReturnAddresses.push(o)}function gi(e,t){const n=o.mono_jiterp_get_opcode_info(t,4),r=e+2+2*o.mono_jiterp_get_opcode_info(t,2);let s;switch(n){case 7:s=F(r);break;case 8:s=z(r);break;case 17:s=z(r+2);break;default:return}return s}function bi(e,t,n,r){const s=r>=227&&r<=270,a=gi(t,r);if("number"!=typeof a)return!1;switch(r){case 132:case 133:case 128:case 129:{const s=132===r||133===r,i=t+2*a;return a<=0?e.backBranchOffsets.indexOf(i)>=0?(e.backBranchTraceLevel>1&&Ve(`0x${t.toString(16)} performing backward branch to 0x${i.toString(16)}`),s&&hi(e,t,n,r),e.cfg.branch(i,!0,0),da(9,1),!0):(i1||e.cfg.trace>1)&&Ve(`0x${t.toString(16)} ${$s(r)} target 0x${i.toString(16)} before start of trace`):(e.backBranchTraceLevel>0||e.cfg.trace>0)&&Ve(`0x${t.toString(16)} ${$s(r)} target 0x${i.toString(16)} not found in list `+e.backBranchOffsets.map((e=>"0x"+e.toString(16))).join(", ")),o.mono_jiterp_boost_back_branch_target(i),Ws(e,i,5),da(10,1),!0):(e.branchTargets.add(i),s&&hi(e,t,n,r),e.cfg.branch(i,!1,0),!0)}case 145:case 143:case 229:case 227:case 146:case 144:{const n=146===r||144===r;ri(e,Ca(t,1),n?41:40),143===r||227===r?e.appendU8(69):144===r?e.appendU8(80):146===r&&(e.appendU8(80),e.appendU8(69));break}default:if(void 0===va[r])throw new Error(`Unsupported relop branch opcode: ${$s(r)}`);if(4!==o.mono_jiterp_get_opcode_info(r,1))throw new Error(`Unsupported long branch opcode: ${$s(r)}`)}const i=t+2*a;return a<0?e.backBranchOffsets.indexOf(i)>=0?(e.backBranchTraceLevel>1&&Ve(`0x${t.toString(16)} performing conditional backward branch to 0x${i.toString(16)}`),e.cfg.branch(i,!0,s?3:1),da(9,1)):(i1||e.cfg.trace>1)&&Ve(`0x${t.toString(16)} ${$s(r)} target 0x${i.toString(16)} before start of trace`):(e.backBranchTraceLevel>0||e.cfg.trace>0)&&Ve(`0x${t.toString(16)} ${$s(r)} target 0x${i.toString(16)} not found in list `+e.backBranchOffsets.map((e=>"0x"+e.toString(16))).join(", ")),o.mono_jiterp_boost_back_branch_target(i),e.block(64,4),Ws(e,i,5),e.endBlock(),da(10,1)):(e.branchTargets.add(i),e.cfg.branch(i,!1,s?3:1)),!0}function yi(e,t,n,r){const o=va[r];if(!o)return!1;const s=Array.isArray(o)?o[0]:o,a=Sa[s],i=ka[s];if(!a&&!i)return!1;const c=a?a[1]:1===i?43:42;return ri(e,Ca(t,1),c),a||1===i||e.appendU8(i),Array.isArray(o)&&o[1]?(e.appendU8(o[1]),e.appendLeb(Da(t,2))):ri(e,Ca(t,2),c),a||1==i||e.appendU8(i),a?e.appendU8(a[0]):(e.i32_const(s),e.callImport("relop_fp")),bi(e,t,n,r)}function wi(e,t,n){let r,o,s,a;const i=Ca(t,1),c=Ca(t,2),l=Ca(t,3),p=Ua[n];if(!p)return!1;if(r=p[0],o=p[1],"string"==typeof p[2]?s=p[2]:a=p[2],e.local("pLocals"),r){if(ri(e,c,o?42:43),a)e.appendU8(a);else{if(!s)throw new Error("internal error");e.callImport(s)}return oi(e,i,o?56:57),!0}if(ri(e,c,o?42:43),ri(e,l,o?42:43),a)e.appendU8(a);else{if(!s)throw new Error("internal error");e.callImport(s)}return oi(e,i,o?56:57),!0}function ki(e,t,n){const r=n>=87&&n<=112,o=n>=107&&n<=112,s=n>=95&&n<=106||n>=120&&n<=127||o,a=n>=101&&n<=106||n>=124&&n<=127||o;let i,c,l=-1,p=0,u=1;o?(i=Ca(t,1),c=Ca(t,2),l=Ca(t,3),p=Da(t,4),u=Da(t,5)):s?a?r?(i=Ca(t,1),c=Ca(t,2),p=Da(t,3)):(i=Ca(t,2),c=Ca(t,1),p=Da(t,3)):r?(i=Ca(t,1),c=Ca(t,2),l=Ca(t,3)):(i=Ca(t,3),c=Ca(t,1),l=Ca(t,2)):r?(c=Ca(t,2),i=Ca(t,1)):(c=Ca(t,1),i=Ca(t,2));let d,f=54;switch(n){case 87:case 95:case 101:case 107:d=44;break;case 88:case 96:case 102:case 108:d=45;break;case 89:case 97:case 103:case 109:d=46;break;case 90:case 98:case 104:case 110:d=47;break;case 113:case 120:case 124:d=40,f=58;break;case 114:case 121:case 125:d=40,f=59;break;case 91:case 99:case 105:case 111:case 115:case 122:case 126:case 119:d=40;break;case 93:case 117:d=42,f=56;break;case 94:case 118:d=43,f=57;break;case 92:case 100:case 106:case 112:case 116:case 123:case 127:d=41,f=55;break;default:return!1}const _=ni(e,c,40,!0,!0);return _||li(e,c,t,!1),r?(e.local("pLocals"),_?mt(ni(e,c,40,!1,!0),"Unknown jiterpreter cprop failure"):e.local("cknull_ptr"),o?(ri(e,l,40),0!==p&&(e.i32_const(p),e.appendU8(106),p=0),1!==u&&(e.i32_const(u),e.appendU8(108)),e.appendU8(106)):s&&l>=0?(ri(e,l,40),e.appendU8(106)):p<0&&(e.i32_const(p),e.appendU8(106),p=0),e.appendU8(d),e.appendMemarg(p,0),oi(e,i,f)):119===n?(_?mt(ni(e,c,40,!1,!0),"Unknown jiterpreter cprop failure"):e.local("cknull_ptr"),si(e,i,0),e.callImport("copy_ptr")):(_?mt(ni(e,c,40,!1,!0),"Unknown jiterpreter cprop failure"):e.local("cknull_ptr"),s&&l>=0?(ri(e,l,40),e.appendU8(106)):p<0&&(e.i32_const(p),e.appendU8(106),p=0),ri(e,i,d),e.appendU8(f),e.appendMemarg(p,0)),!0}function Si(e,t,n,r,o){e.block(),ri(e,r,40),e.local("index",34);let s="cknull_ptr";e.options.zeroPageOptimization&&aa()?(da(8,1),ri(e,n,40),s="src_ptr",e.local(s,34)):li(e,n,t,!0),e.appendU8(40),e.appendMemarg(ea(9),2),e.appendU8(73),e.appendU8(13),e.appendULeb(0),Ws(e,t,9),e.endBlock(),e.local(s),e.i32_const(ea(1)),e.appendU8(106),e.local("index"),1!=o&&(e.i32_const(o),e.appendU8(108)),e.appendU8(106)}function vi(e,t,n,r){const o=r<=328&&r>=315||341===r,s=Ca(n,o?2:1),a=Ca(n,o?1:3),i=Ca(n,o?3:2);let c,l,p=54;switch(r){case 341:return e.local("pLocals"),li(e,s,n,!0),e.appendU8(40),e.appendMemarg(ea(9),2),oi(e,a,54),!0;case 326:return e.local("pLocals"),l=Ca(n,4),Si(e,n,s,i,l),oi(e,a,54),!0;case 337:return e.block(),ri(e,Ca(n,1),40),ri(e,Ca(n,2),40),ri(e,Ca(n,3),40),e.callImport("stelemr_tc"),e.appendU8(13),e.appendULeb(0),Ws(e,n,10),e.endBlock(),!0;case 340:return Si(e,n,s,i,4),si(e,a,0),e.callImport("copy_ptr"),!0;case 324:case 320:case 319:case 333:l=4,c=40;break;case 315:l=1,c=44;break;case 316:l=1,c=45;break;case 330:case 329:l=1,c=40,p=58;break;case 317:l=2,c=46;break;case 318:l=2,c=47;break;case 332:case 331:l=2,c=40,p=59;break;case 322:case 335:l=4,c=42,p=56;break;case 321:case 334:l=8,c=41,p=55;break;case 323:case 336:l=8,c=43,p=57;break;case 325:{const t=Ca(n,4);return e.local("pLocals"),e.i32_const(Ca(n,1)),e.appendU8(106),Si(e,n,s,i,t),Ys(e,t),Ka(Ca(n,1),t),!0}case 338:{const r=Ca(n,5),o=za(t,Ca(n,4));return Si(e,n,s,i,r),si(e,a,0),e.ptr_const(o),e.callImport("value_copy"),!0}case 339:{const t=Ca(n,5);return Si(e,n,s,i,t),si(e,a,0),Ys(e,t),!0}default:return!1}return o?(e.local("pLocals"),Si(e,n,s,i,l),e.appendU8(c),e.appendMemarg(0,0),oi(e,a,p)):(Si(e,n,s,i,l),ri(e,a,c),e.appendU8(p),e.appendMemarg(0,0)),!0}function Ui(e,t,n){const r=`${t}_${n.toString(16)}`;return"object"!=typeof e.importedFunctions[r]&&e.defineImportedFunction("s",r,t,!1,n),r}function Ti(e,t,n,r,s,a){if(e.options.enableSimd&&ct.featureWasmSimd)switch(s){case 2:if(function(e,t,n){const r=o.mono_jiterp_get_simd_opcode(1,n),s=Na[n];if(s)return xi(e,t),e.appendSimd(s),oi(e,Ca(t,1),54),!0;if(r>=0)return Ra.has(n)?(e.local("pLocals"),ri(e,Ca(t,2),40),e.appendSimd(r,!0),e.appendMemarg(0,0),Ei(e,t)):(xi(e,t),e.appendSimd(r),Ei(e,t)),!0;switch(n){case 6:case 7:case 8:case 9:{const r=Oa[n];return e.local("pLocals"),e.v128_const(0),ri(e,Ca(t,2),r[0]),e.appendSimd(r[1]),e.appendU8(0),oi(e,Ca(t,1),253,11),!0}case 14:return xi(e,t,7),Ei(e,t),!0;case 15:return xi(e,t,8),Ei(e,t),!0;case 16:return xi(e,t,9),Ei(e,t),!0;case 17:return xi(e,t,10),Ei(e,t),!0;default:return!1}}(e,t,a))return!0;break;case 3:if(function(e,t,n){const r=o.mono_jiterp_get_simd_opcode(2,n);if(r>=0){const o=ja.has(n),s=$a[n];if(o)e.local("pLocals"),ri(e,Ca(t,2),253,0),ri(e,Ca(t,3),40),e.appendSimd(r),Ei(e,t);else if(Array.isArray(s)){const n=Ga(e,Ca(t,3)),o=s[0];if("number"!=typeof n)return He(`${e.functions[0].name}: Non-constant lane index passed to ExtractScalar`),!1;if(n>=o||n<0)return He(`${e.functions[0].name}: ExtractScalar index ${n} out of range (0 - ${o-1})`),!1;e.local("pLocals"),ri(e,Ca(t,2),253,0),e.appendSimd(r),e.appendU8(n),oi(e,Ca(t,1),s[1])}else Ii(e,t),e.appendSimd(r),Ei(e,t);return!0}switch(n){case 191:return ri(e,Ca(t,2),40),ri(e,Ca(t,3),253,0),e.appendSimd(11),e.appendMemarg(0,0),!0;case 10:case 11:return Ii(e,t),e.appendSimd(214),e.appendSimd(195),11===n&&e.appendU8(69),oi(e,Ca(t,1),54),!0;case 12:case 13:{const r=13===n,o=r?71:65;return e.local("pLocals"),ri(e,Ca(t,2),253,0),e.local("math_lhs128",34),ri(e,Ca(t,3),253,0),e.local("math_rhs128",34),e.appendSimd(o),e.local("math_lhs128"),e.local("math_lhs128"),e.appendSimd(o),e.local("math_rhs128"),e.local("math_rhs128"),e.appendSimd(o),e.appendSimd(80),e.appendSimd(77),e.appendSimd(80),e.appendSimd(r?195:163),oi(e,Ca(t,1),54),!0}case 47:{const n=Ca(t,3),r=Ga(e,n);return e.local("pLocals"),ri(e,Ca(t,2),253,0),"object"==typeof r?(e.appendSimd(12),e.appendBytes(r)):ri(e,n,253,0),e.appendSimd(14),Ei(e,t),!0}case 48:case 49:return function(e,t,n){const r=16/n,o=Ca(t,3),s=Ga(e,o);if(2!==r&&4!==r&&mt(!1,"Unsupported shuffle element size"),e.local("pLocals"),ri(e,Ca(t,2),253,0),"object"==typeof s){const t=new Uint8Array(bc),o=2===r?new Uint16Array(s.buffer,s.byteOffset,n):new Uint32Array(s.buffer,s.byteOffset,n);for(let e=0,s=0;e=0){const o=La[n],s=Ba[n];if(Array.isArray(o)){const n=o[0],s=Ga(e,Ca(t,3));if("number"!=typeof s)return He(`${e.functions[0].name}: Non-constant lane index passed to ReplaceScalar`),!1;if(s>=n||s<0)return He(`${e.functions[0].name}: ReplaceScalar index ${s} out of range (0 - ${n-1})`),!1;e.local("pLocals"),ri(e,Ca(t,2),253,0),ri(e,Ca(t,4),o[1]),e.appendSimd(r),e.appendU8(s),Ei(e,t)}else if(Array.isArray(s)){const n=s[0],o=Ga(e,Ca(t,4));if("number"!=typeof o)return He(`${e.functions[0].name}: Non-constant lane index passed to store method`),!1;if(o>=n||o<0)return He(`${e.functions[0].name}: Store lane ${o} out of range (0 - ${n-1})`),!1;ri(e,Ca(t,2),40),ri(e,Ca(t,3),253,0),e.appendSimd(r),e.appendMemarg(0,0),e.appendU8(o)}else!function(e,t){e.local("pLocals"),ri(e,Ca(t,2),253,0),ri(e,Ca(t,3),253,0),ri(e,Ca(t,4),253,0)}(e,t),e.appendSimd(r),Ei(e,t);return!0}switch(n){case 0:return e.local("pLocals"),ri(e,Ca(t,3),253,0),ri(e,Ca(t,4),253,0),ri(e,Ca(t,2),253,0),e.appendSimd(82),Ei(e,t),!0;case 7:{const n=Ga(e,Ca(t,4));if("object"!=typeof n)return He(`${e.functions[0].name}: Non-constant indices passed to PackedSimd.Shuffle`),!1;for(let t=0;t<32;t++){const r=n[t];if(r<0||r>31)return He(`${e.functions[0].name}: Shuffle lane index #${t} (${r}) out of range (0 - 31)`),!1}return e.local("pLocals"),ri(e,Ca(t,2),253,0),ri(e,Ca(t,3),253,0),e.appendSimd(13),e.appendBytes(n),Ei(e,t),!0}default:return!1}}(e,t,a))return!0}switch(n){case 652:if(e.options.enableSimd&&ct.featureWasmSimd){e.local("pLocals");const n=K().slice(t+4,t+4+bc);e.v128_const(n),Ei(e,t),Ha.set(Ca(t,1),{type:"v128",value:n})}else si(e,Ca(t,1),bc),e.ptr_const(t+4),Ys(e,bc);return!0;case 653:case 654:case 655:case 656:{const r=xa[n],o=bc/r,s=Ca(t,1),a=Ca(t,2),i=Ia[n],c=Aa[n];for(let t=0;t2;return e.local("pLocals"),li(e,Ca(t,2),t,!0),ri(e,Ca(t,3),n?41:40),e.appendAtomic(r[0],!1),e.appendMemarg(0,r[2]),0!==r[1]&&e.appendU8(r[1]),oi(e,Ca(t,1),n?55:54),!0}const o=Ea[n];if(o){const n=o[2]>2;return e.local("pLocals"),li(e,Ca(t,2),t,!0),ri(e,Ca(t,4),n?41:40),ri(e,Ca(t,3),n?41:40),e.appendAtomic(o[0],!1),e.appendMemarg(0,o[2]),0!==o[1]&&e.appendU8(o[1]),oi(e,Ca(t,1),n?55:54),!0}return!1}function ji(e,t,n){const r=Ja(t,271),o=function(e){271!==O(e)&&mt(!1,"decodeSwitch called on a non-switch");const t=Fa(e,2),n=[];for(let r=0;re.options.maxSwitchSize)s=!0;else for(const n of o)n>t&&e.branchTargets.add(n);if(s)return da(14,o.length),Ws(e,t,27),!0;const a=t+2*r;return e.branchTargets.add(a),e.block(),ri(e,Ca(t,1),40),e.cfg.jumpTable(o,a),e.endBlock(),Hs(e,t,n,28),!0}const $i=64;let Li,Ri,Bi,Ni=0;const Oi={};function Ci(){return Ri||(Ri=[oa("interp_entry_prologue",ta("mono_jiterp_interp_entry_prologue")),oa("interp_entry",ta("mono_jiterp_interp_entry")),oa("unbox",ta("mono_jiterp_object_unbox")),oa("stackval_from_data",ta("mono_jiterp_stackval_from_data"))],Ri)}let Di,Fi=class{constructor(e,t,n,r,o,s,a,i){this.imethod=e,this.method=t,this.argumentCount=n,this.unbox=o,this.hasThisReference=s,this.hasReturnValue=a,this.paramTypes=new Array(n);for(let e=0;ee&&(n=n.substring(n.length-e,n.length)),n=`${this.imethod.toString(16)}_${n}`}else n=`${this.imethod.toString(16)}_${this.hasThisReference?"i":"s"}${this.hasReturnValue?"_r":""}_${this.argumentCount}`;this.traceName=n}finally{e&&m(e)}}getTraceName(){return this.traceName||this.generateName(),this.traceName||"unknown"}getName(){return this.name||this.generateName(),this.name||"unknown"}};function Pi(){const e=[];let t=0;for(;0!=(t=o.mono_jiterp_tlqueue_next(1));){const n=Oi[t];n?e.push(n):Ve(`Failed to find corresponding info for method ptr ${t} from jit queue!`)}if(!e.length)return;const n=4*e.length+1;let r=Li;if(r?r.clear(n):(Li=r=new Cs(n),r.defineType("unbox",{pMonoObject:127},127,!0),r.defineType("interp_entry_prologue",{pData:127,this_arg:127},127,!0),r.defineType("interp_entry",{pData:127,res:127},64,!0),r.defineType("stackval_from_data",{type:127,result:127,value:127},64,!0)),r.options.wasmBytesLimit<=ua(6))return;const s=zs();let a=0,i=!0,c=!1;try{r.appendU32(1836278016),r.appendU32(1);for(let t=0;tec[o.mono_jiterp_type_to_ldind(e)])),this.enableDirect=fa().directJitCalls&&!this.noWrapper&&this.wasmNativeReturnType&&(0===this.wasmNativeSignature.length||this.wasmNativeSignature.every((e=>e))),this.enableDirect&&(this.target=this.addr);let c=this.target.toString(16);const l=Gi++;this.name=`${this.enableDirect?"jcp":"jcw"}_${c}_${l.toString(16)}`}}function Zi(e){let t=Ji[e];return t||(e>=Ji.length&&(Ji.length=e+1),qi||(qi=qs()),Ji[e]=t=qi.get(e)),t}function Ki(){const e=[];let t=0;for(;0!=(t=o.mono_jiterp_tlqueue_next(0));){const n=Qi[t];if(n)for(let t=0;t0){o.mono_jiterp_register_jit_call_thunk(n.cinfo,r);for(let e=0;e0&&(kc.push(["trace_eip","trace_eip",Ic]),kc.push(["trace_args","trace_eip",Ac])),(ct.emscriptenBuildOptions.enableEventPipe||ct.emscriptenBuildOptions.enableDevToolsProfiler)&&(kc.push(oa("prof_enter",ta("mono_jiterp_prof_enter"))),kc.push(oa("prof_samplepoint",ta("mono_jiterp_prof_samplepoint"))),kc.push(oa("prof_leave",ta("mono_jiterp_prof_leave"))));const e=(e,t)=>{for(let n=0;n>>0,ac.operand2=t>>>0}function jc(e,t,n,r){if("number"==typeof r)o.mono_jiterp_adjust_abort_count(r,1),r=$s(r);else{let e=mc[r];"number"!=typeof e?e=1:e++,mc[r]=e}hc[e].abortReason=r}function $c(e){if(!ct.runtimeReady)return;if(ic||(ic=fa()),!ic.enableStats)return;const t=ua(9),n=ua(10),r=ua(7),s=ua(8),a=ua(3),i=ua(4),c=ua(2),l=ua(1),p=ua(0),u=ua(6),d=ua(11),f=ua(12),_=ua(13),m=ua(14),h=t/(t+n)*100,g=o.mono_jiterp_get_rejected_trace_count(),b=ic.eliminateNullChecks?r.toString():"off",y=ic.zeroPageOptimization?s.toString()+(aa()?"":" (disabled)"):"off",w=ic.enableBackwardBranches?`emitted: ${t}, failed: ${n} (${h.toFixed(1)}%)`:": off",k=a?ic.directJitCalls?`direct jit calls: ${i} (${(i/a*100).toFixed(1)}%)`:"direct jit calls: off":"";if(Ve(`// jitted ${u}b; ${l} traces (${(l/p*100).toFixed(1)}%) (${g} rejected); ${a} jit_calls; ${c} interp_entries`),Ve(`// cknulls pruned: ${b}, fused: ${y}; back-brs ${w}; switch tgts ${_}/${m+_}; ${k}`),Ve(`// time: ${0|d}ms generating, ${0|f}ms compiling wasm.`),!e){if(ic.countBailouts){const e=Object.values(hc);e.sort(((e,t)=>(t.bailoutCount||0)-(e.bailoutCount||0)));for(let e=0;et.hitCount-e.hitCount)),Ve("// hottest failed traces:");for(let e=0,n=0;e=0)){if(t[e].abortReason){if(t[e].abortReason.startsWith("mono_icall_")||t[e].abortReason.startsWith("ret."))continue;switch(t[e].abortReason){case"trace-too-small":case"trace-too-big":case"call":case"callvirt.fast":case"calli.nat.fast":case"calli.nat":case"call.delegate":case"newobj":case"newobj_vt":case"newobj_slow":case"switch":case"rethrow":case"end-of-body":case"ret":case"intrins_marvin_block":case"intrins_ascii_chars_to_uppercase":continue}}n++,Ve(`${t[e].name} @${t[e].ip} (${t[e].hitCount} hits) ${t[e].abortReason}`)}const n=[];for(const t in e)n.push([t,e[t]]);n.sort(((e,t)=>t[1]-e[1])),Ve("// heat:");for(let e=0;e0?mc[t]=n:delete mc[t]}const e=Object.keys(mc);e.sort(((e,t)=>mc[t]-mc[e]));for(let t=0;te.toString(16).padStart(2,"0"))).join("")}`}async function Cc(e){const t=lt.config.resources.lazyAssembly;if(!t)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.");let n=e;e.endsWith(".dll")?n=e.substring(0,e.length-4):e.endsWith(".wasm")&&(n=e.substring(0,e.length-5));const r=n+".dll",o=n+".wasm";let s=null;for(let e=0;eObject.prototype.hasOwnProperty.call(t,e))).map((e=>{const n=[];for(let r=0;re.concat(t)),new Array).map((async e=>{const t=await e;!function(e){lt.assert_runtime_running();const t=Ke.stackSave();try{const t=$n(3),n=Ln(t,2);Wn(n,21),vo(n,e,4),kn(yn.LoadSatelliteAssembly,t)}finally{lt.is_runtime_running()&&Ke.stackRestore(t)}}(new Uint8Array(t))})))}function Fc(e){if(e===l)return null;const t=o.mono_wasm_read_as_bool_or_null_unsafe(e);return 0!==t&&(1===t||null)}function Pc(e){if(e)try{(e=e.toLocaleLowerCase().replace("_","-")).startsWith("zh-")&&(e=e.replace("-chs","-Hans").replace("-cht","-Hant"));const t=Intl.getCanonicalLocales(e);return t.length>0?t[0]:void 0}catch(e){return}}const Mc=[function(e){Xo&&(globalThis.clearTimeout(Xo),Xo=void 0),Xo=Ke.safeSetTimeout(mono_wasm_schedule_timer_tick,e)},function(e,t,n,r,o){if(!0!==ct.mono_wasm_runtime_is_ready)return;const s=K(),a=0!==e?Le(e).concat(".dll"):"",i=ht(new Uint8Array(s.buffer,t,n));let c;r&&(c=ht(new Uint8Array(s.buffer,r,o))),Lt({eventName:"AssemblyLoaded",assembly_name:a,assembly_b64:i,pdb_b64:c})},function(e,t){const n=Le(t);et.logging&&"function"==typeof et.logging.debugger&&et.logging.debugger(e,n)},function(e,t,n,r){const o={res_ok:e,res:{id:t,value:ht(new Uint8Array(K().buffer,n,r))}};bt.has(t)&&We(`Adding an id (${t}) that already exists in commands_received`),bt.set(t,o)},function mono_wasm_fire_debugger_agent_message_with_data(e,t){mono_wasm_fire_debugger_agent_message_with_data_to_pause(ht(new Uint8Array(K().buffer,e,t)))},mono_wasm_fire_debugger_agent_message_with_data_to_pause,function(){Jo||(Jo=Ke.safeSetTimeout(Ko,0))},function(e,t,n,r,s,a,i,c){if(n||mt(!1,"expected instruction pointer"),ic||(ic=fa()),!ic.enableTraces)return 1;if(ic.wasmBytesLimit<=ua(6))return 1;if(cc)return 1;let l,p=hc[r];if(p||(hc[r]=p=new dc(n,r,i)),da(0,1),ic.estimateHeat||pc.length>0||p.isVerbose){const e=o.mono_wasm_method_get_full_name(t);l=Le(e),m(e)}const u=Le(o.mono_wasm_method_get_name(t));p.name=l||u;let d=ic.noExitBackwardBranches?function(e,t,n){const r=t+n,o=[],s=(e-t)/2;for(;e=s&&o.push(r)}switch(r){case 132:case 133:o.push(n+a)}}e+=2*a}return o.length<=0?null:new Uint16Array(o)}(n,s,a):null;if(d&&n!==s){const e=(n-s)/2;let t=!1;for(let n=0;n=e){t=!0;break}t||(d=null)}const f=function(e,t,n,r,s,a,i,c,l){let p=wc;p?p.clear(8):(wc=p=new Cs(8),function(e){e.defineType("trace",{frame:127,pLocals:127,cinfo:127,ip:127},127,!0),e.defineType("bailout",{retval:127,base:127,reason:127},127,!0),e.defineType("copy_ptr",{dest:127,src:127},64,!0),e.defineType("value_copy",{dest:127,src:127,klass:127},64,!0),e.defineType("entry",{imethod:127},127,!0),e.defineType("strlen",{ppString:127,pResult:127},127,!0),e.defineType("getchr",{ppString:127,pIndex:127,pResult:127},127,!0),e.defineType("getspan",{destination:127,span:127,index:127,element_size:127},127,!0),e.defineType("overflow_check_i4",{lhs:127,rhs:127,opcode:127},127,!0),e.defineType("mathop_d_d",{value:124},124,!0),e.defineType("mathop_dd_d",{lhs:124,rhs:124},124,!0),e.defineType("mathop_f_f",{value:125},125,!0),e.defineType("mathop_ff_f",{lhs:125,rhs:125},125,!0),e.defineType("fmaf",{x:125,y:125,z:125},125,!0),e.defineType("fma",{x:124,y:124,z:124},124,!0),e.defineType("trace_eip",{traceId:127,eip:127},64,!0),e.defineType("newobj_i",{ppDestination:127,vtable:127},127,!0),e.defineType("newstr",{ppDestination:127,length:127},127,!0),e.defineType("newarr",{ppDestination:127,vtable:127,length:127},127,!0),e.defineType("localloc",{destination:127,len:127,frame:127},64,!0),e.defineType("ld_del_ptr",{ppDestination:127,ppSource:127},64,!0),e.defineType("ldtsflda",{ppDestination:127,offset:127},64,!0),e.defineType("gettype",{destination:127,source:127},127,!0),e.defineType("castv2",{destination:127,source:127,klass:127,opcode:127},127,!0),e.defineType("hasparent",{klass:127,parent:127},127,!0),e.defineType("imp_iface",{vtable:127,klass:127},127,!0),e.defineType("imp_iface_s",{obj:127,vtable:127,klass:127},127,!0),e.defineType("box",{vtable:127,destination:127,source:127,vt:127},64,!0),e.defineType("conv",{destination:127,source:127,opcode:127},127,!0),e.defineType("relop_fp",{lhs:124,rhs:124,opcode:127},127,!0),e.defineType("safepoint",{frame:127,ip:127},64,!0),e.defineType("prof_enter",{frame:127,ip:127},64,!0),e.defineType("prof_samplepoint",{frame:127,ip:127},64,!0),e.defineType("prof_leave",{frame:127,ip:127},64,!0),e.defineType("hashcode",{ppObj:127},127,!0),e.defineType("try_hash",{ppObj:127},127,!0),e.defineType("hascsize",{ppObj:127},127,!0),e.defineType("hasflag",{klass:127,dest:127,sp1:127,sp2:127},64,!0),e.defineType("array_rank",{destination:127,source:127},127,!0),e.defineType("stfld_o",{locals:127,fieldOffsetBytes:127,targetLocalOffsetBytes:127,sourceLocalOffsetBytes:127},127,!0),e.defineType("notnull",{ptr:127,expected:127,traceIp:127,ip:127},64,!0),e.defineType("stelemr",{o:127,aindex:127,ref:127},127,!0),e.defineType("simd_p_p",{arg0:127,arg1:127},64,!0),e.defineType("simd_p_pp",{arg0:127,arg1:127,arg2:127},64,!0),e.defineType("simd_p_ppp",{arg0:127,arg1:127,arg2:127,arg3:127},64,!0);const t=xc();for(let n=0;ni.indexOf(e)>=0))>=0;b&&!i&&mt(!1,"Expected methodFullName if trace is instrumented");const y=b?_c++:0;b&&(Ve(`instrumenting: ${i}`),fc[y]=new uc(i)),p.compressImportNames=!b;try{p.appendU32(1836278016),p.appendU32(1),p.generateTypeSection();const t={disp:127,cknull_ptr:127,dest_ptr:127,src_ptr:127,memop_dest:127,memop_src:127,index:127,count:127,math_lhs32:127,math_rhs32:127,math_lhs64:126,math_rhs64:126,temp_f32:125,temp_f64:124};p.options.enableSimd&&(t.v128_zero=123,t.math_lhs128=123,t.math_rhs128=123);let s=!0,i=0;if(p.defineFunction({type:"trace",name:d,export:!0,locals:t},(()=>{switch(p.base=n,p.traceIndex=a,p.frame=e,O(n)){case 674:case 675:case 677:case 676:break;default:throw new Error(`Expected *ip to be a jiterpreter opcode but it was ${O(n)}`)}return p.cfg.initialize(r,c,b?1:0),i=function(e,t,n,r,s,a,i,c){let l=!0,p=!1,u=!1,d=!1,f=0,_=0,m=0;Ya(),a.backBranchTraceLevel=i?2:0;let h=a.cfg.entry(n);for(;n&&n;){if(a.cfg.ip=n,n>=s){jc(a.traceIndex,0,0,"end-of-body"),i&&Ve(`instrumented trace ${t} exited at end of body @${n.toString(16)}`);break}const g=a.options.maxModuleSize-300-a.bytesGeneratedSoFar-a.cfg.overheadBytes;if(a.size>=g){jc(a.traceIndex,0,0,"trace-too-big"),i&&Ve(`instrumented trace ${t} exited because of size limit at @${n.toString(16)} (spaceLeft=${g}b)`);break}let b=O(n);const y=o.mono_jiterp_get_opcode_info(b,2),w=o.mono_jiterp_get_opcode_info(b,3),k=Ja(n,b),S=b>=657&&b<=659,v=S?b-657+2:0,U=S?Ca(n,1+v):0;b>=0&&b<691||mt(!1,`invalid opcode ${b}`);const T=S?ga[v][U]:$s(b),E=n,x=a.options.noExitBackwardBranches&&Wa(n,r,c),I=a.branchTargets.has(n),A=x||I||l&&c,j=m+_+a.branchTargets.size;let $=!1,L=ra(b);switch(x&&(a.backBranchTraceLevel>1&&Ve(`${t} recording back branch target 0x${n.toString(16)}`),a.backBranchOffsets.push(n)),A&&(u=!1,d=!1,ei(a,n,x),p=!0,Ya(),m=0),L<-1&&p&&(L=-2===L?2:0),l=!1,271===b||(lc.indexOf(b)>=0?(Ws(a,n,23),b=678):u&&(b=678)),b){case 271:ji(a,n,j)||(n=0);break;case 678:u&&(d||a.appendU8(0),d=!0);break;case 313:case 314:ai(a,Ca(n,1),0,Ca(n,2));break;case 312:si(a,Ca(n,1),0),ri(a,Ca(n,2),40),a.local("frame"),a.callImport("localloc");break;case 285:ri(a,Ca(n,1),40),a.i32_const(0),ri(a,Ca(n,2),40),a.appendU8(252),a.appendU8(11),a.appendU8(0);break;case 286:ri(a,Ca(n,1),40),Xs(a,0,Ca(n,2));break;case 310:{const e=Ca(n,3),t=Ca(n,2),r=Ca(n,1),o=Ga(a,e);0!==o&&("number"!=typeof o?(ri(a,e,40),a.local("count",34),a.block(64,4)):(a.i32_const(o),a.local("count",33)),ri(a,r,40),a.local("dest_ptr",34),a.appendU8(69),ri(a,t,40),a.local("src_ptr",34),a.appendU8(69),a.appendU8(114),a.block(64,4),Ws(a,n,2),a.endBlock(),"number"==typeof o&&Qs(a,0,0,o,!1,"dest_ptr","src_ptr")||(a.local("dest_ptr"),a.local("src_ptr"),a.local("count"),a.appendU8(252),a.appendU8(10),a.appendU8(0),a.appendU8(0)),"number"!=typeof o&&a.endBlock());break}case 311:{const e=Ca(n,3),t=Ca(n,2);li(a,Ca(n,1),n,!0),ri(a,t,40),ri(a,e,40),a.appendU8(252),a.appendU8(11),a.appendU8(0);break}case 143:case 145:case 227:case 229:case 144:case 146:case 129:case 132:case 133:bi(a,n,e,b)?p=!0:n=0;break;case 538:{const e=Ca(n,2),t=Ca(n,1);e!==t?(a.local("pLocals"),li(a,e,n,!0),oi(a,t,54)):li(a,e,n,!1),a.allowNullCheckOptimization&&Xa.set(t,n),$=!0;break}case 638:case 639:{const t=P(e+ea(4));a.ptr_const(t),a.callImport("entry"),a.block(64,4),Ws(a,n,1),a.endBlock();break}case 676:L=0;break;case 138:break;case 86:{a.local("pLocals");const e=Ca(n,2),r=ci(a,e),o=Ca(n,1),s=Ca(n,3);r||He(`${t}: Expected local ${e} to have address taken flag`),si(a,e,s),oi(a,o,54),Ha.set(o,{type:"ldloca",offset:e}),$=!0;break}case 272:case 300:case 301:case 556:{a.local("pLocals");let t=za(e,Ca(n,2));300===b&&(t=o.mono_jiterp_imethod_to_ftnptr(t)),a.ptr_const(t),oi(a,Ca(n,1),54);break}case 305:{const t=za(e,Ca(n,3));ri(a,Ca(n,1),40),ri(a,Ca(n,2),40),a.ptr_const(t),a.callImport("value_copy");break}case 306:{const e=Ca(n,3);ri(a,Ca(n,1),40),ri(a,Ca(n,2),40),Ys(a,e);break}case 307:{const e=Ca(n,3);si(a,Ca(n,1),e),li(a,Ca(n,2),n,!0),Ys(a,e);break}case 308:{const t=za(e,Ca(n,3));ri(a,Ca(n,1),40),si(a,Ca(n,2),0),a.ptr_const(t),a.callImport("value_copy");break}case 309:{const e=Ca(n,3);ri(a,Ca(n,1),40),si(a,Ca(n,2),0),Ys(a,e);break}case 540:a.local("pLocals"),li(a,Ca(n,2),n,!0),a.appendU8(40),a.appendMemarg(ea(2),2),oi(a,Ca(n,1),54);break;case 539:{a.block(),ri(a,Ca(n,3),40),a.local("index",34);let e="cknull_ptr";a.options.zeroPageOptimization&&aa()?(da(8,1),ri(a,Ca(n,2),40),e="src_ptr",a.local(e,34)):li(a,Ca(n,2),n,!0),a.appendU8(40),a.appendMemarg(ea(2),2),a.appendU8(72),a.local("index"),a.i32_const(0),a.appendU8(78),a.appendU8(113),a.appendU8(13),a.appendULeb(0),Ws(a,n,11),a.endBlock(),a.local("pLocals"),a.local("index"),a.i32_const(2),a.appendU8(108),a.local(e),a.appendU8(106),a.appendU8(47),a.appendMemarg(ea(3),1),oi(a,Ca(n,1),54);break}case 342:case 343:{const e=Da(n,4);a.block(),ri(a,Ca(n,3),40),a.local("index",34);let t="cknull_ptr";342===b?li(a,Ca(n,2),n,!0):(si(a,Ca(n,2),0),t="src_ptr",a.local(t,34)),a.appendU8(40),a.appendMemarg(ea(7),2),a.appendU8(73),a.local("index"),a.i32_const(0),a.appendU8(78),a.appendU8(113),a.appendU8(13),a.appendULeb(0),Ws(a,n,18),a.endBlock(),a.local("pLocals"),a.local(t),a.appendU8(40),a.appendMemarg(ea(8),2),a.local("index"),a.i32_const(e),a.appendU8(108),a.appendU8(106),oi(a,Ca(n,1),54);break}case 664:a.block(),ri(a,Ca(n,3),40),a.local("count",34),a.i32_const(0),a.appendU8(78),a.appendU8(13),a.appendULeb(0),Ws(a,n,18),a.endBlock(),si(a,Ca(n,1),16),a.local("dest_ptr",34),ri(a,Ca(n,2),40),a.appendU8(54),a.appendMemarg(0,0),a.local("dest_ptr"),a.local("count"),a.appendU8(54),a.appendMemarg(4,0);break;case 577:si(a,Ca(n,1),4),si(a,Ca(n,2),4),a.callImport("ld_del_ptr");break;case 73:si(a,Ca(n,1),4),a.ptr_const(Pa(n,2)),a.callImport("ldtsflda");break;case 663:a.block(),si(a,Ca(n,1),4),si(a,Ca(n,2),0),a.callImport("gettype"),a.appendU8(13),a.appendULeb(0),Ws(a,n,2),a.endBlock();break;case 660:{const t=za(e,Ca(n,4));a.ptr_const(t),si(a,Ca(n,1),4),si(a,Ca(n,2),0),si(a,Ca(n,3),0),a.callImport("hasflag");break}case 669:{const e=ea(1);a.local("pLocals"),li(a,Ca(n,2),n,!0),a.i32_const(e),a.appendU8(106),oi(a,Ca(n,1),54);break}case 661:a.local("pLocals"),si(a,Ca(n,2),0),a.callImport("hashcode"),oi(a,Ca(n,1),54);break;case 662:a.local("pLocals"),si(a,Ca(n,2),0),a.callImport("try_hash"),oi(a,Ca(n,1),54);break;case 665:a.local("pLocals"),si(a,Ca(n,2),0),a.callImport("hascsize"),oi(a,Ca(n,1),54);break;case 670:a.local("pLocals"),ri(a,Ca(n,2),40),a.local("math_lhs32",34),ri(a,Ca(n,3),40),a.appendU8(115),a.i32_const(2),a.appendU8(116),a.local("math_rhs32",33),a.local("math_lhs32"),a.i32_const(327685),a.appendU8(106),a.i32_const(10485920),a.appendU8(114),a.i32_const(1703962),a.appendU8(106),a.i32_const(-8388737),a.appendU8(114),a.local("math_rhs32"),a.appendU8(113),a.appendU8(69),oi(a,Ca(n,1),54);break;case 541:case 542:a.block(),si(a,Ca(n,1),4),si(a,Ca(n,2),0),a.callImport(541===b?"array_rank":"a_elesize"),a.appendU8(13),a.appendULeb(0),Ws(a,n,2),a.endBlock();break;case 289:case 290:{const t=za(e,Ca(n,3)),r=o.mono_jiterp_is_special_interface(t),s=289===b,i=Ca(n,1);if(!t){jc(a.traceIndex,0,0,"null-klass"),n=0;continue}a.block(),a.options.zeroPageOptimization&&aa()?(ri(a,Ca(n,2),40),a.local("dest_ptr",34),da(8,1)):(a.block(),ri(a,Ca(n,2),40),a.local("dest_ptr",34),a.appendU8(13),a.appendULeb(0),a.local("pLocals"),a.i32_const(0),oi(a,i,54),a.appendU8(12),a.appendULeb(1),a.endBlock(),a.local("dest_ptr")),r&&a.local("dest_ptr"),a.appendU8(40),a.appendMemarg(ea(14),0),a.ptr_const(t),a.callImport(r?"imp_iface_s":"imp_iface"),s&&(a.local("dest_ptr"),a.appendU8(69),a.appendU8(114)),a.block(64,4),a.local("pLocals"),a.local("dest_ptr"),oi(a,i,54),a.appendU8(5),s?Ws(a,n,19):(a.local("pLocals"),a.i32_const(0),oi(a,i,54)),a.endBlock(),a.endBlock();break}case 291:case 292:case 287:case 288:{const t=za(e,Ca(n,3)),r=291===b||292===b,o=287===b||291===b,s=Ca(n,1);if(!t){jc(a.traceIndex,0,0,"null-klass"),n=0;continue}a.block(),a.options.zeroPageOptimization&&aa()?(ri(a,Ca(n,2),40),a.local("dest_ptr",34),da(8,1)):(a.block(),ri(a,Ca(n,2),40),a.local("dest_ptr",34),a.appendU8(13),a.appendULeb(0),a.local("pLocals"),a.i32_const(0),oi(a,s,54),a.appendU8(12),a.appendULeb(1),a.endBlock(),a.local("dest_ptr")),a.appendU8(40),a.appendMemarg(ea(14),0),a.appendU8(40),a.appendMemarg(ea(15),0),r&&a.local("src_ptr",34),a.i32_const(t),a.appendU8(70),a.block(64,4),a.local("pLocals"),a.local("dest_ptr"),oi(a,s,54),a.appendU8(5),r?(a.local("src_ptr"),a.ptr_const(t),a.callImport("hasparent"),o&&(a.local("dest_ptr"),a.appendU8(69),a.appendU8(114)),a.block(64,4),a.local("pLocals"),a.local("dest_ptr"),oi(a,s,54),a.appendU8(5),o?Ws(a,n,19):(a.local("pLocals"),a.i32_const(0),oi(a,s,54)),a.endBlock()):(si(a,Ca(n,1),4),a.local("dest_ptr"),a.ptr_const(t),a.i32_const(b),a.callImport("castv2"),a.appendU8(69),a.block(64,4),Ws(a,n,19),a.endBlock()),a.endBlock(),a.endBlock();break}case 295:case 296:a.ptr_const(za(e,Ca(n,3))),si(a,Ca(n,1),4),si(a,Ca(n,2),0),a.i32_const(296===b?1:0),a.callImport("box");break;case 299:{const t=za(e,Ca(n,3)),r=ea(17),o=Ca(n,1),s=P(t+r);if(!t||!s){jc(a.traceIndex,0,0,"null-klass"),n=0;continue}a.options.zeroPageOptimization&&aa()?(ri(a,Ca(n,2),40),a.local("dest_ptr",34),da(8,1)):(li(a,Ca(n,2),n,!0),a.local("dest_ptr",34)),a.appendU8(40),a.appendMemarg(ea(14),0),a.appendU8(40),a.appendMemarg(ea(15),0),a.local("src_ptr",34),a.appendU8(40),a.appendMemarg(r,0),a.i32_const(s),a.appendU8(70),a.local("src_ptr"),a.appendU8(45),a.appendMemarg(ea(16),0),a.appendU8(69),a.appendU8(113),a.block(64,4),a.local("pLocals"),a.local("dest_ptr"),a.i32_const(ea(18)),a.appendU8(106),oi(a,o,54),a.appendU8(5),Ws(a,n,21),a.endBlock();break}case 294:a.block(),si(a,Ca(n,1),4),ri(a,Ca(n,2),40),a.callImport("newstr"),a.appendU8(13),a.appendULeb(0),Ws(a,n,17),a.endBlock();break;case 293:{a.block(),si(a,Ca(n,1),4);const t=za(e,Ca(n,3));a.i32_const(t),ri(a,Ca(n,2),40),a.callImport("newarr"),a.appendU8(13),a.appendULeb(0),Ws(a,n,17),a.endBlock();break}case 283:a.block(),si(a,Ca(n,1),4),a.ptr_const(za(e,Ca(n,2))),a.callImport("newobj_i"),a.appendU8(13),a.appendULeb(0),Ws(a,n,17),a.endBlock();break;case 282:case 284:case 544:case 543:p?(Hs(a,n,j,15),u=!0,L=0):n=0;break;case 546:case 547:case 548:case 549:case 545:p?(Hs(a,n,j,545==b?22:15),u=!0):n=0;break;case 137:case 134:Ws(a,n,16),u=!0;break;case 130:case 131:Ws(a,n,26),u=!0;break;case 136:if(a.callHandlerReturnAddresses.length>0&&a.callHandlerReturnAddresses.length<=3){const t=Va(e,Ca(n,1));a.local("pLocals"),a.appendU8(40),a.appendMemarg(t,0),a.local("index",33);for(let e=0;e=3&&b<=12||b>=509&&b<=510?p||a.options.countBailouts?(Ws(a,n,14),u=!0):n=0:b>=13&&b<=21?pi(a,n,b)?$=!0:n=0:b>=74&&b<=85?ui(a,n,b)||(n=0):b>=344&&b<=427?_i(a,n,b)||(n=0):wa[b]?mi(a,n,b)||(n=0):va[b]?yi(a,n,e,b)?p=!0:n=0:b>=23&&b<=49?di(a,e,n,b)||(n=0):b>=50&&b<=73?fi(a,e,n,b)||(n=0):b>=87&&b<=127?ki(a,n,b)||(n=0):b>=579&&b<=632?wi(a,n,b)||(n=0):b>=315&&b<=341?vi(a,e,n,b)||(n=0):b>=227&&b<=270?a.branchTargets.size>0?(Hs(a,n,j,8),u=!0):n=0:b>=652&&b<=659?(a.containsSimd=!0,Ti(a,n,b,T,v,U)?$=!0:n=0):b>=559&&b<=571?(a.containsAtomics=!0,Ai(a,n,b)||(n=0)):0===L||(n=0)}if(n){if(!$){const e=n+2;for(let t=0;t0&&(e+=" -> ");for(let n=0;n0&&(p?m++:_++,f+=L),(n+=2*k)<=s&&(h=n)}else i&&Ve(`instrumented trace ${t} aborted for opcode ${T} @${E.toString(16)}`),jc(a.traceIndex,0,0,b)}for(;a.activeBlocks>0;)a.endBlock();return a.cfg.exitIp=h,a.containsSimd&&(f+=10240),f}(e,d,n,r,u,p,y,c),s=i>=ic.minimumTraceValue,p.cfg.generate()})),p.emitImportsAndFunctions(!1),!s)return g&&"end-of-body"===g.abortReason&&(g.abortReason="trace-too-small"),0;_=zs();const f=p.getArrayView();if(da(6,f.length),f.length>=p.options.maxModuleSize)return We(`Jiterpreter generated too much code (${f.length} bytes) for trace ${d}. Please report this issue.`),0;const h=new WebAssembly.Module(f),w=p.getWasmImports(),k=new WebAssembly.Instance(h,w).exports[d];let S;m=!1,l?(qs().set(l,k),S=l):(S=Gs(0,k),0===S&&(cc=!0));const v=ua(1);return p.options.enableStats&&v&&v%500==0&&$c(!0),S}catch(e){h=!0,m=!1;let t=p.containsSimd?" (simd)":"";return p.containsAtomics&&(t+=" (atomics)"),He(`${i||d}${t} code generation failed: ${e} ${e.stack}`),Zs(),0}finally{const e=zs();if(_?(da(11,_-f),da(12,e-_)):da(11,e-f),h||!m&&ic.dumpTraces||b){if(h||ic.dumpTraces||b)for(let e=0;e0;)p.endBlock();p.inSection&&p.endSection()}catch(e){}const n=p.getArrayView(!1,!0);for(let r=0;r=4?Pi():Ni>0||"function"==typeof globalThis.setTimeout&&(Ni=globalThis.setTimeout((()=>{Ni=0,Pi()}),10))}},function(e,t,n,r,o,s,a,i){if(n>16)return 0;const c=new Fi(e,t,n,r,o,s,a,i);Bi||(Bi=qs());const l=Bi.get(i),p=(s?a?29:20:a?11:2)+n;return c.result=Gs(p,l),Oi[e]=c,c.result},function(e,t,n,r,s){const a=P(n+0),i=Xi[a];if(i)return void(i.result>0?o.mono_jiterp_register_jit_call_thunk(n,i.result):(i.queue.push(n),i.queue.length>12&&Ki()));const c=new Yi(e,t,n,r,0!==s);Xi[a]=c;const l=o.mono_jiterp_tlqueue_add(0,e);let p=Qi[e];p||(p=Qi[e]=[]),p.push(c),l>=6&&Ki()},function(e,t,n,r,s){const a=Zi(e);try{a(t,n,r,s)}catch(e){const t=Ke.wasmExports.__cpp_exception,n=t instanceof WebAssembly.Tag;if(n&&!(e instanceof WebAssembly.Exception&&e.is(t)))throw e;if(i=s,Ke.HEAPU32[i>>>2]=1,n){const n=e.getArg(t,0);o.mono_jiterp_begin_catch(n),o.mono_jiterp_end_catch()}else{if("number"!=typeof e)throw e;o.mono_jiterp_begin_catch(e),o.mono_jiterp_end_catch()}}var i},Ki,function(e,t,n){ct.emscriptenBuildOptions.enableDevToolsProfiler&&function(e){Mt.delete(e)}(e),delete hc[n],function(e){delete Oi[e]}(t),function(e){const t=Qi[e];if(t){for(let e=0;e",a=!!r,i=e?Le(e):"",c=o,l=t?Le(t):"",p=`[MONO] ${s}`;if(et.logging&&"function"==typeof et.logging.trace)et.logging.trace(i,l,p,a,c);else switch(l){case"critical":case"error":{const e=p+"\n"+(new Error).stack;lt.exitReason||(lt.exitReason=e),console.error(Qe(e))}break;case"warning":console.warn(p);break;case"message":default:console.log(p);break;case"info":console.info(p);break;case"debug":console.debug(p)}},function(e){wt=lt.config.mainAssemblyName+".dll",kt=e,console.assert(!0,`Adding an entrypoint breakpoint ${wt} at method token ${kt}`);debugger},function(e,t){if(!globalThis.crypto||!globalThis.crypto.getRandomValues)return-1;const n=K(),r=n.subarray(e,e+t),o=(n.buffer,!1),s=o?new Uint8Array(t):r;for(let e=0;e{e&&e.dispose()},u=!0)}const d=Bn(e,1),f=Nn(d),_=eo(d,f,1),m=26==f,h=20==f||30==f,g={fn:i,fqn:s+":"+o,args_count:c,arg_marshalers:l,res_converter:_,has_cleanup:u,arg_cleanup:p,is_discard_no_wait:m,is_async:h,isDisposed:!1};let b;b=h||m||u?ar(g):0!=c||_?1!=c||_?1==c&&_?function(e){const t=e.fn,r=e.arg_marshalers[0],o=e.res_converter,s=e.fqn;return e=null,function(a){const i=Ft();try{n&&e.isDisposed;const s=r(a),i=t(s);o(a,i)}catch(e){wo(a,e)}finally{Pt(i,"mono.callCsFunction:",s)}}}(g):2==c&&_?function(e){const t=e.fn,r=e.arg_marshalers[0],o=e.arg_marshalers[1],s=e.res_converter,a=e.fqn;return e=null,function(i){const c=Ft();try{n&&e.isDisposed;const a=r(i),c=o(i),l=t(a,c);s(i,l)}catch(e){wo(i,e)}finally{Pt(c,"mono.callCsFunction:",a)}}}(g):ar(g):function(e){const t=e.fn,r=e.arg_marshalers[0],o=e.fqn;return e=null,function(s){const a=Ft();try{n&&e.isDisposed;const o=r(s);t(o)}catch(e){wo(s,e)}finally{Pt(a,"mono.callCsFunction:",o)}}}(g):function(e){const t=e.fn,r=e.fqn;return e=null,function(o){const s=Ft();try{n&&e.isDisposed,t()}catch(e){wo(o,e)}finally{Pt(s,"mono.callCsFunction:",r)}}}(g);let y=b;y[xn]=g,sr[a]=y,Pt(t,"mono.bindJsFunction:",o)}(e),0}catch(e){return Ne(function(e){let t="unknown exception";if(e){t=e.toString();const n=e.stack;n&&(n.startsWith(t)?t=n:t+="\n"+n),t=Xe(t)}return t}(e))}},function(e,t){!function(e,t){lt.assert_runtime_running();const n=Fr(e);n&&"function"==typeof n&&n[En]||mt(!1,`Bound function handle expected ${e}`),n(t=oe(t,0))}(e,t)},function(e,t){lt.assert_runtime_running(),t=oe(t,0);const n=sr[e];n||mt(!1,`Imported function handle expected ${e}`),n(t)},function(e){gr((()=>function(e){if(!lt.is_runtime_running())return void(lt.diagnosticTracing&&ze("This promise resolution/rejection can't be propagated to managed code, mono runtime already exited."));const t=Ln(e=oe(e,0),0),r=n;try{lt.assert_runtime_running();const n=Ln(e,1),o=Ln(e,2),s=Ln(e,3),a=zn(o),i=Qn(o),c=Fr(i);c||mt(!1,`Cannot find Promise for JSHandle ${i}`),c.resolve_or_reject(a,i,s),r||(Wn(n,1),Wn(t,0))}catch(e){wo(t,e)}}(e)))},function(e){gr((()=>function(e){if(!lt.is_runtime_running())return void(lt.diagnosticTracing&&ze("This promise can't be canceled, mono runtime already exited."));const t=qr(e);t||mt(!1,`Expected Promise for GCHandle ${e}`),t.cancel()}(e)))},function(e,t,n,r,o,s,a){try{const i=Re(n,n+2*r),c=Pc(i);if(!c&&i)return Be(o,o+2*i.length,i),T(a,i.length),0;const l=Pc(Re(e,e+2*t));if(!c||!l)throw new Error(`Locale or culture name is null or empty. localeName=${c}, cultureName=${l}`);const p=c.split("-");let u,d;try{const e=p.length>1?p.pop():void 0;d=e?new Intl.DisplayNames([l],{type:"region"}).of(e):void 0;const t=p.join("-");u=new Intl.DisplayNames([l],{type:"language"}).of(t)}catch(e){if(!(e instanceof RangeError))throw e;try{u=new Intl.DisplayNames([l],{type:"language"}).of(c)}catch(e){if(e instanceof RangeError&&i)return Be(o,o+2*i.length,i),T(a,i.length),0;throw e}}const f={LanguageName:u,RegionName:d},_=Object.values(f).join("##");if(!_)throw new Error(`Locale info for locale=${c} is null or empty.`);if(_.length>s)throw new Error(`Locale info for locale=${c} exceeds length of ${s}.`);return Be(o,o+2*_.length,_),T(a,_.length),0}catch(e){return T(a,-1),Ne(e.toString())}},function(e){return pt.ds_rt_websocket_create(e)},function(e,t,n){return pt.ds_rt_websocket_send(e,t,n)},function(e){return pt.ds_rt_websocket_poll(e)},function(e,t,n){return pt.ds_rt_websocket_recv(e,t,n)},function(e){return pt.ds_rt_websocket_close(e)}];async function zc(e,t){try{const n=await Vc(e,t);return lt.mono_exit(n),n}catch(e){try{lt.mono_exit(1,e)}catch(e){}return e&&"number"==typeof e.status?e.status:1}}async function Vc(e,t){null!=e&&""!==e||(e=lt.config.mainAssemblyName)||mt(!1,"Null or empty config.mainAssemblyName"),null==t&&(t=ct.config.applicationArguments),null==t&&(t=tt?(await import(/*! webpackIgnore: true */"process")).argv.slice(2):[]),function(e,t){const n=t.length+1,r=_(4*n);let s=0;Ke.setValue(r+4*s,o.mono_wasm_strdup(e),"i32"),s+=1;for(let e=0;e{const t=setInterval((()=>{1==ct.waitForDebugger&&(clearInterval(t),e())}),100)})));try{return Ke.runtimeKeepalivePush(),await new Promise((e=>globalThis.setTimeout(e,0))),await function(e,t,n){lt.assert_runtime_running();const r=Ke.stackSave();try{const r=$n(5),o=Ln(r,1),s=Ln(r,2),a=Ln(r,3),i=Ln(r,4);uo(s,$e(e)),Uo(a,t&&!t.length?void 0:t,15),no(i,n);let c=sn(o,0,Jt);return wn(ct.managedThreadTID,yn.CallEntrypoint,r),c=an(r,Jt,c),null==c&&(c=Promise.resolve(0)),c[Dr]=!0,c}finally{lt.is_runtime_running()&&Ke.stackRestore(r)}}(e,t,1==ct.waitForDebugger)}finally{Ke.runtimeKeepalivePop()}}function Wc(e){ct.runtimeReady&&(ct.runtimeReady=!1,o.mono_wasm_exit(e))}function Hc(e){if(lt.exitReason=e,ct.runtimeReady){ct.runtimeReady=!1;const t=Qe(e);Ke.abort(t)}throw e}var qc,Gc;const Jc=2147483647&(null!==(Gc=null===(qc=globalThis.performance)||void 0===qc?void 0:qc.timeOrigin)&&void 0!==Gc?Gc:Date.now());function Xc(){return Jc}async function Qc(e){e.out||(e.out=console.log.bind(console)),e.err||(e.err=console.error.bind(console)),e.print||(e.print=e.out),e.printErr||(e.printErr=e.err),lt.out=e.print,lt.err=e.printErr,await async function(){var e;if(tt){if(globalThis.performance===Io){const{performance:e}=et.require("perf_hooks");globalThis.performance=e}if(et.process=await import(/*! webpackIgnore: true */"process"),globalThis.crypto||(globalThis.crypto={}),!globalThis.crypto.getRandomValues){let e;try{e=et.require("node:crypto")}catch(e){}e?e.webcrypto?globalThis.crypto=e.webcrypto:e.randomBytes&&(globalThis.crypto.getRandomValues=t=>{t&&t.set(e.randomBytes(t.length))}):globalThis.crypto.getRandomValues=()=>{throw new Error("Using node without crypto support. To enable current operation, either provide polyfill for 'globalThis.crypto.getRandomValues' or enable 'node:crypto' module.")}}}ct.subtle=null===(e=globalThis.crypto)||void 0===e?void 0:e.subtle}()}function Yc(e){const t=Ft();e.locateFile||(e.locateFile=e.__locateFile=e=>lt.scriptDirectory+e),e.mainScriptUrlOrBlob=lt.scriptUrl;const s=e.instantiateWasm,i=e.preInit?"function"==typeof e.preInit?[e.preInit]:e.preInit:[],l=e.preRun?"function"==typeof e.preRun?[e.preRun]:e.preRun:[],p=e.postRun?"function"==typeof e.postRun?[e.postRun]:e.postRun:[],u=e.onRuntimeInitialized?e.onRuntimeInitialized:()=>{};e.instantiateWasm=(e,t)=>function(e,t,n){const r=Ft();if(n){const o=n(e,((e,n)=>{Pt(r,"mono.instantiateWasm"),ct.afterInstantiateWasm.promise_control.resolve(),t(e,n)}));return o}return async function(e,t){try{await lt.afterConfigLoaded,lt.diagnosticTracing&&ze("instantiate_wasm_module"),await ct.beforePreInit.promise,Ke.addRunDependency("instantiate_wasm_module"),await async function(){const e=lt.simd(),t=lt.relaxedSimd(),n=lt.exceptions();ct.featureWasmSimd=await e,ct.featureWasmRelaxedSimd=await t,ct.featureWasmEh=await n,ct.emscriptenBuildOptions.wasmEnableSIMD&&(ct.featureWasmSimd||mt(!1,"This browser/engine doesn't support WASM SIMD. Please use a modern version. See also https://aka.ms/dotnet-wasm-features")),ct.emscriptenBuildOptions.wasmEnableEH&&(ct.featureWasmEh||mt(!1,"This browser/engine doesn't support WASM exception handling. Please use a modern version. See also https://aka.ms/dotnet-wasm-features"))}(),function(e){const t=e.env||e.a;if(!t)return void We("WARNING: Neither imports.env or imports.a were present when instantiating the wasm module. This likely indicates an emscripten configuration issue.");const n=new Array(Mc.length);for(const e in t){const r=t[e];if("function"==typeof r&&-1!==r.toString().indexOf("runtime_idx"))try{const{runtime_idx:t}=r();if(void 0!==n[t])throw new Error(`Duplicate runtime_idx ${t}`);n[t]=e}catch(e){}}for(const[e,r]of Mc.entries()){const o=n[e];if(void 0!==o){if("function"!=typeof t[o])throw new Error(`Expected ${o} to be a function`);t[o]=r}}}(e);const n=await lt.wasmCompilePromise.promise;t(await WebAssembly.instantiate(n,e),n),lt.diagnosticTracing&&ze("instantiate_wasm_module done"),ct.afterInstantiateWasm.promise_control.resolve()}catch(e){throw He("instantiate_wasm_module() failed",e),lt.mono_exit(1,e),e}Ke.removeRunDependency("instantiate_wasm_module")}(e,t),[]}(e,t,s),e.preInit=[()=>function(e){Ke.addRunDependency("mono_pre_init");const t=Ft();try{Ke.addRunDependency("mono_wasm_pre_init_essential"),lt.diagnosticTracing&&ze("mono_wasm_pre_init_essential"),lt.gitHash!==ct.gitHash&&We(`The version of dotnet.runtime.js ${ct.gitHash} is different from the version of dotnet.js ${lt.gitHash}!`),lt.gitHash!==ct.emscriptenBuildOptions.gitHash&&We(`The version of dotnet.native.js ${ct.emscriptenBuildOptions.gitHash} is different from the version of dotnet.js ${lt.gitHash}!`),n!==ct.emscriptenBuildOptions.wasmEnableThreads&&We(`The threads of dotnet.native.js ${ct.emscriptenBuildOptions.wasmEnableThreads} is different from the version of dotnet.runtime.js ${n}!`),function(){const e=[...r];for(const t of e){const e=o,[n,r,s,a,i]=t,l="function"==typeof n;if(!0===n||l)e[r]=function(...t){!l||!n()||mt(!1,`cwrap ${r} should not be called when binding was skipped`);const o=c(r,s,a,i);return e[r]=o,o(...t)};else{const t=c(r,s,a,i);e[r]=t}}}(),s=et,Object.assign(s,{mono_wasm_exit:o.mono_wasm_exit,mono_wasm_profiler_init_aot:a.mono_wasm_profiler_init_aot,mono_wasm_profiler_init_browser_devtools:a.mono_wasm_profiler_init_browser_devtools,mono_wasm_exec_regression:o.mono_wasm_exec_regression,mono_wasm_print_thread_dump:void 0}),Ke.removeRunDependency("mono_wasm_pre_init_essential"),lt.diagnosticTracing&&ze("preInit"),ct.beforePreInit.promise_control.resolve(),e.forEach((e=>e(Ke)))}catch(e){throw He("user preInint() failed",e),lt.mono_exit(1,e),e}var s;(async()=>{try{await async function(){lt.diagnosticTracing&&ze("mono_wasm_pre_init_essential_async"),Ke.addRunDependency("mono_wasm_pre_init_essential_async"),Ke.removeRunDependency("mono_wasm_pre_init_essential_async")}(),Pt(t,"mono.preInit")}catch(e){throw lt.mono_exit(1,e),e}ct.afterPreInit.promise_control.resolve(),Ke.removeRunDependency("mono_pre_init")})()}(i)],e.preRun=[()=>async function(e){Ke.addRunDependency("mono_pre_run_async");try{await ct.afterInstantiateWasm.promise,await ct.afterPreInit.promise,lt.diagnosticTracing&&ze("preRunAsync");const t=Ft();e.map((e=>e(Ke))),Pt(t,"mono.preRun")}catch(e){throw He("preRunAsync() failed",e),lt.mono_exit(1,e),e}ct.afterPreRun.promise_control.resolve(),Ke.removeRunDependency("mono_pre_run_async")}(l)],e.onRuntimeInitialized=()=>async function(e){try{await ct.afterPreRun.promise,lt.diagnosticTracing&&ze("onRuntimeInitialized"),ct.nativeExit=Wc,ct.nativeAbort=Hc;const t=Ft();if(ct.beforeOnRuntimeInitialized.promise_control.resolve(),await ct.coreAssetsInMemory.promise,ct.config.virtualWorkingDirectory){const e=Ke.FS,t=ct.config.virtualWorkingDirectory;try{const n=e.stat(t);n?n&&e.isDir(n.mode)||mt(!1,`FS.chdir: ${t} is not a directory`):Ke.FS_createPath("/",t,!0,!0)}catch(e){Ke.FS_createPath("/",t,!0,!0)}e.chdir(t)}ct.config.interpreterPgo&&setTimeout(Kc,1e3*(ct.config.interpreterPgoSaveDelay||15)),Ke.runtimeKeepalivePush(),n||await async function(){try{const t=Ft(),n=ct.config.environmentVariables||{};lt.diagnosticTracing&&ze("Initializing mono runtime");for(const e in n){const t=n[e];if("string"!=typeof t)throw new Error(`Expected environment variable '${e}' to be a string but it was ${typeof t}: '${t}'`);Zc(e,t)}if(ct.config.runtimeOptions&&function(e){if(!Array.isArray(e))throw new Error("Expected runtimeOptions to be an array of strings");const t=_(4*e.length);let n=0;for(let r=0;raot; in your project file."),null==e&&(e={}),"writeAt"in e||(e.writeAt="System.Runtime.InteropServices.JavaScript.JavaScriptExports::StopProfile"),"sendTo"in e||(e.sendTo="Interop/Runtime::DumpAotProfileData");const t="aot:write-at-method="+e.writeAt+",send-to-method="+e.sendTo;a.mono_wasm_profiler_init_aot(t)}(ct.config.aotProfilerOptions||{}):ct.emscriptenBuildOptions.enableDevToolsProfiler?function(){ct.emscriptenBuildOptions.enableDevToolsProfiler||mt(!1,"DevTools profiler is not enabled, please use browser:callspec=N:Sample in your project file."),Dt=globalThis.performance&&"function"==typeof globalThis.performance.measure;const e=`${ct.config.environmentVariables.DOTNET_WasmPerformanceInstrumentation||"callspec=all"}`;a.mono_wasm_profiler_init_browser_devtools(e)}():ct.emscriptenBuildOptions.enableLogProfiler&&(e=ct.config.logProfilerOptions||{},ct.emscriptenBuildOptions.enableLogProfiler||mt(!1,"Log profiler is not enabled, please use log; in your project file."),e.takeHeapshot||mt(!1,"Log profiler is not enabled, the takeHeapshot method must be defined in LogProfilerOptions.takeHeapshot"),e.configuration||(e.configuration="log:alloc,output=output.mlpd"),e.takeHeapshot?a.mono_wasm_profiler_init_log(`${e.configuration},take-heapshot-method=${e.takeHeapshot}`):a.mono_wasm_profiler_init_log(e.configuration));!function(){var e,t,n,r;lt.diagnosticTracing&&ze("mono_wasm_load_runtime");try{const s=Ft();let a=ct.config.debugLevel;null==a&&(a=0,ct.config.debugLevel&&(a=0+a)),lt.isDebuggingSupported()&&(ct.config.resources.corePdb||ct.config.resources.pdb)||(a=0);const i=new Map;if(null===(t=null===(e=ct.config.runtimeConfig)||void 0===e?void 0:e.runtimeOptions)||void 0===t?void 0:t.configProperties)for(const[e,t]of Object.entries(null===(r=null===(n=ct.config.runtimeConfig)||void 0===n?void 0:n.runtimeOptions)||void 0===r?void 0:r.configProperties))i.set(e,""+t);i.set("APP_CONTEXT_BASE_DIRECTORY","/"),i.set("RUNTIME_IDENTIFIER","browser-wasm");const c=i.size,l=[],p=_(4*i.size),u=_(4*i.size);l.push(p),l.push(u);let d=0;for(const[e,t]of i.entries()){const n=$e(e),r=$e(t);S(p+4*d,n),S(u+4*d,r),d++,l.push(n),l.push(r)}o.mono_wasm_load_runtime(a,c,p,u);for(const e of l)Ke._free(e);Pt(s,"mono.loadRuntime")}catch(e){throw He("mono_wasm_load_runtime () failed",e),lt.mono_exit(1,e),e}}(),function(){if(ma)return;ma=!0;const e=fa(),t=e.tableSize,n=ct.emscriptenBuildOptions.runAOTCompilation?e.tableSize:1,r=ct.emscriptenBuildOptions.runAOTCompilation?e.aotTableSize:1,s=t+n+36*r+1,a=qs();let i=a.length;const c=performance.now();a.grow(s);const l=performance.now();e.enableStats&&Ve(`Allocated ${s} function table entries for jiterpreter, bringing total table size to ${a.length}`),i=_a(0,i,t,ta("mono_jiterp_placeholder_trace")),i=_a(1,i,n,ta("mono_jiterp_placeholder_jit_call"));for(let e=2;e<=37;e++)i=_a(e,i,r,a.get(o.mono_jiterp_get_interp_entry_func(e)));const p=performance.now();e.enableStats&&Ve(`Growing wasm function table took ${l-c}. Filling table took ${p-l}.`)}(),function(){if(!ct.mono_wasm_bindings_is_ready){lt.diagnosticTracing&&ze("bindings_init"),ct.mono_wasm_bindings_is_ready=!0;try{const e=Ft();we||("undefined"!=typeof TextDecoder&&(Se=new TextDecoder("utf-16le"),ve=new TextDecoder("utf-8",{fatal:!1}),Ue=new TextDecoder("utf-8"),Te=new TextEncoder),we=_(12)),Ee||(Ee=function(e){let t;if(de.length>0)t=de.pop();else{const e=function(){if(null==le||!pe){le=_e(ce,"js roots"),pe=new Int32Array(ce),ue=ce;for(let e=0;elt.loadedFiles.push(e.url))),lt.diagnosticTracing&&ze("all assets are loaded in wasm memory"))}(),tl.registerRuntime(it),ct.mono_wasm_runtime_is_ready||function mono_wasm_runtime_ready(){if(et.mono_wasm_runtime_is_ready=ct.mono_wasm_runtime_is_ready=!0,vt=0,St={},Ut=-1,globalThis.dotnetDebugger)debugger}();try{e(Ke)}catch(e){throw He("user callback onRuntimeInitialized() failed",e),e}await async function(){lt.diagnosticTracing&&ze("mono_wasm_after_user_runtime_initialized");try{if(Ke.onDotnetReady)try{await Ke.onDotnetReady()}catch(e){throw He("onDotnetReady () failed",e),e}}catch(e){throw He("mono_wasm_after_user_runtime_initialized () failed",e),e}}(),Pt(t,"mono.onRuntimeInitialized")}catch(e){throw Ke.runtimeKeepalivePop(),He("onRuntimeInitializedAsync() failed",e),lt.mono_exit(1,e),e}ct.afterOnRuntimeInitialized.promise_control.resolve()}(u),e.postRun=[()=>async function(e){try{await ct.afterOnRuntimeInitialized.promise,lt.diagnosticTracing&&ze("postRunAsync");const t=Ft();Ke.FS_createPath("/","usr",!0,!0),Ke.FS_createPath("/","usr/share",!0,!0),e.map((e=>e(Ke))),Pt(t,"mono.postRun")}catch(e){throw He("postRunAsync() failed",e),lt.mono_exit(1,e),e}ct.afterPostRun.promise_control.resolve()}(p)],e.ready.then((async()=>{await ct.afterPostRun.promise,Pt(t,"mono.emscriptenStartup"),ct.dotnetReady.promise_control.resolve(it)})).catch((e=>{ct.dotnetReady.promise_control.reject(e)})),e.ready=ct.dotnetReady.promise}function Zc(e,t){o.mono_wasm_setenv(e,t)}async function Kc(){void 0!==lt.exitCode&&0!==lt.exitCode||await Rc()}async function el(e){}let tl;function nl(r){const o=Ke,a=r,i=globalThis;Object.assign(a.internal,{mono_wasm_exit:e=>{Ke.err("early exit "+e)},forceDisposeProxies:Jr,mono_wasm_dump_threads:void 0,logging:void 0,mono_wasm_stringify_as_error_with_stack:Qe,mono_wasm_get_loaded_files:As,mono_wasm_send_dbg_command_with_parms:Et,mono_wasm_send_dbg_command:xt,mono_wasm_get_dbg_command_info:It,mono_wasm_get_details:Nt,mono_wasm_release_object:Ct,mono_wasm_call_function_on:Bt,mono_wasm_debugger_resume:At,mono_wasm_detach_debugger:jt,mono_wasm_raise_debug_event:Lt,mono_wasm_change_debugger_log_level:$t,mono_wasm_debugger_attached:Rt,mono_wasm_runtime_is_ready:ct.mono_wasm_runtime_is_ready,mono_wasm_get_func_id_to_name_mappings:Ze,get_property:lr,set_property:cr,has_property:pr,get_typeof_property:ur,get_global_this:dr,get_dotnet_instance:()=>it,dynamic_import:mr,mono_wasm_bind_cs_function:wr,ws_wasm_create:bs,ws_wasm_open:ys,ws_wasm_send:ws,ws_wasm_receive:ks,ws_wasm_close:Ss,ws_wasm_abort:vs,ws_get_state:gs,http_wasm_supports_streaming_request:$o,http_wasm_supports_streaming_response:Lo,http_wasm_create_controller:Ro,http_wasm_get_response_type:Mo,http_wasm_get_response_status:zo,http_wasm_abort:No,http_wasm_transform_stream_write:Oo,http_wasm_transform_stream_close:Co,http_wasm_fetch:Po,http_wasm_fetch_stream:Do,http_wasm_fetch_bytes:Fo,http_wasm_get_response_header_names:Vo,http_wasm_get_response_header_values:Wo,http_wasm_get_response_bytes:qo,http_wasm_get_response_length:Ho,http_wasm_get_streamed_response_bytes:Go,jiterpreter_dump_stats:$c,jiterpreter_apply_options:pa,jiterpreter_get_options:fa,interp_pgo_load_data:Bc,interp_pgo_save_data:Rc,mono_wasm_gc_lock:ae,mono_wasm_gc_unlock:ie,monoObjectAsBoolOrNullUnsafe:Fc,monoStringToStringUnsafe:Pe,loadLazyAssembly:Cc,loadSatelliteAssemblies:Dc});const c={stringify_as_error_with_stack:Qe,instantiate_symbols_asset:Is,instantiate_asset:xs,jiterpreter_dump_stats:$c,forceDisposeProxies:Jr,utf8ToString:Le,mono_wasm_process_current_pid:Xc,mono_background_exec:()=>s.mono_background_exec(),mono_wasm_ds_exec:()=>s.mono_wasm_ds_exec()};Object.assign(ct,c);const l={runMain:Vc,runMainAndExit:zc,exit:lt.mono_exit,setEnvironmentVariable:Zc,getAssemblyExports:vr,setModuleImports:ir,getConfig:()=>ct.config,invokeLibraryInitializers:lt.invokeLibraryInitializers,setHeapB32:b,setHeapB8:y,setHeapU8:w,setHeapU16:k,setHeapU32:S,setHeapI8:v,setHeapI16:U,setHeapI32:T,setHeapI52:x,setHeapU52:I,setHeapI64Big:A,setHeapF32:j,setHeapF64:$,getHeapB32:R,getHeapB8:B,getHeapU8:N,getHeapU16:O,getHeapU32:C,getHeapI8:M,getHeapI16:z,getHeapI32:V,getHeapI52:W,getHeapU52:H,getHeapI64Big:q,getHeapF32:G,getHeapF64:J,localHeapViewU8:K,localHeapViewU16:ee,localHeapViewU32:te,localHeapViewI8:X,localHeapViewI16:Q,localHeapViewI32:Y,localHeapViewI64Big:Z,localHeapViewF32:ne,localHeapViewF64:re,collectCpuSamples:null,collectMetrics:null,collectGcDump:null,connectDSRouter:null};return Object.assign(it,{INTERNAL:a.internal,Module:o,runtimeBuildInfo:{productVersion:e,gitHash:ct.gitHash,buildConfiguration:t,wasmEnableThreads:n,wasmEnableSIMD:!0,wasmEnableExceptionHandling:!0},...l}),i.getDotnetRuntime?tl=i.getDotnetRuntime.__list:(i.getDotnetRuntime=e=>i.getDotnetRuntime.__list.getRuntime(e),i.getDotnetRuntime.__list=tl=new rl),it}class rl{constructor(){this.list={}}registerRuntime(e){return void 0===e.runtimeId&&(e.runtimeId=Object.keys(this.list).length),this.list[e.runtimeId]=yr(e),lt.config.runtimeId=e.runtimeId,e.runtimeId}getRuntime(e){const t=this.list[e];return t?t.deref():void 0}}export{Yc as configureEmscriptenStartup,Qc as configureRuntimeStartup,el as configureWorkerStartup,nl as initializeExports,Ao as initializeReplacements,dt as passEmscriptenInternals,tl as runtimeList,ft as setRuntimeGlobals}; +//# sourceMappingURL=dotnet.runtime.js.map diff --git a/OnProfNext.Client/bin/Debug/net10.0/dotnet.runtime.js.map b/OnProfNext.Client/bin/Debug/net10.0/dotnet.runtime.js.map new file mode 100644 index 0000000..37c5e18 --- /dev/null +++ b/OnProfNext.Client/bin/Debug/net10.0/dotnet.runtime.js.map @@ -0,0 +1 @@ +{"version":3,"file":"dotnet.runtime.js","sources":["https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/cwraps.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/types/internal.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/memory.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/gc-lock.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/roots.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/strings.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/logging.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/globals.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/base64.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/debug.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/profiler.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/marshal-to-js.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/marshal.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/managed-exports.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/gc-handles.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/pthreads/shared.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/invoke-js.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/weak-ref.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/invoke-cs.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/cancelable-promise.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/marshal-to-cs.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/polyfills.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/http.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/scheduling.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/queue.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/web-socket.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/assets.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/icu.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/jiterpreter-opcodes.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/jiterpreter-support.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/jiterpreter-enums.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime//mintops.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/jiterpreter-tables.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/jiterpreter-trace-generator.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/jiterpreter-interp-entry.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/jiterpreter-jit-call.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/jiterpreter.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/interp-pgo.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/lazyLoading.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/satelliteAssemblies.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/exports-internal.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/globalization-locale.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/exports-binding.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/startup.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/crypto.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/diagnostics.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/run.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/exports.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/export-api.ts"],"sourcesContent":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"names":["fn_signatures","runtimeHelpers","emscriptenBuildOptions","enableAotProfiler","enableDevToolsProfiler","enableLogProfiler","enableEventPipe","wrapped_c_functions","threads_c_functions","profiler_c_functions","fastCwrapTypes","cwrap","name","returnType","argTypes","opts","fce","indexOf","every","atype","Module","undefined","length","mono_log_error","Error","MonoObjectNull","MonoStringNull","GCHandleNull","max_int64_big","BigInt","min_int64_big","malloc","size","_malloc","free","ptr","_free","assert_int_in_range","value","min","max","Number","isSafeInteger","_zero_region","byteOffset","sizeBytes","localHeapViewU8","fill","setB32","offset","boolValue","HEAP32","setB8","HEAPU8","setU8","setU16","HEAPU16","setU32","HEAPU32","setI8","HEAP8","setI16","HEAP16","setI32","autoThrowI52","error","setI52","cwraps","mono_wasm_f64_to_i52","setU52","mono_wasm_f64_to_u52","setI64Big","HEAP64","setF32","HEAPF32","setF64","HEAPF64","warnDirtyBool","getB32","mono_log_warn","getB8","getU8","getU16","getU32","getU32_local","localView","getI32_unaligned","mono_wasm_get_i32_unaligned","getU32_unaligned","getI8","getI16","getI32","getI52","result","mono_wasm_i52_to_f64","_i52_error_scratch_buffer","getU52","mono_wasm_u52_to_f64","getI64Big","getF32","getF64","localHeapViewI8","localHeapViewI16","localHeapViewI32","localHeapViewI64Big","localHeapViewU16","localHeapViewU32","localHeapViewF32","localHeapViewF64","fixupPointer","signature","shiftAmount","gc_locked","mono_wasm_gc_lock","mono_wasm_gc_unlock","maxScratchRoots","_scratch_root_buffer","_scratch_root_free_indices","_scratch_root_free_indices_count","_scratch_root_free_instances","_external_root_free_instances","mono_wasm_new_root_buffer","capacity","capacityBytes","WasmRootBufferImpl","constructor","ownsAllocation","this","__offset","__offset32","__count","__handle","mono_wasm_register_root","__ownsAllocation","_throw_index_out_of_range","_check_in_range","index","get_address","get_address_32","get","set","address","mono_wasm_write_managed_pointer_unsafe","copy_value_from_address","sourceAddress","destinationAddress","mono_wasm_copy_managed_pointer","_unsafe_get","_unsafe_set","clear","release","mono_wasm_deregister_root","toString","WasmJsOwnedRoot","buffer","__buffer","__index","copy_from","source","copy_to","destination","copy_from_address","copy_to_address","valueOf","address32","push","WasmExternalRoot","__external_address","__external_address_32","_set_address","interned_js_string_table","Map","mono_wasm_empty_string","mono_wasm_string_decoder_buffer","interned_string_table","_text_decoder_utf16","_text_decoder_utf8_relaxed","_text_decoder_utf8_validating","_text_encoder_utf8","mono_wasm_string_root","_empty_string_ptr","_interned_string_current_root_buffer","_interned_string_current_root_buffer_count","stringToUTF8","str","len","lengthBytesUTF8","Uint8Array","stringToUTF8Array","encode","stringToUTF8Ptr","subarray","utf8ToString","heapU8","heapOrArray","idx","maxBytesToRead","endIdx","endPtr","UTF8ArrayToString","view","viewOrCopy","decode","utf8BufferToString","utf16ToString","startPtr","subArray","heapU16","i","char","String","fromCharCode","utf16ToStringLoop","stringToUTF16","dstPtr","text","heapI16","charCodeAt","stringToUTF16Ptr","bytes","monoStringToString","root","ppChars","pLengthBytes","pIsInterned","mono_wasm_string_get_data_ref","heapU32","lengthBytes","pChars","isInterned","stringToInternedMonoStringRoot","string","description","Symbol","keyFor","stringToMonoStringNewRoot","internIt","rootBuffer","mono_wasm_intern_string_ref","storeStringInInternTable","bufferLen","mono_wasm_string_from_utf16_ref","start","end","monoStringToStringUnsafe","mono_string","prefix","mono_log_debug","messageFactory","diagnosticTracing","message","console","debug","mono_log_info","msg","data","info","warn","silent","wasm_func_map","wasm_pending_symbol_table","regexes","mono_wasm_symbolicate_string","performDeferredSymbolMapParsing","origMessage","newRaw","replace","RegExp","substring","args","groups","find","arg","replaceSection","funcNum","mono_wasm_stringify_as_error_with_stack","reason","stack","split","forEach","line","parts","splice","join","loaderHelpers","exc","mono_wasm_get_func_id_to_name_mappings","values","INTERNAL","ENVIRONMENT_IS_NODE","process","versions","node","ENVIRONMENT_IS_WEB_WORKER","importScripts","ENVIRONMENT_IS_SIDECAR","dotnetSidecar","ENVIRONMENT_IS_WORKER","ENVIRONMENT_IS_WEB","window","ENVIRONMENT_IS_SHELL","exportedRuntimeAPI","diagnosticHelpers","_runtimeModuleLoaded","passEmscriptenInternals","internals","isPThread","quit","quit_","ExitStatus","getMemory","getWasmIndirectFunctionTable","updateMemoryViews","setRuntimeGlobals","globalObjects","module","internal","api","rh","gitHash","coreAssetsInMemory","createPromiseController","allAssetsInMemory","dotnetReady","afterInstantiateWasm","beforePreInit","afterPreInit","afterPreRun","beforeOnRuntimeInitialized","afterMonoStarted","afterDeputyReady","afterIOStarted","afterOnRuntimeInitialized","afterPostRun","nativeAbort","nativeExit","code","Object","assign","config","afterResolve","afterReject","mono_assert","condition","toBase64StringImpl","inArray","reader","count","endpoint","position","read","nextByte","defineProperty","configurable","enumerable","_makeByteReader","ch1","ch2","ch3","bits","equalsCount","sum","_base64Table","commands_received","remove","key","delete","_debugger_buffer","_assembly_name_str","_entrypoint_method_token","_call_function_res_cache","_next_call_function_res_id","_debugger_buffer_len","mono_wasm_fire_debugger_agent_message_with_data_to_pause","base64String","assert","mono_wasm_malloc_and_set_debug_buffer","command_parameters","Math","byteCharacters","atob","mono_wasm_send_dbg_command_with_parms","id","command_set","command","valtype","newvalue","res_ok","res","mono_wasm_send_dbg_command","mono_wasm_get_dbg_command_info","mono_wasm_debugger_resume","mono_wasm_detach_debugger","mono_wasm_set_is_debugger_attached","mono_wasm_change_debugger_log_level","level","mono_wasm_raise_debug_event","event","JSON","stringify","eventName","mono_wasm_debugger_attached","waitForDebugger","mono_wasm_call_function_on","request","arguments","Array","isArray","objId","objectId","details","proxy","startsWith","ret","items","map","p","dimensionsDetails","keys","prop","commandSet","newValue","_create_proxy_from_object_id","fn_args","a","fn_body_template","functionDeclaration","fn_res","Function","fn_defn","type","subtype","returnByValue","getPrototypeOf","prototype","fn_res_id","_cache_call_function_res","className","mono_wasm_get_details","real_obj","descriptors","getOwnPropertyDescriptors","accessorPropertiesOnly","k","Reflect","deleteProperty","res_details","new_obj","prop_desc","__value_as_json_string__","_get_cfo_res_details","obj","mono_wasm_release_object","enablePerfMeasure","startMeasure","globalThis","performance","now","endMeasure","block","options","startTime","measure","methodNames","bind_arg_marshal_to_js","sig","marshaler_type","res_marshaler","arg1_marshaler","arg2_marshaler","arg3_marshaler","get_marshaler_to_cs_by_type","get_signature_arg1_type","get_signature_arg2_type","get_signature_arg3_type","marshaler_type_res","get_signature_res_type","get_marshaler_to_js_by_type","converter","element_type","arg_offset","JavaScriptMarshalerArgSize","cs_to_js_marshalers","jsinteropDoc","_marshal_bool_to_js","get_arg_type","get_arg_bool","_marshal_byte_to_js","get_arg_u8","_marshal_char_to_js","get_arg_u16","_marshal_int16_to_js","get_arg_i16","marshal_int32_to_js","get_arg_i32","_marshal_int52_to_js","get_arg_i52","_marshal_bigint64_to_js","get_arg_i64_big","_marshal_float_to_js","get_arg_f32","_marshal_double_to_js","get_arg_f64","_marshal_intptr_to_js","get_arg_intptr","_marshal_null_to_js","_marshal_datetime_to_js","unixTime","Date","get_arg_date","_marshal_delegate_to_js","_","res_converter","arg1_converter","arg2_converter","arg3_converter","gc_handle","get_arg_gc_handle","_lookup_js_owned_object","arg1_js","arg2_js","arg3_js","callback_gc_handle","assert_runtime_running","sp","stackSave","alloc_stack_frame","arg1","get_arg","set_arg_type","set_gc_handle","invoke_sync_jsexport","managedExports","CallDelegate","is_runtime_running","stackRestore","call_delegate","dispose","isDisposed","teardown_managed_proxy","setup_managed_proxy","TaskHolder","promise","resolve_or_reject","marshal_task_to_js","try_marshal_sync_task_to_js","jsv_handle","get_arg_js_handle","holder","create_task_holder","js_obj","assert_js_interop","_cs_owned_objects_by_jsv_handle","isExtensible","cs_owned_js_handle_symbol","register_with_jsv_handle","begin_marshal_task_to_js","set_js_handle","mono_wasm_get_js_handle","end_marshal_task_to_js","eagerPromise","mono_wasm_release_cs_owned_object","Promise","reject","marshal_exception_to_js","get_arg_element_type","resolve","val","promise_control","js_handle","argInner","js_value","marshal_string_to_js","get_string_root","mono_wasm_get_jsobj_from_js_handle","ManagedError","_marshal_js_object_to_js","_marshal_cs_object_to_js","_marshal_array_to_js_impl","ManagedObject","_marshal_array_to_js","array_element_size","buffer_ptr","get_arg_length","element_arg","bufferOffset","slice","_marshal_span_to_js","Span","_marshal_array_segment_to_js","ArraySegment","monoThreadInfo","pthreadId","reuseCount","updateCount","threadPrefix","threadName","invoke_async_jsexport","managedTID","method","mono_wasm_invoke_jsexport","is_args_exception","get_method","method_name","mono_wasm_assembly_find_method","runtime_interop_exports_class","runtime_interop_namespace","runtime_interop_exports_classname","js_to_cs_marshalers","bound_cs_function_symbol","for","bound_js_function_symbol","imported_js_function_symbol","JSMarshalerTypeSize","JSMarshalerSignatureHeaderSize","stackAlloc","get_sig","get_signature_type","get_signature_argument_count","get_signature_version","set_arg_bool","set_arg_intptr","set_arg_date","getTime","set_arg_f64","jsHandle","gcHandle","pop","mono_wasm_new_external_root","set_arg_length","js_owned_gc_handle_symbol","super","superStack","getOwnPropertyDescriptor","getManageStack","getSuperStack","call","managed_stack","exception_gc_handle","GetManagedStackTrace","get_managed_stack_trace","MemoryView","_pointer","_length","_viewType","_unsafe_create_view","Int32Array","Float64Array","targetOffset","targetView","copyTo","target","sourceOffset","sourceView","trimmedSource","byteLength","pointer","viewType","is_disposed","js_import_wrapper_by_fn_handle","bind_fn","closure","args_count","arg_marshalers","arg_cleanup","has_cleanup","fn","fqn","mark","WasmEnableThreads","js_args","js_arg","marshaler","js_result","cleanup","ex","marshal_exception_to_cs","mono_wasm_set_module_imports","module_name","moduleImports","importedModules","set_property","self","get_property","has_property","get_typeof_property","get_global_this","importedModulesPromises","dynamic_import","module_url","newPromise","import","wrap_as_cancelable_promise","async","invoke_later_when_on_ui_thread_async","_use_weak_ref","WeakRef","create_weak_ref","deref","create_strong_ref","mono_wasm_bind_cs_function","assemblyName","namespaceName","shortClassName","methodName","signatureHash","fullyQualifiedName","version","arg_marshaler","bind_arg_marshal_to_cs","res_sig","res_marshaler_type","is_async","is_discard_no_wait","bound_fn","marshaler1","managedThreadTID","bind_fn_1RA","marshaler2","arg2","bind_fn_2RA","bind_fn_1R","bind_fn_2R","bind_fn_1V","bind_fn_0V","assembly","namespace","classname","methodname","signature_hash","scope","assemblyScope","exportsByAssembly","part","newscope","_walk_exports_to_set_function","mono_wasm_get_assembly_exports","marshal_string_to_cs","BindAssemblyExports","bind_assembly_exports","_use_finalization_registry","FinalizationRegistry","_js_owned_object_registry","_cs_owned_objects_by_js_handle","_js_handle_free_list","_next_js_handle","_js_owned_object_table","_gcv_handle_free_list","_next_gcv_handle","is_jsv_handle","is_js_handle","is_gcv_handle","_js_owned_object_finalized","do_not_force_dispose","hasOwnProperty","owner","register","wr","skipManaged","gcv_handle","unregister","force_dispose_proxies_in_progress","isUI","ReleaseJSOwnedObjectByGCHandle","release_js_owned_object_by_gc_handle","assert_not_disposed","forceDisposeProxies","disposeMethods","verbose","keepSomeCsAlive","keepSomeJsAlive","doneImports","doneExports","doneGCHandles","doneJSHandles","gc_handles","keepAlive","getPromiseController","free_js_handle","list","disposed","assemblyExports","assemblyExport","exportName","isThenable","then","catch","promise_holder_symbol","PromiseHolder","promiseHolderPtr","isResolved","isPosted","isPostponed","setIsResolving","complete_task_wrapper","cancel","assertIsControllablePromise","holder_gc_handle","arg3","ioThreadTID","CompleteTask","complete_task","marshal_cs_object_to_cs","mono_exit","ex2","marshal_bool_to_cs","_marshal_byte_to_cs","set_arg_u8","_marshal_char_to_cs","set_arg_u16","_marshal_int16_to_cs","set_arg_i16","_marshal_int32_to_cs","set_arg_i32","_marshal_int52_to_cs","set_arg_i52","_marshal_bigint64_to_cs","set_arg_i64_big","_marshal_double_to_cs","_marshal_float_to_cs","set_arg_f32","marshal_intptr_to_cs","_marshal_date_time_to_cs","_marshal_date_time_offset_to_cs","_marshal_string_to_cs_impl","interned","stringToMonoStringRoot","_marshal_null_to_cs","_marshal_function_to_cs","wrapper","previousPendingSynchronousCall","isPendingSynchronousCall","res_js","marshal_task_to_cs","handleIsPreallocated","known_js_handle","marshal_js_object_to_cs","js_type","marshal_array_to_cs_impl","Int16Array","Int8Array","Uint8ClampedArray","Uint16Array","Uint32Array","Float32Array","marshal_array_to_cs","element_size","buffer_length","set_arg_element_type","_marshal_span_to_cs","checkViewType","_marshal_array_segment_to_cs","dummyPerformance","initializeReplacements","replacements","require","scriptDirectory","locateFile","__locateFile","fetch","fetch_like","verifyEnvironment","AbortController","http_wasm_supports_streaming_request","Request","ReadableStream","TransformStream","duplexAccessed","hasContentType","body","duplex","headers","has","http_wasm_supports_streaming_response","Response","http_wasm_create_controller","abortController","mute_unhandledrejection","err","http_wasm_abort","controller","isAborted","streamWriter","abort","streamReader","signal","aborted","http_wasm_transform_stream_write","bufferPtr","bufferLength","copy","ready","write","http_wasm_transform_stream_close","close","http_wasm_fetch_stream","url","header_names","header_values","option_names","option_values","transformStream","writable","getWriter","closed","http_wasm_fetch","readable","http_wasm_fetch_bytes","bodyPtr","bodyLength","Headers","append","responsePromise","response","responseHeaderNames","responseHeaderValues","entries","pair","http_wasm_get_response_type","_a","http_wasm_get_response_status","_b","status","http_wasm_get_response_header_names","http_wasm_get_response_header_values","http_wasm_get_response_length","arrayBuffer","responseBuffer","currentBufferOffset","http_wasm_get_response_bytes","source_view","bytes_read","http_wasm_get_streamed_response_bytes","getReader","currentStreamReaderChunk","done","remaining_source","bytes_copied","lastScheduledBackground","lastScheduledTimeoutId","spread_timers_maximum","prevent_timer_throttling","isChromium","desired_reach_time","schedule","delay","setTimeout","prevent_timer_throttling_tick","maybeExit","mono_wasm_execute_timer","mono_background_exec_until_done","mono_background_exec","mono_wasm_schedule_timer_tick","Queue","queue","getLength","isEmpty","enqueue","item","dequeue","peek","drain","onEach","wasm_ws_pending_send_buffer","wasm_ws_pending_send_buffer_offset","wasm_ws_pending_send_buffer_type","wasm_ws_pending_receive_event_queue","wasm_ws_pending_receive_promise_queue","wasm_ws_pending_open_promise","wasm_ws_pending_open_promise_used","wasm_ws_pending_error","wasm_ws_pending_close_promises","wasm_ws_pending_send_promises","wasm_ws_is_aborted","wasm_ws_close_sent","wasm_ws_close_received","wasm_ws_receive_status_ptr","ws_send_buffer_blocking_threshold","emptyBuffer","ws_get_state","ws","readyState","WebSocket","CLOSED","CLOSING","OPEN","ws_wasm_create","uri","sub_protocols","receive_status_ptr","open_promise_control","binaryType","local_on_open","local_on_message","ev","event_queue","promise_queue","web_socket_receive_buffering","web_socket_on_message","local_on_close","removeEventListener","close_promise_control","safeSetTimeout","receive_promise_control","local_on_error","reject_promises","addEventListener","once","ws_wasm_abort","ws_wasm_open","rejectedPromise","ws_wasm_send","message_type","end_of_message","whole_buffer","buffer_view","newbuffer","utf8ToStringRelaxed","web_socket_send_buffering","send","bufferedAmount","pending","nextDelay","polling_check","isDone","web_socket_send_and_wait","ws_wasm_receive","receive_event_queue","receive_promise_queue","ws_wasm_close","wait_for_close_received","open_promise_used","send_promise_control","response_ptr","inner","wrap_as_cancelable","instantiate_asset","asset","behavior","virtualName","virtualPath","_loaded_files","file","desiredSize","memoryOffset","_sbrk","mono_wasm_load_bytes_into_heap_persistent","lastSlash","lastIndexOf","parentDirectory","fileName","FS_createPath","FS_createDataFile","mono_wasm_add_assembly","findIndex","element","mono_wasm_load_icu_data","mono_wasm_add_satellite_assembly","culture","actual_instantiated_assets_count","instantiate_symbols_asset","pendingAsset","pendingDownloadInternal","mono_wasm_get_loaded_files","loadedFiles","opcodeNameCache","getOpcodeName","opcode","pName","mono_jiterp_get_opcode_info","maxFailures","maxMemsetSize","maxMemmoveSize","INT32_MIN","compressedNameCache","WasmBuilder","constantSlotCount","locals","permanentFunctionTypeCount","permanentFunctionTypes","permanentFunctionTypesByShape","permanentFunctionTypesByIndex","functionTypesByIndex","permanentImportedFunctionCount","permanentImportedFunctions","nextImportIndex","functions","estimatedExportBytes","frame","traceBuf","branchTargets","Set","constantSlots","backBranchOffsets","callHandlerReturnAddresses","nextConstantSlot","backBranchTraceLevel","compressImportNames","lockImports","_assignParameterIndices","parms","BlobBuilder","cfg","Cfg","defineType","getOptions","maxModuleSize","stackSize","inSection","inFunction","functionTypeCount","functionTypes","create","functionTypesByShape","importedFunctionCount","importedFunctions","argumentCount","current","activeBlocks","useConstants","allowNullCheckOptimization","eliminateNullChecks","containsSimd","containsAtomics","_push","_pop","writeToOutput","appendULeb","getArrayView","setImportFunction","imp","func","getExceptionTag","exceptionTag","WebAssembly","Tag","getWasmImports","memory","Memory","c","getConstants","m","h","x","e","importsToEmit","getImportsToEmit","ifi","mangledName","getCompressedName","subTable","bytesGeneratedSoFar","importSize","appendU8","appendSimd","allowLoad","appendAtomic","allowNotify","appendU32","appendF32","appendF64","appendBoundaryValue","sign","appendLeb","appendLebRef","signed","appendBytes","appendName","ip","ip_const","i32_const","ptr_const","base","i52_const","v128_const","local","isZero","parameters","permanent","shape","tup","generateTypeSection","beginSection","parameterCount","endSection","getImportedFunctionTable","imports","f","v","sort","lhs","rhs","_generateImportSection","includeFunctionTable","enableWasmEh","typeIndex","getTypeIndex","defineImportedFunction","functionTypeName","table","getWasmFunctionTable","markImportAsUsed","defineFunction","generator","rec","typeName","export","blob","emitImportsAndFunctions","exportCount","beginFunction","endFunction","call_indirect","callImport","_assignLocalIndices","counts","localGroupCount","ty","offi64","offf32","offf64","offv128","tk","localBaseIndex","endBlock","appendMemarg","alignPower","lea","ptr1","fullCapacity","suppressDeepStackError","textBuf","encoder","TextEncoder","mono_jiterp_write_number_unaligned","appendI32","bytesWritten","mono_jiterp_encode_leb_signed_boundary","mono_jiterp_encode_leb52","mono_jiterp_encode_leb64_ref","copyWithin","actualCount","singleChar","encodeInto","written","ch","builder","segments","backBranchTargets","lastSegmentEnd","overheadBytes","blockStack","backDispatchOffsets","dispatchTable","observedBackBranchTargets","trace","initialize","startOfBody","lastSegmentStartIp","firstOpcodeIp","entry","entryIp","enterSizeU16","appendBlob","entryBlob","startBranchBlock","isBackBranchTarget","branch","isBackward","branchType","add","from","jumpTable","targets","fallthrough","emitBlob","segment","generate","indexInStack","shift","modifyCounter","fallthroughIndex","lookupTarget","disp","successfulBackBranch","exitIp","isConditional","append_bailout","wasmTable","simdFallbackCounters","_now","bind","append_profiler_event","event_name","countBailouts","traceIndex","append_exit","opcodeCounter","getMemberOffset","monitoringLongDistance","addWasmFunctionPointer","mono_jiterp_allocate_table_entry","try_append_memset_fast","localOffset","destOnStack","destLocal","enableSimd","sizeofV128","localCount","append_memset_dest","try_append_memmove_fast","destLocalOffset","srcLocalOffset","addressesOnStack","srcLocal","destOffset","srcOffset","loadOp","storeOp","append_memmove_dest_src","recordFailure","applyOptions","enableTraces","enableInterpEntry","enableJitCall","memberOffsets","member","cached","mono_jiterp_get_member_offset","getRawCwrap","opcodeTableCache","getOpcodeTableValue","mono_jiterp_get_opcode_value_table_entry","importDef","observedTaintedZeroPage","isZeroPageReserved","mono_wasm_is_zero_page_reserved","optionNames","enableBackwardBranches","enableCallResume","enableAtomics","zeroPageOptimization","cprop","enableStats","disableHeuristic","estimateHeat","dumpTraces","noExitBackwardBranches","directJitCalls","minimumTraceValue","minimumTraceHitCount","monitoringPeriod","monitoringShortDistance","monitoringMaxAveragePenalty","backBranchBoost","jitCallHitCount","jitCallFlushThreshold","interpEntryHitCount","interpEntryFlushThreshold","wasmBytesLimit","tableSize","aotTableSize","maxSwitchSize","optionsVersion","optionTable","mono_jiterp_parse_option","getCounter","counter","mono_jiterp_get_counter","delta","mono_jiterp_modify_counter","currentVersion","mono_jiterp_get_options_version","mono_jiterp_get_option_as_int","updateOptions","jiterpreter_allocate_table","fillValue","firstIndex","lastIndex","mono_jiterp_initialize_table","jiterpreter_tables_allocated","BailoutReasonNames","SimdInfo","ldcTable","floatToIntTable","unopTable","intrinsicFpBinops","binopTable","relopbranchTable","mathIntrinsicTable","xchgTable","cmpxchgTable","simdCreateSizes","simdCreateLoadOps","simdCreateStoreOps","simdShiftTable","simdExtractTable","simdReplaceTable","simdLoadTable","simdStoreTable","bitmaskTable","createScalarTable","getArgU16","indexPlusOne","getArgI16","getArgU32","getArgI32","get_imethod","get_imethod_data","pData","sizeOfDataItem","get_imethod_clause_data_offset","is_backward_branch_target","backwardBranchTable","knownConstants","get_known_constant","isAddressTaken","get_known_constant_value","kc","getOpcodeLengthU16","notNullSince","cknullOffset","eraseInferredState","invalidate_local","invalidate_local_range","append_branch_target_block","computeMemoryAlignment","opcodeOrPrefix","simdOpcode","alignment","try_append_ldloc_cprop","dryRun","requireNonzero","knownConstant","append_ldloca","append_ldloc","append_stloc_tail","bytesInvalidated","append_memset_local","append_memmove_local_local","sourceLocalOffset","mono_jiterp_is_imethod_var_address_taken","append_ldloc_cknull","leaveOnStack","emit_ldc","storeType","tableEntry","mono_wasm_get_f32_unaligned","getArgF32","mono_wasm_get_f64_unaligned","getArgF64","emit_mov","emit_fieldop","isLoad","objectOffset","fieldOffset","notNull","setter","getter","klass","emit_sfieldop","pVtable","pStaticData","append_vtable_initialize","emit_binop","lhsLoadOp","rhsLoadOp","lhsVar","rhsVar","operandsCached","intrinsicFpBinop","isF64","emit_math_intrinsic","is64","emit_unop","append_call_handler_store_ret_ip","retIp","clauseDataOffset","getBranchDisplacement","opArgType","payloadAddress","emit_branch","isSafepoint","displacement","isCallHandler","bbo","mono_jiterp_boost_back_branch_target","emit_relop_branch","relopBranchInfo","relop","relopInfo","operandLoadOp","isUnary","isF32","wasmOp","rhsOffset","emit_indirectop","isAddMul","isOffset","isImm","valueVarIndex","addressVarIndex","offsetVarIndex","constantOffset","constantMultiplier","addressCprop","append_getelema1","indexOffset","elementSize","ptrLocal","emit_arrayop","valueOffset","elementGetter","elementSetter","get_import_name","functionPtr","emit_simd","opname","argCount","featureWasmSimd","simple","mono_jiterp_get_simd_opcode","bitmask","append_simd_2_load","append_simd_store","emit_simd_2","isShift","extractTup","lane","laneCount","append_simd_3_load","isR8","eqOpcode","indicesOffset","constantIndices","elementCount","newShuffleVector","sizeOfV128","nativeIndices","elementIndex","j","featureWasmRelaxedSimd","emit_shuffle","emit_simd_3","rtup","stup","append_simd_4_load","indices","emit_simd_4","numElements","sizeOfStackval","importName","mono_jiterp_get_simd_intrinsic","emit_atomics","xchg","cmpxchg","emit_switch","exitOpcodeCounter","lengthU16","n","decodeSwitch","failed","sizeOfJiterpEntryData","trampBuilder","trampImports","fnTable","jitQueueTimeout","infoTable","getTrampImports","mostRecentOptions","TrampolineInfo$1","imethod","pParamTypes","unbox","hasThisReference","hasReturnValue","defaultImplementation","paramTypes","hitCount","generateName","namePtr","mono_wasm_method_get_full_name","subName","maxLength","traceName","getTraceName","getName","flush_wasm_entry_trampoline_jit_queue","jitQueue","methodPtr","mono_jiterp_tlqueue_next","pMonoObject","this_arg","started","compileStarted","rejected","threw","sp_args","need_unbox","scratchBuffer","generate_wasm_body","traceModule","wasmImports","traceInstance","Instance","exports","finished","s","buf","b","append_stackval_from_data","valueName","argIndex","rawSize","mono_jiterp_type_get_raw_value_size","mono_jiterp_get_arg_offset","offsetOfArgInfo","JIT_ARG_BYVAL","nextDisambiguateIndex","fnCache","targetCache","infosByMethod","TrampolineInfo","rmethod","cinfo","arg_offsets","catch_exceptions","catchExceptions","addr","noWrapper","mono_jiterp_get_signature_return_type","paramCount","mono_jiterp_get_signature_param_count","mono_jiterp_get_signature_has_this","mono_jiterp_get_signature_params","argOffsetCount","argOffsets","wasmNativeReturnType","wasmTypeFromCilOpcode","mono_jiterp_type_to_stind","wasmNativeSignature","monoType","mono_jiterp_type_to_ldind","enableDirect","vt","suffix","disambiguate","getWasmTableEntry","mono_interp_flush_jitcall_queue","infos","ret_sp","ftndesc","thrown","mono_jiterp_tlqueue_clear","featureWasmEh","actualParamCount","callTarget","old_sp","mono_jiterp_register_jit_call_thunk","wasmOpcodeFromCilOpcode","offsetBytes","stack_index","svalOffset","loadCilOp","loadWasmOp","storeCilOp","storeWasmOp","summaryStatCount","mostRecentTrace","traceTableIsFull","disabledOpcodes","instrumentedMethodNames","InstrumentedTraceState","eip","TraceInfo","isVerbose","mono_jiterp_get_trace_hit_count","instrumentedTraces","nextInstrumentedTraceId","abortCounts","traceInfo","traceBuilder","traceImports","mathOps1d","mathOps2d","mathOps1f","mathOps2f","recordBailout","mono_jiterp_trace_bailout","bailoutCounts","bailoutCount","getTraceImports","trace_current_ip","trace_operands","pushMathOps","mop","traceId","operand1","operand2","record_abort","mono_jiterp_adjust_abort_count","abortCount","abortReason","jiterpreter_dump_stats","concise","runtimeReady","backBranchesEmitted","backBranchesNotEmitted","nullChecksEliminated","nullChecksFused","jitCallsCompiled","directJitCallsCompiled","entryWrappersCompiled","tracesCompiled","traceCandidates","bytesGenerated","elapsedGenerationMs","elapsedCompilationMs","switchTargetsOk","switchTargetsFailed","backBranchHitRate","tracesRejected","mono_jiterp_get_rejected_trace_count","nullChecksEliminatedText","nullChecksFusedText","backBranchesEmittedText","toFixed","directJitCallsText","traces","mono_jiterp_get_trace_bailout_count","l","r","fnPtr","tuples","tablePrefix","interp_pgo_save_data","cacheKey","getCacheKey","expectedSize","mono_interp_pgo_save_table","mimeType","cache","openCache","responseToCache","put","storeCacheEntry","protectKey","cleanupCache","interp_pgo_load_data","match","getCacheEntry","mono_interp_pgo_load_table","isSecureContext","caches","cacheName","document","baseURI","location","origin","open","subtle","inputs","resourcesHash","resources","hash","assets","preferredIcuAsset","forwardConsoleLogsToWS","appendElementOnExit","interopCleanupOnExit","dumpThreadsOnNonZeroExit","logExitCode","pthreadPoolInitialSize","pthreadPoolUnusedSize","asyncFlushOnExit","remoteSources","ignorePdbLoadErrors","maxParallelDownloads","enableDownloadRetry","extensions","runtimeId","jsThreadBlockingMode","GitHash","ProductVersion","inputsJson","sha256Buffer","digest","uint8ViewOfHash","padStart","loadLazyAssembly","assemblyNameToLoad","lazyAssemblies","lazyAssembly","assemblyNameWithoutExtension","endsWith","assemblyNameToLoadDll","assemblyNameToLoadWasm","dllAsset","loadedAssemblies","includes","pdbNameToLoad","shouldLoadPdb","pdbAsset","debugLevel","isDebuggingSupported","dllBytesPromise","retrieve_asset_download","dll","pdb","pdbBytesPromise","dllBytes","pdbBytes","all","LoadLazyAssembly","load_lazy_assembly","loadSatelliteAssemblies","culturesToLoad","satelliteResources","filter","promises","reduce","previous","next","concat","bytesPromise","LoadSatelliteAssembly","load_satellite_assembly","monoObjectAsBoolOrNullUnsafe","mono_wasm_read_as_bool_or_null_unsafe","normalizeLocale","locale","toLocaleLowerCase","canonicalLocales","Intl","getCanonicalLocales","shortestDueTimeMs","clearTimeout","assembly_name","assembly_ptr","assembly_len","pdb_ptr","pdb_len","mono_wasm_runtime_is_ready","assembly_name_str","assembly_b64","pdb_b64","message_ptr","logging","debugger","buffer_len","buffer_obj","mono_wasm_fire_debugger_agent_message_with_data","sizeOfBody","presetFunctionPointer","methodFullName","pMethodName","mono_wasm_method_get_name","endOfBody","rbase16","rip16","opLengthU16","rtarget16","generateBackwardBranchTable","threshold","foundReachableBranchTarget","pLocals","retval","dest","src","ppString","pResult","pIndex","span","y","z","ppDestination","vtable","ppSource","parent","ppObj","sp1","sp2","fieldOffsetBytes","targetLocalOffsetBytes","sourceLocalOffsetBytes","expected","traceIp","o","aindex","ref","arg0","initialize_builder","ti","instrument","instrumentedTraceId","traceLocals","cknull_ptr","dest_ptr","src_ptr","memop_dest","memop_src","math_lhs32","math_rhs32","math_lhs64","math_rhs64","temp_f32","temp_f64","keep","traceValue","isFirstInstruction","isConditionallyExecuted","pruneOpcodes","hasEmittedUnreachable","prologueOpcodeCounter","conditionalOpcodeCounter","rip","spaceLeft","numSregs","numDregs","isSimdIntrins","simdIntrinsArgCount","simdIntrinsIndex","_ip","isForwardBranchTarget","skipDregInvalidation","opcodeValue","sizeOffset","constantSize","iMethod","flag","mono_jiterp_imethod_to_ftnptr","isSpecialInterface","mono_jiterp_is_special_interface","bailoutOnFailure","canDoFastCheck","elementClassOffset","elementClass","ra","isI64","limit","tempLocal","isI32","multiplier","firstDreg","stmtText","firstSreg","generateWasmBody","desc","generate_wasm","mono_jiterp_tlqueue_add","defaultImplementationFn","tableId","existing","jitQueueLength","ibm","thunkIndex","thunk","haveTag","Exception","is","getArg","mono_jiterp_begin_catch","mono_jiterp_end_catch","mono_wasm_profiler_free_method","mono_jiterp_free_method_data_interp_entry","infoArray","mono_jiterp_free_method_data_jit_call","chars","mono_wasm_method_get_name_ex","log_domain_ptr","log_level_ptr","fatal","user_data","isFatal","domain","dataPtr","log_level","messageWithStack","exitReason","log","entrypoint_method_token","mainAssemblyName","crypto","getRandomValues","memoryView","needsCopy","targetBuffer","targetBatch","mono_wasm_process_current_pid","js_function_name","functionNameOffset","functionNameLength","get_signature_function_name","js_module_name","moduleNameOffset","get_signature_module_name","function_handle","get_signature_handle","function_name","mono_wasm_lookup_js_import","wrapped_fn","bind_js_import","normalize_exception","bound_function_js_handle","mono_wasm_invoke_js_function_impl","receiver_should_free","arg_handle","arg_value","mono_wasm_resolve_or_reject_promise_impl","task_holder_gc_handle","mono_wasm_cancel_promise_impl","cultureLength","localeLength","dst","dstMaxLength","dstLength","localeNameOriginal","localeName","cultureName","localeParts","languageName","regionName","region","DisplayNames","of","language","RangeError","localeInfo","LanguageName","RegionName","urlPtr","ds_rt_websocket_create","client_socket","bytes_to_write","ds_rt_websocket_send","ds_rt_websocket_poll","bytes_to_read","ds_rt_websocket_recv","ds_rt_websocket_close","mono_run_main_and_exit","main_assembly_name","mono_run_main","applicationArguments","argv","allRuntimeArguments","main_argc","main_argv","setValue","mono_wasm_strdup","mono_wasm_set_main_args","interval","setInterval","clearInterval","runtimeKeepalivePush","program_args","CallEntrypoint","call_entry_point","runtimeKeepalivePop","mono_wasm_exit","reasonString","pid","timeOrigin","configureRuntimeStartup","out","print","printErr","nodeCrypto","webcrypto","randomBytes","init_polyfills_async","configureEmscriptenStartup","path","mainScriptUrlOrBlob","scriptUrl","userInstantiateWasm","instantiateWasm","userPreInit","preInit","userPreRun","preRun","userpostRun","postRun","userOnRuntimeInitialized","onRuntimeInitialized","callback","successCallback","instance","afterConfigLoaded","addRunDependency","simd","relaxedSimd","exceptions","wasmEnableSIMD","wasmEnableEH","ensureUsedWasmFeatures","env","indexToNameMap","shortName","stub_fn","runtime_idx","realFn","replace_linker_placeholders","compiledModule","wasmCompilePromise","instantiate","removeRunDependency","instantiate_wasm_module","wasmEnableThreads","fns","wf","lazyOrSkip","maybeSkip","init_c_exports","mono_wasm_profiler_init_aot","mono_wasm_profiler_init_browser_devtools","mono_wasm_exec_regression","mono_wasm_print_thread_dump","mono_wasm_pre_init_essential_async","preRunAsync","virtualWorkingDirectory","FS","cwd","wds","stat","isDir","mode","chdir","interpreterPgo","maybeSaveInterpPgoTable","interpreterPgoSaveDelay","environmentVariables","mono_wasm_setenv","runtimeOptions","option","mono_wasm_parse_runtime_options","mono_wasm_set_runtime_options","diagnosticPorts","jsReady","writeAt","sendTo","mono_wasm_init_aot_profiler","aotProfilerOptions","mono_wasm_init_devtools_profiler","logProfilerOptions","configuration","takeHeapshot","mono_wasm_profiler_init_log","corePdb","runtimeConfigProperties","runtimeConfig","configProperties","_d","_c","propertyCount","buffers","appctx_keys","appctx_values","keyPtr","valuePtr","mono_wasm_load_runtime","traceTableSize","jitCallTableSize","runAOTCompilation","interpEntryTableSize","totalSize","beforeGrow","grow","afterGrow","mono_jiterp_get_interp_entry_func","afterTables","jiterpreter_allocate_tables","mono_wasm_bindings_is_ready","TextDecoder","_mono_wasm_claim_scratch_index","mono_wasm_new_root","exports_fqn_asm","runtime_interop_module","mono_wasm_assembly_load","mono_wasm_assembly_find_class","InstallMainSynchronizationContext","init_managed_exports","bindings_init","start_runtime","actual_downloaded_assets_count","expected_downloaded_assets_count","expected_instantiated_assets_count","wait_for_all_assets","runtimeList","registerRuntime","mono_wasm_runtime_ready","dotnetDebugger","onDotnetReady","mono_wasm_after_user_runtime_initialized","onRuntimeInitializedAsync","postRunAsync","exitCode","configureWorkerStartup","initializeExports","globals","globalThisAny","exit_code","mono_wasm_dump_threads","get_dotnet_instance","jiterpreter_apply_options","jiterpreter_get_options","stringify_as_error_with_stack","tcwraps","mono_wasm_ds_exec","API","runMain","runMainAndExit","exit","setEnvironmentVariable","getAssemblyExports","setModuleImports","getConfig","invokeLibraryInitializers","setHeapB32","setHeapB8","setHeapU8","setHeapU16","setHeapU32","setHeapI8","setHeapI16","setHeapI32","setHeapI52","setHeapU52","setHeapI64Big","setHeapF32","setHeapF64","getHeapB32","getHeapB8","getHeapU8","getHeapU16","getHeapU32","getHeapI8","getHeapI16","getHeapI32","getHeapI52","getHeapU52","getHeapI64Big","getHeapF32","getHeapF64","collectCpuSamples","collectMetrics","collectGcDump","connectDSRouter","runtimeBuildInfo","productVersion","buildConfiguration","BuildConfiguration","wasmEnableExceptionHandling","getDotnetRuntime","__list","getRuntime","RuntimeList"],"mappings":";;gCAiBA,MAeMA,EAA2B,CAC7B,EAAC,EAAM,0BAA2B,SAAU,CAAC,SAAU,SAAU,WACjE,EAAC,EAAM,4BAA6B,KAAM,CAAC,WAC3C,EAAC,EAAM,gCAAiC,KAAM,CAAC,SAAU,SAAU,SAAU,WAC7E,EAAC,EAAM,qCAAsC,OAAQ,CAAC,SACtD,EAAC,EAAM,6BAA8B,OAAQ,CAAC,SAAU,SAAU,SAAU,SAAU,WACtF,EAAC,EAAM,wCAAyC,OAAQ,CAAC,SAAU,SAAU,SAAU,SAAU,SAAU,SAAU,WACrH,EAAC,EAAM,mBAAoB,KAAM,CAAC,SAAU,WAC5C,EAAC,EAAM,kCAAmC,KAAM,CAAC,SAAU,WAC3D,EAAC,EAAM,mBAAoB,SAAU,CAAC,WACtC,EAAC,EAAM,uBAAwB,KAAM,IACrC,EAAC,EAAM,oBAAqB,KAAM,IAClC,EAAC,EAAM,0BAA2B,KAAM,IACxC,EAAC,EAAM,0BAA2B,SAAU,CAAC,WAC7C,EAAC,EAAO,yBAA0B,SAAU,CAAC,SAAU,SAAU,WACjE,EAAC,EAAM,mCAAoC,OAAQ,CAAC,SAAU,SAAU,SAAU,WAClF,EAAC,EAAO,yBAA0B,KAAM,CAAC,SAAU,SAAU,SAAU,WACvE,EAAC,EAAM,sCAAuC,OAAQ,CAAC,WAEvD,EAAC,EAAM,0BAA2B,SAAU,CAAC,WAC7C,EAAC,EAAM,gCAAiC,SAAU,CAAC,SAAU,SAAU,WACvE,EAAC,EAAM,iCAAkC,SAAU,CAAC,SAAU,SAAU,WACxE,EAAC,EAAM,kCAAmC,OAAQ,CAAC,SAAU,SAAU,WACvE,EAAC,EAAM,8BAA+B,OAAQ,CAAC,WAE/C,EAAC,EAAO,iBAAkB,OAAQ,CAAC,WACnC,EAAC,EAAM,mBAAoB,SAAU,CAAC,WACtC,EAAC,EAAM,0BAA2B,OAAQ,CAAC,SAAU,WAErD,CAAC,KAAOC,GAAeC,uBAAuBC,kBAAmB,8BAA+B,OAAQ,CAAC,WACzG,CAAC,KAAOF,GAAeC,uBAAuBE,uBAAwB,2CAA4C,OAAQ,CAAC,WAC3H,CAAC,KAAOH,GAAeC,uBAAuBG,kBAAmB,8BAA+B,OAAQ,CAAC,WACzG,EAAC,EAAO,4BAA6B,SAAU,CAAC,SAAU,WAC1D,EAAC,EAAO,4BAA6B,OAAQ,CAAC,SAAU,WACxD,EAAC,EAAM,yCAA0C,OAAQ,CAAC,SAAU,WACpE,EAAC,EAAM,iCAAkC,OAAQ,CAAC,SAAU,WAC5D,EAAC,EAAM,uBAAwB,SAAU,CAAC,SAAU,WACpD,EAAC,EAAM,uBAAwB,SAAU,CAAC,SAAU,WACpD,EAAC,EAAM,uBAAwB,SAAU,CAAC,SAAU,WACpD,EAAC,EAAM,uBAAwB,SAAU,CAAC,SAAU,WACpD,EAAC,EAAM,4BAA6B,SAAU,CAAC,WAC/C,EAAC,EAAM,+BAAgC,SAAU,CAAC,WAClD,EAAC,EAAM,iCAAkC,SAAU,CAAC,WACpD,EAAC,EAAM,oBAAqB,OAAQ,IACpC,EAAC,EAAM,sBAAuB,OAAQ,IACtC,EAAC,EAAM,8BAA+B,SAAU,CAAC,WACjD,EAAC,EAAM,8BAA+B,SAAU,CAAC,WACjD,EAAC,EAAM,8BAA+B,SAAU,CAAC,WACjD,EAAC,EAAM,wCAAyC,SAAU,CAAC,WAG3D,EAAC,EAAM,4BAA6B,OAAQ,CAAC,WAC7C,EAAC,EAAM,sCAAuC,SAAU,CAAC,WACzD,EAAC,EAAM,yBAA0B,OAAQ,CAAC,SAAU,SAAU,WAC9D,EAAC,EAAM,gCAAiC,SAAU,CAAC,WACnD,EAAC,EAAM,2BAA4B,SAAU,CAAC,SAAU,SAAU,WAClE,EAAC,EAAM,+BAAgC,SAAU,CAAC,SAAU,SAAU,WACtE,EAAC,EAAM,yCAA0C,SAAU,CAAC,SAAU,SAAU,WAChF,EAAC,EAAM,qCAAsC,OAAQ,CAAC,SAAU,SAAU,WAC1E,EAAC,EAAM,4BAA6B,SAAU,CAAC,WAC/C,EAAC,EAAM,mCAAoC,SAAU,IACrD,EAAC,EAAM,2BAA4B,SAAU,CAAC,WAC9C,EAAC,EAAM,kCAAmC,SAAU,IACpD,EAAC,EAAM,gCAAiC,SAAU,CAAC,WACnD,EAAC,EAAM,kCAAmC,SAAU,IACpD,EAAC,EAAM,iCAAkC,SAAU,CAAC,SAAU,WAC9D,EAAC,EAAM,sCAAuC,OAAQ,CAAC,SAAU,WACjE,EAAC,EAAM,sCAAuC,SAAU,CAAC,WACzD,EAAC,EAAM,qCAAsC,SAAU,CAAC,WACxD,EAAC,EAAM,wCAAyC,SAAU,CAAC,WAC3D,EAAC,EAAM,wCAAyC,SAAU,CAAC,WAC3D,EAAC,EAAM,mCAAoC,SAAU,CAAC,WACtD,EAAC,EAAM,4BAA6B,SAAU,CAAC,WAC/C,EAAC,EAAM,4BAA6B,SAAU,CAAC,WAC/C,EAAC,EAAM,gCAAiC,SAAU,CAAC,WACnD,EAAC,EAAM,0BAA2B,SAAU,IAC5C,EAAC,EAAM,kCAAmC,SAAU,CAAC,WACrD,EAAC,EAAM,2CAA4C,SAAU,IAC7D,EAAC,EAAM,uCAAwC,SAAU,IACzD,EAAC,EAAM,uCAAwC,OAAQ,CAAC,WACxD,EAAC,EAAM,2CAA4C,SAAU,CAAC,SAAU,WACxE,EAAC,EAAM,2CAA4C,SAAU,CAAC,WAC9D,EAAC,EAAM,iCAAkC,SAAU,CAAC,SAAU,WAC9D,EAAC,EAAM,8BAA+B,SAAU,CAAC,SAAU,WAC3D,EAAC,EAAM,6BAA8B,SAAU,CAAC,SAAU,SAAU,WACpE,EAAC,EAAM,8BAA+B,SAAU,CAAC,SAAU,WAC3D,EAAC,EAAM,kCAAmC,SAAU,IACpD,EAAC,EAAM,mCAAoC,SAAU,CAAC,WACtD,EAAC,EAAM,+BAAgC,OAAQ,CAAC,SAAU,SAAU,WACpE,EAAC,EAAM,mCAAoC,SAAU,CAAC,WACtD,EAAC,EAAM,oCAAqC,SAAU,CAAC,WACvD,EAAC,EAAM,0BAA2B,SAAU,CAAC,WAC7C,EAAC,EAAM,6BAA8B,SAAU,CAAC,SAAU,WAC1D,EAAC,EAAM,2BAA4B,SAAU,CAAC,WAC9C,EAAC,EAAM,0BAA2B,SAAU,CAAC,SAAU,WACvD,EAAC,EAAM,4BAA6B,OAAQ,CAAC,WAC7C,EAAC,EAAM,0BAA2B,OAAQ,CAAC,WAC3C,EAAC,EAAM,wBAAyB,OAAQ,IACxC,EAAC,EAAM,6BAA8B,SAAU,CAAC,SAAU,WAC1D,EAAC,EAAM,6BAA8B,SAAU,CAAC,SAAU,WAC1D,CAAC,KAAOJ,GAAeC,uBAAuBI,kBAAoBL,GAAeC,uBAAuBE,uBAAwB,yBAA0B,OAAQ,CAAC,SAAU,WAC7K,CAAC,KAAOH,GAAeC,uBAAuBI,kBAAoBL,GAAeC,uBAAuBE,uBAAwB,+BAAgC,OAAQ,CAAC,SAAU,WACnL,CAAC,KAAOH,GAAeC,uBAAuBI,kBAAoBL,GAAeC,uBAAuBE,uBAAwB,yBAA0B,OAAQ,CAAC,SAAU,YAkI3KG,EAAqC,CAAE,EAGhCC,EAAoDD,EACpDE,EAAoDF,EAS3DG,EAAiB,CAAC,OAAQ,SAAU,MAE1C,SAASC,EAAOC,EAAcC,EAA2BC,EAAgCC,GAErF,IAAIC,OAEmB,IAAlB,GAEIN,EAAeO,QAAQJ,IAAe,KACrCC,GAAYA,EAASI,OAAMC,GAAST,EAAeO,QAAQE,IAAU,MAGvEC,GAAoB,YACDA,GAAoB,YAAGR,QACxCS,EAYV,GATIL,GAAOF,GAAaE,EAAIM,SAAWR,EAASQ,SAC5CC,GAAe,qCAAqCX,KACpDI,OAAMK,GAIW,mBAAjB,IACAL,EAAMI,GAAOT,MAAMC,EAAMC,EAAYC,EAAUC,IAE9B,mBAAT,EAER,MAAM,IAAIS,MADE,SAASZ,iCAGzB,OAAOI,CACX,CCnQO,MAAMS,EAA8C,EAK9CC,EAA8C,EAK9CC,EAAwC,ECnC/CC,EAAgBC,OAAO,uBACvBC,EAAgBD,OAAO,wBAevB,SAAUE,EAAQC,GACpB,OAAQZ,GAAOa,QAAQD,KAAiB,CAC5C,CAEM,SAAUE,EAAMC,GAClBf,GAAOgB,MAAMD,EACjB,CAeA,SAASE,EAAqBC,EAAeC,EAAaC,GACtD,IAAuGC,OAAAC,cAAAJ,GAAA,MAAA,IAAAd,MAAA,2CAAAc,aAAA,MACvG,KAAyGA,GAAAC,GAAAD,GAAAE,GAAA,MAAA,IAAAhB,MAAA,kCAAAc,eAAAC,KAAAC,UAC7G,CAEgB,SAAAG,EAAcC,EAAqBC,GAC/CC,IAAkBC,KAAK,EAAQH,EAAiBA,EAAaC,EACjE,CAGgB,SAAAG,EAAQC,EAAmBX,GAEvC,MAAMY,IAAcZ,EACG,iBAAnB,GACAD,EAAoBC,EAAO,EAAG,GAClClB,GAAO+B,OAAYF,IAAW,GAAKC,EAAY,EAAI,CACvD,CAEgB,SAAAE,EAAOH,EAAmBX,GACtC,MAAMY,IAAcZ,EACG,iBAAnB,GACAD,EAAoBC,EAAO,EAAG,GAElClB,GAAOiC,OAAYJ,GAAUC,EAAY,EAAI,CACjD,CAEgB,SAAAI,EAAOL,EAAmBX,GACtCD,EAAoBC,EAAO,EAAG,KAE9BlB,GAAOiC,OAAYJ,GAAUX,CACjC,CAEgB,SAAAiB,EAAQN,EAAmBX,GACvCD,EAAoBC,EAAO,EAAG,OAE9BlB,GAAOoC,QAAaP,IAAW,GAAKX,CACxC,CAkBgB,SAAAmB,EAAQR,EAAmBX,GACvCD,EAAyBC,EAAO,EAAG,YAEnClB,GAAOsC,QAAaT,IAAW,GAAkBX,CACrD,CAEgB,SAAAqB,EAAOV,EAAmBX,GACtCD,EAAoBC,GAAY,IAAE,KAElClB,GAAOwC,MAAWX,GAAUX,CAChC,CAEgB,SAAAuB,EAAQZ,EAAmBX,GACvCD,EAAoBC,GAAc,MAAE,OAEpClB,GAAO0C,OAAYb,IAAW,GAAKX,CACvC,CAOgB,SAAAyB,EAAQd,EAAmBX,GACvCD,EAAyBC,GAAmB,WAAE,YAE9ClB,GAAO+B,OAAYF,IAAW,GAAKX,CACvC,CAEA,SAAS0B,EAAcC,GACnB,GAA2B,IAAvBA,EAGJ,OAAQA,GACJ,KAAA,EACI,MAAM,IAAIzC,MAAM,4BACpB,KAAA,EACI,MAAM,IAAIA,MAAM,sBACpB,QACI,MAAM,IAAIA,MAAM,0BAE5B,CAKgB,SAAA0C,EAAQjB,EAAmBX,GACvC,IAA2GG,OAAAC,cAAAJ,GAAA,MAAA,IAAAd,MAAA,+CAAAc,aAAA,MAG3G0B,EADcG,EAAOC,qBAA0BnB,EAAQX,GAE3D,CAKgB,SAAA+B,EAAQpB,EAAmBX,GACvC,IAA2GG,OAAAC,cAAAJ,GAAA,MAAA,IAAAd,MAAA,+CAAAc,aAAA,MAC3G,KAAoEA,GAAA,GAAA,MAAA,IAAAd,MAAA,4DAGpEwC,EADcG,EAAOG,qBAA0BrB,EAAQX,GAE3D,CAEgB,SAAAiC,EAAWtB,EAAmBX,GAC1C,GAAoG,iBAAAA,EAAA,MAAA,IAAAd,MAAA,0CAAAc,aAAA,MACpG,KAAiJA,GAAAR,GAAAQ,GAAAV,GAAA,MAAA,IAAAJ,MAAA,kCAAAc,eAAAR,KAAAF,WAEjJR,GAAOoD,OAAYvB,IAAW,GAAKX,CACvC,CAEgB,SAAAmC,EAAQxB,EAAmBX,GACvC,GAAmG,iBAAAA,EAAA,MAAA,IAAAd,MAAA,yCAAAc,aAAA,MAEnGlB,GAAOsD,QAAazB,IAAW,GAAKX,CACxC,CAEgB,SAAAqC,EAAQ1B,EAAmBX,GACvC,GAAmG,iBAAAA,EAAA,MAAA,IAAAd,MAAA,yCAAAc,aAAA,MAEnGlB,GAAOwD,QAAa3B,IAAW,GAAKX,CACxC,CAEA,IAAIuC,GAAgB,EAEd,SAAUC,EAAQ7B,GAEpB,MAAMX,EAASlB,GAAOsC,QAAaT,IAAW,GAK9C,OAJIX,EAAQ,GAAKuC,IACbA,GAAgB,EAChBE,GAAc,oBAAoB9B,qCAA0CX,QAEvEA,CACb,CAEM,SAAU0C,EAAO/B,GAEnB,QAAU7B,GAAOiC,OAAYJ,EACjC,CAEM,SAAUgC,EAAOhC,GAEnB,OAAO7B,GAAOiC,OAAYJ,EAC9B,CAEM,SAAUiC,EAAQjC,GAEpB,OAAO7B,GAAOoC,QAAaP,IAAW,EAC1C,CAOM,SAAUkC,EAAQlC,GAEpB,OAAO7B,GAAOsC,QAAaT,IAAW,EAC1C,CAGgB,SAAAmC,EAAcC,EAAwBpC,GAClD,OAAOoC,EAAepC,IAAW,EACrC,CAEM,SAAUqC,EAAkBrC,GAC9B,OAAOkB,EAAOoB,4BAAiCtC,EACnD,CAEM,SAAUuC,EAAkBvC,GAC9B,OAAOkB,EAAOoB,4BAAiCtC,KAAY,CAC/D,CAUM,SAAUwC,EAAOxC,GAEnB,OAAO7B,GAAOwC,MAAWX,EAC7B,CAEM,SAAUyC,EAAQzC,GAEpB,OAAO7B,GAAO0C,OAAYb,IAAW,EACzC,CAOM,SAAU0C,EAAQ1C,GAEpB,OAAO7B,GAAO+B,OAAYF,IAAW,EACzC,CAUM,SAAU2C,EAAQ3C,GACpB,MAAM4C,EAAS1B,EAAO2B,qBAA0B7C,EAAQhD,GAAe8F,2BAGvE,OADA/B,EADc2B,EAAO1F,GAAe8F,4BAE7BF,CACX,CAKM,SAAUG,EAAQ/C,GACpB,MAAM4C,EAAS1B,EAAO8B,qBAA0BhD,EAAQhD,GAAe8F,2BAGvE,OADA/B,EADc2B,EAAO1F,GAAe8F,4BAE7BF,CACX,CAEM,SAAUK,EAAWjD,GAEvB,OAAO7B,GAAOoD,OAAYvB,IAAW,EACzC,CAEM,SAAUkD,EAAQlD,GAEpB,OAAO7B,GAAOsD,QAAazB,IAAW,EAC1C,CAEM,SAAUmD,EAAQnD,GAEpB,OAAO7B,GAAOwD,QAAa3B,IAAW,EAC1C,UAgGgBoD,IAEZ,OAAOjF,GAAOwC,KAClB,UAGgB0C,IAEZ,OAAOlF,GAAO0C,MAClB,UAGgByC,IAEZ,OAAOnF,GAAO+B,MAClB,UAGgBqD,IAEZ,OAAOpF,GAAOoD,MAClB,UAGgB1B,IAEZ,OAAO1B,GAAOiC,MAClB,UAGgBoD,KAEZ,OAAOrF,GAAOoC,OAClB,UAGgBkD,KAEZ,OAAOtF,GAAOsC,OAClB,UAGgBiD,KAEZ,OAAOvF,GAAOsD,OAClB,UAGgBkC,KAEZ,OAAOxF,GAAOwD,OAClB,CAqDgB,SAAAiC,GAAcC,EAAgBC,GAC1C,OAASD,IAAsBC,CACnC,CC7fO,IAAIC,IAAY,WAKPC,KACZ,GAAID,GACA,MAAM,IAAIxF,MAAM,wBAQpBwF,IAAY,CAChB,UAEgBE,KACZ,IAAKF,GACD,MAAM,IAAIxF,MAAM,oBAQpBwF,IAAY,CAChB,CCxBA,MAAMG,GAAkB,KACxB,IAAIC,GAA8C,KAC9CC,GAAgD,KAChDC,GAAmC,EACvC,MAAMC,GAAgD,GAChDC,GAAyD,GAQ/C,SAAAC,GAA2BC,EAAkB9G,GAEzD,GAAI8G,GAAY,EACZ,MAAM,IAAIlG,MAAM,iBAIpB,MAAMmG,EAA2B,GAFjCD,GAAsB,GAGhBzE,EAASlB,EAAO4F,GACtB,GAAU1E,EAAS,GAAO,EACtB,MAAM,IAAIzB,MAAM,uCAIpB,OAFAmB,EAAaM,EAAQ0E,GAEd,IAAIC,GAAmB3E,EAAQyE,GAAU,EAAM9G,EAC1D,OA0HagH,GAQT,WAAAC,CAAa5E,EAAiByE,EAAkBI,EAAyBlH,GACrE,MAAM+G,EAA2B,EAAXD,EAEtBK,KAAKC,SAAW/E,EAChB8E,KAAKE,WAA0BhF,IAAW,EAC1C8E,KAAKG,QAAUR,EACfK,KAAKzG,OAASoG,EAEdK,KAAKI,SAAWhE,EAAOiE,wBAAwBnF,EAAQ0E,EAAe/G,GAAQ,UAC9EmH,KAAKM,iBAAmBP,EAG5B,yBAAAQ,GACI,MAAM,IAAI9G,MAAM,sBAGpB,eAAA+G,CAAiBC,IACRA,GAAST,KAAKG,SAAaM,EAAQ,IACpCT,KAAKO,4BAGb,WAAAG,CAAaD,GAET,OADAT,KAAKQ,gBAAgBC,GACTT,KAAKC,SAAoB,EAARQ,EAGjC,cAAAE,CAAgBF,GAEZ,OADAT,KAAKQ,gBAAgBC,GACdT,KAAKE,WAAaO,EAM7B,GAAAG,CAAKH,GACDT,KAAKQ,gBAAgBC,GACrB,MAAMvF,EAAS8E,KAAKW,eAAeF,GACnC,OAAY9B,KAAmBzD,GAGnC,GAAA2F,CAAKJ,EAAelG,GAChB,MAAMuG,EAAUd,KAAKU,YAAYD,GAEjC,OADArE,EAAO2E,uCAAuCD,EAASvG,GAChDA,EAGX,uBAAAyG,CAAyBP,EAAeQ,GACpC,MAAMC,EAAqBlB,KAAKU,YAAYD,GAC5CrE,EAAO+E,+BAA+BD,EAAoBD,GAG9D,WAAAG,CAAaX,GACT,OAAO9B,KAAmBqB,KAAKE,WAAaO,GAGhD,WAAAY,CAAaZ,EAAelG,GACxB,MAAMuG,EAAed,KAAKC,SAAWQ,EACrCrE,EAAO2E,uCAAqDD,EAAyBvG,GAGzF,KAAA+G,GACQtB,KAAKC,UACLrF,EAAaoF,KAAKC,SAAyB,EAAfD,KAAKG,SAGzC,OAAAoB,GACQvB,KAAKC,UAAYD,KAAKM,mBAEtBlE,EAAOoF,0BAA0BxB,KAAKC,UACtCrF,EAAaoF,KAAKC,SAAyB,EAAfD,KAAKG,SACjChG,EAAK6F,KAAKC,WAGdD,KAAKI,SAAiBJ,KAAKC,SAAYD,KAAKG,QAAUH,KAAKE,WAAa,EAG5E,QAAAuB,GACI,MAAO,iBAAiBzB,KAAKU,YAAY,YAAYV,KAAKG,aAIlE,MAAMuB,GAIF,WAAA5B,CAAa6B,EAAwBlB,GACjCT,KAAK4B,SAAWD,EAChB3B,KAAK6B,QAAUpB,EAGnB,WAAAC,GACI,OAAOV,KAAK4B,SAASlB,YAAYV,KAAK6B,SAG1C,cAAAlB,GACI,OAAOX,KAAK4B,SAASjB,eAAeX,KAAK6B,SAG7C,WAAIf,GACA,OAAOd,KAAK4B,SAASlB,YAAYV,KAAK6B,SAG1C,GAAAjB,GAEI,OADoCZ,KAAK4B,SAAUR,YAAYpB,KAAK6B,SAIxE,GAAAhB,CAAKtG,GACD,MAAM2G,EAAqBlB,KAAK4B,SAASlB,YAAYV,KAAK6B,SAE1D,OADAzF,EAAO2E,uCAAuCG,EAAoC3G,GAC3EA,EAGX,SAAAuH,CAAWC,GACP,MAAMd,EAAgBc,EAAOjB,QACvBI,EAAqBlB,KAAKc,QAChC1E,EAAO+E,+BAA+BD,EAAoBD,GAG9D,OAAAe,CAASC,GACL,MAAMhB,EAAgBjB,KAAKc,QACrBI,EAAqBe,EAAYnB,QACvC1E,EAAO+E,+BAA+BD,EAAoBD,GAG9D,iBAAAiB,CAAmBH,GACf,MAAMb,EAAqBlB,KAAKc,QAChC1E,EAAO+E,+BAA+BD,EAAoBa,GAG9D,eAAAI,CAAiBF,GACb,MAAMhB,EAAgBjB,KAAKc,QAC3B1E,EAAO+E,+BAA+Bc,EAAahB,GAGvD,SAAI1G,GACA,OAAOyF,KAAKY,MAGhB,SAAIrG,CAAOA,GACPyF,KAAKa,IAAItG,GAGb,OAAA6H,GACI,MAAM,IAAI3I,MAAM,0GAGpB,KAAA6H,GAGI,MAAMe,EAAYrC,KAAK4B,SAASjB,eAAeX,KAAK6B,SACpDlD,KAAmB0D,GAAa,EAGpC,OAAAd,GACI,IAAKvB,KAAK4B,SACN,MAAM,IAAInI,MAAM,aA/L5B,IAA2CgH,EAkM/BjB,GAA6BjG,OADN,UAhMjBD,KADyBmH,EAmMET,KAAK6B,WA/L9CxC,GAAsBwB,IAAIJ,EAAY,GACtCnB,GAA4BC,IAAoCkB,EAChElB,MA8LcS,KAAM4B,SAAW,KACvB5B,KAAK6B,QAAU,IAEf7B,KAAKa,IAAS,GACdrB,GAA6B8C,KAAKtC,OAI1C,QAAAyB,GACI,MAAO,UAAUzB,KAAKc,YAI9B,MAAMyB,GAIF,WAAAzC,CAAagB,GAHLd,KAAkBwC,mBHlSsC,EGmSxDxC,KAAqByC,sBAAgB,EAGzCzC,KAAK0C,aAAa5B,GAGtB,YAAA4B,CAAc5B,GACVd,KAAKwC,mBAAyC1B,EAC9Cd,KAAKyC,sBAAqC3B,IAAY,EAG1D,WAAIA,GACA,OAA2Bd,KAAKwC,mBAGpC,WAAA9B,GACI,OAA2BV,KAAKwC,mBAGpC,cAAA7B,GACI,OAAOX,KAAKyC,sBAGhB,GAAA7B,GAEI,OADejC,KAAmBqB,KAAKyC,uBAI3C,GAAA5B,CAAKtG,GAED,OADA6B,EAAO2E,uCAAuCf,KAAKwC,mBAAoCjI,GAChFA,EAGX,SAAAuH,CAAWC,GACP,MAAMd,EAAgBc,EAAOjB,QACvBI,EAAqBlB,KAAKwC,mBAChCpG,EAAO+E,+BAA+BD,EAAoBD,GAG9D,OAAAe,CAASC,GACL,MAAMhB,EAAgBjB,KAAKwC,mBACrBtB,EAAqBe,EAAYnB,QACvC1E,EAAO+E,+BAA+BD,EAAoBD,GAG9D,iBAAAiB,CAAmBH,GACf,MAAMb,EAAqBlB,KAAKwC,mBAChCpG,EAAO+E,+BAA+BD,EAAoBa,GAG9D,eAAAI,CAAiBF,GACb,MAAMhB,EAAgBjB,KAAKwC,mBAC3BpG,EAAO+E,+BAA+Bc,EAAahB,GAGvD,SAAI1G,GACA,OAAOyF,KAAKY,MAGhB,SAAIrG,CAAOA,GACPyF,KAAKa,IAAItG,GAGb,OAAA6H,GACI,MAAM,IAAI3I,MAAM,0GAGpB,KAAA6H,GAGI3C,KAAwBqB,KAAKwC,qBAAuB,GAAK,EAG7D,OAAAjB,GAEQ9B,GAA8BlG,OADP,KAEvBkG,GAA8B6C,KAAKtC,MAG3C,QAAAyB,GACI,MAAO,mBAAmBzB,KAAKc,YC9ZhC,MAAM6B,GAA2B,IAAIC,IAC/BC,GAAyB,GACtC,IAAIC,GACG,MAAMC,GAAwB,IAAIH,IACzC,IAIII,GACAC,GACAC,GACAC,GAqQAC,GA5QAC,GAAqC,EAErCC,GAA8D,KAC9DC,GAA6C,EAoB3C,SAAUC,GAAcC,GAC1B,QAA2BnK,IAAvB6J,GAAkC,CAClC,MAAMO,EAAMrK,GAAOsK,gBAAgBF,GAC7B9B,EAAS,IAAIiC,WAAWF,GAE9B,OADArK,GAAOwK,kBAAkBJ,EAAK9B,EAAQ,EAAG+B,GAClC/B,EAEX,OAAOwB,GAAmBW,OAAOL,EACrC,CAEM,SAAUM,GAAiBN,GAC7B,MAAMxJ,EAAOZ,GAAOsK,gBAAgBF,GAAO,EACrCrJ,EAAMJ,EAAOC,GACb0H,EAAS5G,IAAkBiJ,SAAS5J,EAAKA,EAAMH,GAGrD,OAFAZ,GAAOwK,kBAAkBJ,EAAK9B,EAAQ,EAAG1H,GACzC0H,EAAO1H,EAAO,GAAK,EACZG,CACX,CASM,SAAU6J,GAAc7J,GAC1B,MAAM8J,EAASnJ,IACf,gBAGgCoJ,EAAyBC,EAAaC,GACtE,MAAMC,EAASF,EAAMC,EACrB,IAAIE,EAASH,EACb,KAAOD,EAAYI,MAAaA,GAAUD,MAAWC,EACrD,GAAIA,EAASH,GAAO,GAChB,OAAO/K,GAAOmL,kBAAkBL,EAAaC,EAAKC,GAEtD,QAAsC/K,IAAlC4J,GACA,OAAO7J,GAAOmL,kBAAkBL,EAAaC,EAAKC,GAEtD,MAAMI,EAAOC,GAAWP,EAAaC,EAAYG,GACjD,OAAOrB,GAA8ByB,OAAOF,EAChD,CAfWG,CAAmBV,EAAQ9J,EAAY8J,EAAO3K,OAAUa,EACnE,CAgBgB,SAAAyK,GAAeC,EAAkBP,GAC7C,GAAIvB,GAAqB,CACrB,MAAM+B,EAAWL,GAAW3J,IAAmB+J,EAAiBP,GAChE,OAAOvB,GAAoB2B,OAAOI,GAElC,OAIQ,SAAmBD,EAAkBP,GACjD,IAAId,EAAM,GACV,MAAMuB,EAAUtG,KAChB,IAAK,IAAIuG,EAAIH,EAAUG,EAAIV,EAAQU,GAAK,EAAG,CACvC,MAAMC,EAAoBF,EAASC,IHkIN,GGjI7BxB,GAAO0B,OAAOC,aAAaF,GAE/B,OAAOzB,CACX,CAZe4B,CAAkBP,EAAUP,EAE3C,UAYgBe,GAAeC,EAAgBhB,EAAgBiB,GAC3D,MAAMC,EAAU/G,KACVgF,EAAM8B,EAAKjM,OACjB,IAAK,IAAI0L,EAAI,EAAGA,EAAIvB,IHNMpG,EGOTmI,EHPiCvK,EGOxBqK,EHN1BjL,EADqEC,EGOnCiL,EAAKE,WAAWT,GHNvB,EAAG,OAC9B3H,EAAepC,IAAW,GAAKX,KGM3BgL,GAAU,IACIhB,IAHOU,SHNC3H,EAAwBpC,EAAmBX,CGWzE,CAEM,SAAUoL,GAAkBlC,GAC9B,MAAMmC,EAA2B,GAAlBnC,EAAIlK,OAAS,GACtBa,EAAMJ,EAAO4L,GAGnB,OAFAhL,EAAaR,EAAkB,EAAbqJ,EAAIlK,QACtB+L,GAAclL,EAAKA,EAAMwL,EAAOnC,GACzBrJ,CAEX,CAEM,SAAUyL,GAAoBC,GAKhC,GAAIA,EAAKvL,QAAUZ,EACf,OAAO,KAEX,MAAMoM,EAAejD,GAAkC,EACnDkD,EAAoBlD,GAAkC,EACtDmD,EAAmBnD,GAAkC,EAIzD,IAAIhF,EAFJ1B,EAAO8J,8BAA8BJ,EAAKhF,QAAciF,EAAcC,EAAmBC,GAGzF,MAAME,EAAUxH,KACVyH,EAAc/I,EAAa8I,EAASH,GACtCK,EAAShJ,EAAa8I,EAASJ,GAC/BO,EAAajJ,EAAa8I,EAASF,GAcvC,GAZIK,IACAxI,EAASiF,GAAsBnC,IAAIkF,EAAKvL,aAE7BjB,IAAXwE,IACIsI,GAAeC,GACfvI,EAAS+G,GAAmBwB,EAAaA,EAASD,GAC9CE,GACAvD,GAAsBlC,IAAIiF,EAAKvL,MAAOuD,IAE1CA,EAAS+E,SAGFvJ,IAAXwE,EACA,MAAM,IAAIrE,MAAM,mDAAmDqM,EAAKvL,SAE5E,OAAOuD,CACX,CAgCA,SAASyI,GAAgCC,EAAyB1I,GAC9D,IAAI0H,EAWJ,GAVwB,iBAAZ,GACRA,EAAOgB,EAAOC,YACQ,iBAAlB,IACAjB,EAAOkB,OAAOC,OAAOH,IACH,iBAAlB,IACAhB,EAAO,qBACgB,iBAAZ,IACfA,EAAOgB,GAGW,iBAAV,EAGR,MAAM,IAAI/M,MAAM,uEAAuE+M,KAG3F,GAAqB,IAAhBhB,EAAKjM,QAAiB8J,GAEvB,YADAvF,EAAO+C,IAAIwC,IAIf,MAAMjJ,EAAMuI,GAAyB/B,IAAI4E,GACrCpL,EACA0D,EAAO+C,IAAIzG,IAIfwM,GAA0BpB,EAAM1H,GAIpC,SAAmC0I,EAAgBV,EAA4Be,GAC3E,IAAKf,EAAKvL,MACN,MAAM,IAAId,MAAM,wDAIhB8J,IAFqB,OAIrBD,GAAuC,MAEtCA,KACDA,GAAuC5D,GAPlB,KAO8D,oBACnF6D,GAA6C,GAGjD,MAAMuD,EAAaxD,GACb7C,EAAQ8C,KAOV,GADAnH,EAAO2K,4BAA4BjB,EAAKhF,UACnCgF,EAAKvL,MACN,MAAM,IAAId,MAAM,uDAGxBkJ,GAAyB9B,IAAI2F,EAAQV,EAAKvL,OAC1CwI,GAAsBlC,IAAIiF,EAAKvL,MAAOiM,GAEf,IAAlBA,EAAOjN,QAAkB8J,KAC1BA,GAAoByC,EAAKvL,OAI7BuM,EAAW9F,wBAAwBP,EAAOqF,EAAKhF,QACnD,CAvCIkG,CAAyBxB,EAAM1H,GACnC,CAwCA,SAAS8I,GAA2BJ,EAAgB1I,GAChD,MAAMmJ,EAAkC,GAArBT,EAAOjN,OAAS,GAI7BoI,EAAS3H,EAAOiN,GACtB3B,GAAc3D,EAAeA,EAAgBsF,EAAWT,GACxDpK,EAAO8K,gCAAqCvF,EAAQ6E,EAAOjN,OAAQuE,EAAOgD,SAC1E3G,EAAKwH,EACT,UAKgB+C,GAAYD,EAAkB0C,EAAgBC,GAG1D,OADsC3C,EAAK9C,OAGrC8C,EAAKT,SAAcmD,EAAYC,EACzC,CAMM,SAAUC,GAA0BC,GACtC,GAAIA,IAAgB3N,EAChB,OAAO,KAEXyJ,GAAsB7I,MAAQ+M,EAC9B,MAAMxJ,EAAS+H,GAAmBzC,IAElC,OADAA,GAAsB7I,MAAQZ,EACvBmE,CACX,CC7RA,IAAIyJ,GAAS,cAQP,SAAUC,GAAgBC,GAC5B,GAAIvP,GAAewP,kBAAmB,CAClC,MAAMC,EAAqC,mBAAnBF,EAClBA,IACAA,EACNG,QAAQC,MAAMN,GAASI,GAE/B,UAEgBG,GAAeC,KAAgBC,GAC3CJ,QAAQK,KAAKV,GAASQ,KAAQC,EAClC,UAEgBhL,GAAe+K,KAAgBC,GAC3CJ,QAAQM,KAAKX,GAASQ,KAAQC,EAClC,UAEgBxO,GAAgBuO,KAAgBC,GAC5C,GAAIA,GAAQA,EAAKzO,OAAS,GAAKyO,EAAK,IAAyB,iBAAZA,EAAK,GAAiB,CAEnE,GAAIA,EAAK,GAAGG,OACR,OAEJ,GAAIH,EAAK,GAAGvG,SAER,YADAmG,QAAQ1L,MAAMqL,GAASQ,EAAKC,EAAK,GAAGvG,YAI5CmG,QAAQ1L,MAAMqL,GAASQ,KAAQC,EACnC,CAEO,MAAMI,GAAgB,IAAIxF,IACjC,IAAIyF,GACJ,MAAMC,GAAiB,GAEjB,SAAUC,GAA8BZ,GAC1C,IAGI,GAFAa,KAE0B,GAAtBJ,GAAcnO,KACd,OAAO0N,EAEX,MAAMc,EAAcd,EAEpB,IAAK,IAAI1C,EAAI,EAAGA,EAAIqD,GAAQ/O,OAAQ0L,IAAK,CACrC,MAAMyD,EAASf,EAAQgB,QAAQ,IAAIC,OAAON,GAAQrD,GAAI,MAAM,CAAC4D,KAAcC,KACvE,MAAMC,EAASD,EAAKE,MAAKC,GACE,iBAAR,QAA2C3P,IAAvB2P,EAAIC,iBAG3C,QAAe5P,IAAXyP,EACA,OAAOF,EAEX,MAAMM,EAAUJ,EAAOI,QACjBD,EAAiBH,EAAOG,eACxBrQ,EAAOuP,GAAcxH,IAAIlG,OAAOyO,IAEtC,YAAa7P,IAATT,EACOgQ,EAEJA,EAAUF,QAAQO,EAAgB,GAAGrQ,MAASqQ,KAAkB,IAG3E,GAAIR,IAAWD,EACX,OAAOC,EAGf,OAAOD,EACT,MAAOvM,GAEL,OADA0L,QAAQC,MAAM,0BAA0B3L,KACjCyL,EAEf,CAEM,SAAUyB,GAAyCC,GACrD,IAAIC,EAUJ,OARIA,EADkB,iBAAXD,EACCA,EACDA,cAA4D/P,IAAjB+P,EAAOC,OACjD,IAAI7P,OAAQ6P,MAAQ,GAEpBD,EAAOC,MAAQ,GAIpBf,GAA6Be,EACxC,CAqEA,SAASd,KACL,IAAKH,GACD,OAKJC,GAAQhG,KAAK,oGAGbgG,GAAQhG,KAAK,mFAIbgG,GAAQhG,KAAK,uFAGbgG,GAAQhG,KAAK,sEAEb,MAAMkD,EAAO6C,GACbA,QAA4B/O,EAC5B,IACIkM,EAAK+D,MAAM,UAAUC,SAASC,IAC1B,MAAMC,EAAkBD,EAAKF,MAAM,KAC/BG,EAAMnQ,OAAS,IAGnBmQ,EAAM,GAAKA,EAAMC,OAAO,GAAGC,KAAK,KAChCxB,GAAcvH,IAAInG,OAAOgP,EAAM,IAAKA,EAAM,IAAG,IAEYG,GAAAnC,mBAAAF,GAAA,UAAAY,GAAAnO,gBAC/D,MAAO6P,GACL9M,GAAc,8BAA8B8M,KAEpD,UAEgBC,KAEZ,OADAvB,KACO,IAAIJ,GAAc4B,SAC7B,CCrMO,IAAI3Q,GACA4Q,GAGJ,MAAMC,GAAwC,iBAAXC,SAAkD,iBAApBA,QAAQC,UAAwD,iBAAzBD,QAAQC,SAASC,KACnHC,GAAoD,mBAAjBC,cACnCC,GAAyBF,IAAsD,oBAAlBG,cAC7DC,GAAwBJ,KAA8BE,GACtDG,GAAsC,iBAAVC,QAAuBN,KAA8BJ,GACjFW,IAAwBF,KAAuBT,GAIrD,IAAIY,GAAiC,KACjC5S,GAAiC,KACjC2R,GAA+B,KAC/BkB,GAAuC,KAGvCC,IAAuB,EAElB,SAAAC,GAAyBC,EAAgC/S,GACrED,GAAeC,uBAAyBA,EAEf+S,EAAUC,UACnCjT,GAAekT,KAAOF,EAAUG,MAChCnT,GAAeoT,WAAaJ,EAAUI,WACtCpT,GAAeqT,UAAYL,EAAUK,UACrCrT,GAAesT,6BAA+BN,EAAUM,6BACxDtT,GAAeuT,kBAAoBP,EAAUO,iBACjD,CAGM,SAAUC,GAAmBC,GAC/B,GAAIX,GACA,MAAM,IAAIvR,MAAM,iCAEpBuR,IAAuB,EAEvB3R,GAASsS,EAAcC,OACvB3B,GAAW0B,EAAcE,SACzB3T,GAAiByT,EAAczT,eAC/B2R,GAAgB8B,EAAc9B,cAC9BkB,GAAoBY,EAAcZ,kBAClCD,GAAqBa,EAAcG,IAEnC,MAAMC,EAA8B,CAChCC,mDACAC,mBAAoBC,KACpBC,kBAAmBD,KACnBE,YAAaF,KACbG,qBAAsBH,KACtBI,cAAeJ,KACfK,aAAcL,KACdM,YAAaN,KACbO,2BAA4BP,KAC5BQ,iBAAkBR,KAClBS,iBAAkBT,KAClBU,eAAgBV,KAChBW,0BAA2BX,KAC3BY,aAAcZ,KACda,YAAc1D,IACV,MAAMA,GAAU,IAAI5P,MAAM,QAAQ,EAEtCuT,WAAaC,IACT,MAAM,IAAIxT,MAAM,QAAUwT,EAAK,GAGvCC,OAAOC,OAAOjV,GAAgB6T,GAE9BmB,OAAOC,OAAOxB,EAAcC,OAAOwB,OAAS,CAAA,GAC5CF,OAAOC,OAAOxB,EAAcG,IAAK,CAC7BzS,OAAQsS,EAAcC,UAAWD,EAAcC,SAEnDsB,OAAOC,OAAOxB,EAAcG,IAAK,CAC7B7B,SAAU0B,EAAcE,UAEhC,CAEgB,SAAAK,GAA4BmB,EAA2BC,GACnE,OAAOzD,GAAcqC,wBAA2BmB,EAAcC,EAClE,CAKgB,SAAAC,GAAaC,EAAoB/F,GAC7C,GAAI+F,EAAW,OACf,MAAM7F,EAAU,mBAA+C,mBAAnBF,EACtCA,IACAA,GACAvL,EAAQ,IAAIzC,MAAMkO,GACxBnO,GAAemO,EAASzL,GACxBhE,GAAe6U,YAAY7Q,EAC/B,UCtGgBuR,GAAoBC,EAAqBxS,EAAiB3B,GACtE,MAAMoU,EAsEV,SAA0B/H,EAAmBnF,EAAgBmN,GAGzD,IACIC,EADAC,EAAmD,EAMnDD,EAAYjI,EAAMrM,OAASuU,EAE/B,MAAMhQ,EAAS,CACXiQ,KAAM,WACF,GAAID,GAAYD,EACZ,OAAO,KAEX,MAAMG,EAAWpI,EAAMkI,GAEvB,OADAA,GAAY,EACLE,IAYf,OARAd,OAAOe,eAAenQ,EAAQ,MAAO,CACjC8C,IAAK,WACD,OAAQkN,GAAYD,CACvB,EACDK,cAAc,EACdC,YAAY,IAGTrQ,CACX,CArGmBsQ,CAAgBV,GAC/B,IAAI5P,EAAS,GACTuQ,EAAqB,EAAGC,EAAqB,EAAGC,EAAqB,EACrEC,EAAO,EAAGC,EAAc,EAAGC,EAAM,EAIrC,KACIL,EAAMV,EAAOI,OACbO,EAAMX,EAAOI,OACbQ,EAAMZ,EAAOI,OAED,OAARM,GAEQ,OAARC,IACAA,EAAM,EACNG,GAAe,GAEP,OAARF,IACAA,EAAM,EACNE,GAAe,GAInBC,EAAOL,GAAO,GAAOC,GAAO,EAAMC,EAElCC,GAtBU,SAsBFE,IArBG,GAsBX5Q,GAAU6Q,GAAaH,GACvBA,GAxBiC,OAwBzBE,IAvBgB,GAwBxB5Q,GAAU6Q,GAAaH,GAEnBC,EAAc,IACdD,GA5BoD,KA4B5CE,IA3ByB,EA4BjC5Q,GAAU6Q,GAAaH,IAGP,IAAhBC,EACA3Q,GAAU,KACa,IAAhB2Q,EACP3Q,GAAU,KAEV0Q,EArC2E,GAqCnEE,EACR5Q,GAAU6Q,GAAaH,IAI/B,OAAO1Q,CACX,CAEA,MAAM6Q,GAAe,CACjB,IAAK,IAAK,IAAK,IACf,IAAK,IAAK,IAAK,IACf,IAAK,IAAK,IAAK,IACf,IAAK,IAAK,IAAK,IACf,IAAK,IAAK,IAAK,IACf,IAAK,IAAK,IAAK,IACf,IAAK,IACL,IAAK,IAAK,IAAK,IACf,IAAK,IAAK,IAAK,IACf,IAAK,IAAK,IAAK,IACf,IAAK,IAAK,IAAK,IACf,IAAK,IAAK,IAAK,IACf,IAAK,IAAK,IAAK,IACf,IAAK,IACL,IAAK,IAAK,IAAK,IACf,IAAK,IAAK,IAAK,IACf,IAAK,IACL,IAAK,KCjEHC,GAAyB,IAAIhM,IACnCgM,GAAkBC,OAAS,SAAUC,GACjC,MAAMvU,EAAQyF,KAAKY,IAAIkO,GAAwB,OAAlB9O,KAAK+O,OAAOD,GAAavU,CAC1D,EACA,IAGIyU,GACAC,GACAC,GALAC,GAAgC,CAAE,EAClCC,GAA6B,EAC7BC,IAAyB,EAmBvB,SAAUC,yDAA0DC,GAGtE3H,QAAQ4H,QAAO,EAAM,mDAAmDD,KAExE,QACJ,CAsBA,SAASE,GAAuCC,GACxCA,EAAmBnW,OAAS8V,KACxBL,IACA7U,EAAK6U,IACTK,GAAuBM,KAAKlV,IAAIiV,EAAmBnW,OAAQ8V,GAAsB,KACjFL,GAAmBhV,EAAOqV,KAE9B,MAAMO,EAAiBC,KAAKH,GACtBxL,EAASnJ,IACf,IAAK,IAAIkK,EAAI,EAAGA,EAAI2K,EAAerW,OAAQ0L,IACvCf,EAAY8K,GAAmB/J,GAAK2K,EAAelK,WAAWT,EAEtE,CAEgB,SAAA6K,GAAuCC,EAAYC,EAAqBC,EAAiBP,EAA4BnW,EAAgB2W,EAAiBC,GAGlKV,GAAsCC,GACtCtT,EAAO0T,sCAAsCC,EAAIC,EAAaC,EAASjB,GAAkBzV,EAAQ2W,EAASC,EAAS1O,YAEnH,MAAM2O,OAAEA,EAAMC,IAAEA,GAAQzB,GAAkBC,OAAOkB,GACjD,IAAKK,EACD,MAAM,IAAI3W,MAAM,mDACpB,OAAO4W,CACX,CAEM,SAAUC,GAA4BP,EAAYC,EAAqBC,EAAiBP,GAG1FD,GAAsCC,GACtCtT,EAAOkU,2BAA2BP,EAAIC,EAAaC,EAASjB,GAAkBU,EAAmBnW,QAEjG,MAAM6W,OAAEA,EAAMC,IAAEA,GAAQzB,GAAkBC,OAAOkB,GAEjD,IAAKK,EACD,MAAM,IAAI3W,MAAM,wCACpB,OAAO4W,CAEX,UAEgBE,KACZ,MAAMH,OAAEA,EAAMC,IAAEA,GAAQzB,GAAkBC,OAAO,GAEjD,IAAKuB,EACD,MAAM,IAAI3W,MAAM,4CACpB,OAAO4W,CACX,UAEgBG,KAEhB,UAEgBC,KAEZrU,EAAOsU,oCAAmC,EAC9C,CAEM,SAAUC,GAAqCC,GAEjDxU,EAAOuU,oCAAoCC,EAC/C,UAKgBC,GAA6BC,EAAkBhI,EAAO,IAClE,GAAqB,iBAAVgI,EACP,MAAM,IAAIrX,MAAM,oCAAoCsX,KAAKC,UAAUF,MAEvE,QAAwBxX,IAApBwX,EAAMG,UACN,MAAM,IAAIxX,MAAM,sDAAsDsX,KAAKC,UAAUF,MAEzF,GAAoB,iBAAThI,EACP,MAAM,IAAIrP,MAAM,mCAAmCsX,KAAKC,UAAUlI,MAGtElB,QAAQC,MAAM,oEAAqEkJ,KAAKC,UAAUF,GAAQC,KAAKC,UAAUlI,GAC7H,UAcgBoI,MAC4B,GAApChZ,GAAeiZ,kBACfjZ,GAAeiZ,gBAAkB,GAErC/U,EAAOsU,oCAAmC,EAC9C,CA8DM,SAAUU,GAA4BC,GAGxC,GAAyB/X,MAArB+X,EAAQC,YAA2BC,MAAMC,QAAQH,EAAQC,WACzD,MAAM,IAAI7X,MAAM,2CAA2C4X,EAAQC,aAEvE,MAAMG,EAAQJ,EAAQK,SAChBC,EAAUN,EAAQM,QACxB,IAAIC,EAAa,CAAE,EAEnB,GAAIH,EAAMI,WAAW,mBAAoB,CACrC,KAAIJ,KAAStC,IAGT,MAAM,IAAI1V,MAAM,qBAAqBgY,KAFrCG,EAAQzC,GAAyBsC,QAIrCG,EA/DR,SAAuCF,EAAkBC,GACrD,GAAID,EAASG,WAAW,iBAAkB,CACtC,IAAIC,EACJ,QAAsBxY,IAAlBqY,EAAQI,MAER,OADAD,EAAMH,EAAQK,KAAKC,GAAWA,EAAE1X,QACzBuX,EAEX,QAAkCxY,IAA9BqY,EAAQO,mBAAwE,IAArCP,EAAQO,kBAAkB3Y,OAErE,OADAuY,EAAMH,EAAQI,MAAMC,KAAKC,GAAWA,EAAE1X,QAC/BuX,EAIf,MAAMF,EAAa,CAAE,EA+BrB,OA9BA1E,OAAOiF,KAAKR,GAASnI,SAAQyI,IACzB,MAAMG,EAAOT,EAAQM,QACJ3Y,IAAb8Y,EAAKxR,IACLsM,OAAOe,eAAe2D,EAClBQ,EAAKvZ,KACL,CACI+H,IAAG,IACQ0P,GAA2B8B,EAAKxR,IAAImP,GAAIqC,EAAKxR,IAAIyR,WAAYD,EAAKxR,IAAIqP,QAASmC,EAAKxR,IAAIe,QAEnGd,IAAK,SAAUyR,GAC8I,OAAzJxC,GAAsCsC,EAAKvR,IAAIkP,GAAIqC,EAAKvR,IAAIwR,WAAYD,EAAKvR,IAAIoP,QAASmC,EAAKvR,IAAIc,OAAQyQ,EAAKvR,IAAItH,OAAQ6Y,EAAKvR,IAAIqP,QAASoC,IAAkB,UAIxJhZ,IAAb8Y,EAAKvR,IACZqM,OAAOe,eAAe2D,EAClBQ,EAAKvZ,KACL,CACI+H,IAAG,IACQwR,EAAK7X,MAEhBsG,IAAK,SAAUyR,GAC8I,OAAzJxC,GAAsCsC,EAAKvR,IAAIkP,GAAIqC,EAAKvR,IAAIwR,WAAYD,EAAKvR,IAAIoP,QAASmC,EAAKvR,IAAIc,OAAQyQ,EAAKvR,IAAItH,OAAQ6Y,EAAKvR,IAAIqP,QAASoC,IAAkB,KAK5KV,EAAMQ,EAAKvZ,MAAQuZ,EAAK7X,SAGzBqX,CACX,CAkBgBW,CAA6Bd,EAAOE,GAGhD,MAAMa,EAA+BlZ,MAArB+X,EAAQC,UAAyBD,EAAQC,UAAUU,KAAIS,GAAK1B,KAAKC,UAAUyB,EAAElY,SAAU,GAEjGmY,EAAmB,cAAcrB,EAAQsB,gDAAgDH,OAEzFI,EADU,IAAIC,SAAS,QAASH,EACvBI,CAAQlB,GAEvB,QAAetY,IAAXsZ,EACA,MAAO,CAAEG,KAAM,aAEnB,GAAI7F,OAAO0F,KAAYA,EACnB,MAAuB,oBAAsB,MAAVA,EACxB,CAAEG,YAAc,EAASC,QAAS,GAAGJ,IAAUrY,MAAO,MAC1D,CAAEwY,cAAuBtM,YAAa,GAAGmM,IAAUrY,MAAO,GAAGqY,KAGxE,GAAIvB,EAAQ4B,eAAmC3Z,MAAlBsZ,EAAOI,QAChC,MAAO,CAAED,KAAM,SAAUxY,MAAOqY,GAEpC,GAAI1F,OAAOgG,eAAeN,IAAWrB,MAAM4B,UAAW,CAElD,MAAMC,EAAYC,GAAyBT,GAE3C,MAAO,CACHG,KAAM,SACNC,QAAS,QACTM,UAAW,QACX7M,YAAa,SAASmM,EAAOrZ,UAC7BmY,SAAU0B,GAGlB,YAAqB9Z,IAAjBsZ,EAAOrY,YAA0CjB,IAAnBsZ,EAAOI,QAC9BJ,EAGPA,GAAUhB,EACH,CAAEmB,KAAM,SAAUO,UAAW,SAAU7M,YAAa,SAAUiL,SAAUD,GAE5E,CAAEsB,KAAM,SAAUO,UAAW,SAAU7M,YAAa,SAAUiL,SADnD2B,GAAyBT,GAE/C,UAgEgBW,GAAuB7B,EAAkB5I,EAAO,IAE5D,OAhEJ,SAA+B4I,EAAkB5I,GAC7C,KAAM4I,KAAYvC,IACd,MAAM,IAAI1V,MAAM,qCAAqCiY,KAEzD,MAAM8B,EAAWrE,GAAyBuC,GAEpC+B,EAAcvG,OAAOwG,0BAA0BF,GACjD1K,EAAK6K,wBACLzG,OAAOiF,KAAKsB,GAAajK,SAAQoK,SACFta,IAAvBma,EAAYG,GAAGhT,KACfiT,QAAQC,eAAeL,EAAaG,EAAE,IAIlD,MAAMG,EAAqB,GAyC3B,OAxCA7G,OAAOiF,KAAKsB,GAAajK,SAAQoK,IAC7B,IAAII,EACJ,MAAMC,EAAYR,EAAYG,GAI1BI,EAH0B,iBAAnBC,EAAU1Z,MAGP2S,OAAOC,OAAO,CAAEtU,KAAM+a,GAAKK,QACV3a,IAApB2a,EAAU1Z,MAOP,CACN1B,KAAM+a,EAENrZ,MAAO2S,OAAOC,OAAO,CAAE4F,YAAckB,EAAU1Z,MAAQkM,YAAa,GAAKwN,EAAU1Z,OAC/E0Z,SAEiB3a,IAAlB2a,EAAUrT,IAKP,CACN/H,KAAM+a,EACNhT,IAAK,CACD0S,UAAW,WACX7M,YAAa,OAAOmN,UACpBb,KAAM,aAIJ,CAAEla,KAAM+a,EAAGrZ,MAAO,CAAEwY,KAAM,SAAUxY,MAAO,YAAakM,YAAa,cAGnFsN,EAAYzR,KAAK0R,EAAQ,IAGtB,CAAEE,yBAA0BnD,KAAKC,UAAU+C,GACtD,CAQWI,CAAqB,kBAAkBzC,IAAY5I,EAC9D,CAEA,SAASuK,GAA0Be,GAC/B,MAAMrE,EAAK,kBAAkBX,KAE7B,OADAD,GAAyBY,GAAMqE,EACxBrE,CACX,CAEM,SAAUsE,GAA0B3C,GAClCA,KAAYvC,WACLA,GAAyBuC,EACxC,CC3RA,IAAI4C,IAAoB,WAERC,KACZ,GAAID,GACA,OAAOE,WAAWC,YAAYC,KAGtC,UAEgBC,GAAYxN,EAAkByN,EAAe7E,GACzD,GAAIuE,IAAqBnN,EAAO,CAE5B,MAAM0N,EAAUlK,GACV,CAAExD,MAAOA,GACT,CAAE2N,UAAW3N,GACbtO,EAAOkX,EAAK,GAAG6E,IAAQ7E,KAAQ6E,EACrCJ,WAAWC,YAAYM,QAAQlc,EAAMgc,GAE7C,CAUA,MAAMG,GAAmC,IAAIpS,aCvC7BqS,GAAwBC,EAAsBC,EAA+B1U,GACzF,GAAkB,IAAd0U,GAA8E,IAArCA,GAAuD,IAAdA,GAA0F,KAA9CA,EAC9H,OAGJ,IAAIC,EACAC,EACAC,EACAC,EAEJF,EAAiBG,GAA4BC,GAAwBP,IACrEI,EAAiBE,GAA4BE,GAAwBR,IACrEK,EAAiBC,GAA4BG,GAAwBT,IACrE,MAAMU,EAAqBC,GAAuBX,GAClDE,EAAgBU,GAA4BF,GACC,KAAzCT,IAEAA,EAAiBS,GAErB,MAAMG,EAAYD,GAA4BX,GACxCa,EAAeP,GAAwBP,GAEvCe,EAAaxV,EAAQyV,GAC3B,OAAQpN,GACGiN,EAAejN,EAAOmN,EAAYD,EAAcZ,EAAeC,EAAgBC,EAAgBC,EAE9G,CAEM,SAAUO,GAA6BX,GACzC,GAAyC,IAArCA,GAAuD,IAAdA,EACzC,OAEJ,MAAMY,EAAYI,GAAoBvV,IAAIuU,GAE1C,OADwIY,GAAA,mBAAAA,GAAAxI,IAAA,EAAA,qCAAA4H,MAAAiB,MACjIL,CACX,CAEA,SAASM,GAAqBpN,GAE1B,OAA8B,GADjBqN,GAAarN,GAEf,KCyGT,SAAwBA,GAE1B,OAD6B,GAAAsE,IAAA,EAAA,YACtBtQ,EAAWgM,EACtB,CD1GWsN,CAAatN,EACxB,CAEA,SAASuN,GAAqBvN,GAE1B,OAA8B,GADjBqN,GAAarN,GAEf,KCsGT,SAAsBA,GAExB,OAD6B,GAAAsE,IAAA,EAAA,YACtBrQ,EAAW+L,EACtB,CDvGWwN,CAAWxN,EACtB,CAEA,SAASyN,GAAqBzN,GAE1B,OAA8B,GADjBqN,GAAarN,GAEf,KCmGT,SAAuBA,GAEzB,OAD6B,GAAAsE,IAAA,EAAA,YACtBpQ,EAAY8L,EACvB,CDpGW0N,CAAY1N,EACvB,CAEA,SAAS2N,GAAsB3N,GAE3B,OAA8B,GADjBqN,GAAarN,GAEf,KCgGT,SAAuBA,GAEzB,OAD6B,GAAAsE,IAAA,EAAA,YACtB5P,EAAYsL,EACvB,CDjGW4N,CAAY5N,EACvB,CAEM,SAAU6N,GAAqB7N,GAEjC,OAA8B,GADjBqN,GAAarN,GAEf,KC6FT,SAAuBA,GAEzB,OAD6B,GAAAsE,IAAA,EAAA,YACtB3P,EAAYqL,EACvB,CD9FW8N,CAAY9N,EACvB,CAEA,SAAS+N,GAAsB/N,GAE3B,OAA8B,GADjBqN,GAAarN,GAEf,KC+FT,SAAuBA,GAGzB,OAF6B,GAAAsE,IAAA,EAAA,YAEtBlP,EAAY4K,EACvB,CDjGWgO,CAAYhO,EACvB,CAEA,SAASiO,GAAyBjO,GAE9B,OAA8B,GADjBqN,GAAarN,GAEf,KC6FT,SAA2BA,GAE7B,OAD6B,GAAAsE,IAAA,EAAA,YACtBpP,EAAe8K,EAC1B,CD9FWkO,CAAgBlO,EAC3B,CAEA,SAASmO,GAAsBnO,GAE3B,OAA8B,GADjBqN,GAAarN,GAEf,KCiGT,SAAuBA,GAEzB,OAD6B,GAAAsE,IAAA,EAAA,YACtBnP,EAAY6K,EACvB,CDlGWoO,CAAYpO,EACvB,CAEA,SAASqO,GAAuBrO,GAE5B,OAA8B,GADjBqN,GAAarN,GAEf,KC8FT,SAAuBA,GAEzB,OAD6B,GAAAsE,IAAA,EAAA,YACtBlP,EAAY4K,EACvB,CD/FWsO,CAAYtO,EACvB,CAEA,SAASuO,GAAuBvO,GAE5B,OAA8B,GADjBqN,GAAarN,GAEf,KAEJwO,GAAexO,EAC1B,CAEA,SAASyO,KACL,OAAO,IACX,CAEA,SAASC,GAAyB1O,GAE9B,OAA+B,IADlBqN,GAAarN,GAEf,KC8DT,SAAwBA,GACG,GAAAsE,IAAA,EAAA,YAC7B,MAAMqK,EAAWvZ,EAAY4K,GAE7B,OADa,IAAI4O,KAAKD,EAE1B,CDjEWE,CAAa7O,EACxB,CAGA,SAAS8O,GAAyB9O,EAA0B+O,EAAmBC,EAA+BC,EAAgCC,EAAgCC,GAE1K,GAA+B,IADlB9B,GAAarN,GAEtB,OAAO,KAGX,MAAMoP,EAAYC,GAAkBrP,GACpC,IAAInL,EAASya,GAAwBF,GAqBrC,OApBIva,UAEAA,EAAS,CAAC0a,EAAcC,EAAcC,aEjCfC,EAA8BH,EAAcC,EAAcC,EAAcT,EAA+BC,EAAgCC,EAAgCC,GAClMvO,GAAc+O,yBAUd,MAAMC,EAAKxf,GAAOyf,YAClB,IACI,MACMhQ,EAAOiQ,GADA,GAGPC,EAAOC,GAAQnQ,EAAM,GAoB3B,GAnBAoQ,GAAaF,EAAI,IACjBG,GAAcH,EAAML,GAGhBT,GAEAA,EADae,GAAQnQ,EAAM,GACN0P,GAErBL,GAEAA,EADac,GAAQnQ,EAAM,GACN2P,GAErBL,GAEAA,EADaa,GAAQnQ,EAAM,GACN4P,GAGzBU,GAAqBC,GAAeC,aAAcxQ,GAE9CmP,EAEA,OAAOA,EADKgB,GAAQnQ,EAAM,IAGxB,QACFe,GAAc0P,sBAAsBlgB,GAAOmgB,aAAaX,GAGpE,CFRmBY,CAAcpB,EAAWG,EAASC,EAASC,EAAST,EAAeC,EAAgBC,EAAgBC,GAE9Gta,EAAO4b,QAAU,KACR5b,EAAO6b,aACR7b,EAAO6b,YAAa,EACpBC,GAAuB9b,EAAQua,KAGvCva,EAAO6b,YAAa,EAIpBE,GAAoB/b,EAAQua,IAGzBva,CACX,OAEagc,GACT,WAAAha,CAAoBia,EAA8BC,GAA9Bha,KAAO+Z,QAAPA,EAA8B/Z,KAAiBga,kBAAjBA,YAItCC,GAAoBhR,EAA0B+O,EAAmBC,GAC7E,MAAMlF,EAAOuD,GAAarN,GAEgE,IAAA8J,GAAAxF,IAAA,EAAA,wCAG1F,MAAMwM,EAAUG,GAA4BjR,EAAK8J,EAAMkF,GACvD,IAAgB,IAAZ8B,EACA,OAAOA,EAGX,MAAMI,EAAaC,GAAkBnR,GAC/BoR,EAASC,GAAmBrC,GAMlC,OGtJY,SAA0BsC,EAAaJ,GACnDK,KAEAC,GAAgC,EAASN,GAAcI,EAEnDrN,OAAOwN,aAAaH,KACpBA,EAAOI,IAA6BR,EAE5C,CHyIIS,CAAyBP,EAAQF,GAK1BE,EAAON,OAClB,UAEgBc,GAA0B5R,EAA0B+O,EAAmBC,GAEnF,MAAMoC,EAASC,GAAmBrC,GAOlC,OAFA6C,GAAc7R,EAJI8R,GAAwBV,IAK1CnB,GAAajQ,EAAG,IACToR,EAAON,OAClB,UAEgBiB,GAAwBlS,EAA4BmP,EAA0CgD,GAE1G,MAAM5K,EAAM4I,GAAQnQ,EAAM,GACpBiK,EAAOuD,GAAajG,GAG1B,GAAyC,KAArC0C,EACA,OAAOkI,EAKXC,GADkBH,GAAwBE,IAI1C,MAAMlB,EAAUG,GAA4B7J,EAAK0C,EAAMkF,GAKvD,OAFkF,IAAA8B,GAAAxM,IAAA,EAAA,qCAAAwF,KAE3EgH,CACX,CAEA,SAASG,GAA6BjR,EAA0B8J,EAAqBkF,GACjF,GAA+B,IAA3BlF,EACA,OAAO,KAEX,GAAuC,KAAnCA,EACA,OAAOoI,QAAQC,OAAOC,GAAwBpS,IAElD,GAAuC,KAAnC8J,EAAqC,CACrC,MAAMiD,EAAesF,GAAqBrS,GAC1C,GAAuC,IAAnC+M,EACA,OAAOmF,QAAQI,UAGnBrC,GAAajQ,EAAK+M,GACbiC,IAEDA,EAAgB9B,GAAoBvV,IAAIoV,OAEwDzI,IAAA,EAAA,kCAAAyI,MAAAI,MAEpG,MAAMoF,EAAMvD,EAAchP,GAC1B,OAAOkS,QAAQI,QAAQC,GAE3B,OAAO,CACX,CAEA,SAASlB,GAAoBrC,GACzB,MAAM8B,QAAEA,EAAO0B,gBAAEA,GAAoB5R,GAAcqC,0BAwBnD,OAvBe,IAAI4N,GAAWC,GAAS,CAAChH,EAAM2I,EAAWC,KACrD,GAAuC,KAAnC5I,EAAqC,CACrC,MAAM1J,EAASgS,GAAwBM,GACvCF,EAAgBL,OAAO/R,QACpB,GAAuC,KAAnC0J,EAAqC,CAC5C,MAAMA,EAAOuD,GAAaqF,GAC1B,GAA+B,IAA3B5I,EACA0I,EAAgBF,aAAQjiB,OACrB,CACE2e,IAEDA,EAAgB9B,GAAoBvV,IAAImS,OAEgDxF,IAAA,EAAA,kCAAAwF,MAAAqD,MAE5F,MAAMwF,EAAW3D,EAAe0D,GAChCF,EAAgBF,QAAQK,SAGwBrO,IAAA,EAAA,mBAAAwF,KAExDmI,GAAkCQ,EAAU,GAGpD,CA4CM,SAAUG,GAAsB5S,GAElC,GAA8B,GADjBqN,GAAarN,GAEtB,OAAO,KAQJ,CAEH,MAAMnD,EAAOgW,GAAgB7S,GAC7B,IAEI,OADcpD,GAAmBC,GAE3B,QACNA,EAAKvE,WAGjB,CAEM,SAAU8Z,GAAyBpS,GACrC,MAAM8J,EAAOuD,GAAarN,GAC1B,GAA8B,GAA1B8J,EACA,OAAO,KAEX,GAAqC,IAAjCA,EAIA,OADegJ,GADG3B,GAAkBnR,IAKxC,MAAMoP,EAAYC,GAAkBrP,GACpC,IAAInL,EAASya,GAAwBF,GACrC,GAAIva,QAAyC,CAEzC,MAAM6J,EAAUkU,GAAqB5S,GACrCnL,EAAS,IAAIke,aAAarU,GAK1BkS,GAAoB/b,EAAQua,GAGhC,OAAOva,CACX,CAEA,SAASme,GAA0BhT,GAE/B,GAA8B,GADjBqN,GAAarN,GAEtB,OAAO,KAEX,MAAMyS,EAAYtB,GAAkBnR,GAC9BsR,EAASwB,GAAmCL,GAElD,YADyFpiB,IAAAihB,GAAAhN,IAAA,EAAA,sBAAAmO,mBAClFnB,CACX,CAEA,SAAS2B,GAA0BjT,GAC/B,MAAMkM,EAAiBmB,GAAarN,GACpC,GAAwC,GAApCkM,EACA,OAAO,KAEX,GAA4C,IAAxCA,EAGA,OADe4G,GADG3B,GAAkBnR,IAKxC,GAAyC,IAArCkM,EAEA,OAAOgH,GAA0BlT,EADZqS,GAAqBrS,IAI9C,GAA0C,IAAtCkM,EAAwC,CACxC,MAAMkD,EAAYC,GAAkBrP,GACpC,GAAIoP,IAAcze,EACd,OAAO,KAIX,IAAIkE,EAASya,GAAwBF,GAWrC,OARKva,IACDA,EAAS,IAAIse,cAIbvC,GAAoB/b,EAAQua,IAGzBva,EAIX,MAAMiY,EAAYI,GAAoBvV,IAAIuU,GAE1C,UAD8F5H,IAAA,EAAA,8BAAA4H,MAAAiB,MACvFL,EAAU9M,EACrB,CAEA,SAASoT,GAAsBpT,EAA0B+M,GAErD,OADqEA,GAAAzI,IAAA,EAAA,yCAC9D4O,GAA0BlT,EAAK+M,EAC1C,CAEA,SAASmG,GAA2BlT,EAA0B+M,GAE1D,GAA8B,GADjBM,GAAarN,GAEtB,OAAO,MAGwE,GAD/DqT,GAAmBtG,IAC4CzI,IAAA,EAAA,gBAAAyI,mBACnF,MAAMuG,EAAa9E,GAAexO,GAC5B1P,EAASijB,GAAevT,GAC9B,IAAInL,EAAyC,KAC7C,GAAwC,IAApCkY,EAAsC,CACtClY,EAAS,IAAIyT,MAAMhY,GACnB,IAAK,IAAIkH,EAAQ,EAAGA,EAAQlH,EAAQkH,IAAS,CACzC,MAAMgc,EAAcxD,GAAasD,EAAY9b,GAC7C3C,EAAO2C,GAASob,GAAqBY,GAIrCrgB,EAAOoF,0BAA+B+a,QAEvC,GAAwC,IAApCvG,EAAsC,CAC7ClY,EAAS,IAAIyT,MAAMhY,GACnB,IAAK,IAAIkH,EAAQ,EAAGA,EAAQlH,EAAQkH,IAAS,CACzC,MAAMgc,EAAcxD,GAAasD,EAAY9b,GAC7C3C,EAAO2C,GAASyb,GAAyBO,GAIzCrgB,EAAOoF,0BAA+B+a,QAEvC,GAA0C,IAAtCvG,EAAwC,CAC/ClY,EAAS,IAAIyT,MAAMhY,GACnB,IAAK,IAAIkH,EAAQ,EAAGA,EAAQlH,EAAQkH,IAAS,CACzC,MAAMgc,EAAcxD,GAAasD,EAAY9b,GAC7C3C,EAAO2C,GAASwb,GAAyBQ,SAE1C,GAAsC,GAAlCzG,EAAoC,CAC3C,MAAM0G,EAAe5d,GAAayd,EAAY,GAE9Cze,EADmB/C,IAAkBiJ,SAAS0Y,EAAcA,EAAenjB,GACvDojB,aACjB,GAAuC,GAAnC3G,EAAqC,CAC5C,MAAM0G,EAAe5d,GAAayd,EAAY,GAE9Cze,EADmBU,IAAmBwF,SAAS0Y,EAAcA,EAAenjB,GACxDojB,YACjB,IAAwC,IAApC3G,EAKP,MAAM,IAAIvc,MAAM,2BAA2Buc,MAAiBI,MALf,CAC7C,MAAMsG,EAAe5d,GAAayd,EAAY,GAE9Cze,EADmBe,KAAmBmF,SAAS0Y,EAAcA,EAAenjB,GACxDojB,SAKxB,OADAxiB,EAAUoiB,GACHze,CACX,CAEA,SAAS8e,GAAqB3T,EAA0B+M,GACiBA,GAAAzI,IAAA,EAAA,yCAErE,MAAMgP,EAAa9E,GAAexO,GAC5B1P,EAASijB,GAAevT,GAC9B,IAAInL,EAAsB,KAC1B,GAAsC,GAAlCkY,EACAlY,EAAS,IAAI+e,KAAUN,EAAYhjB,UAChC,GAAuC,GAAnCyc,EACPlY,EAAS,IAAI+e,KAAUN,EAAYhjB,SAChC,IAAwC,IAApCyc,EAGP,MAAM,IAAIvc,MAAM,2BAA2Buc,MAAiBI,MAF5DtY,EAAS,IAAI+e,KAAUN,EAAYhjB,KAIvC,OAAOuE,CACX,CAEA,SAASgf,GAA8B7T,EAA0B+M,GACQA,GAAAzI,IAAA,EAAA,yCAErE,MAAMgP,EAAa9E,GAAexO,GAC5B1P,EAASijB,GAAevT,GAC9B,IAAInL,EAA8B,KAClC,GAAsC,GAAlCkY,EACAlY,EAAS,IAAIif,aAAkBR,EAAYhjB,UACxC,GAAuC,GAAnCyc,EACPlY,EAAS,IAAIif,aAAkBR,EAAYhjB,SACxC,IAAwC,IAApCyc,EAGP,MAAM,IAAIvc,MAAM,2BAA2Buc,MAAiBI,MAF5DtY,EAAS,IAAIif,aAAkBR,EAAYhjB,KAU/C,OAFAsgB,GAAoB/b,EAJFwa,GAAkBrP,IAM7BnL,CACX,CI1jBO,MASMkf,GAPuC,CAChDC,Ud8CuD,Ec7CvDC,WAAY,EACZC,YAAa,EACbC,aAN+B,kBAO/BC,WAAY,qBFJVhE,GAAiC,CAAS,EAyQ1C,SAAUiE,GAAuBC,EAAwBC,EAAoB1U,EAA4B7O,GAIvG,GAHJugB,KAEIpe,EAAOqhB,0BAA0BD,EAAQ1U,GACrC4U,GAAkB5U,GAElB,MAAMuS,GADMpC,GAAQnQ,EAAM,GAUtC,CAEgB,SAAAsQ,GAAsBoE,EAAoB1U,GAoBtD,GAnBA0R,KAEIpe,EAAOqhB,0BAA0BD,EAAQ1U,GAiBzC4U,GAAkB5U,GAElB,MAAMuS,GADMpC,GAAQnQ,EAAM,GAGlC,CAgCA,SAAS6U,GAAYC,GAEjB,MAAMvN,EAAMjU,EAAOyhB,+BAA+B3lB,GAAe4lB,8BAA+BF,MAChG,IAAKvN,EACD,KAAM,qBAAuBnY,GAAe6lB,0BAA4B,IAAM7lB,GAAe8lB,kCAAoC,IAAMJ,EAC3I,OAAOvN,CACX,CD5VO,MAAM8F,GAAsB,IAAIvT,IAC1Bqb,GAAsB,IAAIrb,IAC1Bsb,GAA2BxX,OAAOyX,IAAI,0BACtCC,GAA2B1X,OAAOyX,IAAI,0BACtCE,GAA8B3X,OAAOyX,IAAI,6BAGzCjI,GAA6B,GAsB7BoI,GAAsB,GAStBC,GAAiC,GAcxC,SAAUxF,GAAmB9e,GAE/B,MAAM2L,EAAQsQ,GAA6Bjc,EACrC6O,EAAOzP,GAAOmlB,WAAW5Y,GAG/B,OAFAhL,EAAakO,EAAMlD,GAEZkD,CACX,CAEgB,SAAAmQ,GAASnQ,EAA4BrI,GAEjD,OAD+B,GAAA8M,IAAA,EAAA,aACnBzE,EAAQrI,EAAQyV,EAChC,CAEM,SAAUwH,GAAmB5U,GAG/B,OAF+B,GAAAyE,IAAA,EAAA,iBACT+I,GAAkBxN,EAE5C,CAkCgB,SAAA2V,GAAS1f,EAAgC0B,GAErD,OAD0C,GAAA8M,IAAA,EAAA,mBAC9BxO,EAAa0B,EAAQ6d,GAAuBC,EAC5D,CAEM,SAAUG,GAAoBxJ,GAEhC,OAD6B,GAAA3H,IAAA,EAAA,YACjBrQ,EAAWgY,EAAG,EAC9B,CAEM,SAAUW,GAAwBX,GAEpC,OAD6B,GAAA3H,IAAA,EAAA,YACjBrQ,EAAWgY,EAAG,GAC9B,CAEM,SAAUO,GAAyBP,GAErC,OAD6B,GAAA3H,IAAA,EAAA,YACjBrQ,EAAWgY,EAAG,GAC9B,CAEM,SAAUQ,GAAyBR,GAErC,OAD6B,GAAA3H,IAAA,EAAA,YACjBrQ,EAAWgY,EAAG,GAC9B,CAEM,SAAUS,GAAyBT,GAErC,OAD6B,GAAA3H,IAAA,EAAA,YACjBrQ,EAAWgY,EAAG,GAC9B,CAEM,SAAUyJ,GAA8B5f,GAE1C,OAD0C,GAAAwO,IAAA,EAAA,mBAC9B3P,EAAYmB,EAAS,EACrC,CAEM,SAAU6f,GAAuB7f,GAEnC,OAD0C,GAAAwO,IAAA,EAAA,mBAC9B3P,EAAYmB,EAAS,EACrC,CA6BM,SAAUuX,GAAcrN,GAG1B,OAF6B,GAAAsE,IAAA,EAAA,YAChBrQ,EAAW+L,EAAG,GAE/B,CAEM,SAAUqS,GAAsBrS,GAGlC,OAF6B,GAAAsE,IAAA,EAAA,YAChBrQ,EAAW+L,EAAG,GAE/B,CAEgB,SAAAiQ,GAAcjQ,EAA0B8J,GACvB,GAAAxF,IAAA,EAAA,YAC7BhS,EAAW0N,EAAG,GAAoC8J,EACtD,CAgCM,SAAU0E,GAAgBxO,GAE5B,OAD6B,GAAAsE,IAAA,EAAA,YACtBnQ,EAAY6L,EACvB,CA8BgB,SAAA4V,GAAc5V,EAA0B1O,GAEpD,GAD6B,GAAAgT,IAAA,EAAA,YACwE,kBAAAhT,EAAA,MAAA,IAAAd,MAAA,0CAAAc,aAAA,MACrGc,EAAW4N,EAAK1O,EACpB,CAsBgB,SAAAukB,GAAgB7V,EAA0B1O,GACzB,GAAAgT,IAAA,EAAA,YAC7B7R,EAAYuN,EAAU1O,EAC1B,CAcgB,SAAAwkB,GAAc9V,EAA0B1O,GACvB,GAAAgT,IAAA,EAAA,YAG7B3Q,EAAYqM,EADK1O,EAAMykB,UAE3B,CAEgB,SAAAC,GAAahW,EAA0B1O,GACtB,GAAAgT,IAAA,EAAA,YAC7B3Q,EAAYqM,EAAK1O,EACrB,CAOM,SAAU6f,GAAmBnR,GAE/B,OAD6B,GAAAsE,IAAA,EAAA,YACjB3P,EAAYqL,EAAG,EAC/B,CAQgB,SAAA6R,GAAe7R,EAA0BiW,GACxB,GAAA3R,IAAA,EAAA,YAC7BvR,EAAYiN,EAAG,EAA6CiW,EAEhE,CAEM,SAAU5G,GAAmBrP,GAE/B,OAD6B,GAAAsE,IAAA,EAAA,YACjB3P,EAAYqL,EAAG,EAC/B,CAEgB,SAAAkQ,GAAelQ,EAA0BkW,GACxB,GAAA5R,IAAA,EAAA,YAC7BvR,EAAYiN,EAAG,EAA6CkW,EAEhE,CAEM,SAAUrD,GAAiB7S,GAE7B,OAD6B,GAAAsE,IAAA,EAAA,YRpT3B,SAA6DzM,GAE/D,IAAIhD,EAEJ,IAAKgD,EACD,MAAM,IAAIrH,MAAM,iDASpB,OAPIgG,GAA8BlG,OAAS,GACvCuE,EAAS2B,GAA8B2f,MACvCthB,EAAO4E,aAAa5B,IAEpBhD,EAAS,IAAIyE,GAAoBzB,GAG9BhD,CACX,CQsSWuhB,CAA6CpW,EACxD,CAEM,SAAUuT,GAAgBvT,GAE5B,OAD6B,GAAAsE,IAAA,EAAA,YACjB3P,EAAYqL,EAAG,EAC/B,CAEgB,SAAAqW,GAAgBrW,EAA0BhP,GACzB,GAAAsT,IAAA,EAAA,YAC7BvR,EAAYiN,EAAG,EAAsChP,EACzD,OAYamiB,cACT,OAAA1C,GACIE,GAAuB5Z,KAAMpG,GAGjC,cAAI+f,GACA,OAAa3Z,KAAMuf,MAA+B3lB,EAGtD,QAAA6H,GACI,MAAO,uBAA6BzB,KAAMuf,QAI5C,MAAOvD,qBAAqBviB,MAG9B,WAAAqG,CAAa6H,GACT6X,MAAM7X,GACN3H,KAAKyf,WAAavS,OAAOwS,yBAAyB1f,KAAM,SACxDkN,OAAOe,eAAejO,KAAM,QAAS,CACjCY,IAAKZ,KAAK2f,iBAIlB,aAAAC,GACI,GAAI5f,KAAKyf,WAAY,CACjB,QAA8BnmB,IAA1B0G,KAAKyf,WAAWllB,MAChB,OAAOyF,KAAKyf,WAAWllB,MAC3B,QAA4BjB,IAAxB0G,KAAKyf,WAAW7e,IAChB,OAAOZ,KAAKyf,WAAW7e,IAAIif,KAAK7f,MAExC,OAAOwf,MAAMlW,MAGjB,cAAAqW,GACI,GAAI3f,KAAK8f,cACL,OAAO9f,KAAK8f,cAEhB,IAAKjW,GAAc0P,qBAEf,OADAvZ,KAAK8f,cAAgB,qCAAuC9f,KAAK4f,gBAC1D5f,KAAK8f,cAEwC,CACpD,MAAMzH,EAAkBrY,KAAMuf,IAC9B,GAAIlH,IAAcze,EAAc,CAC5B,MAAMkmB,EChNhB,SAAmCC,GACrClW,GAAc+O,yBACd,MAAMC,EAAKxf,GAAOyf,YAClB,IACI,MACMhQ,EAAOiQ,GADA,GAGPC,EAAOC,GAAQnQ,EAAM,GAM3B,OALAoQ,GAAaF,EAAI,IACjBG,GAAcH,EAAM+G,GAEpB3G,GAAqBC,GAAe2G,qBAAsBlX,GAEnD+S,GADK5C,GAAQnQ,EAAM,IAEpB,QACFe,GAAc0P,sBAAsBlgB,GAAOmgB,aAAaX,GAGpE,CD8LsCoH,CAAwB5H,GAC9C,GAAIyH,EAEA,OADA9f,KAAK8f,cAAgBA,EAAgB,KAAO9f,KAAK4f,gBAC1C5f,KAAK8f,eAIxB,OAAO9f,KAAK4f,gBAGhB,OAAAlG,GACIE,GAAuB5Z,KAAMpG,GAGjC,cAAI+f,GACA,OAAa3Z,KAAMuf,MAA+B3lB,GAWpD,SAAU0iB,GAAoBtG,GAChC,OAAmB,GAAZA,EAAqC,EAC1B,GAAZA,EAAsC,EACtB,GAAZA,GACgB,IAAZA,EADkC,EAElB,IAAZA,GACgB,IAAZA,GACgB,IAAZA,EAF+BE,IAGzB,CACpC,CAQA,MAAegK,GACX,WAAApgB,CAA8BqgB,EAA0BC,EAAwBC,GAAlDrgB,KAAQmgB,SAARA,EAA0BngB,KAAOogB,QAAPA,EAAwBpgB,KAASqgB,UAATA,EAMhF,mBAAAC,GAGI,MAAM7b,KAAOzE,KAAKqgB,UAAmC,IAAIzc,WAAW7I,IAAkB4G,OAAa3B,KAAKmgB,SAAUngB,KAAKogB,YACjHpgB,KAAKqgB,UAAoC,IAAIE,WAAW/hB,IAAmBmD,OAAa3B,KAAKmgB,SAAUngB,KAAKogB,YACxGpgB,KAAKqgB,UAAqC,IAAIG,aAAa3hB,KAAmB8C,OAAa3B,KAAKmgB,SAAUngB,KAAKogB,SAC3G,KACd,IAAK3b,EAAM,MAAM,IAAIhL,MAAM,2BAC3B,OAAOgL,EAGX,GAAA5D,CAAKkB,EAAoB0e,GACrB,GAAwDzgB,KAAA2Z,WAAA,MAAA,IAAAlgB,MAAA,0CACxD,MAAMinB,EAAa1gB,KAAKsgB,sBACxB,IAA8Hve,IAAA2e,GAAA3e,EAAAjC,cAAA4gB,EAAA5gB,YAAA,MAAA,IAAArG,MAAA,2BAAAinB,EAAA5gB,eAC9H4gB,EAAW7f,IAAIkB,EAAQ0e,GAI3B,MAAAE,CAAQC,EAAoBC,GACxB,GAAwD7gB,KAAA2Z,WAAA,MAAA,IAAAlgB,MAAA,0CACxD,MAAMqnB,EAAa9gB,KAAKsgB,sBACxB,IAA8HM,IAAAE,GAAAF,EAAA9gB,cAAAghB,EAAAhhB,YAAA,MAAA,IAAArG,MAAA,2BAAAqnB,EAAAhhB,eAC9H,MAAMihB,EAAgBD,EAAW9c,SAAS6c,GAE1CD,EAAO/f,IAAIkgB,GAGf,KAAApE,CAAOxV,EAAgBC,GACnB,GAAwDpH,KAAA2Z,WAAA,MAAA,IAAAlgB,MAAA,0CAGxD,OAFmBuG,KAAKsgB,sBAEN3D,MAAMxV,EAAOC,GAGnC,UAAI7N,GACA,GAAwDyG,KAAA2Z,WAAA,MAAA,IAAAlgB,MAAA,0CACxD,OAAOuG,KAAKogB,QAGhB,cAAIY,GACA,GAAwDhhB,KAAA2Z,WAAA,MAAA,IAAAlgB,MAAA,0CACxD,OAAqB,GAAduG,KAAKqgB,UAAmCrgB,KAAKogB,QACR,GAAtCpgB,KAAKqgB,UAAoCrgB,KAAKogB,SAAW,EACd,GAAvCpgB,KAAKqgB,UAAqCrgB,KAAKogB,SAAW,EACtD,GAyBhB,MAAOvD,aAAaqD,GAEtB,WAAApgB,CAAoBmhB,EAAkB1nB,EAAgB2nB,GAClD1B,MAAMyB,EAAS1nB,EAAQ2nB,GAFnBlhB,KAAWmhB,aAAG,EAItB,OAAAzH,GACI1Z,KAAKmhB,aAAc,EAEvB,cAAIxH,GACA,OAAO3Z,KAAKmhB,aAId,MAAOpE,qBAAqBmD,GAC9B,WAAApgB,CAAoBmhB,EAAkB1nB,EAAgB2nB,GAClD1B,MAAMyB,EAAS1nB,EAAQ2nB,GAG3B,OAAAxH,GACIE,GAAuB5Z,KAAMpG,GAGjC,cAAI+f,GACA,OAAa3Z,KAAMuf,MAA+B3lB,GIliBnD,MAAMwnB,GAAkD,CAAC,MAuRhE,SAASC,GAASC,GACd,MAAMC,EAAaD,EAAQC,WACrBC,EAAiBF,EAAQE,eACzBvJ,EAAgBqJ,EAAQrJ,cACxBwJ,EAAcH,EAAQG,YACtBC,EAAcJ,EAAQI,YACtBC,EAAKL,EAAQK,GACbC,EAAMN,EAAQM,IAEpB,OAD8BN,EAAW,KAClC,SAAmBxY,GAEtB,MAAM+Y,EAAOtN,KACb,IACgGuN,GAAAR,EAAA3H,WAC5F,MAAMoI,EAAU,IAAIxQ,MAAMgQ,GAC1B,IAAK,IAAI9gB,EAAQ,EAAGA,EAAQ8gB,EAAY9gB,IAAS,CAC7C,MACMuhB,GAASC,EADGT,EAAe/gB,IACRqI,GACzBiZ,EAAQthB,GAASuhB,EAIrB,MAAME,EAAYP,KAAMI,GAMxB,GAJI9J,GACAA,EAAcnP,EAAMoZ,GAGpBR,EACA,IAAK,IAAIjhB,EAAQ,EAAGA,EAAQ8gB,EAAY9gB,IAAS,CAC7C,MAAM0hB,EAAUV,EAAYhhB,GACxB0hB,GACAA,EAAQJ,EAAQthB,KAI9B,MAAO2hB,GACLC,GAA6BvZ,EAAMsZ,GAC7B,QAINzN,GAAWkN,EAAoC,uBAAAD,GAEtD,CACL,CA6BgB,SAAAU,GAA8BC,EAAqBC,GAC/DC,GAAgB5hB,IAAI0hB,EAAaC,GAC6B3Y,GAAAnC,mBAAAF,GAAA,yBAAA+a,KAClE,UA0CgBG,GAAcC,EAAW9pB,EAAc0B,GACnD,IAAmC,EAAA,MAAA,IAAAd,MAAA,iCACnCkpB,EAAK9pB,GAAQ0B,CACjB,CAEgB,SAAAqoB,GAAcD,EAAW9pB,GACrC,IAAmC,EAAA,MAAA,IAAAY,MAAA,iCACnC,OAAOkpB,EAAK9pB,EAChB,CAEgB,SAAAgqB,GAAcF,EAAW9pB,GACrC,IAAmC,EAAA,MAAA,IAAAY,MAAA,iCACnC,OAAOZ,KAAQ8pB,CACnB,CAEgB,SAAAG,GAAqBH,EAAW9pB,GAC5C,IAAmC,EAAA,MAAA,IAAAY,MAAA,iCACnC,cAAckpB,EAAK9pB,EACvB,UAEgBkqB,KACZ,OAAOvO,UACX,CAEO,MAAMwO,GAAqD,IAAIpgB,IACzD6f,GAA6C,IAAI7f,IAE9C,SAAAqgB,GAAgBV,EAAqBW,GACjD1I,KAC0F+H,GAAA,iBAAAA,GAAAhV,IAAA,EAAA,8BACH2V,GAAA,iBAAAA,GAAA3V,IAAA,EAAA,6BACvF,IAAIwM,EAAUiJ,GAAwBpiB,IAAI2hB,GAC1C,MAAMY,GAAcpJ,EAOpB,OANIoJ,IACmFtZ,GAAAnC,mBAAAF,GAAA,yBAAA+a,YAAAW,MACnFnJ,EAAUqJ,iCAAiCF,GAC3CF,GAAwBniB,IAAI0hB,EAAaxI,IAGtCsJ,IAA2BC,UAC9B,MAAM1X,QAAemO,EAKrB,OAJIoJ,IACAV,GAAgB5hB,IAAI0hB,EAAa3W,GACiD/B,GAAAnC,mBAAAF,GAAA,wBAAA+a,YAAAW,OAE/EtX,CAAM,GAErB,UAqBgB4O,KACZ3Q,GAAc+O,yBAIkF1gB,GAAA,6BAAAqV,IAAA,EAAA,mCAEpG,CA6BM,SAAUgW,GAAsC5B,GAI9CA,GAER,CC5gBO,MAAM6B,GAA8C,mBAAvBhP,WAAWiP,QAEzC,SAAUC,GAAmCnJ,GAC/C,OAAIiJ,GACO,IAAIC,QAAQlJ,GAOrB,SAA+CA,GACjD,MAAY,CACRoJ,MAAO,IACIpJ,EAEXb,QAAS,KACLa,EAAS,IAAK,EAG1B,CAbeqJ,CAAkBrJ,EAEjC,CCKgB,SAAAsJ,GAA4BrG,EAAoBsG,EAAsBC,EAAuBC,EAAwBC,EAAoBC,EAAuBnlB,GAC5K,MAAMolB,EAAqB,IAAIL,MAAiBC,KAAiBC,KAAkBC,IAC7EpC,EAAOtN,KAC6G1K,GAAAnC,mBAAAF,GAAA,sBAAAuc,KAAAC,KAAAC,UAAAH,cAC1H,MAAMM,EAAUxF,GAAsB7f,GACqC,IAAAqlB,GAAA7W,IAAA,EAAA,qBAAA6W,eAG3E,MAAM7C,EAAa5C,GAA6B5f,GAE1CyiB,EAAyC,IAAIjQ,MAAMgQ,GACzD,IAAK,IAAI9gB,EAAQ,EAAGA,EAAQ8gB,EAAY9gB,IAAS,CAC7C,MAAMyU,EAAMuJ,GAAQ1f,EAAW0B,EAAQ,GAEjC4jB,EAAgBC,GAAuBpP,EADtBwJ,GAAmBxJ,GACwBzU,EAAQ,GACD,GAAA8M,IAAA,EAAA,8CACzEiU,EAAe/gB,GAAS4jB,EAG5B,MAAME,EAAU9F,GAAQ1f,EAAW,GACnC,IAAIylB,EAAqB9F,GAAmB6F,GAS5C,MAAME,EAA6B,IAAlBD,EACXE,EAAuC,IAAlBF,EACvBC,IACAD,MAEJ,MAAMvM,EAAgBhD,GAAuBsP,EAASC,EAAoB,GAEpElD,EAA0B,CAC5B9D,SACA2G,qBACA5C,aACAC,iBACAvJ,gBACAwM,WACAC,qBACA/K,YAAY,GAEhB,IAAIgL,EAIIA,EAFJF,EACkB,GAAdlD,GAAmBtJ,EAsH/B,SAAsBqJ,GAClB,MAAM9D,EAAS8D,EAAQ9D,OACjBoH,EAAatD,EAAQE,eAAe,GACpCvJ,EAAgBqJ,EAAQrJ,cACxB2J,EAAMN,EAAQ6C,mBAEpB,OAD8B7C,EAAW,KAClC,SAAsBtI,GACzB,MAAM6I,EAAOtN,KACb1K,GAAc+O,yBAEd,MAAMC,EAAKxf,GAAOyf,YAClB,IACI,MACMhQ,EAAOiQ,GADA,GAEb6L,EAAW9b,EAAMkQ,GAGjB,IAAIe,EAAU9B,EAAcnP,GAQ5B,OALAwU,GAAsBplB,GAAe2sB,iBAAkBrH,EAAQ1U,GAG/DiR,EAAUiB,GAAuBlS,OAAMxP,EAAWygB,GAE3CA,EACD,QACFlQ,GAAc0P,sBAAsBlgB,GAAOmgB,aAAaX,GAE5DlE,GAAWkN,EAAoC,uBAAAD,GAEtD,CACL,CArJuBkD,CAAYxD,GACF,GAAdC,GAAmBtJ,EAqLtC,SAAsBqJ,GAClB,MAAM9D,EAAS8D,EAAQ9D,OACjBoH,EAAatD,EAAQE,eAAe,GACpCuD,EAAazD,EAAQE,eAAe,GACpCvJ,EAAgBqJ,EAAQrJ,cACxB2J,EAAMN,EAAQ6C,mBAEpB,OAD8B7C,EAAW,KAClC,SAAsBtI,EAAWgM,GACpC,MAAMnD,EAAOtN,KACb1K,GAAc+O,yBAEd,MAAMC,EAAKxf,GAAOyf,YAClB,IACI,MACMhQ,EAAOiQ,GADA,GAEb6L,EAAW9b,EAAMkQ,GACjB+L,EAAWjc,EAAMkc,GAGjB,IAAIjL,EAAU9B,EAAcnP,GAQ5B,OALAwU,GAAsBplB,GAAe2sB,iBAAkBrH,EAAQ1U,GAG/DiR,EAAUiB,GAAuBlS,OAAMxP,EAAWygB,GAE3CA,EACD,QACFlQ,GAAc0P,sBAAsBlgB,GAAOmgB,aAAaX,GAE5DlE,GAAWkN,EAAoC,uBAAAD,GAEtD,CACL,CAtNuBqD,CAAY3D,GAEZD,GAAQC,GAEhBoD,EACIrD,GAAQC,GAED,GAAdC,GAAoBtJ,EAEC,GAAdsJ,GAAoBtJ,EAEN,GAAdsJ,GAAmBtJ,EA2EtC,SAAqBqJ,GACjB,MAAM9D,EAAS8D,EAAQ9D,OACjBoH,EAAatD,EAAQE,eAAe,GACpCvJ,EAAgBqJ,EAAQrJ,cACxB2J,EAAMN,EAAQ6C,mBAEpB,OAD8B7C,EAAW,KAClC,SAAsBtI,GACzB,MAAM6I,EAAOtN,KACb1K,GAAc+O,yBAEd,MAAMC,EAAKxf,GAAOyf,YAClB,IACI,MACMhQ,EAAOiQ,GADA,GAQb,OANA6L,EAAW9b,EAAMkQ,GAGjBI,GAAqBoE,EAAQ1U,GAEXmP,EAAcnP,GAE1B,QACFe,GAAc0P,sBAAsBlgB,GAAOmgB,aAAaX,GAE5DlE,GAAWkN,EAAoC,uBAAAD,GAEtD,CACL,CArGuBsD,CAAW5D,GACD,GAAdC,GAAmBtJ,EAwItC,SAAqBqJ,GACjB,MAAM9D,EAAS8D,EAAQ9D,OACjBoH,EAAatD,EAAQE,eAAe,GACpCuD,EAAazD,EAAQE,eAAe,GACpCvJ,EAAgBqJ,EAAQrJ,cACxB2J,EAAMN,EAAQ6C,mBAEpB,OAD8B7C,EAAW,KAClC,SAAsBtI,EAAWgM,GACpC,MAAMnD,EAAOtN,KACb1K,GAAc+O,yBAEd,MAAMC,EAAKxf,GAAOyf,YAClB,IACI,MACMhQ,EAAOiQ,GADA,GASb,OAPA6L,EAAW9b,EAAMkQ,GACjB+L,EAAWjc,EAAMkc,GAGjB5L,GAAqBoE,EAAQ1U,GAEXmP,EAAcnP,GAE1B,QACFe,GAAc0P,sBAAsBlgB,GAAOmgB,aAAaX,GAE5DlE,GAAWkN,EAAoC,uBAAAD,GAEtD,CACL,CApKuBuD,CAAW7D,GAEXD,GAAQC,GA6C/B,SAAqBA,GACjB,MAAM9D,EAAS8D,EAAQ9D,OACjBoH,EAAatD,EAAQE,eAAe,GACpCI,EAAMN,EAAQ6C,mBAEpB,OAD8B7C,EAAW,KAClC,SAAsBtI,GACzB,MAAM6I,EAAOtN,KACb1K,GAAc+O,yBAEd,MAAMC,EAAKxf,GAAOyf,YAClB,IACI,MACMhQ,EAAOiQ,GADA,GAEb6L,EAAW9b,EAAMkQ,GAGjBI,GAAqBoE,EAAQ1U,GACvB,QACFe,GAAc0P,sBAAsBlgB,GAAOmgB,aAAaX,GAE5DlE,GAAWkN,EAAoC,uBAAAD,GAEtD,CACL,CA1EuBwD,CAAW9D,GA6BlC,SAAqBA,GACjB,MAAM9D,EAAS8D,EAAQ9D,OACjBoE,EAAMN,EAAQ6C,mBAEpB,OAD8B7C,EAAW,KAClC,WACH,MAAMO,EAAOtN,KACb1K,GAAc+O,yBAEd,MAAMC,EAAKxf,GAAOyf,YAClB,IACI,MACMhQ,EAAOiQ,GADA,GAGbK,GAAqBoE,EAAQ1U,GACvB,QACFe,GAAc0P,sBAAsBlgB,GAAOmgB,aAAaX,GAE5DlE,GAAWkN,EAAoC,uBAAAD,GAEtD,CACL,CAnDuByD,CAAW/D,GAyBxBqD,EAAUzG,IAA4BoD,EAwPhD,SAAwCgE,EAAkBC,EAAmBC,EAAmBC,EAAoBC,EAAwB/D,GACxI,MAAMjY,EAAQ,GAAG6b,KAAaC,IAAY7c,QAAQ,MAAO,KAAKY,MAAM,KACpE,IAAIoc,EACAC,EAAgBC,GAAkBjlB,IAAI0kB,GACrCM,IACDA,EAAgB,CAAE,EAClBC,GAAkBhlB,IAAIykB,EAAUM,GAChCC,GAAkBhlB,IAAIykB,EAAW,OAAQM,IAE7CD,EAAQC,EACR,IAAK,IAAI3gB,EAAI,EAAGA,EAAIyE,EAAMnQ,OAAQ0L,IAAK,CACnC,MAAM6gB,EAAOpc,EAAMzE,GACnB,GAAY,IAAR6gB,EAAY,CACZ,IAAIC,EAAWJ,EAAMG,QACG,IAAbC,IACPA,EAAW,CAAE,EACbJ,EAAMG,GAAQC,GAE6D,GAAAxY,IAAA,EAAA,GAAAuY,gCAAAN,KAC/EG,EAAQI,GAIXJ,EAAMF,KACPE,EAAMF,GAAc9D,GAExBgE,EAAM,GAAGF,KAAcC,KAAoB/D,CAC/C,CAjRIqE,CAA8BlC,EAAcC,EAAeC,EAAgBC,EAAYC,EAAeS,GACtGhQ,GAAWkN,EAAoC,uBAAAsC,EACnD,CAmLA,SAAS9C,GAASC,GACd,MAAMC,EAAaD,EAAQC,WACrBC,EAAiBF,EAAQE,eACzBvJ,EAAgBqJ,EAAQrJ,cACxBuF,EAAS8D,EAAQ9D,OACjBoE,EAAMN,EAAQ6C,mBACdM,EAAWnD,EAAQmD,SACnBC,EAAqBpD,EAAQoD,mBAEnC,OAD8BpD,EAAW,KAClC,YAAsBS,GACzB,MAAMF,EAAOtN,KACb1K,GAAc+O,yBAEd,MAAMC,EAAKxf,GAAOyf,YAClB,IACI,MACMhQ,EAAOiQ,GADA,EAAIwI,GAEjB,IAAK,IAAI9gB,EAAQ,EAAGA,EAAQ8gB,EAAY9gB,IAAS,CAC7C,MAAMwhB,EAAYT,EAAe/gB,GAC7BwhB,GAEAA,EAAUnZ,EADKiZ,EAAQthB,IAI/B,IAAIyhB,EAoBJ,OAnBIuC,IAEAvC,EAAYjK,EAAenP,IAI3B2b,GACAnH,GAAsBplB,GAAe2sB,iBAAkBrH,EAAQ1U,GAE/DoZ,EAAYlH,GAAuBlS,OAAMxP,EAAW4oB,IAC7CwC,EAEPpH,GAAsBplB,GAAe2sB,iBAAkBrH,EAAQ1U,IAE/DsQ,GAAqBoE,EAAQ1U,GACzBmP,IACAiK,EAAYjK,EAAcnP,KAG3BoZ,EACD,QACFrY,GAAc0P,sBAAsBlgB,GAAOmgB,aAAaX,GAE5DlE,GAAWkN,EAAoC,uBAAAD,GAEtD,CACL,CAaO,MAAMiE,GAAsC,IAAIjjB,IA8BhD0gB,eAAe2C,GAAgCX,GAOlD,OANA9K,KACeqL,GAAkBjlB,IAAI0kB,ULxDnC,SAAiCxB,GACnCja,GAAc+O,yBACd,MAAMC,EAAKxf,GAAOyf,YAClB,IACI,MACMhQ,EAAOiQ,GADA,GAEP1I,EAAM4I,GAAQnQ,EAAM,GAE1Bod,GADajN,GAAQnQ,EAAM,GACAgb,GAG3B,IAAI/J,EAAUc,GAAyBxK,GAUvC,OARAiN,GAAsBplB,GAAe2sB,iBAAkBxL,GAAe8M,oBAAqBrd,GAG3FiR,EAAUiB,GAAuBlS,EAAMgO,GAAqBiD,GAExDA,UACAA,EAAUoB,QAAQI,WAEfxB,EACD,QAEFlQ,GAAc0P,sBAAsBlgB,GAAOmgB,aAAaX,GAEpE,CKgCcuN,CAAsBd,GAGzBO,GAAkBjlB,IAAI0kB,IAAa,CAAE,CAChD,CJtXA,MAAMe,GAAwE,mBAApC7R,WAAW8R,qBACrD,IAAIC,GAIJ,MAAMC,GAAwC,CAAC,MACzC/L,GAAyC,CAAC,MAC1CgM,GAAmC,GACzC,IAAIC,GAAkB,EAEf,MAAMC,GAAyB,IAAI/jB,IAEpCgkB,GAAoC,GAC1C,IAAIC,IAAqB,EAcnB,SAAUC,GAAepL,GAC3B,OAAQA,GAAsB,CAClC,CAEM,SAAUqL,GAAcrL,GAC1B,OAAQA,EAAoB,CAChC,CAEM,SAAUsL,GAAe3O,GAC3B,OAAQA,GAAsB,CAClC,CAGIgO,KACAE,GAA4B,IAAI/R,WAAW8R,qBAAqBW,KAG7D,MAAM1H,GAA4B7Y,OAAOyX,IAAI,2BACvCxD,GAA4BjU,OAAOyX,IAAI,2BACvC+I,GAAuBxgB,OAAOyX,IAAI,6BAGzC,SAAUpC,GAAoCL,GAChD,OAAIqL,GAAarL,GACN8K,GAAoC9K,GAC3CoL,GAAcpL,GACPjB,GAAgC,EAASiB,GAC7C,IACX,CAEM,SAAUX,GAAyBR,GAErC,GADAC,KACID,EAAOI,IACP,OAAOJ,EAAOI,IAElB,MAAMe,EAAY+K,GAAqBltB,OAASktB,GAAqBrH,MAAQsH,KAgB7E,OAbAF,GAAoC9K,GAAanB,EAE7CrN,OAAOwN,aAAaH,KACmB,mBAAXA,GAAyBrN,OAAOiG,UAAUgU,eAAetH,KAAKtF,EAAQ,eAE9FA,EAAOI,IAA6Be,IAQrCA,CACX,CAaM,SAAUR,GAAmCQ,GAC/C,IAAItH,EACA2S,GAAarL,IACbtH,EAAMoS,GAAoC9K,GAC1C8K,GAAoC9K,QAAapiB,EACjDmtB,GAAqBnkB,KAAKoZ,IACnBoL,GAAcpL,KACrBtH,EAAMqG,GAAgC,EAASiB,GAC/CjB,GAAgC,EAASiB,QAAapiB,GAGgB,MAAA8a,GAAA7G,IAAA,EAAA,gCAC5B,IAAnC6G,EAAIuG,MACXvG,EAAIuG,SAA6BrhB,EAEzC,CAEgB,SAAAugB,GAAqBuN,EAAY/O,GAC7CmC,KAEA4M,EAAM7H,IAA6BlH,EAG/BgO,IAEAE,GAA0Bc,SAASD,EAAO/O,EAAW+O,GAKzD,MAAME,EAAK5D,GAAgB0D,GAC3BT,GAAuB9lB,IAAIwX,EAAWiP,EAC1C,UAUgB1N,GAAwBwN,EAAY/O,EAAqBkP,GA/GnE,IAA2BC,EAgH7BhN,KAMI4M,IACA/O,EAAY+O,EAAM7H,IAClB6H,EAAM7H,IAA6B3lB,EAC/BysB,IACAE,GAA0BkB,WAAWL,IAGzC/O,IAAcze,GAAgB+sB,GAAuB5X,OAAOsJ,KAAekP,GACvE1d,GAAc0P,uBAAyBmO,ID7C7C,SAAgDrP,GACA,GAAA9K,IAAA,EAAA,2BAClD1D,GAAc+O,yBACd,MAAMC,EAAKxf,GAAOyf,YAClB,IACI,MACMhQ,EAAOiQ,GADA,GAEPC,EAAOC,GAAQnQ,EAAM,GAC3BoQ,GAAaF,EAAI,IACjBG,GAAcH,EAAMX,GACfyJ,IAAqBkF,GAAc3O,IAAe2E,GAAe2K,MAGlEvO,GAAqBC,GAAeuO,+BAAgC9e,GAIlE,QACFe,GAAc0P,sBAAsBlgB,GAAOmgB,aAAaX,GAGpE,CCyBYgP,CAAqCxP,GAGzC2O,GAAc3O,KAlIWmP,EAmITnP,EAlIpBuO,GAAsBtkB,KAAKklB,GAoI/B,CAEM,SAAUM,GAAqBhqB,GACjC,MAAMua,EAAYva,EAAOyhB,IACzB,GAAiElH,GAAAze,EAAA,MAAA,IAAAH,MAAA,0CACjE,OAAO4e,CACX,CAEA,SAAS4O,GAA4B5O,GAC5BxO,GAAc0P,sBAInBK,GAAuB,KAAMvB,EACjC,CAEM,SAAUE,GAAyBF,GACrC,IAAKA,EACD,OAAO,KACX,MAAMiP,EAAKX,GAAuB/lB,IAAIyX,GACtC,OAAIiP,EAGOA,EAAG3D,QAEP,IACX,CAWA,IAAI+D,IAAoC,EAIxB,SAAAK,GAAqBC,EAAyBC,GAC1D,IAAIC,GAAkB,EAClBC,GAAkB,EACtBT,IAAoC,EAEpC,IAAIU,EAAc,EACdC,EAAc,EACdC,EAAgB,EAChBC,EAAgB,EAEpB,MAAMC,EAAa,IAAI7B,GAAuBxU,QAC9C,IAAK,MAAMkG,KAAamQ,EAAY,CAChC,MAAMlB,EAAKX,GAAuB/lB,IAAIyX,GAChCjE,EAAMkT,GAAMA,EAAG3D,QAKrB,GAJI0C,IAA8BjS,GAC9BmS,GAA0BkB,WAAWrT,GAGrCA,EAAK,CACL,MAAMqU,EAAiD,kBAA9BrU,EAAI8S,KAAuC9S,EAAI8S,IASxE,GARIe,GAKIjrB,GAAc,sBAAsBoX,mBAAqBiE,sBAA8BoQ,EAAY,UAAY,gBAGlHA,EAcDP,GAAkB,MAdN,CACZ,MAAMzM,EAAkB5R,GAAc6e,qBAAqBtU,GACvDqH,GACAA,EAAgBL,OAAO,IAAI3hB,MAAM,+DAEV,mBAAhB2a,EAAIsF,SACXtF,EAAIsF,UAEJtF,EAAImL,MAA+BlH,IACnCjE,EAAImL,IAA6B3lB,IAEhC4pB,IAAiB8D,GAAIA,EAAG5N,UAC7B4O,MAMPJ,IACDvB,GAAuBrlB,QACnB+kB,KACAE,GAA4B,IAAI/R,WAAW8R,qBAAqBW,MAGxE,MAAM0B,EAAiB,CAACjN,EAAmBkN,KACvC,MAAMxU,EAAMwU,EAAKlN,GACX+M,EAAYrU,GAA4C,kBAA9BA,EAAI8S,KAAuC9S,EAAI8S,IAI/E,GAHKuB,IACDG,EAAKlN,QAAapiB,GAElB8a,EASA,GARI6T,GAKIjrB,GAAc,sBAAsBoX,mBAAqBsH,sBAA8B+M,EAAY,UAAY,gBAGlHA,EAaDN,GAAkB,MAbN,CACZ,MAAM1M,EAAkB5R,GAAc6e,qBAAqBtU,GACvDqH,GACAA,EAAgBL,OAAO,IAAI3hB,MAAM,+DAEV,mBAAhB2a,EAAIsF,SACXtF,EAAIsF,UAEJtF,EAAIuG,MAA+Be,IACnCtH,EAAIuG,SAA6BrhB,GAErCivB,MAOZ,IAAK,IAAI7M,EAAY,EAAGA,EAAY8K,GAA+BjtB,OAAQmiB,IACvEiN,EAAejN,EAAW8K,IAE9B,IAAK,IAAIrM,EAAa,EAAGA,EAAaM,GAAgClhB,OAAQ4gB,IAC1EwO,EAAexO,EAAYM,IAW/B,GATK0N,IACD3B,GAA+BjtB,OAAS,EACxCkhB,GAAgClhB,OAAS,EACzCmtB,GAAkB,EAClBD,GAAqBltB,OAAS,GAElCqtB,GAAsBrtB,OAAS,EAC/BstB,IAAqB,EAEjBmB,EAAgB,CAEhB,IAAK,MAAMrD,KAAYvD,GACnB,GAAIuD,EAAU,CACV,MAAMrD,EAAgBqD,EAAUtG,IAC5BiD,IACAA,EAAQuH,UAAW,EACnBT,KAIZhH,GAA+B7nB,OAAS,EAGxC,MAAMuvB,EAAkB,IAAIjD,GAAkB7b,UAC9C,IAAK,MAAM+e,KAAkBD,EACzB,IAAK,MAAME,KAAcD,EAAgB,CACrC,MACMzH,EADWyH,EAAeC,GACP9K,IACrBoD,IACAA,EAAQuH,UAAW,EACnBR,KAIZxC,GAAkBvkB,QAEtBwG,GAAc,6BAA6BsgB,cAAwBC,cAAwBC,gBAA4BC,eAC3H,CKnUM,SAAUU,GAAY1O,GAGxB,OAAOY,QAAQI,QAAQhB,KAAYA,IACX,iBAAXA,GAAyC,mBAAXA,IAAiD,mBAAhBA,EAAO2O,IACvF,CAEM,SAAU7F,GAA+B1B,GAC3C,MAAM5H,QAAEA,EAAO0B,gBAAEA,GAAoBvP,KAGrC,OAFcyV,IACRuH,MAAMlhB,GAASyT,EAAgBF,QAAQvT,KAAOmhB,OAAO9f,GAAWoS,EAAgBL,OAAO/R,KACtF0Q,CACX,CA4BA,MAAMqP,GAAwB1iB,OAAOyX,IAAI,uBAEnC,MAAOkL,WAAsBjN,cAM/B,WAAAtc,CAA2Bia,EACf1B,EACAiR,EACArR,GACRuH,QAJuBxf,KAAO+Z,QAAPA,EACf/Z,KAASqY,UAATA,EACArY,KAAgBspB,iBAAhBA,EACAtpB,KAAaiY,cAAbA,EARLjY,KAAUupB,YAAG,EACbvpB,KAAQwpB,UAAG,EACXxpB,KAAWypB,aAAG,EACdzpB,KAAIgI,KAAQ,KACZhI,KAAMqJ,YAAQ/P,EASrB,cAAAowB,GAEQ,OAAO,EASf,OAAAnO,CAASvT,GACA6B,GAAc0P,sBAIgDvZ,KAAAupB,YAAAhc,IAAA,EAAA,qCACLvN,KAAA2Z,YAAApM,IAAA,EAAA,gCAc9DvN,KAAKupB,YAAa,EAClBvpB,KAAK2pB,sBAAsB3hB,EAAM,OAnB+E6B,GAAAnC,mBAAAF,GAAA,6FAsBpH,MAAA4T,CAAQ/R,GACCQ,GAAc0P,sBAIdlQ,IACDA,EAAS,IAAI5P,OAEiDuG,KAAAupB,YAAAhc,IAAA,EAAA,oCACJvN,KAAA2Z,YAAApM,IAAA,EAAA,gCACxClE,EAAO+f,IAc7BppB,KAAKupB,YAAa,EAClBvpB,KAAK2pB,sBAAsB,KAAMtgB,IAvB8EQ,GAAAnC,mBAAAF,GAAA,4FA0BnH,MAAAoiB,GACI,GAAK/f,GAAc0P,qBAOnB,GAHkEvZ,KAAAupB,YAAAhc,IAAA,EAAA,oCACJvN,KAAA2Z,YAAApM,IAAA,EAAA,gCAE1DvN,KAAKypB,YAILzpB,KAAKupB,YAAa,OACEjwB,IAAhB0G,KAAKqJ,OACLrJ,KAAK2pB,sBAAsB,KAAM3pB,KAAKqJ,QAEtCrJ,KAAK2pB,sBAAsB3pB,KAAKgI,KAAM,UAEvC,CAEH,MAAM+R,EAAU/Z,KAAK+Z,QACrBlQ,GAAcggB,4BAA4B9P,GAC1C,MAAM0B,EAAkB5R,GAAc6e,qBAAqB3O,GAErD1Q,EAAS,IAAI5P,MAAM,8BACzB4P,EAAO+f,IAAyBppB,KAChCyb,EAAgBL,OAAO/R,QAxBsFQ,GAAAnC,mBAAAF,GAAA,8FA6BrH,qBAAAmiB,CAAuB3hB,EAAWqB,GAC9B,IACyErJ,KAAAwpB,UAAAjc,IAAA,EAAA,yCACrEvN,KAAKwpB,UAAW,EAIhB5P,GAAuB5Z,KAAMA,KAAKqY,WAA6B,GN/BrE,SAAyByR,EAA4B5tB,EAAa8L,EAAYiQ,GAChFpO,GAAc+O,yBACd,MAAMC,EAAKxf,GAAOyf,YAClB,IACI,MACMhQ,EAAOiQ,GADA,GAEPC,EAAOC,GAAQnQ,EAAM,GAC3BoQ,GAAaF,EAAI,IACjBG,GAAcH,EAAM8Q,GACpB,MAAM9E,EAAO/L,GAAQnQ,EAAM,GAC3B,GAAI5M,EACAmmB,GAAwB2C,EAAM9oB,OAC3B,CACHgd,GAAa8L,EAAI,GACjB,MAAM+E,EAAO9Q,GAAQnQ,EAAM,GACyB,GAAAyE,IAAA,EAAA,yBACpD0K,EAAc8R,EAAM/hB,GAExBsV,GAAsBplB,GAAe8xB,YAAa3Q,GAAe4Q,aAAcnhB,GACzE,QACFe,GAAc0P,sBAAsBlgB,GAAOmgB,aAAaX,GAGpE,CMWYqR,CAAclqB,KAAKqY,UAAWhP,EAAQrB,EAAMhI,KAAKiY,eAAiBkS,IACpE,MAAO/H,GACL,IACIvY,GAAcugB,UAAU,EAAGhI,GAC7B,MAAOiI,OC5Jd,MAAMjU,GAAe,yEAoCZkO,GAAwBpP,EAAsBC,EAA+B1U,GACzF,GAAkB,IAAd0U,GAA8E,IAArCA,GAAuD,IAAdA,GAA0F,KAA9CA,EAC9H,OAEJ,IAAIC,EACAC,EACAC,EACAC,EAEJF,EAAiBS,GAA4BL,GAAwBP,IACrEI,EAAiBQ,GAA4BJ,GAAwBR,IACrEK,EAAiBO,GAA4BH,GAAwBT,IACrE,MAAMU,EAAqBC,GAAuBX,GAClDE,EAAgBI,GAA4BI,GACC,KAAzCT,IAEAA,EAAiBS,GAErB,MAAMG,EAAYP,GAA4BL,GACxCa,EAAeP,GAAwBP,GAEvCe,EAAaxV,EAAQyV,GAC3B,MAAO,CAACpN,EAA4BvO,KAChCwb,EAAejN,EAAOmN,EAAY1b,EAAOyb,EAAcZ,EAAeC,EAAgBC,EAAgBC,EAAe,CAE7H,CAEM,SAAUC,GAA6BL,GACzC,GAAyC,IAArCA,GAAuD,IAAdA,EACzC,OAEJ,MAAMY,EAAYkI,GAAoBrd,IAAIuU,GAE1C,OADuHY,GAAA,mBAAAA,GAAAxI,IAAA,EAAA,qCAAA4H,KAChHY,CACX,CAEgB,SAAAuU,GAAoBrhB,EAA0B1O,GACtDA,QACA2e,GAAajQ,EAAG,IAEhBiQ,GAAajQ,EAAG,GAChB4V,GAAa5V,EAAK1O,GAE1B,CAEA,SAASgwB,GAAqBthB,EAA0B1O,GAChDA,QACA2e,GAAajQ,EAAG,IAEhBiQ,GAAajQ,EAAG,GRiKR,SAAYA,EAA0B1O,GACrB,GAAAgT,IAAA,EAAA,YAC7BhS,EAAW0N,EAAK1O,EACpB,CQnKQiwB,CAAWvhB,EAAK1O,GAExB,CAEA,SAASkwB,GAAqBxhB,EAA0B1O,GAChDA,QACA2e,GAAajQ,EAAG,IAEhBiQ,GAAajQ,EAAG,GR6JR,SAAaA,EAA0B1O,GACtB,GAAAgT,IAAA,EAAA,YAC7B/R,EAAYyN,EAAK1O,EACrB,CQ/JQmwB,CAAYzhB,EAAK1O,GAEzB,CAEA,SAASowB,GAAsB1hB,EAA0B1O,GACjDA,QACA2e,GAAajQ,EAAG,IAEhBiQ,GAAajQ,EAAG,GRyJR,SAAaA,EAA0B1O,GACtB,GAAAgT,IAAA,EAAA,YAC7BzR,EAAYmN,EAAK1O,EACrB,CQ3JQqwB,CAAY3hB,EAAK1O,GAEzB,CAEA,SAASswB,GAAsB5hB,EAA0B1O,GACjDA,QACA2e,GAAajQ,EAAG,IAEhBiQ,GAAajQ,EAAG,GRqJR,SAAaA,EAA0B1O,GACtB,GAAAgT,IAAA,EAAA,YAC7BvR,EAAYiN,EAAK1O,EACrB,CQvJQuwB,CAAY7hB,EAAK1O,GAEzB,CAEA,SAASwwB,GAAsB9hB,EAA0B1O,GACjDA,QACA2e,GAAajQ,EAAG,IAEhBiQ,GAAajQ,EAAG,GRsJR,SAAaA,EAA0B1O,GAEnD,GAD6B,GAAAgT,IAAA,EAAA,aAC0E7S,OAAAC,cAAAJ,GAAA,MAAA,IAAAd,MAAA,2CAAAc,aAAA,MAEvGqC,EAAYqM,EAAK1O,EACrB,CQ1JQywB,CAAY/hB,EAAK1O,GAEzB,CAEA,SAAS0wB,GAAyBhiB,EAA0B1O,GACpDA,QACA2e,GAAajQ,EAAG,IAEhBiQ,GAAajQ,EAAG,GRoJR,SAAiBA,EAA0B1O,GAC1B,GAAAgT,IAAA,EAAA,YAC7B/Q,EAAeyM,EAAK1O,EACxB,CQtJQ2wB,CAAgBjiB,EAAK1O,GAE7B,CAEA,SAAS4wB,GAAuBliB,EAA0B1O,GAClDA,QACA2e,GAAajQ,EAAG,IAEhBiQ,GAAajQ,EAAG,IAChBgW,GAAYhW,EAAK1O,GAEzB,CAEA,SAAS6wB,GAAsBniB,EAA0B1O,GACjDA,QACA2e,GAAajQ,EAAG,IAEhBiQ,GAAajQ,EAAG,IRmJR,SAAaA,EAA0B1O,GACtB,GAAAgT,IAAA,EAAA,YAC7B7Q,EAAYuM,EAAK1O,EACrB,CQrJQ8wB,CAAYpiB,EAAK1O,GAEzB,CAEgB,SAAA+wB,GAAsBriB,EAA0B1O,GACxDA,QACA2e,GAAajQ,EAAG,IAEhBiQ,GAAajQ,EAAG,IAChB6V,GAAe7V,EAAK1O,GAE5B,CAEA,SAASgxB,GAA0BtiB,EAA0B1O,GACzD,GAAIA,QACA2e,GAAajQ,EAAG,OACb,CACH,KAAyD1O,aAAAsd,MAAA,MAAA,IAAApe,MAAA,sCACzDyf,GAAajQ,EAAG,IAChB8V,GAAa9V,EAAK1O,GAE1B,CAEA,SAASixB,GAAiCviB,EAA0B1O,GAChE,GAAIA,QACA2e,GAAajQ,EAAG,OACb,CACH,KAAyD1O,aAAAsd,MAAA,MAAA,IAAApe,MAAA,sCACzDyf,GAAajQ,EAAG,IAChB8V,GAAa9V,EAAK1O,GAE1B,CAEgB,SAAA2rB,GAAsBjd,EAA0B1O,GAC5D,GAAIA,QACA2e,GAAajQ,EAAG,OACb,CAEH,GADAiQ,GAAajQ,EAAG,IAC+C,iBAAA1O,EAAA,MAAA,IAAAd,MAAA,wCAC/DgyB,GAA2BxiB,EAAK1O,GAExC,CAEA,SAASkxB,GAA4BxiB,EAA0B1O,GAOpD,CAEH,MAAMuL,EAAOgW,GAAgB7S,GAC7B,KfnEQ,SAAwBzC,EAAgB1I,GAIpD,GAFAA,EAAOwD,QAEQ,OAAXkF,EAEC,GAAwB,iBAApB,EACLD,GAA+BC,EAAQ1I,OACtC,IAAwB,iBAApB,EACL,MAAM,IAAIrE,MAAM,wCAAmC,GAClD,GAAsB,IAAlB+M,EAAOjN,OAEZgN,GAA+BC,EAAQ1I,OACtC,CAKD,GAAI0I,EAAOjN,QAAU,IAAK,CACtB,MAAMmyB,EAAW/oB,GAAyB/B,IAAI4F,GAC9C,GAAIklB,EAEA,YADA5tB,EAAO+C,IAAI6qB,GAKnB9kB,GAA0BJ,EAAQ1I,IAE1C,CewCY6tB,CAAuBpxB,EAAOuL,GACxB,QACNA,EAAKvE,WAGjB,CAEA,SAASqqB,GAAqB3iB,GAC1BiQ,GAAajQ,EAAG,EACpB,CAEA,SAAS4iB,GAAyB5iB,EAA0B1O,EAAiByd,EAAmBC,EAA+BC,EAAgCC,EAAgCC,GAC3L,GAAI7d,QAEA,YADA2e,GAAajQ,EAAG,GAGpB,KAA0E1O,GAAAA,aAAAsY,UAAA,MAAA,IAAApZ,MAAA,0CAG1E,MAAMqyB,EAAe,SAA2BhjB,GAC5C,MAAMgB,EAAMmP,GAAQnQ,EAAM,GACpBuH,EAAM4I,GAAQnQ,EAAM,GACpBkQ,EAAOC,GAAQnQ,EAAM,GACrBkc,EAAO/L,GAAQnQ,EAAM,GACrBihB,EAAO9Q,GAAQnQ,EAAM,GAErBijB,EAAiC7zB,GAAe8zB,yBACtD,IAGI,IAAIxT,EACAC,EACAC,EAJ8GoJ,GAAAgK,EAAAnS,WAK9GzB,IACAM,EAAUN,EAAec,IAEzBb,IACAM,EAAUN,EAAe6M,IAEzB5M,IACAM,EAAUN,EAAe2R,IAE7B7xB,GAAe8zB,0BAA2B,EAC1C,MAAMC,EAAS1xB,EAAMie,EAASC,EAASC,GACnCT,GACAA,EAAc5H,EAAK4b,GAGzB,MAAO7J,GACLC,GAAwBvY,EAAKsY,GACvB,QACNlqB,GAAe8zB,yBAA2BD,EAEjD,EAEDD,EAAQ1N,KAA4B,EACpC0N,EAAQnS,YAAa,EACrBmS,EAAQpS,QAAU,KACdoS,EAAQnS,YAAa,CAAI,EAM7BmB,GAAc7R,EAJgB8R,GAAwB+Q,IAKtD5S,GAAajQ,EAA4B,GAC7C,CAGM,SAAUijB,GAAoBjjB,EAA0B1O,EAAqByd,EAAmBC,GAClG,MAAMkU,MAAuB7V,GAAarN,GAC1C,GAAI1O,QAUI,YADA2e,GAAajQ,EAAG,GAIxB,IAAwDggB,GAAA1uB,GAAA,MAAA,IAAAd,MAAA,yCAExD,MAAM4e,EAAY8T,EAAuB7T,GAAkBrP,GNxRxC2d,GAAsBrtB,OAASqtB,GAAsBxH,MAAQyH,KM0R3EsF,IACDhT,GAAclQ,EAAKoP,GACnBa,GAAajQ,EAAG,KAGpB,MAAMoR,EAAS,IAAIgP,GAAc9uB,EAAO8d,EANmD,EAMtBJ,GACrE4B,GAAoBQ,EAAQhC,GAM5B9d,EAAM2uB,MAAKlhB,GAAQqS,EAAOkB,QAAQvT,KAAOqB,GAAUgR,EAAOe,OAAO/R,IACrE,CAEgB,SAAAgZ,GAAyBpZ,EAA0B1O,GAC/D,GAAIA,QACA2e,GAAajQ,EAAG,QACb,GAAI1O,aAAiByhB,aACxB9C,GAAajQ,EAAG,IAGhBkQ,GAAclQ,EADI6e,GAAoBvtB,QAEnC,CACH,GAAkH,iBAAAA,GAAA,iBAAAA,EAAA,MAAA,IAAAd,MAAA,+CAAAc,GAClH2e,GAAajQ,EAAG,IAEhBwiB,GAA2BxiB,EADX1O,EAAMkH,YAEtB,MAAM2qB,EAAkB7xB,EAAMogB,IAE1BG,GAAc7R,EADdmjB,GAGkBrR,GAAwBxgB,IAOtD,CAEgB,SAAA8xB,GAAyBpjB,EAA0B1O,GAC/D,GAAIA,QACA2e,GAAajQ,EAAG,OAEb,CAEH,QAA4I3P,IAAAiB,EAAAglB,IAAA,MAAA,IAAA9lB,MAAA,0EAAA2c,MAC5I,GAAiI,mBAAA7b,GAAA,iBAAAA,EAAA,MAAA,IAAAd,MAAA,2CAAAc,sBAEjI2e,GAAajQ,EAAG,IAKhB6R,GAAc7R,EAJI8R,GAAwBxgB,IAMlD,CAEgB,SAAA4vB,GAAyBlhB,EAA0B1O,GAC/D,GAAIA,QACA2e,GAAajQ,EAAG,OAEb,CACH,MAAMoP,EAAY9d,EAAMglB,IAClB+M,SAAU,EAChB,QAAkBhzB,IAAd+e,EACA,GAAgB,WAAZiU,GAAoC,WAAZA,EACxBpT,GAAajQ,EAAG,IAChBwiB,GAA2BxiB,EAAK1O,QAC7B,GAAgB,WAAZ+xB,EACPpT,GAAajQ,EAAG,IAChBgW,GAAYhW,EAAK1O,OACd,IAAgB,WAAZ+xB,EAEP,MAAM,IAAI7yB,MAAM,mCACb,GAAgB,YAAZ6yB,EACPpT,GAAajQ,EAAG,GAChB4V,GAAa5V,EAAK1O,QACf,GAAIA,aAAiBsd,KACxBqB,GAAajQ,EAAG,IAChB8V,GAAa9V,EAAK1O,QACf,GAAIA,aAAiBd,MACxB4oB,GAAwBpZ,EAAK1O,QAC1B,GAAIA,aAAiBqJ,WACxB2oB,GAAyBtjB,EAAK1O,UAC3B,GAAIA,aAAiBimB,aACxB+L,GAAyBtjB,EAAK1O,WAC3B,GAAIA,aAAiBgmB,WACxBgM,GAAyBtjB,EAAK1O,UAC3B,GAAIgX,MAAMC,QAAQjX,GACrBgyB,GAAyBtjB,EAAK1O,UAC3B,IAAIA,aAAiBiyB,YACrBjyB,aAAiBkyB,WACjBlyB,aAAiBmyB,mBACjBnyB,aAAiBoyB,aACjBpyB,aAAiBqyB,aACjBryB,aAAiBsyB,aAEpB,MAAM,IAAIpzB,MAAM,uCACb,GAAIwvB,GAAW1uB,GAClB2xB,GAAmBjjB,EAAK1O,OACrB,IAAIA,aAAiBsiB,KACxB,MAAM,IAAIpjB,MAAM,iCACb,GAAe,UAAX6yB,EAQP,MAAM,IAAI7yB,MAAM,uCAAuC6yB,KAAW/xB,KARtC,CAC5B,MAAMmhB,EAAYX,GAAwBxgB,GAC1C2e,GAAajQ,EAAG,IAIhB6R,GAAc7R,EAAKyS,UAIpB,CAEH,GADAoM,GAAoBvtB,GAChBA,aAAiBwiB,aACjB,MAAM,IAAItjB,MAAM,0CAA4C2c,IACzD,GAAI7b,aAAiByhB,aACxB9C,GAAajQ,EAAG,IAChBkQ,GAAclQ,EAAKoP,OAChB,MAAI9d,aAAiB6hB,eAIxB,MAAM,IAAI3iB,MAAM,2BAA6B6yB,EAAU,KAAOlW,IAH9D8C,GAAajQ,EAAG,IAChBkQ,GAAclQ,EAAKoP,KAMnC,UAEgByU,GAAqB7jB,EAA0B1O,EAAmDyb,GACzCA,GAAAzI,IAAA,EAAA,yCACrEgf,GAAyBtjB,EAAK1O,EAAOyb,EACzC,UAEgBuW,GAA0BtjB,EAA0B1O,EAAmDyb,GACnH,GAAIzb,QACA2e,GAAajQ,EAAG,OACb,CACH,MAAM8jB,EAAezQ,GAAmBtG,IAC4C,GAAA+W,GAAAxf,IAAA,EAAA,gBAAAyI,mBACpF,MAAMzc,EAASgB,EAAMhB,OACfyzB,EAAgBD,EAAexzB,EAC/BgjB,EAAaviB,EAAOgzB,GAC1B,GAAwC,IAApChX,EAAsC,CACtC,IAA0DzE,MAAAC,QAAAjX,GAAA,MAAA,IAAAd,MAAA,wCAC1DmB,EAAa2hB,EAAYyQ,GAGrB5wB,EAAOiE,wBAAwBkc,EAAYyQ,EAAe,uBAE9D,IAAK,IAAIvsB,EAAQ,EAAGA,EAAQlH,EAAQkH,IAEhCylB,GADoBjN,GAAasD,EAAY9b,GACXlG,EAAMkG,SAEzC,GAAwC,IAApCuV,EAAsC,CAC7C,IAA0DzE,MAAAC,QAAAjX,GAAA,MAAA,IAAAd,MAAA,wCAC1DmB,EAAa2hB,EAAYyQ,GAGrB5wB,EAAOiE,wBAAwBkc,EAAYyQ,EAAe,uBAE9D,IAAK,IAAIvsB,EAAQ,EAAGA,EAAQlH,EAAQkH,IAEhC0pB,GADoBlR,GAAasD,EAAY9b,GACRlG,EAAMkG,SAE5C,GAA0C,IAAtCuV,EAAwC,CAC/C,IAA0DzE,MAAAC,QAAAjX,GAAA,MAAA,IAAAd,MAAA,wCAC1DmB,EAAa2hB,EAAYyQ,GACzB,IAAK,IAAIvsB,EAAQ,EAAGA,EAAQlH,EAAQkH,IAEhC4rB,GADoBpT,GAAQsD,EAAY9b,GACHlG,EAAMkG,SAE5C,GAAsC,GAAlCuV,EAAoC,CAC3C,KAAuGzE,MAAAC,QAAAjX,IAAAA,aAAAqJ,YAAA,MAAA,IAAAnK,MAAA,sDACpFsB,IAAkBiJ,SAAcuY,EAAYA,EAAahjB,GACjEsH,IAAItG,QACZ,GAAuC,GAAnCyb,EAAqC,CAC5C,KAAuGzE,MAAAC,QAAAjX,IAAAA,aAAAgmB,YAAA,MAAA,IAAA9mB,MAAA,sDACvG,MAAMijB,EAAe5d,GAAayd,EAAY,GAC3B/d,IAAmBwF,SAAS0Y,EAAcA,EAAenjB,GACjEsH,IAAItG,OACZ,IAAwC,IAApCyb,EAMP,MAAM,IAAIvc,MAAM,mBAN6B,CAC7C,KAA2G8X,MAAAC,QAAAjX,IAAAA,aAAAimB,cAAA,MAAA,IAAA/mB,MAAA,wDAC3G,MAAMijB,EAAe5d,GAAayd,EAAY,GAC3B1d,KAAmBmF,SAAS0Y,EAAcA,EAAenjB,GACjEsH,IAAItG,IAInBukB,GAAe7V,EAAKsT,GACpBrD,GAAajQ,EAAG,IRlTR,SAAsBA,EAA0B8J,GAC/B,GAAAxF,IAAA,EAAA,YAC7BhS,EAAW0N,EAAG,GAA2C8J,EAC7D,CQgTQka,CAAqBhkB,EAAK+M,GAC1BsJ,GAAerW,EAAK1O,EAAMhB,QAElC,CAEA,SAAS2zB,GAAqBjkB,EAA0B1O,EAAayb,GAEjE,GADqEA,GAAAzI,IAAA,EAAA,yCACZhT,EAAAof,WAAA,MAAA,IAAAlgB,MAAA,0CACzD0zB,GAAcnX,EAAczb,EAAM8lB,WAElCnH,GAAajQ,EAAG,IAChB6V,GAAe7V,EAAK1O,EAAM4lB,UAC1Bb,GAAerW,EAAK1O,EAAMhB,OAC9B,CAGA,SAAS6zB,GAA8BnkB,EAA0B1O,EAAqByb,GACbA,GAAAzI,IAAA,EAAA,yCACrE,MAAM8K,EAAYyP,GAAoBvtB,GAC0C,GAAAgT,IAAA,EAAA,yDAChF4f,GAAcnX,EAAczb,EAAM8lB,WAClCnH,GAAajQ,EAAG,IAChB6V,GAAe7V,EAAK1O,EAAM4lB,UAC1Bb,GAAerW,EAAK1O,EAAMhB,QAC1B4f,GAAclQ,EAAKoP,EACvB,CAEA,SAAS8U,GAAenX,EAA6BkL,GACjD,GAAsC,GAAlClL,GACA,GAA4E,GAAAkL,EAAA,MAAA,IAAAznB,MAAA,oDACzE,GAAuC,GAAnCuc,GACP,GAA8E,GAAAkL,EAAA,MAAA,IAAAznB,MAAA,oDAC3E,IAAwC,IAApCuc,EAGP,MAAM,IAAIvc,MAAM,2BAA2Buc,MAF3C,GAAgF,GAAAkL,EAAA,MAAA,IAAAznB,MAAA,iDAIxF,CCxhBA,MAAM4zB,GAAmB,CACrB3Y,IAAK,WACD,OAAOmD,KAAKnD,QAId,SAAU4Y,GAAwBC,QAEE,IAA3B/Y,WAAWC,cAClBD,WAAWC,YAAc4Y,IAE7BE,EAAaC,QAAUvjB,GAASujB,QAGhCD,EAAaE,gBAAkB5jB,GAAc4jB,gBACzCp0B,GAAOq0B,aAAer0B,GAAOs0B,eAC7Bt0B,GAAOq0B,WAAa7jB,GAAc6jB,YAItCH,EAAaK,MAAQ/jB,GAAcgkB,WAGnCN,EAAa7iB,sBAAwBA,EAUzC,CC7BA,SAASojB,KACL,GAAgC,mBAArBtZ,WAAWoZ,OAA8D,mBAA/BpZ,WAAWuZ,gBAI5D,MAAM,IAAIt0B,MAHMyQ,GACV,mJACA,oHAGd,UAOgB8jB,KAQZ,GAAuB,oBAAZC,SAA2B,SAAUA,QAAQ9a,WAAuC,mBAAnB+a,gBAA4D,mBAApBC,gBAAgC,CAChJ,IAAIC,GAAiB,EACrB,MAAMC,EAAiB,IAAIJ,QAAQ,GAAI,CACnCK,KAAM,IAAIJ,eACV1Q,OAAQ,OACR,UAAI+Q,GAEA,OADAH,GAAiB,EACV,MACV,IACyFI,QAAQC,IAAI,gBAC1G,OAAOL,IAAmBC,EAE9B,OAAO,CACX,UAEgBK,KACZ,MAA2B,oBAAbC,UAA4B,SAAUA,SAASxb,WAAuC,mBAAnB+a,cACrF,UAEgBU,KAMZ,OALAd,KACAtT,KACmC,CAC/BqU,gBAAiB,IAAId,gBAG7B,CAEA,SAASe,GAAyB/U,GAC9BA,EAAQoP,OAAO4F,IACPA,GAAe,eAARA,GAAqC,eAAbA,EAAIl2B,MACnC2O,GAAe,eAAiBunB,KAG5C,CAEM,SAAUC,GAAiBC,GAE7B,IACSA,EAAWC,YACRD,EAAWE,eACXL,GAAwBG,EAAWE,aAAaC,SAChDH,EAAWC,WAAY,GAEvBD,EAAWI,eACXP,GAAwBG,EAAWI,aAAazF,UAChDqF,EAAWC,WAAY,IAG1BD,EAAWC,WAAcD,EAAWJ,gBAAgBS,OAAOC,SAC5DN,EAAWJ,gBAAgBO,MAAM,cAEvC,MAAOL,IAGb,UAEgBS,GAAkCP,EAA4BQ,EAAoBC,GAEnCA,EAAA,GAAAniB,IAAA,EAAA,6BAE3D,MACMoiB,EADO,IAAI9S,KAAK4S,EAAWC,EAAY,GAC3B/S,QAClB,OAAO0G,IAA2BC,UACgC2L,EAAA,cAAA1hB,IAAA,EAAA,yBACI0hB,EAAA,iBAAA1hB,IAAA,EAAA,0BAClE,UACU0hB,EAAWE,aAAaS,YACxBX,EAAWE,aAAaU,MAAMF,GACtC,MAAOvN,GACL,MAAM,IAAI3oB,MAAM,sCAG5B,CAEM,SAAUq2B,GAAkCb,GAE9C,OAD+C,GAAA1hB,IAAA,EAAA,uBACxC8V,IAA2BC,UACgC2L,EAAA,cAAA1hB,IAAA,EAAA,yBACI0hB,EAAA,iBAAA1hB,IAAA,EAAA,0BAClE,UACU0hB,EAAWE,aAAaS,YACxBX,EAAWE,aAAaY,QAChC,MAAO3N,GACL,MAAM,IAAI3oB,MAAM,sCAG5B,CAEgB,SAAAu2B,GAAwBf,EAA4BgB,EAAaC,EAAwBC,EAAyBC,EAAwBC,GAEtJ,MAAMC,EAAkB,IAAInC,gBAK5B,OAJAc,EAAWE,aAAemB,EAAgBC,SAASC,YACnD1B,GAAwBG,EAAWE,aAAasB,QAChD3B,GAAwBG,EAAWE,aAAaS,OAC1Bc,GAAgBzB,EAAYgB,EAAKC,EAAcC,EAAeC,EAAcC,EAAeC,EAAgBK,SAErI,UAEgBC,GAAuB3B,EAA4BgB,EAAaC,EAAwBC,EAAyBC,EAAwBC,EAAsBQ,EAAkBC,GAK7L,OAAOJ,GAAgBzB,EAAYgB,EAAKC,EAAcC,EAAeC,EAAcC,EAFtE,IAAIxT,KAAKgU,EAASC,EAAU,GACvBnU,QAEtB,CAEgB,SAAA+T,GAAiBzB,EAA4BgB,EAAaC,EAAwBC,EAAyBC,EAAwBC,EAAsB/B,GAErKR,KACAtT,KACmEyV,GAAA,iBAAAA,GAAA1iB,IAAA,EAAA,uBACuI2iB,GAAAC,GAAA5e,MAAAC,QAAA0e,IAAA3e,MAAAC,QAAA2e,IAAAD,EAAA32B,SAAA42B,EAAA52B,QAAAgU,IAAA,EAAA,gDACA6iB,GAAAC,GAAA9e,MAAAC,QAAA4e,IAAA7e,MAAAC,QAAA6e,IAAAD,EAAA72B,SAAA82B,EAAA92B,QAAAgU,IAAA,EAAA,gDAE1M,MAAMihB,EAAU,IAAIuC,QACpB,IAAK,IAAI9rB,EAAI,EAAGA,EAAIirB,EAAa32B,OAAQ0L,IACrCupB,EAAQwC,OAAOd,EAAajrB,GAAIkrB,EAAclrB,IAElD,MAAM4P,EAAe,CACjByZ,OACAE,UACAc,OAAQL,EAAWJ,gBAAgBS,QAET,oBAAnBpB,gBAAkCI,aAAgBJ,iBACzDrZ,EAAQ0Z,OAAS,QAErB,IAAK,IAAItpB,EAAI,EAAGA,EAAImrB,EAAa72B,OAAQ0L,IACrC4P,EAAQub,EAAanrB,IAAMorB,EAAcprB,GAwB7C,OArBAgqB,EAAWgC,gBAAkB5N,IAA2B,IAC7CxZ,GAAcgkB,WAAWoC,EAAKpb,GAASqU,MAAM7Y,IAChD4e,EAAWiC,SAAW7gB,EACf,UAIf4e,EAAWgC,gBAAgB/H,MAAK,KAI5B,GAHsD+F,EAAA,UAAA1hB,IAAA,EAAA,qBACtD0hB,EAAWkC,oBAAsB,GACjClC,EAAWmC,qBAAuB,GAC9BnC,EAAWiC,SAAS1C,SAAiBS,EAAWiC,SAAS1C,QAAS6C,QAAS,CAC3E,MAAMA,EAAoCpC,EAAWiC,SAAS1C,QAAS6C,UACvE,IAAK,MAAMC,KAAQD,EACfpC,EAAWkC,oBAAoB7uB,KAAKgvB,EAAK,IACzCrC,EAAWmC,qBAAqB9uB,KAAKgvB,EAAK,QAGnDnI,OAAM,SAGF8F,EAAWgC,eACtB,CAEM,SAAUM,GAA6BtC,SAEzC,OAA0B,UAAnBA,EAAWiC,gBAAQ,IAAAM,OAAA,EAAAA,EAAEze,IAChC,CAEM,SAAU0e,GAA+BxC,WAE3C,OAAsC,QAA/ByC,EAAqB,UAArBzC,EAAWiC,gBAAU,IAAAM,OAAA,EAAAA,EAAAG,cAAU,IAAAD,EAAAA,EAAA,CAC1C,CAGM,SAAUE,GAAqC3C,GAGjD,OAD4EA,EAAA,qBAAA1hB,IAAA,EAAA,gCACrE0hB,EAAWkC,mBACtB,CAEM,SAAUU,GAAsC5C,GAGlD,OAD8EA,EAAA,sBAAA1hB,IAAA,EAAA,iCACvE0hB,EAAWmC,oBACtB,CAEM,SAAUU,GAA+B7C,GAE3C,OAAO5L,IAA2BC,UAC9B,MAAM3hB,QAAestB,EAAWiC,SAAUa,cAG1C,OAFA9C,EAAW+C,eAAiBrwB,EAC5BstB,EAAWgD,oBAAsB,EAC1BtwB,EAAOqf,UAAU,GAEhC,CAEgB,SAAAkR,GAA8BjD,EAA4BxqB,GAItE,GAH+C,GAAA8I,IAAA,EAAA,uBACwB0hB,EAAA,gBAAA1hB,IAAA,EAAA,gCACkBjU,MAAA21B,EAAAgD,qBAAA1kB,IAAA,EAAA,gCACrF0hB,EAAWgD,qBAAuBhD,EAAW+C,eAAgBhR,WAC7D,OAAO,EAEX,MAAMmR,EAAc,IAAIvuB,WAAWqrB,EAAW+C,eAAiB/C,EAAWgD,qBAC1ExtB,EAAK5D,IAAIsxB,EAAa,GACtB,MAAMC,EAAaziB,KAAKnV,IAAIiK,EAAKuc,WAAYmR,EAAYnR,YAEzD,OADAiO,EAAWgD,qBAAuBG,EAC3BA,CACX,UAEgBC,GAAuCpD,EAA4BQ,EAAoBC,GAGnG,MAAMjrB,EAAO,IAAIoY,KAAK4S,EAAWC,EAAY,GAC7C,OAAOrM,IAA2BC,UAG9B,SAFM2L,EAAWgC,gBACqChC,EAAA,UAAA1hB,IAAA,EAAA,sBACjD0hB,EAAWiC,SAAS5C,KAErB,OAAO,EAUX,GARKW,EAAWI,eACZJ,EAAWI,aAAeJ,EAAWiC,SAAS5C,KAAKgE,YACnDxD,GAAwBG,EAAWI,aAAaoB,SAE/CxB,EAAWsD,+BAA+Dj5B,IAAnC21B,EAAWgD,sBACnDhD,EAAWsD,+BAAiCtD,EAAWI,aAAathB,OACpEkhB,EAAWgD,oBAAsB,GAEjChD,EAAWsD,yBAAyBC,KAAM,CAC1C,GAAIvD,EAAWC,UACX,MAAM,IAAIz1B,MAAM,8BAEpB,OAAO,EAGX,MAAMg5B,EAAmBxD,EAAWsD,yBAAyBh4B,MAAMymB,WAAaiO,EAAWgD,oBACPQ,EAAA,GAAAllB,IAAA,EAAA,kDAEpF,MAAMmlB,EAAe/iB,KAAKnV,IAAIi4B,EAAkBhuB,EAAKuc,YAC/CmR,EAAclD,EAAWsD,yBAAyBh4B,MAAMyJ,SAASirB,EAAWgD,oBAAqBhD,EAAWgD,oBAAsBS,GAOxI,OANAjuB,EAAK5D,IAAIsxB,EAAa,GACtBlD,EAAWgD,qBAAuBS,EAC9BD,GAAoBC,IACpBzD,EAAWsD,8BAA2Bj5B,GAGnCo5B,CAAY,GAE3B,CC5QA,IAiDIC,GAQAC,GAzDAC,GAAwB,WAEZC,KAEZ,IAAKjpB,GAAckpB,WACf,OAKJ,MAAMre,GAAM,IAAImD,MAAOzV,UACjB4wB,EAAqBte,EAAG,KAG9B,IAAK,IAAIue,EAFetjB,KAAKlV,IAAIia,EAAM,IAAMme,IAERI,EAAWD,EAAoBC,GADjC,IACyE,CACxG,MAAMC,EAAQD,EAAWve,EACzBF,WAAW2e,WAAWC,GAA+BF,GAEzDL,GAAwBG,CAC5B,CAEA,SAASI,KAGL,GADA/5B,GAAOg6B,YACFxpB,GAAc0P,qBAAnB,CAGA,IACInd,EAAOk3B,0BACT,MAAOlR,GACLvY,GAAcugB,UAAU,EAAGhI,GAE/BmR,KACJ,CAEA,SAASA,KAIL,GAFAZ,QAA0Br5B,EAC1BD,GAAOg6B,YACFxpB,GAAc0P,qBAGnB,IACInd,EAAOo3B,uBACT,MAAOpR,GACLvY,GAAcugB,UAAU,EAAGhI,GAEnC,CAoBA,SAASqR,gCAIL,GAFAp6B,GAAOg6B,YAEFxpB,GAAc0P,qBAAnB,CAGAqZ,QAAyBt5B,EACzB,IACI8C,EAAOk3B,0BACT,MAAOlR,GACLvY,GAAcugB,UAAU,EAAGhI,IAEnC,OCtFasR,GAKT,WAAA5zB,GACIE,KAAK2zB,MAAQ,GACb3zB,KAAK9E,OAAS,EAKlB,SAAA04B,GACI,OAAQ5zB,KAAK2zB,MAAMp6B,OAASyG,KAAK9E,OAIrC,OAAA24B,GACI,OAA6B,GAArB7zB,KAAK2zB,MAAMp6B,OAOvB,OAAAu6B,CAASC,GACL/zB,KAAK2zB,MAAMrxB,KAAKyxB,GAMpB,OAAAC,GAGI,GAA0B,IAAtBh0B,KAAK2zB,MAAMp6B,OAAc,OAG7B,MAAMw6B,EAAO/zB,KAAK2zB,MAAM3zB,KAAK9E,QAY7B,OATA8E,KAAK2zB,MAAM3zB,KAAK9E,QAAe,KAGX,IAAd8E,KAAK9E,QAAc8E,KAAK2zB,MAAMp6B,SAChCyG,KAAK2zB,MAAQ3zB,KAAK2zB,MAAMhX,MAAM3c,KAAK9E,QACnC8E,KAAK9E,OAAS,GAIX64B,EAMX,IAAAE,GACI,OAAQj0B,KAAK2zB,MAAMp6B,OAAS,EAAIyG,KAAK2zB,MAAM3zB,KAAK9E,aAAU5B,EAG9D,KAAA46B,CAAOC,GACH,KAAOn0B,KAAK4zB,aAERO,EADan0B,KAAKg0B,YCjD9B,MAAMI,GAA8B1tB,OAAOyX,IAAI,+BACzCkW,GAAqC3tB,OAAOyX,IAAI,sCAChDmW,GAAmC5tB,OAAOyX,IAAI,oCAC9CoW,GAAsC7tB,OAAOyX,IAAI,uCACjDqW,GAAwC9tB,OAAOyX,IAAI,yCACnDsW,GAA+B/tB,OAAOyX,IAAI,gCAC1CuW,GAAoChuB,OAAOyX,IAAI,0CAC/CwW,GAAwBjuB,OAAOyX,IAAI,8BACnCyW,GAAiCluB,OAAOyX,IAAI,kCAC5C0W,GAAgCnuB,OAAOyX,IAAI,iCAC3C2W,GAAqBpuB,OAAOyX,IAAI,sBAChC4W,GAAqBruB,OAAOyX,IAAI,2BAChC6W,GAAyBtuB,OAAOyX,IAAI,+BACpC8W,GAA6BvuB,OAAOyX,IAAI,8BAExC+W,GAAoC,MACpCC,GAAc,IAAIvxB,WAclB,SAAUwxB,GAAcC,WAC1B,OAAIA,EAAGC,YAAcC,UAAUC,OACH,UAAjBH,EAAGC,kBAAc,IAAA9D,EAAAA,GAAE,EAGH,GAFC6D,EAAGd,IACiBX,YAEpB,UAAjByB,EAAGC,kBAAc,IAAA5D,EAAAA,GAAE,EACvB2D,EAAGN,IAAsBQ,UAAUE,QAAUF,UAAUG,IAClE,UAEgBC,GAAgBC,EAAaC,EAAgCC,GAIzE,IAAIT,GA1BR,WACI,GAAIxqB,GACA,MAAM,IAAIpR,MAAM,oDAEpB,GAAoC,mBAAzB+a,WAAW+gB,UAIlB,MAAM,IAAI97B,MAHMyQ,GACV,6GACA,wHAGd,CAaI4jB,GACAtT,KACsFob,GAAA,iBAAAA,GAAAroB,IAAA,EAAA,6BAAAqoB,GAEtF,IACIP,EAAK,IAAI7gB,WAAW+gB,UAAUK,EAAKC,QAAiBv8B,GACtD,MAAO4C,GAEL,MADAc,GAAc,sCAAwCd,EAAMuF,YACtDvF,EAEV,MAAQuf,gBAAiBsa,GAAyB7pB,KAElDmpB,EAAGd,IAAuC,IAAIb,GAC9C2B,EAAGb,IAAyC,IAAId,GAChD2B,EAAGZ,IAAgCsB,EACnCV,EAAGR,IAAiC,GACpCQ,EAAGT,IAAkC,GACrCS,EAAGJ,IAA8Ba,EACjCT,EAAGW,WAAa,cAChB,MAAMC,EAAgB,KAClB,IACI,GAAIZ,EAAGP,IAAqB,OAC5B,IAAKjrB,GAAc0P,qBAAsB,OAEzCwc,EAAqBxa,QAAQ8Z,GAC7BvC,KACF,MAAO52B,GACLc,GAAc,6CAA+Cd,EAAMuF,cAGrEy0B,EAAoBC,IACtB,IACI,GAAId,EAAGP,IAAqB,OAC5B,IAAKjrB,GAAc0P,qBAAsB,QAiRrD,SAAgC8b,EAAwBvkB,GACpD,MAAMslB,EAAcf,EAAGd,IACjB8B,EAAgBhB,EAAGb,IAEzB,GAA0B,iBAAf1jB,EAAM9I,KACbouB,EAAYtC,QAAQ,CAChB/gB,KAAM,EAIN/K,KAAMxE,GAAasN,EAAM9I,MACzB9M,OAAQ,QAET,CACH,GAAoC,gBAAhC4V,EAAM9I,KAAKlI,YAAYjH,KACvB,MAAM,IAAIY,MAAM,iDAEpB28B,EAAYtC,QAAQ,CAChB/gB,KAAM,EACN/K,KAAM,IAAIpE,WAAWkN,EAAM9I,MAC3B9M,OAAQ,IAGhB,GAAIm7B,EAAczC,aAAewC,EAAYxC,YAAc,EACvD,MAAM,IAAIn6B,MAAM,2BAEpB,KAAO48B,EAAczC,aAAewC,EAAYxC,aAAa,CACzD,MAAMnY,EAAkB4a,EAAcrC,UACtCsC,GAA6BjB,EAAIe,EAC7B3a,EAAgBc,WAAYd,EAAgBuR,eAChDvR,EAAgBF,UAEpBuX,IACJ,CAhTYyD,CAAsBlB,EAAIc,GAC1BrD,KACF,MAAO52B,GACLc,GAAc,gDAAkDd,EAAMuF,cAGxE+0B,EAAkBL,IACpB,IAEI,GADAd,EAAGoB,oBAAoB,UAAWP,GAC9Bb,EAAGP,IAAqB,OAC5B,IAAKjrB,GAAc0P,qBAAsB,OAGzC8b,EAAGL,KAA0B,EAC7BK,EAAiB,aAAIc,EAAGlpB,KACxBooB,EAA6B,yBAAIc,EAAG9sB,OAEhCgsB,EAAGX,KACHqB,EAAqB3a,OAAO,IAAI3hB,MAAM08B,EAAG9sB,SAG7C,IAAK,MAAMqtB,KAAyBrB,EAAGT,IACnC8B,EAAsBnb,UAI1BliB,GAAOs9B,gBAAe,KACYtB,EAAGb,IACXN,OAAO0C,IACzB56B,EAAO85B,EAAoB,GAC3B95B,EAAY85B,EAAqB,EAAG,GACpC95B,EAAY85B,EAAqB,EAAG,GACpCc,EAAwBrb,SAAS,GACnC,GACH,GACL,MAAOrf,GACLc,GAAc,8CAAgDd,EAAMuF,cAGtEo1B,EAAkBV,IACpB,IACI,GAAId,EAAGP,IAAqB,OAC5B,IAAKjrB,GAAc0P,qBAAsB,OAEzC8b,EAAGoB,oBAAoB,UAAWP,GAClC,MAAMvuB,EAAUwuB,EAAGxuB,QACb,oBAAsBwuB,EAAGxuB,QACzB,kBACN3K,GAAc2K,GACd0tB,EAAGV,IAAyBhtB,EAC5BmvB,GAAgBzB,EAAI,IAAI57B,MAAMkO,IAChC,MAAOzL,GACLc,GAAc,8CAAgDd,EAAMuF,cAe5E,OAZA4zB,EAAG0B,iBAAiB,UAAWb,GAC/Bb,EAAG0B,iBAAiB,OAAQd,EAAe,CAAEe,MAAM,IACnD3B,EAAG0B,iBAAiB,QAASP,EAAgB,CAAEQ,MAAM,IACrD3B,EAAG0B,iBAAiB,QAASF,EAAgB,CAAEG,MAAM,IACrD3B,EAAG3b,QAAU,KACT2b,EAAGoB,oBAAoB,UAAWP,GAClCb,EAAGoB,oBAAoB,OAAQR,GAC/BZ,EAAGoB,oBAAoB,QAASD,GAChCnB,EAAGoB,oBAAoB,QAASI,GAChCI,GAAc5B,EAAG,EAGdA,CACX,CAEM,SAAU6B,GAAc7B,GAE1B,GADiDA,GAAA9nB,IAAA,EAAA,+BAC7C8nB,EAAGV,IACH,OAAOwC,GAAgB9B,EAAGV,KAE9B,MAAMoB,EAAuBV,EAAGZ,IAEhC,OADAY,EAAGX,KAAqC,EACjCqB,EAAqBhc,OAChC,CAEM,SAAUqd,GAAc/B,EAAwB9Y,EAAqByQ,EAAuBqK,EAAsBC,GAGpH,GAFiDjC,GAAA9nB,IAAA,EAAA,+BAE7C8nB,EAAGV,IACH,OAAOwC,GAAgB9B,EAAGV,KAE9B,GAAIU,EAAGP,KAAuBO,EAAGN,IAC7B,OAAOoC,GAAgB,iDAE3B,GAAI9B,EAAGC,YAAcC,UAAUC,OAG3B,OA0UO,KAvUX,MACM+B,EAsOV,SAAoClC,EAAwBmC,EAAyBH,EAAsBC,GACvG,IAAI31B,EAAS0zB,EAAGjB,IACZl5B,EAAS,EACb,MAAM3B,EAASi+B,EAAYxW,WAE3B,GAAIrf,GAKA,GAJAzG,EAASm6B,EAAGhB,IAEZgD,EAAehC,EAAGf,IAEH,IAAX/6B,EAAc,CACd,GAAI2B,EAAS3B,EAASoI,EAAOpI,OAAQ,CACjC,MAAMk+B,EAAY,IAAI7zB,WAAoC,KAAxB1I,EAAS3B,EAAS,KACpDk+B,EAAU52B,IAAIc,EAAQ,GACtB81B,EAAUzzB,SAAS9I,GAAQ2F,IAAI22B,GAC/BnC,EAAGjB,IAA+BzyB,EAAS81B,OAE3C91B,EAAOqC,SAAS9I,GAAQ2F,IAAI22B,GAEhCt8B,GAAU3B,EACV87B,EAAGhB,IAAsCn5B,QAErCo8B,EAUO,IAAX/9B,IAKIoI,EAAS61B,EAEbt8B,EAAS3B,IAfE,IAAXA,IACAoI,EAAqB61B,EAAY7a,QACjCzhB,EAAS3B,EACT87B,EAAGhB,IAAsCn5B,EACzCm6B,EAAGjB,IAA+BzyB,GAEtC0zB,EAAGf,IAAoC+C,GAa3C,OAAIC,EACc,GAAVp8B,GAAyB,MAAVyG,EACRwzB,GAEU,IAAjBkC,EpBvZN,SAA+B11B,GACjC,YAAmCrI,IAA/B2J,GACO5J,GAAOmL,kBAAkB7C,EAAQ,EAAGA,EAAOqf,YAE/C/d,GAA2B0B,OAAOhD,EAC7C,CoBuZmB+1B,CAFOhzB,GAAW/C,EAAQ,EAAUzG,IAKpCyG,EAAOqC,SAAS,EAAG9I,GAG3B,IACX,CAjSyBy8B,CAA0BtC,EAD3B,IAAIzxB,WAAW7I,IAAkB4G,OAAa4a,EAAYyQ,GACdqK,EAAcC,GAE9E,OAAKA,GAAmBC,EA0H5B,SAAmClC,EAAwBmC,GAOvD,GANAnC,EAAGuC,KAAKJ,GACRnC,EAAGjB,IAA+B,KAK9BiB,EAAGwC,eAAiB3C,GACpB,OAkMO,KA9LX,MAAMnb,QAAEA,EAAO0B,gBAAEA,GAAoBvP,KAC/B4rB,EAAUzC,EAAGR,IACnBiD,EAAQx1B,KAAKmZ,GAEb,IAAIsc,EAAY,EAChB,MAAMC,EAAgB,KAClB,IAEI,GAA0B,IAAtB3C,EAAGwC,eACHpc,EAAgBF,cACb,CACH,MAAM+Z,EAAaD,EAAGC,WACtB,GAAIA,GAAcC,UAAUG,MAAQJ,GAAcC,UAAUE,QAGxDha,EAAgBL,OAAO,IAAI3hB,MAAM,iBAAiB67B,2CAC/C,IAAK7Z,EAAgBwc,OAIxB,OAHAzjB,WAAW2e,WAAW6E,EAAeD,QAErCA,EAAYpoB,KAAKnV,IAAgB,IAAZu9B,EAAiB,MAK9C,MAAMt3B,EAAQq3B,EAAQ5+B,QAAQuiB,GAC1Bhb,GAAS,GACTq3B,EAAQnuB,OAAOlJ,EAAO,GAE5B,MAAOvE,GACLc,GAAc,gDAAkDd,EAAMuF,YACtEga,EAAgBL,OAAOlf,KAM/B,OAFAsY,WAAW2e,WAAW6E,EAAe,GAE9Bje,CACX,CAvKWme,CAAyB7C,EAAIkC,GAgUzB,IA/Tf,UAEgBY,GAAiB9C,EAAwB9Y,EAAqByQ,GAG1E,GAFiDqI,GAAA9nB,IAAA,EAAA,+BAE7C8nB,EAAGV,IACH,OAAOwC,GAAgB9B,EAAGV,KAI9B,GAAIU,EAAGP,IAAqB,CACxB,MAAMgB,EAAqBT,EAAGJ,IAI9B,OAHAj5B,EAAO85B,EAAoB,GAC3B95B,EAAY85B,EAAqB,EAAG,GACpC95B,EAAY85B,EAAqB,EAAG,GAiT7B,KA7SX,MAAMsC,EAAsB/C,EAAGd,IACzB8D,EAAwBhD,EAAGb,IAEjC,GAAI4D,EAAoBxE,YAKpB,OAJ+E,GAAAyE,EAAAzE,aAAArmB,IAAA,EAAA,2BAE/E+oB,GAA6BjB,EAAI+C,EAAqB7b,EAAYyQ,GAuS3D,KAlSX,GAAIqI,EAAGL,IAAyB,CAC5B,MAAMc,EAAqBT,EAAGJ,IAI9B,OAHAj5B,EAAO85B,EAAoB,GAC3B95B,EAAY85B,EAAqB,EAAG,GACpC95B,EAAY85B,EAAqB,EAAG,GA8R7B,KA1RX,MAAM/b,QAAEA,EAAO0B,gBAAEA,GAAoBvP,KAC/B0qB,EAA0Bnb,EAKhC,OAJAmb,EAAwBra,WAAaA,EACrCqa,EAAwB5J,cAAgBA,EACxCqL,EAAsBvE,QAAQ8C,GAEvB7c,CACX,CAEM,SAAUue,GAAejD,EAAwBpoB,EAAc5D,EAAuBkvB,GAGxF,GAFiDlD,GAAA9nB,IAAA,EAAA,+BAE7C8nB,EAAGP,KAAuBO,EAAGN,KAAuBM,EAAGC,YAAcC,UAAUC,OAC/E,OA6QO,KA3QX,GAAIH,EAAGV,IACH,OAAOwC,GAAgB9B,EAAGV,KAG9B,GADAU,EAAGN,KAAsB,EACrBwD,EAAyB,CACzB,MAAMxe,QAAEA,EAAO0B,gBAAEA,GAAoBvP,KAQrC,OAPAmpB,EAAGT,IAAgCtyB,KAAKmZ,GAElB,iBAAXpS,EACPgsB,EAAGtF,MAAM9iB,EAAM5D,GAEfgsB,EAAGtF,MAAM9iB,GAEN8M,EAOP,MALsB,iBAAX1Q,EACPgsB,EAAGtF,MAAM9iB,EAAM5D,GAEfgsB,EAAGtF,MAAM9iB,GAyPN,IArPf,CAEM,SAAUgqB,GAAe5B,GAG3B,GAFiDA,GAAA9nB,IAAA,EAAA,gCAE7C8nB,EAAGP,MAAuBO,EAAGN,IAAjC,CAIAM,EAAGP,KAAsB,EACzBgC,GAAgBzB,EAAI,IAAI57B,MAAM,+BAE9B,IAEI47B,EAAGtF,MAAM,IAAM,2BACjB,MAAO7zB,GACLc,GAAc,qCAAuCd,EAAMuF,aAEnE,CAEA,SAASq1B,GAAiBzB,EAAwBn5B,GAC9C,MAAM65B,EAAuBV,EAAGZ,IAC1B+D,EAAoBnD,EAAGX,IAKzBqB,GAAwByC,GACxBzC,EAAqB3a,OAAOlf,GAEhC,IAAK,MAAMw6B,KAAyBrB,EAAGT,IACnC8B,EAAsBtb,OAAOlf,GAEjC,IAAK,MAAMu8B,KAAwBpD,EAAGR,IAClC4D,EAAqBrd,OAAOlf,GAGhCm5B,EAAGb,IAAuCN,OAAM0C,IAC5CA,EAAwBxb,OAAOlf,EAAM,GAE7C,CAyFA,SAASo6B,GAA8BjB,EAAwBe,EAAyB7Z,EAAqByQ,GACzG,MAAMlc,EAAQslB,EAAYnC,OAEpBrmB,EAAQ+B,KAAKnV,IAAIwyB,EAAelc,EAAM9I,KAAKzO,OAASuX,EAAM5V,QAChE,GAAI0S,EAAQ,EAAG,CACX,MAAMkT,EAAahQ,EAAM9I,KAAKhE,SAAS8M,EAAM5V,OAAQ4V,EAAM5V,OAAS0S,GACjD,IAAIhK,WAAW7I,IAAkB4G,OAAa4a,EAAYyQ,GAClEnsB,IAAIigB,EAAY,GAC3BhQ,EAAM5V,QAAU0S,EAEpB,MAAM0pB,EAAiBxmB,EAAM9I,KAAKzO,SAAWuX,EAAM5V,OAAS,EAAI,EAC5Do8B,GACAlB,EAAYpC,UAEhB,MAAM0E,EAAerD,EAAGJ,IACxBj5B,EAAO08B,EAAc9qB,GACrB5R,EAAY08B,EAAe,EAAG5nB,EAAMiC,MACpC/W,EAAY08B,EAAe,EAAGpB,EAClC,CA6GA,SAASH,GAAiBxvB,GAEtB,ONhfE,SAAiCgxB,GACnC,MAAM5e,QAAEA,EAAO0B,gBAAEA,GAAoBvP,KAErC,OADAysB,EAAMzP,MAAMlhB,GAASyT,EAAgBF,QAAQvT,KAAOmhB,OAAO9f,GAAWoS,EAAgBL,OAAO/R,KACtF0Q,CACX,CM4eW6e,CADUzd,QAAQC,OAAO,IAAI3hB,MAAMkO,IAE9C,UCjgBgBkxB,GAAmBC,EAAmB7I,EAAarqB,GACoCiE,GAAAnC,mBAAAF,GAAA,UAAAsxB,EAAAjgC,WAAAigC,EAAAC,iBAAAnzB,EAAArM,eAAA02B,KACnG,MAAMpO,EAAOtN,KAEPykB,EAAqD,iBAAvBF,EAAiB,YAC/CA,EAAMG,YACNH,EAAMjgC,KACZ,IAAIqC,EAAyB,KAE7B,OAAQ49B,EAAMC,UACV,IAAK,aACL,IAAK,oBACL,IAAK,wBACL,IAAK,UAED,MACJ,IAAK,WACL,IAAK,WACL,IAAK,MACDlvB,GAAcqvB,cAAc52B,KAAK,CAAE2tB,IAAKA,EAAKkJ,KAAMH,IAEvD,IAAK,OACL,IAAK,MACD99B,ExByTN,SAAqD0K,GAEvD,MAAMwzB,EAAcxzB,EAAMrM,OAAS,GAEnC,IAAI8/B,EAAehgC,GAAOigC,MAAMF,GAChC,GAASC,GAAgB,EAAG,CAKxB,GADAA,EAAehgC,GAAOigC,MAAMF,GACnBC,GAAgB,EAErB,MADA7/B,GAAe,2BAA2B4/B,mCACpC,IAAI3/B,MAAM,iBAEhBuD,GAAc,2BAA2Bo8B,sCAKjD,OAFkB,IAAIx1B,WAAW7I,IAAkB4G,OAAa03B,EAAczzB,EAAMrM,QAC1EsH,IAAI+E,GACPyzB,CACX,CwB7UqBE,CAA0C3zB,GACnD,MAEJ,IAAK,MAAO,CAER,MAAM4zB,EAAYR,EAAYS,YAAY,KAC1C,IAAIC,EAAmBF,EAAY,EAC7BR,EAAYnwB,UAAU,EAAG2wB,GACzB,KACFG,EAAYH,EAAY,EACtBR,EAAYnwB,UAAU2wB,EAAY,GAClCR,EACFW,EAAS9nB,WAAW,OACpB8nB,EAAWA,EAAS9wB,UAAU,IAC9B6wB,GACKA,EAAgB7nB,WAAW,OAC5B6nB,EAAkB,IAAMA,GAE5BlyB,GAAe,uBAAuBkyB,MAEtCrgC,GAAOugC,cACH,IAAKF,GAAiB,GAAM,IAGhCA,EAAkB,IAGgE7vB,GAAAnC,mBAAAF,GAAA,kBAAAmyB,oBAAAD,MAEtFrgC,GAAOwgC,kBACHH,EAAiBC,EACjB/zB,GAAO,GAAoB,GAAqB,GAEpD,MAEJ,QACI,MAAM,IAAInM,MAAM,+BAA+Bq/B,EAAMC,uBAAuBD,EAAMjgC,QAG1F,GAAuB,aAAnBigC,EAAMC,UAKN,IAFe38B,EAAO09B,uBAAuBd,EAAa99B,EAAS0K,EAAMrM,QAE5D,CACT,MAAMkH,EAAQoJ,GAAcqvB,cAAca,WAAUC,GAAWA,EAAQb,MAAQH,IAC/EnvB,GAAcqvB,cAAcvvB,OAAOlJ,EAAO,QAEpB,QAAnBq4B,EAAMC,SACb38B,EAAO09B,uBAAuBd,EAAa99B,EAAS0K,EAAMrM,QAChC,QAAnBu/B,EAAMC,SClFf,SAAmC79B,GACrC,IAAKkB,EAAO69B,wBAAwB/+B,GAChC,MAAM,IAAIzB,MAAM,0BAExB,CD+EQwgC,CAAwB/+B,GACE,aAAnB49B,EAAMC,UACb38B,EAAO89B,iCAAiClB,EAAaF,EAAMqB,SAAW,GAAIj/B,EAAS0K,EAAMrM,QAE7Fob,GAAWkN,EAAI,yBAAkCiX,EAAMjgC,QACrDgR,GAAcuwB,gCACpB,CAEO9W,eAAe+W,GAA2BC,GAC7C,IACI,MAAMpJ,QAAiBoJ,EAAaC,wBAAyBrJ,SpBiEjC1rB,QoBhET0rB,EAAS1rB,OpBoEiD6C,IAAAkF,IAAA,EAAA,yCACjFlF,GAA4B7C,EAC4CqE,GAAAnC,mBAAAF,GAAA,uBAAAhC,EAAAjM,uBoBpEtE,MAAO2C,GACL4L,GAAc,6BAA6BwyB,EAAazhC,SAASkY,KAAKC,UAAU9U,MpB6DlF,IAA8BsJ,CoB3DpC,UAcgBg1B,KACZ,OAAO3wB,GAAc4wB,WACzB,CE9GA,MAAMC,GAAmC,CAAE,EAErC,SAAUC,GAAcC,GAC1B,IAAI98B,EAAS48B,GAAgBE,GAC7B,GAAwB,iBAAZ,EAAsB,CAC9B,MAAMC,EAAQz+B,EAAO0+B,4BAA4BF,KACjDF,GAAgBE,GAAU98B,EAASmG,GAAkB42B,GAEzD,OAAO/8B,CACX,CCJO,MAAMi9B,GAAc,EACvBC,GAAgB,GAChBC,GAAiB,GAKjBC,IAAuB,WA2CrBC,GAAoD,CAAE,QAE/CC,GAiDT,WAAAt7B,CAAau7B,GA1Cbr7B,KAAAs7B,OAAS,IAAI14B,IAEb5C,KAA0Bu7B,2BAAG,EAC7Bv7B,KAAsBw7B,uBAAqC,CAAE,EAC7Dx7B,KAA6By7B,8BAA2C,CAAE,EAC1Ez7B,KAA6B07B,8BAA6C,CAAE,EAK5E17B,KAAoB27B,qBAA6C,CAAE,EAEnE37B,KAA8B47B,+BAAG,EACjC57B,KAA0B67B,2BAA6C,CAAE,EAIzE77B,KAAe87B,gBAAG,EAElB97B,KAAS+7B,UAAwB,GACjC/7B,KAAoBg8B,qBAAG,EAMvBh8B,KAAKi8B,MAAuB,EAC5Bj8B,KAAQk8B,SAAkB,GAC1Bl8B,KAAAm8B,cAAgB,IAAIC,IAEpBp8B,KAAaq8B,cAAkB,GAC/Br8B,KAAiBs8B,kBAAyB,GAC1Ct8B,KAA0Bu8B,2BAAyB,GACnDv8B,KAAgBw8B,iBAAG,EACnBx8B,KAAoBy8B,qBAAG,EAKvBz8B,KAAmB08B,qBAAG,EACtB18B,KAAW28B,aAAG,EAsnBd38B,KAAA48B,wBAA2BC,IACvB,IAAI/+B,EAAS,EACb,IAAK,MAAM8V,KAAKipB,EACZ78B,KAAKs7B,OAAOz6B,IAAI+S,EAAG9V,GAEnBA,IAEJ,OAAOA,CAAM,EA1nBbkC,KAAKsJ,MAAQ,CAAC,IAAIwzB,IAClB98B,KAAKsB,MAAM+5B,GACXr7B,KAAK+8B,IAAM,IAAIC,GAAIh9B,MACnBA,KAAKi9B,WAAW,kBAAmB,CAAE7iC,IAAK,KAAmB,IAAoB,GAGrF,KAAAkH,CAAO+5B,GAEH,GADAr7B,KAAK6U,QAAUqoB,KACXl9B,KAAK6U,QAAQsoB,eAxGC,MAyGd,MAAM,IAAI1jC,MAAM,oFAAqGuG,KAAK6U,QAAQsoB,iBACtIn9B,KAAKo9B,UAAY,EACjBp9B,KAAKq9B,WAAY,EACjBr9B,KAAKs9B,YAAa,EAClBt9B,KAAK28B,aAAc,EACnB38B,KAAKs7B,OAAOh6B,QAEZtB,KAAKu9B,kBAAoBv9B,KAAKu7B,2BAC9Bv7B,KAAKw9B,cAAgBtwB,OAAOuwB,OAAOz9B,KAAKw7B,wBACxCx7B,KAAK09B,qBAAuBxwB,OAAOuwB,OAAOz9B,KAAKy7B,+BAC/Cz7B,KAAK27B,qBAAuBzuB,OAAOuwB,OAAOz9B,KAAK07B,+BAE/C17B,KAAK87B,gBAAkB,EACvB97B,KAAK29B,sBAAwB,EAC7B39B,KAAK49B,kBAAoB1wB,OAAOuwB,OAAOz9B,KAAK67B,4BAE5C,IAAK,MAAMjoB,KAAK5T,KAAK49B,kBACP59B,KAAK49B,kBAAkBhqB,GAC/BnT,WAAQnH,EAGd0G,KAAK+7B,UAAUxiC,OAAS,EACxByG,KAAKg8B,qBAAuB,EAE5Bh8B,KAAK69B,cAAgB,EACrB79B,KAAK89B,QAAQx8B,QACbtB,KAAKk8B,SAAS3iC,OAAS,EACvByG,KAAKm8B,cAAc76B,QACnBtB,KAAK+9B,aAAe,EACpB/9B,KAAKw8B,iBAAmB,EACxBx8B,KAAKq8B,cAAc9iC,OAASyG,KAAK6U,QAAQmpB,aAAe3C,EAAoB,EAC5E,IAAK,IAAIp2B,EAAI,EAAGA,EAAIjF,KAAKq8B,cAAc9iC,OAAQ0L,IAC3CjF,KAAKq8B,cAAcp3B,GAAK,EAC5BjF,KAAKs8B,kBAAkB/iC,OAAS,EAChCyG,KAAKu8B,2BAA2BhjC,OAAS,EAEzCyG,KAAKi+B,2BAA6Bj+B,KAAK6U,QAAQqpB,oBAE/Cl+B,KAAKm+B,cAAe,EACpBn+B,KAAKo+B,iBAAkB,EAG3B,KAAAC,GACIr+B,KAAKo9B,YACDp9B,KAAKo9B,WAAap9B,KAAKsJ,MAAM/P,QAC7ByG,KAAKsJ,MAAMhH,KAAK,IAAIw6B,IACxB98B,KAAK89B,QAAQx8B,QAGjB,IAAAg9B,CAAMC,GACF,GAAIv+B,KAAKo9B,WAAa,EAClB,MAAM,IAAI3jC,MAAM,eAEpB,MAAMqkC,EAAU99B,KAAK89B,QAGrB,OAFA99B,KAAKo9B,YAEDmB,GACAv+B,KAAKw+B,WAAWV,EAAQ7jC,MACxB6jC,EAAQnd,OAAO3gB,KAAK89B,SACb,MAEAA,EAAQW,cAAa,GAAO9hB,MAAM,EAAGmhB,EAAQ7jC,MAG5D,iBAAAykC,CAAmB7lC,EAAc0B,GAC7B,MAAMokC,EAAM3+B,KAAK49B,kBAAkB/kC,GACnC,IAAK8lC,EACD,MAAM,IAAIllC,MAAM,mBAAqBZ,GACzC8lC,EAAIC,KAAOrkC,EAGf,eAAAskC,GACI,MAAMC,EAAqBzlC,GAAqB,YAAmB,gBAGnE,YAF8B,IAA1B,IACoKylC,aAAAC,YAAAC,KAAAzxB,IAAA,EAAA,kFAAAuxB,MACjKA,EAGX,cAAAG,GACI,MAAMC,EAAShnC,GAAeqT,YAC6F2zB,aAAAH,YAAAI,QAAA5xB,IAAA,EAAA,yDAAA2xB,KAE3H,MAAMJ,EAAe9+B,KAAK6+B,kBACpB/gC,EAAc,CAChBshC,EAAQp/B,KAAKq/B,eACbC,EAAG,CAAEC,EAAGL,IAERJ,IACAhhC,EAAO0hC,EAAI,CAAEC,EAAGX,IAEpB,MAAMY,EAAgB1/B,KAAK2/B,mBAE3B,IAAK,IAAI16B,EAAI,EAAGA,EAAIy6B,EAAcnmC,OAAQ0L,IAAK,CAC3C,MAAM26B,EAAMF,EAAcz6B,GAC1B,GAA0B,mBAAd26B,EAAQ,KAChB,MAAM,IAAInmC,MAAM,WAAWmmC,EAAI/mC,qCAEnC,MAAMgnC,EAAc7/B,KAAK8/B,kBAAkBF,GAC3C,IAAIG,EAAWjiC,EAAO8hC,EAAIh0B,QACrBm0B,IACDA,EAAWjiC,EAAO8hC,EAAIh0B,QAAU,CAAE,GAEtCm0B,EAASF,GAAeD,EAAIhB,KAGhC,OAAO9gC,EAMX,uBAAIkiC,GACA,MAAMC,EAAajgC,KAAK08B,oBAElB,EAEA,GAEN,OAAO18B,KAAKsJ,MAAM,GAAGrP,KAEjB,GACC+F,KAAK29B,sBAAwBsC,EAEL,EAAxBjgC,KAAK+7B,UAAUxiC,OAEhByG,KAAKg8B,qBAGb,WAAI8B,GACA,OAAO99B,KAAKsJ,MAAMtJ,KAAKo9B,UAAY,GAGvC,QAAInjC,GACA,OAAO+F,KAAK89B,QAAQ7jC,KAGxB,QAAAimC,CAAU3lC,GACN,GAAKA,GAASA,IAAU,GAAOA,EAAQ,IACnC,MAAM,IAAId,MAAM,sBAAsBc,KAC1C,OAAOyF,KAAK89B,QAAQoC,SAAS3lC,GAGjC,UAAA4lC,CAAY5lC,EAAuB6lC,GAI/B,OAHApgC,KAAK89B,QAAQoC,cAC+I,EAAA3lC,GAAA,IAAAA,IAAA,IAAA6lC,GAAA7yB,IAAA,EAAA,yDAErJvN,KAAK89B,QAAQU,WAAWjkC,GAGnC,YAAA8lC,CAAc9lC,EAAyB+lC,GAInC,OAHAtgC,KAAK89B,QAAQoC,cAC+J,EAAA3lC,GAAA,IAAAA,IAAA,IAAA+lC,GAAA/yB,IAAA,EAAA,0DAErKvN,KAAK89B,QAAQoC,SAAS3lC,GAGjC,SAAAgmC,CAAWhmC,GACP,OAAOyF,KAAK89B,QAAQyC,UAAUhmC,GAGlC,SAAAimC,CAAWjmC,GACP,OAAOyF,KAAK89B,QAAQ0C,UAAUjmC,GAGlC,SAAAkmC,CAAWlmC,GACP,OAAOyF,KAAK89B,QAAQ2C,UAAUlmC,GAGlC,mBAAAmmC,CAAqBlyB,EAAcmyB,GAC/B,OAAO3gC,KAAK89B,QAAQ4C,oBAAoBlyB,EAAMmyB,GAGlD,UAAAnC,CAAYjkC,GACR,OAAOyF,KAAK89B,QAAQU,WAAgBjkC,GAGxC,SAAAqmC,CAAWrmC,GACP,OAAOyF,KAAK89B,QAAQ8C,UAAUrmC,GAGlC,YAAAsmC,CAAc5/B,EAAwB6/B,GAClC,OAAO9gC,KAAK89B,QAAQ+C,aAAa5/B,EAAe6/B,GAGpD,WAAAC,CAAan7B,GACT,OAAO5F,KAAK89B,QAAQiD,YAAYn7B,GAGpC,UAAAo7B,CAAYx7B,GACR,OAAOxF,KAAK89B,QAAQkD,WAAWx7B,GAGnC,GAAAsM,CAAKmvB,GACDjhC,KAAKkhC,SAASD,GACdjhC,KAAKkgC,SAAQ,IAGjB,SAAAiB,CAAW5mC,GACPyF,KAAKkgC,SAAQ,IACblgC,KAAK4gC,UAAermC,GAGxB,SAAA6mC,CAAWngB,GACP,IAAI7c,EAAMpE,KAAK6U,QAAQmpB,aAAeh+B,KAAKq8B,cAAcnjC,QAAa+nB,IAAa,EAE/EjhB,KAAK6U,QAAQmpB,cACZ55B,EAAM,GAAOpE,KAAKw8B,iBAAmBx8B,KAAKq8B,cAAc9iC,SAEzD6K,EAAMpE,KAAKw8B,mBACXx8B,KAAKq8B,cAAcj4B,GAAY6c,GAG/B7c,GAAO,GACPpE,KAAKkgC,SAAQ,IACblgC,KAAK4gC,UAAUx8B,IAGfpE,KAAKmhC,UAAUlgB,GAIvB,QAAAigB,CAAU3mC,GACNyF,KAAKkgC,SAAQ,IACblgC,KAAK4gC,UAAermC,EAAayF,KAAKqhC,MAG1C,SAAAC,CAAW/mC,GACPyF,KAAKkgC,SAAQ,IACblgC,KAAK4gC,UAAUrmC,GAGnB,UAAAgnC,CAAYhnC,GACR,GAAc,IAAVA,EAOAyF,KAAKwhC,MAAM,iBACR,IAAuB,iBAAX,EAgBf,MAAM,IAAI/nC,MAAM,mDAhBoB,CACmD,KAAAc,EAAAymB,YAAAzT,IAAA,EAAA,kDACvF,IAAIk0B,GAAS,EACb,IAAK,IAAIx8B,EAAI,EAAGA,EAAI,GAAIA,IACH,IAAb1K,EAAM0K,KACNw8B,GAAS,GAGbA,EAEAzhC,KAAKwhC,MAAM,cAEXxhC,KAAKmgC,WAAU,IACfngC,KAAK+gC,YAAYxmC,MAO7B,UAAA0iC,CACIpkC,EAAc6oC,EAA6C5oC,EAC3D6oC,GAEA,GAAI3hC,KAAKw9B,cAAc3kC,GACnB,MAAM,IAAIY,MAAM,iBAAiBZ,qBACrC,GAAI8oC,GAAc3hC,KAAKu9B,kBAAoBv9B,KAAKu7B,2BAC5C,MAAM,IAAI9hC,MAAM,2EAEpB,IAAImoC,EAAQ,GACZ,IAAK,MAAMhuB,KAAK8tB,EACZE,GAASF,EAAW9tB,GAAK,IAC7BguB,GAAS9oC,EAET,IAAI2H,EAAQT,KAAK09B,qBAAqBkE,GAEf,iBAAX,IACRnhC,EAAQT,KAAKu9B,oBAEToE,GACA3hC,KAAKu7B,6BACLv7B,KAAKy7B,8BAA8BmG,GAASnhC,EAC5CT,KAAK07B,8BAA8Bj7B,GAAS,CACxCihC,EACAx0B,OAAOlD,OAAO03B,GAAYnoC,OAC1BT,KAGJkH,KAAK09B,qBAAqBkE,GAASnhC,EACnCT,KAAK27B,qBAAqBl7B,GAAS,CAC/BihC,EACAx0B,OAAOlD,OAAO03B,GAAYnoC,OAC1BT,KAKZ,MAAM+oC,EAAoB,CACtBphC,EAAOihC,EAAY5oC,EACnB,IAAIiY,KAAKC,UAAU0wB,UAAmB5oC,IAAc6oC,GAOxD,OALIA,EACA3hC,KAAKw7B,uBAAuB3iC,GAAQgpC,EAEpC7hC,KAAKw9B,cAAc3kC,GAAQgpC,EAExBphC,EAGX,mBAAAqhC,GACI9hC,KAAK+hC,aAAa,GAClB/hC,KAAKw+B,WAAWx+B,KAAKu9B,mBAKrB,IAAK,IAAIt4B,EAAI,EAAGA,EAAIjF,KAAKu9B,kBAAmBt4B,IAAK,CAC7C,MAAMy8B,EAAa1hC,KAAK27B,qBAAqB12B,GAAG,GAC5C+8B,EAAiBhiC,KAAK27B,qBAAqB12B,GAAG,GAC9CnM,EAAakH,KAAK27B,qBAAqB12B,GAAG,GAC9CjF,KAAKkgC,SAAS,IAEdlgC,KAAKw+B,WAAWwD,GAChB,IAAK,MAAMpuB,KAAK8tB,EACZ1hC,KAAKkgC,SAASwB,EAAW9tB,IAEM,KAA/B9a,GACAkH,KAAKw+B,WAAW,GAChBx+B,KAAKkgC,SAASpnC,IAEdkH,KAAKw+B,WAAW,GAExBx+B,KAAKiiC,aAGT,wBAAAC,GACI,MAAMC,EAAe,CAAE,EACvB,IAAK,MAAMvuB,KAAK5T,KAAK49B,kBAAmB,CACpC,MAAMwE,EAAIpiC,KAAK49B,kBAAkBhqB,GAEjCuuB,EADaniC,KAAK8/B,kBAAkBsC,IACpBA,EAAExD,KAEtB,OAAOuD,EAGX,iBAAArC,CAAmBF,GACf,IAAK5/B,KAAK08B,qBAA8C,iBAAfkD,EAAS,MAC9C,OAAOA,EAAI/mC,KAEf,IAAIiF,EAASq9B,GAAoByE,EAAIn/B,OAGrC,MAFwB,iBAApB,IACA06B,GAAoByE,EAAIn/B,OAAU3C,EAAS8hC,EAAIn/B,MAAOgB,SA3c9C,KA4cL3D,EAGX,gBAAA6hC,GACI,MAAM7hC,EAAS,GACf,IAAK,MAAM8V,KAAK5T,KAAK49B,kBAAmB,CACpC,MAAMyE,EAAIriC,KAAK49B,kBAAkBhqB,GACR,iBAAbyuB,EAAO,OAEnBvkC,EAAOwE,KAAK+/B,GAIhB,OAFAvkC,EAAOwkC,MAAK,CAACC,EAAKC,IAAQD,EAAI9hC,MAAS+hC,EAAI/hC,QAEpC3C,EAGX,sBAAA2kC,CAAwBC,GACpB,MAAMhD,EAAgB1/B,KAAK2/B,mBAG3B,GAFA3/B,KAAK28B,aAAc,GAEU,IAAzB+F,EACA,MAAM,IAAIjpC,MAAM,uCAEpB,MAAMkpC,OAA0CrpC,IAA3B0G,KAAK6+B,kBAG1B7+B,KAAK+hC,aAAa,GAClB/hC,KAAKw+B,WACD,GACCmE,EAAe,EAAI,GACpBjD,EAAcnmC,OAASyG,KAAKq8B,cAAc9iC,SACf,IAAzBmpC,EAAkC,EAAI,IAI5C,IAAK,IAAIz9B,EAAI,EAAGA,EAAIy6B,EAAcnmC,OAAQ0L,IAAK,CAC3C,MAAM26B,EAAMF,EAAcz6B,GAE1BjF,KAAKghC,WAAWpB,EAAIh0B,QACpB5L,KAAKghC,WAAWhhC,KAAK8/B,kBAAkBF,IACvC5/B,KAAKkgC,SAAS,GACdlgC,KAAKkgC,SAASN,EAAIgD,WAGtB,IAAK,IAAI39B,EAAI,EAAGA,EAAIjF,KAAKq8B,cAAc9iC,OAAQ0L,IAC3CjF,KAAKghC,WAAW,KAChBhhC,KAAKghC,WAAW/7B,EAAExD,SA1fV,KA2fRzB,KAAKkgC,SAAS,GACdlgC,KAAKkgC,SAAyB,KAC9BlgC,KAAKkgC,SAAS,GAIlBlgC,KAAKghC,WAAW,KAChBhhC,KAAKghC,WAAW,KAUZhhC,KAAKkgC,SAAS,GACdlgC,KAAKkgC,SAAS,GAEdlgC,KAAKw+B,WAAW,GAGhBmE,IAEA3iC,KAAKghC,WAAW,KAChBhhC,KAAKghC,WAAW,KAEhBhhC,KAAKkgC,SAAS,GAEdlgC,KAAKkgC,SAAS,GAEdlgC,KAAKw+B,WAAWx+B,KAAK6iC,aAAa,sBAGT,IAAzBH,IACA1iC,KAAKghC,WAAW,KAChBhhC,KAAKghC,WAAW,KAEhBhhC,KAAKkgC,SAAS,GAEdlgC,KAAKkgC,SAAS,KAEdlgC,KAAKkgC,SAAS,GACdlgC,KAAKw+B,WAAW,IAIxB,sBAAAsE,CACIl3B,EAAgB/S,EAAckqC,EAC9BpB,EAAoB/C,GAEpB,GAAI5+B,KAAK28B,YACL,MAAM,IAAIljC,MAAM,oCACpB,GAAIkoC,GAAc3hC,KAAK29B,sBAAwB,EAC3C,MAAM,IAAIlkC,MAAM,gFACpB,MAAMsZ,EAAO/S,KAAKw9B,cAAcuF,GAChC,IAAKhwB,EACD,MAAM,IAAItZ,MAAM,0BAA4BspC,GAChD,GAAIpB,IAAc5uB,EAAK,GACnB,MAAM,IAAItZ,MAAM,0DACpB,MAAMmpC,EAAY7vB,EAAK,GACjBiwB,EAAQrB,EAAY3hC,KAAK67B,2BAA6B77B,KAAK49B,kBAGjE,GAFsB,iBAAlB,IACAgB,EAAOqE,KAAuBriC,IAAIg+B,IACf,mBAAV,QAA4C,IAAV,EAC3C,MAAM,IAAInlC,MAAM,sCAAsCZ,+DAQ1D,OAPemqC,EAAMnqC,GAAQ,CACzB4H,WAAOnH,EACPspC,YACAh3B,SACA/S,OACA+lC,QAKR,gBAAAsE,CAAkBrqC,GACd,MAAM+lC,EAAO5+B,KAAK49B,kBAAkB/kC,GACpC,IAAK+lC,EACD,MAAM,IAAInlC,MAAM,8BAAgCZ,GACxB,iBAAhB+lC,EAAU,QAClBA,EAAKn+B,MAAQT,KAAK29B,yBAG1B,YAAAkF,CAAchqC,GACV,MAAMka,EAAO/S,KAAKw9B,cAAc3kC,GAChC,IAAKka,EACD,MAAM,IAAItZ,MAAM,iBAAmBZ,GACvC,OAAOka,EAAK,GAGhB,cAAAowB,CACItuB,EAKGuuB,GAEH,MAAMC,EAAoB,CACtB5iC,MAAOT,KAAK+7B,UAAUxiC,OACtBV,KAAMgc,EAAQhc,KACdyqC,SAAUzuB,EAAQ9B,KAClB6vB,UAAW5iC,KAAK6iC,aAAahuB,EAAQ9B,MACrCwwB,OAAQ1uB,EAAQ0uB,OAChBjI,OAAQzmB,EAAQymB,OAChB8H,YACAlnC,MAAO,KACPsnC,KAAM,MAKV,OAHAxjC,KAAK+7B,UAAUz5B,KAAK+gC,GAChBA,EAAIE,SACJvjC,KAAKg8B,sBAAwBqH,EAAIxqC,KAAKU,OAAS,GAC5C8pC,EAGX,uBAAAI,CAAyBf,GACrB,IAAIgB,EAAc,EAClB,IAAK,IAAIz+B,EAAI,EAAGA,EAAIjF,KAAK+7B,UAAUxiC,OAAQ0L,IAAK,CAC5C,MAAM25B,EAAO5+B,KAAK+7B,UAAU92B,GACxB25B,EAAK2E,QACLG,IAEJ1jC,KAAK2jC,cAAc/E,EAAK0E,SAAU1E,EAAKtD,QACvC,IACIsD,EAAK4E,KAAO5E,EAAKwE,YACX,QAKN,IACSxE,EAAK4E,OACN5E,EAAK4E,KAAOxjC,KAAK4jC,aAAY,IACnC,MAAApS,MAOVxxB,KAAKyiC,uBAAuBC,GAG5B1iC,KAAK+hC,aAAa,GAClB/hC,KAAKw+B,WAAWx+B,KAAK+7B,UAAUxiC,QAC/B,IAAK,IAAI0L,EAAI,EAAGA,EAAIjF,KAAK+7B,UAAUxiC,OAAQ0L,IACvCjF,KAAKw+B,WAAWx+B,KAAK+7B,UAAU92B,GAAG29B,WAGtC5iC,KAAK+hC,aAAa,GAClB/hC,KAAKw+B,WAAWkF,GAChB,IAAK,IAAIz+B,EAAI,EAAGA,EAAIjF,KAAK+7B,UAAUxiC,OAAQ0L,IAAK,CAC5C,MAAM25B,EAAO5+B,KAAK+7B,UAAU92B,GACvB25B,EAAK2E,SAIVvjC,KAAKghC,WAAWpC,EAAK/lC,MACrBmH,KAAKkgC,SAAS,GACdlgC,KAAKw+B,WAAWx+B,KAAK29B,sBAAwB14B,IAIjDjF,KAAK+hC,aAAa,IAClB/hC,KAAKw+B,WAAWx+B,KAAK+7B,UAAUxiC,QAC/B,IAAK,IAAI0L,EAAI,EAAGA,EAAIjF,KAAK+7B,UAAUxiC,OAAQ0L,IAAK,CAC5C,MAAM25B,EAAO5+B,KAAK+7B,UAAU92B,GACkD25B,EAAA,MAAArxB,IAAA,EAAA,qBAAAqxB,EAAA/lC,uBAC9EmH,KAAKw+B,WAAWI,EAAK4E,KAAKjqC,QAC1ByG,KAAK+gC,YAAYnC,EAAK4E,MAE1BxjC,KAAKiiC,aAGT,aAAA4B,GACI,MAAM,IAAIpqC,MAAM,6BAYpB,UAAAqqC,CAAYjrC,GACR,MAAM+lC,EAAO5+B,KAAK49B,kBAAkB/kC,GACpC,IAAK+lC,EACD,MAAM,IAAInlC,MAAM,8BAAgCZ,GACpD,GAA4B,iBAAhB+lC,EAAU,MAAgB,CAClC,GAAI5+B,KAAK28B,YACL,MAAM,IAAIljC,MAAM,wEAA0EZ,GAC9F+lC,EAAKn+B,MAAQT,KAAK29B,wBAEtB39B,KAAKkgC,SAAQ,IACblgC,KAAKw+B,WAAWI,EAAKn+B,OAGzB,YAAAshC,CAAchvB,GACN/S,KAAKq9B,WACLr9B,KAAKs+B,MAAK,GACdt+B,KAAKkgC,SAASntB,GACd/S,KAAKq+B,QACLr+B,KAAKq9B,WAAY,EAGrB,UAAA4E,GACI,IAAKjiC,KAAKq9B,UACN,MAAM,IAAI5jC,MAAM,kBAChBuG,KAAKs9B,YACLt9B,KAAK4jC,aAAY,GACrB5jC,KAAKs+B,MAAK,GACVt+B,KAAKq9B,WAAY,EAarB,mBAAA0G,CACIC,EAAa1I,EACb+F,EAAc4C,GAEdD,EAAM,KAAoB,EAC1BA,EAAM,KAAoB,EAC1BA,EAAM,KAAoB,EAC1BA,EAAM,KAAoB,EAC1BA,EAAM,KAAqB,EAE3B,IAAK,MAAMpwB,KAAK0nB,EAAQ,CACpB,MAAM4I,EAAK5I,EAAO1nB,GACdowB,EAAOE,IAAO,GACdD,IACJD,EAAOE,KAGX,MACIC,EAASH,EAAM,KACfI,EAASD,EAASH,EAAuB,KACzCK,EAASD,EAASJ,EAAM,KACxBM,EAAUD,EAASL,OAEvBA,EAAM,KAAoB,EAC1BA,EAAM,KAAoB,EAC1BA,EAAM,KAAoB,EAC1BA,EAAM,KAAoB,EAC1BA,EAAM,KAAqB,EAE3B,IAAK,MAAMpwB,KAAK0nB,EAAQ,CACpB,MAAM4I,EAAK5I,EAAO1nB,GAClB,IAAa1Y,EAATkJ,EAAM,EACV,OAAQ8/B,GACJ,KAAA,IACIhpC,EAjBG,EAkBH,MACJ,KAAA,IACIA,EAASipC,EACT,MACJ,KAAA,IACIjpC,EAASkpC,EACT,MACJ,KAAA,IACIlpC,EAASmpC,EACT,MACJ,KAAA,IACInpC,EAASopC,EACT,MACJ,QACI,MAAM,IAAI7qC,MAAM,0BAA0ByqC,KAElD9/B,EAAO4/B,EAAOE,KAAShpC,EAASmmC,EAChCrhC,KAAKs7B,OAAOz6B,IAAI+S,EAAGxP,GAIvB,OAAO6/B,EAGX,aAAAN,CACI5wB,EACAuoB,GAEA,GAAIt7B,KAAKs9B,WACL,MAAM,IAAI7jC,MAAM,uBACpBuG,KAAKq+B,QAEL,MAAMt/B,EAAYiB,KAAKw9B,cAAczqB,GACrC/S,KAAKs7B,OAAOh6B,QACZtB,KAAKm8B,cAAc76B,QACnB,IAAI0iC,EAAc,CAAE,EACpB,MAAMO,EAAK,CAAA,IAAA,IAAA,IAAA,IAAA,KAMX,IAAIN,EAAkB,EAGtB,MAAMO,EAAiBxkC,KAAK48B,wBAAwB79B,EAAU,IAC1Du8B,EAEA2I,EAAkBjkC,KAAK+jC,oBAAoBC,EAAQ1I,EAAQkJ,EAAgBP,GAG3ED,EAAS,CAAE,EAGfhkC,KAAKw+B,WAAWyF,GAChB,IAAK,IAAIh/B,EAAI,EAAGA,EAAIs/B,EAAGhrC,OAAQ0L,IAAK,CAChC,MAAM2O,EAAI2wB,EAAGt/B,GACPm6B,EAAI4E,EAAOpwB,GACZwrB,IAGLp/B,KAAKw+B,WAAWY,GAChBp/B,KAAKkgC,SAActsB,IAGvB5T,KAAKs9B,YAAa,EAGtB,WAAAsG,CAAarF,GACT,IAAKv+B,KAAKs9B,WACN,MAAM,IAAI7jC,MAAM,mBACpB,GAAIuG,KAAK+9B,aAAe,EACpB,MAAM,IAAItkC,MAAM,GAAGuG,KAAK+9B,qDAC5B,MAAMjgC,EAASkC,KAAKs+B,KAAKC,GAEzB,OADAv+B,KAAKs9B,YAAa,EACXx/B,EAGX,KAAA8W,CAAO7B,EAAoB6nB,GACvB,MAAM98B,EAASkC,KAAKkgC,SAAStF,GAA0B,GAMvD,OALI7nB,EACA/S,KAAKkgC,SAASntB,GAEd/S,KAAKkgC,SAAQ,IACjBlgC,KAAK+9B,eACEjgC,EAGX,QAAA2mC,GACI,GAAIzkC,KAAK+9B,cAAgB,EACrB,MAAM,IAAItkC,MAAM,oBACpBuG,KAAK+9B,eACL/9B,KAAKkgC,SAAQ,IAGjB,GAAAj3B,CAAKpQ,EAAuB+hC,GACxB,MAAMn6B,EAA0B,iBAAV,EACfT,KAAKs7B,OAAO7M,IAAI51B,GAAQmH,KAAKs7B,OAAO16B,IAAI/H,QAASS,EAClDT,EACN,GAAuB,iBAAnB,EACA,MAAM,IAAIY,MAAM,kBAAoBZ,GACpC+hC,GACA56B,KAAKkgC,SAAStF,GAClB56B,KAAKw+B,WAAW/9B,GAGpB,KAAA+gC,CAAO3oC,EAAuB+hC,GAC1B,MAAMn6B,EAA0B,iBAAV,EACfT,KAAKs7B,OAAO7M,IAAI51B,GAAQmH,KAAKs7B,OAAO16B,IAAI/H,QAASS,EAClDT,EAAOmH,KAAK69B,cAClB,GAAuB,iBAAnB,EACA,MAAM,IAAIpkC,MAAM,kBAAoBZ,GACpC+hC,EACA56B,KAAKkgC,SAAStF,GAEd56B,KAAKkgC,SAAQ,IACjBlgC,KAAKw+B,WAAW/9B,GAGpB,YAAAikC,CAAcxpC,EAAgBypC,GAC1B3kC,KAAKw+B,WAAWmG,GAChB3kC,KAAKw+B,WAAWtjC,GAMpB,GAAA0pC,CAAKC,EAAuB3pC,GACF,iBAAlB,EACA8E,KAAKwhC,MAAMqD,GAEX7kC,KAAKmhC,UAAU0D,GAEnB7kC,KAAKmhC,UAAUjmC,GAEf8E,KAAKkgC,SAAQ,KAGjB,YAAAzB,CAAcqG,EAAwBC,GAClC,IAAgC,IAA3BA,GAAoC/kC,KAAKo9B,UAAY,EACtD,MAAM,IAAI3jC,MAAM,qCACpB,OAAOuG,KAAKsJ,MAAM,GAAGm1B,aAAaqG,GAGtC,YAAAzF,GACI,MAAMvhC,EAAoC,CAAE,EAC5C,IAAK,IAAImH,EAAI,EAAGA,EAAIjF,KAAKq8B,cAAc9iC,OAAQ0L,IAC3CnH,EAAOmH,EAAExD,SAt5BD,KAs5B4BzB,KAAKq8B,cAAcp3B,GAC3D,OAAOnH,SAIFg/B,GAOT,WAAAh9B,GAFAE,KAAAglC,QAAU,IAAIphC,WAAW,MAGrB5D,KAAKL,SAh6Ba,MAi6BlBK,KAAK2B,OAAc3H,EAAOgG,KAAKL,UACqEK,KAAA,QAAAuN,IAAA,EAAA,oDACpGxS,IAAkBC,KAAK,EAAGgF,KAAK2B,OAAQ3B,KAAK2B,OAAS3B,KAAKL,UAC1DK,KAAK/F,KAAO,EACZ+F,KAAKsB,QACwB,mBAAzB,cACAtB,KAAKilC,QAAU,IAAIC,aAG3B,KAAA5jC,GACItB,KAAK/F,KAAO,EAGhB,QAAAimC,CAAU3lC,GACN,GAAIyF,KAAK/F,MAAQ+F,KAAKL,SAClB,MAAM,IAAIlG,MAAM,eAEpB,MAAMqE,EAASkC,KAAK/F,KAEpB,OADAc,IAAkBiF,KAAK2B,OAAU3B,KAAK/F,QAAWM,EAC1CuD,EAGX,SAAAyiC,CAAWhmC,GACP,MAAMuD,EAASkC,KAAK/F,KAGpB,OAFAmC,EAAO+oC,mCAAwCnlC,KAAK2B,OAAS3B,KAAK/F,KAAMM,KACxEyF,KAAK/F,MAAQ,EACN6D,EAGX,SAAAsnC,CAAW7qC,GACP,MAAMuD,EAASkC,KAAK/F,KAGpB,OAFAmC,EAAO+oC,mCAAwCnlC,KAAK2B,OAAS3B,KAAK/F,KAAMM,KACxEyF,KAAK/F,MAAQ,EACN6D,EAGX,SAAA0iC,CAAWjmC,GACP,MAAMuD,EAASkC,KAAK/F,KAGpB,OAFAmC,EAAO+oC,mCAAwCnlC,KAAK2B,OAAS3B,KAAK/F,KAAMM,KACxEyF,KAAK/F,MAAQ,EACN6D,EAGX,SAAA2iC,CAAWlmC,GACP,MAAMuD,EAASkC,KAAK/F,KAGpB,OAFAmC,EAAO+oC,mCAAwCnlC,KAAK2B,OAAS3B,KAAK/F,KAAMM,KACxEyF,KAAK/F,MAAQ,EACN6D,EAGX,mBAAA4iC,CAAqBlyB,EAAcmyB,GAC/B,GAAI3gC,KAAK/F,KAAO,GAAK+F,KAAKL,SACtB,MAAM,IAAIlG,MAAM,eAEpB,MAAM4rC,EAAejpC,EAAOkpC,uCAA6CtlC,KAAK2B,OAAS3B,KAAK/F,KAAOuU,EAAMmyB,GACzG,GAAI0E,EAAe,EACf,MAAM,IAAI5rC,MAAM,oBAAoB+U,kCAAqCmyB,KAE7E,OADA3gC,KAAK/F,MAAQorC,EACNA,EAGX,UAAA7G,CAAYjkC,GAGR,GAF8F,iBAAA,GAAAgT,IAAA,EAAA,sCAAAhT,KAC1BA,GAAA,GAAAgT,IAAA,EAAA,4CAChEhT,EAAQ,IAAM,CACd,GAAIyF,KAAK/F,KAAO,GAAK+F,KAAKL,SACtB,MAAM,IAAIlG,MAAM,eAGpB,OADAuG,KAAKkgC,SAAS3lC,GACP,EAGX,GAAIyF,KAAK/F,KAAO,GAAK+F,KAAKL,SACtB,MAAM,IAAIlG,MAAM,eAEpB,MAAM4rC,EAAejpC,EAAOmpC,yBAA+BvlC,KAAK2B,OAAS3B,KAAK/F,KAAOM,EAAO,GAC5F,GAAI8qC,EAAe,EACf,MAAM,IAAI5rC,MAAM,2BAA2Bc,sBAE/C,OADAyF,KAAK/F,MAAQorC,EACNA,EAGX,SAAAzE,CAAWrmC,GAEP,GAD6F,iBAAA,GAAAgT,IAAA,EAAA,qCAAAhT,KACzFyF,KAAK/F,KAAO,GAAK+F,KAAKL,SACtB,MAAM,IAAIlG,MAAM,eAEpB,MAAM4rC,EAAejpC,EAAOmpC,yBAA+BvlC,KAAK2B,OAAS3B,KAAK/F,KAAOM,EAAO,GAC5F,GAAI8qC,EAAe,EACf,MAAM,IAAI5rC,MAAM,2BAA2Bc,oBAE/C,OADAyF,KAAK/F,MAAQorC,EACNA,EAGX,YAAAxE,CAAc5/B,EAAwB6/B,GAClC,GAAI9gC,KAAK/F,KAAO,GAAK+F,KAAKL,SACtB,MAAM,IAAIlG,MAAM,eAEpB,MAAM4rC,EAAejpC,EAAOopC,6BAAmCxlC,KAAK2B,OAAS3B,KAAK/F,KAAOgH,EAAe6/B,EAAS,EAAI,GACrH,GAAIuE,EAAe,EACf,MAAM,IAAI5rC,MAAM,iCAEpB,OADAuG,KAAK/F,MAAQorC,EACNA,EAGX,MAAA1kB,CAAQ1e,EAA0B2L,GAI9B,GAHuB,iBAAnB,IACAA,EAAQ5N,KAAK/F,MAEZgI,EAAYhI,KAAO2T,GAAU3L,EAAYtC,SAC1C,MAAM,IAAIlG,MAAM,2BAEpBsB,IAAkB0qC,WAAWxjC,EAAYN,OAASM,EAAYhI,KAAM+F,KAAK2B,OAAQ3B,KAAK2B,OAASiM,GAC/F3L,EAAYhI,MAAQ2T,EAGxB,WAAAmzB,CAAan7B,EAAmBgI,GAC5B,MAAM9P,EAASkC,KAAK/F,KACdiK,EAASnJ,IACT2qC,EAAkC,mBAClC9/B,EAAMrM,OACNqU,EAEN,GAAK5N,KAAK/F,KAAOyrC,GAAgB1lC,KAAKL,SAClC,MAAM,IAAIlG,MAAM,eAcpB,OAZImM,EAAMjE,SAAWuC,EAAOvC,QACxBuC,EAAOuhC,WAAWzlC,KAAK2B,OAAS7D,EAAQ8H,EAAM/K,WAAY+K,EAAM/K,WAAa6qC,GAC7E1lC,KAAK/F,MAAQyrC,IAEU,iBAAnB,IACA9/B,EAAQ,IAAIhC,WAAWgC,EAAMjE,OAAQiE,EAAM/K,WAAY+S,IAGhD5N,KAAKy+B,cAAa,GAC1B59B,IAAI+E,EAAO5F,KAAK/F,MACnB+F,KAAK/F,MAAQ2L,EAAMrM,QAEhBuE,EAGX,UAAAkjC,CAAYx7B,GACR,IAAIoI,EAAQpI,EAAKjM,OAGbosC,EAA6B,IAAhBngC,EAAKjM,OAAeiM,EAAKE,WAAW,IAAO,EAK5D,GAJIigC,EAAa,MACbA,GAAe,GAGf/3B,GAAU+3B,EAAa,EACvB,GAAI3lC,KAAKilC,QAMLr3B,EADa5N,KAAKilC,QAAQW,WAAWpgC,EAAMxF,KAAKglC,SACnCa,SAAW,OAExB,IAAK,IAAI5gC,EAAI,EAAGA,EAAI2I,EAAO3I,IAAK,CAC5B,MAAM6gC,EAAKtgC,EAAKE,WAAWT,GAC3B,GAAI6gC,EAAK,IACL,MAAM,IAAIrsC,MAAM,uDAEhBuG,KAAKglC,QAAQ//B,GAAK6gC,EAKlC9lC,KAAKw+B,WAAW5wB,GACZ+3B,GAAc,EACd3lC,KAAKkgC,SAASyF,GACT/3B,EAAQ,GACb5N,KAAK+gC,YAAY/gC,KAAKglC,QAASp3B,GAGvC,YAAA6wB,CAAcqG,GACV,OAAO,IAAIlhC,WAAW7I,IAAkB4G,OAAQ3B,KAAK2B,OAAQmjC,EAAe9kC,KAAKL,SAAWK,KAAK/F,OAyCzG,MAAM+iC,GAsBF,WAAAl9B,CAAaimC,GAnBb/lC,KAAQgmC,SAAsB,GAC9BhmC,KAAiBimC,kBAAuB,KASxCjmC,KAAckmC,eAAG,EACjBlmC,KAAammC,cAAG,EAEhBnmC,KAAUomC,WAAyB,GACnCpmC,KAAmBqmC,oBAAyB,GAC5CrmC,KAAAsmC,cAAgB,IAAI1jC,IACpB5C,KAAAumC,0BAA4B,IAAInK,IAChCp8B,KAAKwmC,MAAG,EAGJxmC,KAAK+lC,QAAUA,EAGnB,UAAAU,CAAYC,EAA4BT,EAAuCO,GAC3ExmC,KAAKgmC,SAASzsC,OAAS,EACvByG,KAAKomC,WAAW7sC,OAAS,EACzByG,KAAK0mC,YAAcA,EACnB1mC,KAAKimC,kBAAoBA,EACzBjmC,KAAKqhC,KAAOrhC,KAAK+lC,QAAQ1E,KACzBrhC,KAAKihC,GAAKjhC,KAAK2mC,mBAAqB3mC,KAAK4mC,cAAgB5mC,KAAK+lC,QAAQ1E,KACtErhC,KAAKkmC,eAAiB,EACtBlmC,KAAKmmC,cAAgB,GACrBnmC,KAAKsmC,cAAchlC,QACnBtB,KAAKumC,0BAA0BjlC,QAC/BtB,KAAKwmC,MAAQA,EACbxmC,KAAKqmC,oBAAoB9sC,OAAS,EAItC,KAAAstC,CAAO5F,GACHjhC,KAAK8mC,QAAU7F,EAEf,MAAM8F,EAAe3qC,EAAO0+B,mCAY5B,OAXA96B,KAAK4mC,cAAgB3F,EAA0B,EAAf8F,EAChC/mC,KAAKgnC,aACyD,IAAAhnC,KAAAgmC,SAAAzsC,QAAAgU,IAAA,EAAA,sBACC,SAAAvN,KAAAgmC,SAAA,GAAAjzB,MAAAxF,IAAA,EAAA,iBAC/DvN,KAAKinC,UAAqBjnC,KAAKgmC,SAAS,GACxChmC,KAAKgmC,SAASzsC,OAAS,EACvByG,KAAKmmC,eAAiB,EAClBnmC,KAAKimC,oBACLjmC,KAAKmmC,eAAiB,GACtBnmC,KAAKmmC,eAAiBnmC,KAAKimC,kBAAkB1sC,QAE1CyG,KAAK4mC,cAGhB,UAAAI,GACQhnC,KAAK+lC,QAAQjI,QAAQ7jC,OAAS+F,KAAKkmC,iBAGvClmC,KAAKgmC,SAAS1jC,KAAK,CACfyQ,KAAM,OACNkuB,GAAIjhC,KAAK2mC,mBACTx/B,MAAOnH,KAAKkmC,eACZ3sC,OAAQyG,KAAK+lC,QAAQjI,QAAQ7jC,KAAO+F,KAAKkmC,iBAE7ClmC,KAAK2mC,mBAAqB3mC,KAAKihC,GAC/BjhC,KAAKkmC,eAAiBlmC,KAAK+lC,QAAQjI,QAAQ7jC,KAE3C+F,KAAKmmC,eAAiB,GAG1B,gBAAAe,CAAkBjG,EAAmBkG,GACjCnnC,KAAKgnC,aACLhnC,KAAKgmC,SAAS1jC,KAAK,CACfyQ,KAAM,sBACNkuB,KACAkG,uBAEJnnC,KAAKmmC,eAAiB,EAG1B,MAAAiB,CAAQxmB,EAAuBymB,EAAqBC,GAC5CD,GACArnC,KAAKumC,0BAA0BgB,IAAI3mB,GAEvC5gB,KAAKgnC,aACLhnC,KAAKgmC,SAAS1jC,KAAK,CACfyQ,KAAM,SACNy0B,KAAMxnC,KAAKihC,GACXrgB,SACAymB,aACAC,WAAYA,IAIhBtnC,KAAKmmC,eAAiB,EAElBkB,IAGArnC,KAAKmmC,eAAiB,GAe9B,SAAAsB,CAAWC,EAA0BC,GACjC3nC,KAAKgnC,aACLhnC,KAAKgmC,SAAS1jC,KAAK,CACfyQ,KAAM,aACNy0B,KAAMxnC,KAAKihC,GACXyG,UACAC,gBAGJ3nC,KAAKmmC,eAAiB,EAEtBnmC,KAAKmmC,eAAiBuB,EAAQnuC,OAE9ByG,KAAKmmC,eAAiB,GAG1B,QAAAyB,CAAUC,EAAkB9lC,GAExB,MAAM0C,EAAO1C,EAAOiC,SAAS6jC,EAAQ1gC,MAAO0gC,EAAQ1gC,MAAQ0gC,EAAQtuC,QACpEyG,KAAK+lC,QAAQhF,YAAYt8B,GAG7B,QAAAqjC,GAEI9nC,KAAKgnC,aAGL,MAAMjlC,EAAS/B,KAAK+lC,QAAQnC,aAAY,GAGxC5jC,KAAK+lC,QAAQ1H,QAEbr+B,KAAK+lC,QAAQ1E,KAAOrhC,KAAKqhC,KAGzBrhC,KAAK4nC,SAAS5nC,KAAKinC,UAAWllC,GAI1B/B,KAAKimC,mBAILjmC,KAAK+lC,QAAQnxB,YAMjB,IAAK,IAAI3P,EAAI,EAAGA,EAAIjF,KAAKgmC,SAASzsC,OAAQ0L,IAAK,CAC3C,MAAM4iC,EAAU7nC,KAAKgmC,SAAS/gC,GACT,wBAAjB4iC,EAAQ90B,MAEZ/S,KAAKomC,WAAW9jC,KAAKulC,EAAQ5G,IAGjCjhC,KAAKomC,WAAW9D,MAAK,CAACC,EAAKC,IAAaD,EAAWC,IACnD,IAAK,IAAIv9B,EAAI,EAAGA,EAAIjF,KAAKomC,WAAW7sC,OAAQ0L,IACxCjF,KAAK+lC,QAAQnxB,UAGjB,GAAI5U,KAAKimC,kBAAmB,CACxBjmC,KAAKqmC,oBAAoB9sC,OAAS,EAMlC,IAAK,IAAI0L,EAAI,EAAGA,EAAIjF,KAAKimC,kBAAkB1sC,OAAQ0L,IAAK,CACpD,MAAM/J,EAAsC,EAA5B8E,KAAKimC,kBAAkBhhC,GAAejF,KAAK0mC,YACxC1mC,KAAKomC,WAAWltC,QAAQgC,GAC1B,GAEZ8E,KAAKumC,0BAA0B9X,IAAIvzB,KAGxC8E,KAAKsmC,cAAczlC,IAAI3F,EAAQ8E,KAAKqmC,oBAAoB9sC,OAAS,GACjEyG,KAAKqmC,oBAAoB/jC,KAAKpH,IAGlC,GAAwC,IAApC8E,KAAKqmC,oBAAoB9sC,OACrByG,KAAKwmC,MAAQ,GACb1+B,GAAc,8DACf,GAAwC,IAApC9H,KAAKqmC,oBAAoB9sC,OAC5ByG,KAAKwmC,MAAQ,IACTxmC,KAAKqmC,oBAAoB,KAAOrmC,KAAK8mC,QACrCh/B,GAAc,iEAAuE9H,KAAK8mC,QAASrlC,SAAS,OAE5GqG,GAAc,iDAAuD9H,KAAKqmC,oBAAoB,GAAI5kC,SAAS,QAKnHzB,KAAK+lC,QAAQvE,MAAM,QACnBxhC,KAAK+lC,QAAQ7F,aACblgC,KAAK+lC,QAAQvH,WAAWx+B,KAAKomC,WAAWltC,QAAQ8G,KAAKqmC,oBAAoB,SACtE,CACCrmC,KAAKwmC,MAAQ,GACb1+B,GAAc,GAAG9H,KAAKqmC,oBAAoB9sC,+CAM9CyG,KAAK+lC,QAAQnxB,UACb5U,KAAK+lC,QAAQnxB,UAEb5U,KAAK+lC,QAAQvE,MAAM,QACnBxhC,KAAK+lC,QAAQ7F,aAKblgC,KAAK+lC,QAAQvH,WAAWx+B,KAAKqmC,oBAAoB9sC,OAAS,GAC1DyG,KAAK+lC,QAAQvH,WAAW,GACxB,IAAK,IAAIv5B,EAAI,EAAGA,EAAIjF,KAAKqmC,oBAAoB9sC,OAAQ0L,IAEjDjF,KAAK+lC,QAAQvH,WAAWx+B,KAAKomC,WAAWltC,QAAQ8G,KAAKqmC,oBAAoBphC,IAAM,GAEnFjF,KAAK+lC,QAAQvH,WAAW,GACxBx+B,KAAK+lC,QAAQtB,WACbzkC,KAAK+lC,QAAQ7F,YACblgC,KAAK+lC,QAAQtB,WAGbzkC,KAAKqmC,oBAAoB9sC,OAAS,GAGlCyG,KAAKomC,WAAW9jC,KApEe,GAwEnCtC,KAAKwmC,MAAQ,GACb1+B,GAAc,cAAc9H,KAAKomC,cAErC,IAAK,IAAInhC,EAAI,EAAGA,EAAIjF,KAAKgmC,SAASzsC,OAAQ0L,IAAK,CAC3C,MAAM4iC,EAAU7nC,KAAKgmC,SAAS/gC,GAC9B,OAAQ4iC,EAAQ90B,MACZ,IAAK,OAED/S,KAAK4nC,SAASC,EAAS9lC,GACvB,MAEJ,IAAK,sBAAuB,CAIxB,MAAMgmC,EAAe/nC,KAAKomC,WAAWltC,QAAQ2uC,EAAQ5G,IACoG,IAAA8G,GAAAx6B,IAAA,EAAA,YAAAs6B,EAAA5G,iDAAA8G,aAAA/nC,KAAAomC,WAAA,MACzJpmC,KAAK+lC,QAAQtB,WACbzkC,KAAKomC,WAAW4B,QAChB,MAEJ,IAAK,aAAc,CAEf,MAAM9sC,EAAS,EAGf8E,KAAK+lC,QAAQ7F,aACblgC,KAAK+lC,QAAQvH,WAAWqJ,EAAQH,QAAQnuC,QACxC,IAAK,MAAMqnB,KAAUinB,EAAQH,QAAS,CAClC,MAAMK,EAAe/nC,KAAKomC,WAAWltC,QAAQ0nB,GACzCmnB,GAAgB,GAChBE,GAAa,GAAgC,GAC7CjoC,KAAK+lC,QAAQvH,WAAWuJ,EAAe7sC,KAEvC+sC,GAAa,GAAoC,GAC7CjoC,KAAKwmC,MAAQ,GACb1+B,GAAc,iBAAiB8Y,8BAAmC5gB,KAAKomC,cAC3EpmC,KAAK+lC,QAAQvH,WAAW,IAGhC,MAAM0J,EAAmBloC,KAAKomC,WAAWltC,QAAQ2uC,EAAQF,aACrDO,GAAoB,GACpBD,GAAa,GAAgC,GAC7CjoC,KAAK+lC,QAAQvH,WAAW0J,EAAmBhtC,KAE3C+sC,GAAa,GAAoC,GAC7CjoC,KAAKwmC,MAAQ,GACb1+B,GAAc,sBAAsB+/B,EAAQF,wCAAwC3nC,KAAKomC,cAC7FpmC,KAAK+lC,QAAQvH,WAAW,IAE5Bx+B,KAAK+lC,QAAQ7F,YACb,MAEJ,IAAK,SAAU,CACX,MAAMiI,EAAeN,EAAQR,WA9HF,EA8H4BQ,EAAQjnB,OAC/D,IAEIwnB,EAFAL,EAAe/nC,KAAKomC,WAAWltC,QAAQivC,GACvCE,GAAuB,EAkB3B,GAbIR,EAAQR,aACJrnC,KAAKsmC,cAAc7X,IAAIoZ,EAAQjnB,SAC/BwnB,EAAOpoC,KAAKsmC,cAAc1lC,IAAIinC,EAAQjnB,QAClC5gB,KAAKwmC,MAAQ,GACb1+B,GAAc,oBAA0B+/B,EAAQL,KAAM/lC,SAAS,UAAgBomC,EAAQjnB,OAAQnf,SAAS,aAAa2mC,KACzHC,GAAuB,IAEnBroC,KAAKwmC,MAAQ,GACb1+B,GAAc,WAAiB+/B,EAAQL,KAAM/lC,SAAS,UAAgBomC,EAAQjnB,OAAQnf,SAAS,wDACnGsmC,GAAiB,IAIpBA,GAAgB,GAAMM,EAAsB,CAC7C,IAAIntC,EAAS,EACb,OAAQ2sC,EAAQP,YACZ,KAAA,EACqBtnC,KAAK+lC,QAAS8B,EAAQL,UAC1BluC,IAAT8uC,IACApoC,KAAK+lC,QAAQ5E,UAAUiH,GACvBpoC,KAAK+lC,QAAQvE,MAAM,YAEvBxhC,KAAK+lC,QAAQ7F,aACb,MACJ,KAAA,EAEIlgC,KAAK+lC,QAAQnxB,YACI5U,KAAK+lC,QAAS8B,EAAQL,UAC1BluC,IAAT8uC,IACApoC,KAAK+lC,QAAQ5E,UAAUiH,GACvBpoC,KAAK+lC,QAAQvE,MAAM,YAEvBxhC,KAAK+lC,QAAQ7F,aACbhlC,EAAS,EACT,MACJ,KAAA,OACiB5B,IAAT8uC,IACApoC,KAAK+lC,QAAQ5E,UAAUiH,GACvBpoC,KAAK+lC,QAAQvE,MAAM,YAEvBxhC,KAAK+lC,QAAQ7F,aACb,MACJ,KAAA,OACiB5mC,IAAT8uC,GACApoC,KAAK+lC,QAAQnxB,YACb5U,KAAK+lC,QAAQ5E,UAAUiH,GACvBpoC,KAAK+lC,QAAQvE,MAAM,WACnBtmC,EAAS,EACT8E,KAAK+lC,QAAQ7F,cAEblgC,KAAK+lC,QAAQ7F,aAEjB,MACJ,QACI,MAAM,IAAIzmC,MAAM,6BAGxBuG,KAAK+lC,QAAQvH,WAAWtjC,EAAS6sC,GAC7B7sC,GACA8E,KAAK+lC,QAAQtB,WACbzkC,KAAKwmC,MAAQ,GACb1+B,GAAc,WAAiB+/B,EAAQL,KAAM/lC,SAAS,UAAgBomC,EAAQjnB,OAAQnf,SAAS,oBAAoBvG,EAAS6sC,EAAe,kBAC5I,CACH,GAAI/nC,KAAKwmC,MAAQ,EAAG,CAChB,MAAMnF,EAAYrhC,KAAKqhC,KAClBwG,EAAQjnB,QAAUygB,GAAUwG,EAAQjnB,OAAS5gB,KAAKsoC,OACnDxgC,GAAc,WAAiB+/B,EAAQL,KAAM/lC,SAAS,UAAgBomC,EAAQjnB,OAAQnf,SAAS,iCAC1FzB,KAAKwmC,MAAQ,GAClB1+B,GAAc,WAAiB+/B,EAAQL,KAAM/lC,SAAS,UAAgBomC,EAAQjnB,OAAQnf,SAAS,kCAAkC4/B,EAAK5/B,SAAS,WAAiBzB,KAAKsoC,OAAQ7mC,SAAS,QAG9L,MAAM8mC,MAAiBV,EAAQP,YACR,IAAlBO,EAAQP,WACTiB,GACAvoC,KAAK+lC,QAAQnxB,YACjB4zB,GAAexoC,KAAK+lC,QAAS8B,EAAQjnB,OAAM,GACvC2nB,GACAvoC,KAAK+lC,QAAQtB,WAErB,MAEJ,QACI,MAAM,IAAIhrC,MAAM,gBAuB5B,OAlBIuG,KAAKimC,oBAGkGjmC,KAAAomC,WAAA7sC,QAAA,GAAAgU,IAAA,EAAA,8DACnGvN,KAAKomC,WAAW7sC,QAChByG,KAAKomC,WAAW4B,QACpBhoC,KAAK+lC,QAAQtB,YAGoH,IAAAzkC,KAAAomC,WAAA7sC,QAAAgU,IAAA,EAAA,kEAAAvN,KAAAomC,cAIrIpmC,KAAK+lC,QAAQ7E,SAASlhC,KAAKsoC,QAC3BtoC,KAAK+lC,QAAQ7F,aACblgC,KAAK+lC,QAAQ7F,aAEElgC,KAAK+lC,QAAQzH,MAAK,IAKzC,IAAImK,GAEG,MAAMC,GAAmD,CAC/D,EAEYC,GAAQn0B,WAAWC,aAAeD,WAAWC,YAAYC,IAChEF,WAAWC,YAAYC,IAAIk0B,KAAKp0B,WAAWC,aAC3CoD,KAAKnD,aAIKm0B,GAAuB9C,EAAsB9E,EAAmBrG,GAC5E,IAAIkO,EACJ,OAAQlO,GACJ,KAAA,IACIkO,EAAa,aACb,MACJ,KAAA,IACIA,EAAa,mBACb,MACJ,KAA+B,IAC/B,KAAA,IACIA,EAAa,aACb,MACJ,QACI,MAAM,IAAIrvC,MAAM,gCAAgCmhC,KAExDmL,EAAQvE,MAAM,SACduE,EAAQ5E,UAAUF,GAClB8E,EAAQjC,WAAWgF,EACvB,UAmBgBN,GAAgBzC,EAAsB9E,EAAmB53B,GACrE08B,EAAQ7E,SAASD,GACb8E,EAAQlxB,QAAQk0B,gBAChBhD,EAAQ5E,UAAU4E,EAAQiD,YAC1BjD,EAAQ5E,UAAU93B,GAClB08B,EAAQjC,WAAW,YAEvBiC,EAAQ7F,SAAQ,GACpB,CAGM,SAAU+I,GAAalD,EAAsB9E,EAAmBiI,EAAuB7/B,GAUzF08B,EAAQvE,MAAM,SACduE,EAAQnxB,MAAK,GAAA,GAEbmxB,EAAQvE,MAAM,SACduE,EAAQvE,MAAM,QACduE,EAAQ7F,SAAQ,IAChB6F,EAAQrB,aAAayE,OAAmD,GAEpED,GAAkBnD,EAAQlxB,QAAQu0B,uBAAyB,IAC3DrD,EAAQvE,MAAM,SACduE,EAAQ5E,UAAU+H,GAClBnD,EAAQ7F,SAAQ,IAChB6F,EAAQrB,aAAayE,OAAkD,IAG3EpD,EAAQtB,WAERsB,EAAQ7E,SAASD,GACb8E,EAAQlxB,QAAQk0B,gBAChBhD,EAAQ5E,UAAU4E,EAAQiD,YAC1BjD,EAAQ5E,UAAU93B,GAClB08B,EAAQjC,WAAW,YAEvBiC,EAAQ7F,SAAQ,GACpB,UAYgB+C,KAGZ,GAFKwF,KACDA,GAAYvwC,GAAesT,iCAC1Bi9B,GACD,MAAM,IAAIhvC,MAAM,qDACpB,OAAOgvC,EACX,CAEgB,SAAAY,GAAwBrG,EAAyBZ,GACA,GAAA70B,IAAA,EAAA,8CAE7D,MAAM9M,EAAQrE,EAAOktC,iCAAiCtG,GAQtD,OAPIviC,EAAQ,GAEQwiC,KACRpiC,IAAIJ,EAAO2hC,GAIhB3hC,CACX,CAEM,SAAU8oC,GAAwBxD,EAAsByD,EAAqBjvC,EAAeqT,EAAe67B,GAC7G,GAAI77B,GAAS,EAGT,OAFI67B,GACA1D,EAAQ7F,SAAQ,KACb,EAGX,GAAItyB,GAASotB,GACT,OAAO,EAMX,MAAM0O,EAAYD,EAAc,aAAe,UAC3CA,GACA1D,EAAQvE,MAAMkI,MAElB,IAAIxuC,EAASuuC,EAAc,EAAID,EAE/B,GAAIzD,EAAQlxB,QAAQ80B,WAAY,CAC5B,MAAMC,EAAa,GACnB,KAAOh8B,GAASg8B,GACZ7D,EAAQvE,MAAMkI,GACd3D,EAAQxE,WAAW,GACnBwE,EAAQ5F,WAAU,IAClB4F,EAAQrB,aAAaxpC,EAAQ,GAC7BA,GAAU0uC,EACVh8B,GAASg8B,EAKjB,KAAOh8B,GAAS,GACZm4B,EAAQvE,MAAMkI,GACd3D,EAAQzE,UAAU,GAClByE,EAAQ7F,SAAQ,IAChB6F,EAAQrB,aAAaxpC,EAAQ,GAC7BA,GAAU,EACV0S,GAAS,EAIb,KAAOA,GAAS,GAAG,CACfm4B,EAAQvE,MAAMkI,GACd3D,EAAQ5E,UAAU,GAClB,IAAI0I,EAAaj8B,EAAQ,EACzB,OAAQi8B,GACJ,KAAK,EAEDA,EAAa,EACb9D,EAAQ7F,SAAQ,IAChB,MACJ,KAAK,EACD6F,EAAQ7F,SAAQ,IAChB,MACJ,KAAK,EACL,KAAK,EAED2J,EAAa,EACb9D,EAAQ7F,SAAQ,IAGxB6F,EAAQrB,aAAaxpC,EAAQ,GAC7BA,GAAU2uC,EACVj8B,GAASi8B,EAGb,OAAO,CACX,UAEgBC,GAAoB/D,EAAsBxrC,EAAeqT,GAEjE27B,GAAuBxD,EAAS,EAAGxrC,EAAOqT,GAAO,KAGrDm4B,EAAQ5E,UAAU5mC,GAClBwrC,EAAQ5E,UAAUvzB,GAClBm4B,EAAQ7F,SAAQ,KAChB6F,EAAQ7F,SAAS,IACjB6F,EAAQ7F,SAAS,GACrB,CAEgB,SAAA6J,GACZhE,EAAsBiE,EAAyBC,EAC/Cr8B,EAAes8B,EAA2BR,EAAoBS,GAE9D,GAAIv8B,GAAS,EAKT,OAJIs8B,IACAnE,EAAQ7F,SAAQ,IAChB6F,EAAQ7F,SAAQ,MAEb,EAGX,GAAItyB,GAASqtB,GACT,OAAO,EAEPiP,GACAR,EAAYA,GAAa,aACzBS,EAAWA,GAAY,YAEvBpE,EAAQvE,MAAM2I,MACdpE,EAAQvE,MAAMkI,OACNA,GAAcS,IACtBT,EAAYS,EAAW,WAK3B,IAAIC,EAAaF,EAAmB,EAAIF,EACpCK,EAAYH,EAAmB,EAAID,EAEvC,GAAIlE,EAAQlxB,QAAQ80B,WAAY,CAC5B,MAAMC,EAAa,GACnB,KAAOh8B,GAASg8B,GACZ7D,EAAQvE,MAAMkI,GACd3D,EAAQvE,MAAM2I,GACdpE,EAAQ5F,WAAqC,GAAA,GAC7C4F,EAAQrB,aAAa2F,EAAW,GAChCtE,EAAQ5F,WAAU,IAClB4F,EAAQrB,aAAa0F,EAAY,GACjCA,GAAcR,EACdS,GAAaT,EACbh8B,GAASg8B,EAKjB,KAAOh8B,GAAS,GACZm4B,EAAQvE,MAAMkI,GACd3D,EAAQvE,MAAM2I,GACdpE,EAAQ7F,SAAQ,IAChB6F,EAAQrB,aAAa2F,EAAW,GAChCtE,EAAQ7F,SAAQ,IAChB6F,EAAQrB,aAAa0F,EAAY,GACjCA,GAAc,EACdC,GAAa,EACbz8B,GAAS,EAIb,KAAOA,GAAS,GAAG,CACf,IAAI08B,EAAoBC,EACpBV,EAAaj8B,EAAQ,EACzB,OAAQi8B,GACJ,KAAK,EAEDA,EAAa,EACbS,KACAC,KACA,MACJ,QACA,KAAK,EACDV,EAAa,EACbS,KACAC,KACA,MACJ,KAAK,EACL,KAAK,EAEDV,EAAa,EACbS,KACAC,KAKRxE,EAAQvE,MAAMkI,GACd3D,EAAQvE,MAAM2I,GACdpE,EAAQ7F,SAASoK,GACjBvE,EAAQrB,aAAa2F,EAAW,GAChCtE,EAAQ7F,SAASqK,GACjBxE,EAAQrB,aAAa0F,EAAY,GACjCC,GAAaR,EACbO,GAAcP,EACdj8B,GAASi8B,EAGb,OAAO,CACX,CAGgB,SAAAW,GAAyBzE,EAAsBn4B,GAC3D,OAAIm8B,GAAwBhE,EAAS,EAAG,EAAGn4B,GAAO,KAIlDm4B,EAAQ5E,UAAUvzB,GAElBm4B,EAAQ7F,SAAQ,KAChB6F,EAAQ7F,SAAS,IACjB6F,EAAQ7F,SAAS,GACjB6F,EAAQ7F,SAAS,KARN,CAUf,UAEgBuK,KACZ,MAAM3sC,EAASmqC,GAAsC,EAAA,GACjDnqC,GAAUi9B,KACVjzB,GAAc,+BAA+BhK,cAC7C4sC,GAAkB,CACdC,cAAc,EACdC,mBAAmB,EACnBC,eAAe,IAG3B,CAEA,MAAMC,GAA6C,CAAE,EAE/C,SAAU3B,GAAiB4B,GAC7B,MAAMC,EAASF,GAAcC,GAC7B,YAAezxC,IAAX0xC,EACOF,GAAcC,GAAU3uC,EAAO6uC,8BAAmCF,GAElEC,CACf,CAEM,SAAUE,GAAaryC,GACzB,MAAMiF,EAAezE,GAAqB,YAAER,GAC5C,GAAwB,mBAApB,EACA,MAAM,IAAIY,MAAM,aAAaZ,eACjC,OAAOiF,CACX,CAEA,MAAMqtC,GAAiD,CAAE,EAEnD,SAAUC,GAAqBxQ,GACjC,IAAI98B,EAASqtC,GAAiBvQ,GAG9B,MAFwB,iBAApB,IACA98B,EAASqtC,GAAiBvQ,GAAUx+B,EAAOivC,yCAA8CzQ,IACtF98B,CACX,CAEgB,SAAAwtC,GAAWzyC,EAAc8oB,GACrC,MAAO,CAAC9oB,EAAMA,EAAM8oB,EACxB,CASA,IAAI4pB,YAEYC,KAMZ,IAAKpvC,EAAOqvC,kCACR,OAAO,EAGX,IAAgC,IAA5BF,GACA,OAAO,EAMX,MAAMplC,EAAUxH,KAChB,IAAK,IAAIsG,EAAI,EAAGA,EAAI,EAAGA,IACnB,GAAmB,IAAfkB,EAAQlB,GAIR,OAHgC,IAA5BsmC,IACA/xC,GAAe,iFAAqF,EAAJyL,MAAUkB,EAAQlB,MACtHsmC,IAA0B,GACnB,EAKf,OADAA,IAA0B,GACnB,CACX,CAoDA,MAAMG,GAA4C,CAC9Cf,aAAgB,6BAChBC,kBAAqB,mCACrBC,cAAiB,+BACjBc,uBAA0B,8CAC1BC,iBAAoB,kCACpBjJ,aAAgB,8BAChBgH,WAAc,2BACdkC,cAAiB,8BACjBC,qBAAwB,qCACxBC,MAAS,mCACTC,YAAe,4BACfC,iBAAoB,gCACpBC,aAAgB,4BAChBnD,cAAiB,6BACjBoD,WAAc,0BACdnO,aAAgB,4BAChBE,oBAAuB,oCACvBkO,uBAA0B,wCAC1BC,eAAkB,+BAClBC,kBAAqB,kCACrBC,qBAAwB,sCACxBC,iBAAoB,sCACpBC,wBAA2B,8CAC3BrD,uBAA0B,6CAC1BsD,4BAA+B,mDAC/BC,gBAAmB,gCACnBC,gBAAmB,iCACnBC,sBAAyB,6CACzBC,oBAAuB,qCACvBC,0BAA6B,iDAC7BC,eAAkB,+BAClBC,UAAa,yBACbC,aAAgB,6BAChB/P,cAAiB,8BACjBgQ,cAAiB,+BAGrB,IAAIC,IAAmB,EACnBC,GAAuC,CAAE,EAGvC,SAAU3C,GAAc71B,GAC1B,IAAK,MAAMjB,KAAKiB,EAAS,CACrB,MAAM5M,EAAOyjC,GAAY93B,GACzB,IAAK3L,EAAM,CACPzO,GAAe,oCAAoCoa,KACnD,SAGJ,MAAMyuB,EAAUxtB,EAASjB,GACN,kBAAf,EACAxX,EAAOkxC,0BAA0BjL,EAAI,KAAO,SAAWp6B,GACnC,iBAAf,EACL7L,EAAOkxC,yBAAyB,KAAKrlC,KAAQo6B,KAE7C7oC,GAAe,mEAAoE,MAAO6oC,MAEtG,CAEM,SAAUkL,GAAYC,GACxB,OAAOpxC,EAAOqxC,wBAAwBD,EAC1C,CAEgB,SAAAvF,GAAeuF,EAAwBE,GACnD,OAAOtxC,EAAOuxC,2BAA2BH,EAASE,EACtD,UAGgBxQ,KACZ,MAAM0Q,EAAiBxxC,EAAOyxC,kCAK9B,OAJID,IAAmBR,KAO3B,WACIC,GAAmB,CAAE,EACrB,IAAK,MAAMz5B,KAAK83B,GAAa,CACzB,MAAMnxC,EAAQ6B,EAAO0xC,8BAA8BpC,GAAY93B,IAC3DrZ,IAAU2gC,GACJmS,GAAaz5B,GAAKrZ,EAExBuN,GAAc,sCAAsC4jC,GAAY93B,MAE5E,CAfQm6B,GACAX,GAAiBQ,GAEdP,EACX,CAaA,SAASW,GAA4Bj7B,EAAwBsuB,EAAcpnC,EAAcg0C,GACrF,MAAMxF,EAAYxF,KACZiL,EAAa7M,EAAM8M,EAAYD,EAAaj0C,EAAO,EAezD,OAdgHk0C,EAAA1F,EAAAlvC,QAAAgU,IAAA,EAAA,4BAAA4gC,QAAA1F,EAAAlvC,UAEhHkvC,EAAU5nC,IAAIqtC,EAAYD,GAW1B7xC,EAAOgyC,6BAA6Br7B,EAAMm7B,EAAYC,GAC/C9M,EAAOpnC,CAClB,CAIA,IAAIo0C,IAA+B,ECx+D5B,MAAMC,GAAqB,CAC9B,UACA,qBACA,YACA,uBACA,SACA,iBACA,oBACA,4BACA,gBACA,kBACA,mBACA,wBACA,eACA,WACA,SACA,OACA,QACA,cACA,sBACA,aACA,uBACA,cACA,eACA,YACA,QACA,kBACA,aACA,aACA,gBC2+BSC,GAA2B,CACpC,EAAG,CACC,mBACA,mBACA,mBACA,uBACA,sBACA,sBACA,wBACA,wBACA,wBACA,wBACA,sBACA,sBACA,sBACA,sBACA,iBACA,iBACA,iBACA,iBACA,UACA,UACA,UACA,UACA,WACA,WACA,WACA,WACA,WACA,WACA,SACA,SACA,YACA,YACA,UACA,UACA,aACA,aACA,mBACA,mBACA,SACA,aACA,YACA,YACA,YACA,YACA,aACA,YACA,YACA,YACA,YACA,wBACA,wBACA,wBACA,wBACA,QACA,QACA,QACA,QACA,QACA,QACA,oBACA,oBACA,oBACA,yBACA,yBACA,yBACA,2BACA,4BACA,2BACA,4BACA,4BACA,4BACA,4BACA,4BACA,4BACA,4BACA,4BACA,4BACA,4BACA,4BACA,4BACA,4BACA,mBACA,wBACA,wBACA,gCACA,gCACA,gCACA,gCACA,0BACA,0BACA,0BACA,0BACA,0BACA,2BAEJ,EAAG,CACC,cACA,cACA,cACA,cACA,cACA,cACA,cACA,cACA,mBACA,kBACA,wBACA,0BACA,yBACA,yBACA,oBACA,mBACA,mBACA,mBACA,mBACA,mBACA,qBACA,qBACA,qBACA,qBACA,sBACA,sBACA,sBACA,uBACA,uBACA,uBACA,uBACA,iBACA,uBACA,oBACA,oBACA,oBACA,iBACA,iBACA,iBACA,iBACA,iBACA,qBACA,qBACA,qBACA,qBACA,eACA,0BACA,kBACA,kBACA,kBACA,kBACA,kBACA,kBACA,kBACA,kBACA,kBACA,kBACA,kBACA,kBACA,YACA,QACA,QACA,QACA,QACA,QACA,QACA,aACA,aACA,aACA,aACA,aACA,aACA,aACA,aACA,aACA,aACA,aACA,WACA,WACA,QACA,cACA,cACA,cACA,cACA,yBACA,yBACA,yBACA,yBACA,sBACA,sBACA,sBACA,sBACA,SACA,YACA,QACA,SACA,iBACA,iBACA,iBACA,iBACA,iBACA,iBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,uBACA,uBACA,uBACA,uBACA,uBACA,uBACA,uBACA,uBACA,uBACA,8BACA,8BACA,8BACA,8BACA,8BACA,8BACA,8BACA,8BACA,8BACA,mCACA,mCACA,qCACA,qCACA,0BACA,0BACA,0BACA,0BACA,0BACA,0BACA,0BACA,0BACA,0BACA,0BACA,0BACA,0BACA,gBACA,gBACA,gBACA,gBACA,qBACA,qBACA,qBACA,qBACA,+BACA,QACA,QACA,QACA,QACA,QACA,QACA,QACA,QACA,QACA,QACA,QACA,QACA,mBACA,mBACA,QACA,QACA,QACA,QACA,cACA,cACA,cACA,cACA,YAEJ,EAAG,CACC,0BACA,kBACA,kBACA,kBACA,kBACA,kBACA,kBACA,YACA,mBACA,wBACA,wBACA,wBACA,wBACA,wBACA,wBACA,wBACA,0BCz7CKC,GAAuD,CAChE,GAA6B,CAAwB,GAAA,GACrD,GAA6B,CAAwB,GAAA,IAQ5CC,GAAoD,CAC7D,IAAwD,IACxD,IAAwD,IACxD,IAAwD,IACxD,IAAwD,KAG/CC,GAAsD,CAC/D,IAAiC,CAA+D,GAAA,GAAA,IAChG,IAAiC,CAA+D,IAAA,GAAA,IAChG,IAAiC,CAA+D,IAAA,GAAA,IAChG,IAAiC,CAA+D,IAAA,GAAA,IAChG,IAAiC,CAA+D,IAAA,GAAA,IAEhG,IAAiC,CAA+D,IAAA,GAAA,IAChG,IAAiC,CAA+D,IAAA,GAAA,IAChG,IAAiC,CAA+D,IAAA,GAAA,IAChG,IAAiC,CAA+D,IAAA,GAAA,IAEhG,IAAiC,CAA+D,IAAA,GAAA,IAChG,IAAiC,CAA+D,IAAA,GAAA,IAChG,IA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"} \ No newline at end of file diff --git a/OnProfNext.Client/bin/Debug/net10.0/icudt_CJK.dat b/OnProfNext.Client/bin/Debug/net10.0/icudt_CJK.dat new file mode 100644 index 0000000..118a60d Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/icudt_CJK.dat differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/icudt_EFIGS.dat b/OnProfNext.Client/bin/Debug/net10.0/icudt_EFIGS.dat new file mode 100644 index 0000000..e4c1c91 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/icudt_EFIGS.dat differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/icudt_no_CJK.dat b/OnProfNext.Client/bin/Debug/net10.0/icudt_no_CJK.dat new file mode 100644 index 0000000..87b08e0 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/icudt_no_CJK.dat differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/mscorlib.dll b/OnProfNext.Client/bin/Debug/net10.0/mscorlib.dll new file mode 100644 index 0000000..682a763 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/mscorlib.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/netstandard.dll b/OnProfNext.Client/bin/Debug/net10.0/netstandard.dll new file mode 100644 index 0000000..ddb0eda Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/netstandard.dll differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm new file mode 100644 index 0000000..2f96917 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm.gz new file mode 100644 index 0000000..2be2cbb Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm new file mode 100644 index 0000000..ed98e87 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm.gz new file mode 100644 index 0000000..27fc48f Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm new file mode 100644 index 0000000..c610f4e Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm.gz new file mode 100644 index 0000000..0741f3c Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm new file mode 100644 index 0000000..1132a8c Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm.gz new file mode 100644 index 0000000..dfbf376 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm new file mode 100644 index 0000000..d157fe0 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm.gz new file mode 100644 index 0000000..2e4f844 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm new file mode 100644 index 0000000..a0cebb5 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm.gz new file mode 100644 index 0000000..4d290ac Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.CSharp.452y5fjxmv.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.CSharp.452y5fjxmv.wasm new file mode 100644 index 0000000..77ab2ed Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.CSharp.452y5fjxmv.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.CSharp.452y5fjxmv.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.CSharp.452y5fjxmv.wasm.gz new file mode 100644 index 0000000..d979b3e Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.CSharp.452y5fjxmv.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm new file mode 100644 index 0000000..da7c1a4 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm.gz new file mode 100644 index 0000000..ea92f23 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm new file mode 100644 index 0000000..ee460f4 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm.gz new file mode 100644 index 0000000..3e03763 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm new file mode 100644 index 0000000..13c6d36 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm.gz new file mode 100644 index 0000000..7cf472e Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm new file mode 100644 index 0000000..4289d55 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm.gz new file mode 100644 index 0000000..4ac89e0 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm new file mode 100644 index 0000000..2e06e6e Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm.gz new file mode 100644 index 0000000..842d82e Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm new file mode 100644 index 0000000..e77930c Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm.gz new file mode 100644 index 0000000..52df5bf Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm new file mode 100644 index 0000000..c31fcbc Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm.gz new file mode 100644 index 0000000..694a3f0 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm new file mode 100644 index 0000000..823fb4e Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm.gz new file mode 100644 index 0000000..12ee258 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm new file mode 100644 index 0000000..516d6f9 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm.gz new file mode 100644 index 0000000..9ab2339 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm new file mode 100644 index 0000000..c978326 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm.gz new file mode 100644 index 0000000..ce563f3 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm new file mode 100644 index 0000000..019d285 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm.gz new file mode 100644 index 0000000..485fffe Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm new file mode 100644 index 0000000..605fae3 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm.gz new file mode 100644 index 0000000..87838d9 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm new file mode 100644 index 0000000..6651ab4 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm.gz new file mode 100644 index 0000000..9881ee0 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm new file mode 100644 index 0000000..8254b44 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm.gz new file mode 100644 index 0000000..8d00179 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm new file mode 100644 index 0000000..ee1d343 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm.gz new file mode 100644 index 0000000..ff89538 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm new file mode 100644 index 0000000..55a0dfe Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm.gz new file mode 100644 index 0000000..3152705 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm new file mode 100644 index 0000000..59b1790 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm.gz new file mode 100644 index 0000000..6141e9b Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm new file mode 100644 index 0000000..cb59b1a Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm.gz new file mode 100644 index 0000000..a3b41ca Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm new file mode 100644 index 0000000..b6df73d Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm.gz new file mode 100644 index 0000000..6eb9685 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm new file mode 100644 index 0000000..f84379f Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm.gz new file mode 100644 index 0000000..e014ad5 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm new file mode 100644 index 0000000..b4e5be3 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm.gz new file mode 100644 index 0000000..16439a3 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.JSInterop.1r0ampr2q1.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.JSInterop.1r0ampr2q1.wasm new file mode 100644 index 0000000..368880d Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.JSInterop.1r0ampr2q1.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.JSInterop.1r0ampr2q1.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.JSInterop.1r0ampr2q1.wasm.gz new file mode 100644 index 0000000..9bee87b Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.JSInterop.1r0ampr2q1.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm new file mode 100644 index 0000000..f9590e1 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm.gz new file mode 100644 index 0000000..c3e2278 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm new file mode 100644 index 0000000..0f31f99 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm.gz new file mode 100644 index 0000000..a3aaa60 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm new file mode 100644 index 0000000..b137172 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm.gz new file mode 100644 index 0000000..d210009 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm new file mode 100644 index 0000000..494aabc Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm.gz new file mode 100644 index 0000000..db4ef63 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm new file mode 100644 index 0000000..0ad2a81 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm.gz new file mode 100644 index 0000000..375caf3 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/MudBlazor.k6079czmkm.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/MudBlazor.k6079czmkm.wasm new file mode 100644 index 0000000..30975c5 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/MudBlazor.k6079czmkm.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/MudBlazor.k6079czmkm.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/MudBlazor.k6079czmkm.wasm.gz new file mode 100644 index 0000000..10beda7 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/MudBlazor.k6079czmkm.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/OnProfNext.Client.lplk7v275j.pdb b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/OnProfNext.Client.lplk7v275j.pdb new file mode 100644 index 0000000..f0c1e41 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/OnProfNext.Client.lplk7v275j.pdb differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/OnProfNext.Client.lplk7v275j.pdb.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/OnProfNext.Client.lplk7v275j.pdb.gz new file mode 100644 index 0000000..f3b6cc1 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/OnProfNext.Client.lplk7v275j.pdb.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/OnProfNext.Client.xhq6acanj0.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/OnProfNext.Client.xhq6acanj0.wasm new file mode 100644 index 0000000..831bb3a Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/OnProfNext.Client.xhq6acanj0.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/OnProfNext.Client.xhq6acanj0.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/OnProfNext.Client.xhq6acanj0.wasm.gz new file mode 100644 index 0000000..05dd2eb Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/OnProfNext.Client.xhq6acanj0.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.7rk3uansaa.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.7rk3uansaa.wasm new file mode 100644 index 0000000..e8fde57 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.7rk3uansaa.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.7rk3uansaa.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.7rk3uansaa.wasm.gz new file mode 100644 index 0000000..6321f6d Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.7rk3uansaa.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.AppContext.uwq3fpef1w.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.AppContext.uwq3fpef1w.wasm new file mode 100644 index 0000000..3e4a2de Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.AppContext.uwq3fpef1w.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.AppContext.uwq3fpef1w.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.AppContext.uwq3fpef1w.wasm.gz new file mode 100644 index 0000000..f4e546c Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.AppContext.uwq3fpef1w.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Buffers.m4yhcvz2y2.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Buffers.m4yhcvz2y2.wasm new file mode 100644 index 0000000..995d09f Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Buffers.m4yhcvz2y2.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Buffers.m4yhcvz2y2.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Buffers.m4yhcvz2y2.wasm.gz new file mode 100644 index 0000000..2da7db7 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Buffers.m4yhcvz2y2.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Collections.63jrcion39.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Collections.63jrcion39.wasm new file mode 100644 index 0000000..015ef2e Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Collections.63jrcion39.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Collections.63jrcion39.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Collections.63jrcion39.wasm.gz new file mode 100644 index 0000000..75d0f60 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Collections.63jrcion39.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Collections.Concurrent.1zv6wuzklu.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Collections.Concurrent.1zv6wuzklu.wasm new file mode 100644 index 0000000..4881d82 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Collections.Concurrent.1zv6wuzklu.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Collections.Concurrent.1zv6wuzklu.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Collections.Concurrent.1zv6wuzklu.wasm.gz new file mode 100644 index 0000000..3fe605e Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Collections.Concurrent.1zv6wuzklu.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Collections.Immutable.6uzpuv4o5d.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Collections.Immutable.6uzpuv4o5d.wasm new file mode 100644 index 0000000..c1c94f1 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Collections.Immutable.6uzpuv4o5d.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Collections.Immutable.6uzpuv4o5d.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Collections.Immutable.6uzpuv4o5d.wasm.gz new file mode 100644 index 0000000..89e452e Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Collections.Immutable.6uzpuv4o5d.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Collections.NonGeneric.k5rgagff9o.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Collections.NonGeneric.k5rgagff9o.wasm new file mode 100644 index 0000000..5411b80 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Collections.NonGeneric.k5rgagff9o.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Collections.NonGeneric.k5rgagff9o.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Collections.NonGeneric.k5rgagff9o.wasm.gz new file mode 100644 index 0000000..b703581 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Collections.NonGeneric.k5rgagff9o.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Collections.Specialized.84wojkejb4.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Collections.Specialized.84wojkejb4.wasm new file mode 100644 index 0000000..bba231f Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Collections.Specialized.84wojkejb4.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Collections.Specialized.84wojkejb4.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Collections.Specialized.84wojkejb4.wasm.gz new file mode 100644 index 0000000..96501d9 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Collections.Specialized.84wojkejb4.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm new file mode 100644 index 0000000..2c802c4 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm.gz new file mode 100644 index 0000000..de47089 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm new file mode 100644 index 0000000..7b7bc5d Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm.gz new file mode 100644 index 0000000..a1451ca Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm new file mode 100644 index 0000000..f99a763 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm.gz new file mode 100644 index 0000000..719765a Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm new file mode 100644 index 0000000..c6a9b4c Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm.gz new file mode 100644 index 0000000..f62a320 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm new file mode 100644 index 0000000..57f0fe5 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm.gz new file mode 100644 index 0000000..80f8ec5 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ComponentModel.m11rh1qn2x.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ComponentModel.m11rh1qn2x.wasm new file mode 100644 index 0000000..4ada369 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ComponentModel.m11rh1qn2x.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ComponentModel.m11rh1qn2x.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ComponentModel.m11rh1qn2x.wasm.gz new file mode 100644 index 0000000..4b6e3b7 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ComponentModel.m11rh1qn2x.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Configuration.j8qjkqg593.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Configuration.j8qjkqg593.wasm new file mode 100644 index 0000000..dc7dd37 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Configuration.j8qjkqg593.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Configuration.j8qjkqg593.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Configuration.j8qjkqg593.wasm.gz new file mode 100644 index 0000000..20b220e Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Configuration.j8qjkqg593.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Console.x9at0eh4vs.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Console.x9at0eh4vs.wasm new file mode 100644 index 0000000..07f7656 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Console.x9at0eh4vs.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Console.x9at0eh4vs.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Console.x9at0eh4vs.wasm.gz new file mode 100644 index 0000000..9d0efb3 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Console.x9at0eh4vs.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Core.ickp29885z.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Core.ickp29885z.wasm new file mode 100644 index 0000000..259f829 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Core.ickp29885z.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Core.ickp29885z.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Core.ickp29885z.wasm.gz new file mode 100644 index 0000000..233edf9 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Core.ickp29885z.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Data.0h75nr7qqd.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Data.0h75nr7qqd.wasm new file mode 100644 index 0000000..fe40628 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Data.0h75nr7qqd.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Data.0h75nr7qqd.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Data.0h75nr7qqd.wasm.gz new file mode 100644 index 0000000..4965d8a Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Data.0h75nr7qqd.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Data.Common.4wisaz8pj4.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Data.Common.4wisaz8pj4.wasm new file mode 100644 index 0000000..7059a07 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Data.Common.4wisaz8pj4.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Data.Common.4wisaz8pj4.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Data.Common.4wisaz8pj4.wasm.gz new file mode 100644 index 0000000..59e61d7 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Data.Common.4wisaz8pj4.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Data.DataSetExtensions.904tnen1ot.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Data.DataSetExtensions.904tnen1ot.wasm new file mode 100644 index 0000000..7858b9b Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Data.DataSetExtensions.904tnen1ot.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Data.DataSetExtensions.904tnen1ot.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Data.DataSetExtensions.904tnen1ot.wasm.gz new file mode 100644 index 0000000..b1c95b9 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Data.DataSetExtensions.904tnen1ot.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm new file mode 100644 index 0000000..0c8e9bc Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm.gz new file mode 100644 index 0000000..36f42c1 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm new file mode 100644 index 0000000..a0a9542 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm.gz new file mode 100644 index 0000000..aaafb9b Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm new file mode 100644 index 0000000..14cab35 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm.gz new file mode 100644 index 0000000..c21f18b Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm new file mode 100644 index 0000000..1fa67c2 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm.gz new file mode 100644 index 0000000..b1252a9 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.Process.lqtqkmw274.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.Process.lqtqkmw274.wasm new file mode 100644 index 0000000..3d1cdf6 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.Process.lqtqkmw274.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.Process.lqtqkmw274.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.Process.lqtqkmw274.wasm.gz new file mode 100644 index 0000000..cd3206b Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.Process.lqtqkmw274.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm new file mode 100644 index 0000000..14a950f Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm.gz new file mode 100644 index 0000000..1eb4a1f Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm new file mode 100644 index 0000000..18299c9 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm.gz new file mode 100644 index 0000000..0c86cdf Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.Tools.862j1ozg5o.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.Tools.862j1ozg5o.wasm new file mode 100644 index 0000000..bedee68 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.Tools.862j1ozg5o.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.Tools.862j1ozg5o.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.Tools.862j1ozg5o.wasm.gz new file mode 100644 index 0000000..f6c0e14 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.Tools.862j1ozg5o.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm new file mode 100644 index 0000000..3d13070 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm.gz new file mode 100644 index 0000000..2aed64f Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm new file mode 100644 index 0000000..f2f1018 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm.gz new file mode 100644 index 0000000..6a97479 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Drawing.Primitives.k3z431p3v7.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Drawing.Primitives.k3z431p3v7.wasm new file mode 100644 index 0000000..a199208 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Drawing.Primitives.k3z431p3v7.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Drawing.Primitives.k3z431p3v7.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Drawing.Primitives.k3z431p3v7.wasm.gz new file mode 100644 index 0000000..d1ca0a6 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Drawing.Primitives.k3z431p3v7.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Drawing.v0usa2s224.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Drawing.v0usa2s224.wasm new file mode 100644 index 0000000..49fb699 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Drawing.v0usa2s224.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Drawing.v0usa2s224.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Drawing.v0usa2s224.wasm.gz new file mode 100644 index 0000000..3350f97 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Drawing.v0usa2s224.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm new file mode 100644 index 0000000..e897148 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm.gz new file mode 100644 index 0000000..e1236c4 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Formats.Asn1.9iyl1hnh76.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Formats.Asn1.9iyl1hnh76.wasm new file mode 100644 index 0000000..3adcaf9 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Formats.Asn1.9iyl1hnh76.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Formats.Asn1.9iyl1hnh76.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Formats.Asn1.9iyl1hnh76.wasm.gz new file mode 100644 index 0000000..3bd5d51 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Formats.Asn1.9iyl1hnh76.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Formats.Tar.9ikmelhi7g.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Formats.Tar.9ikmelhi7g.wasm new file mode 100644 index 0000000..7ea4255 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Formats.Tar.9ikmelhi7g.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Formats.Tar.9ikmelhi7g.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Formats.Tar.9ikmelhi7g.wasm.gz new file mode 100644 index 0000000..8375bff Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Formats.Tar.9ikmelhi7g.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Globalization.4ulc930few.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Globalization.4ulc930few.wasm new file mode 100644 index 0000000..3382774 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Globalization.4ulc930few.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Globalization.4ulc930few.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Globalization.4ulc930few.wasm.gz new file mode 100644 index 0000000..a7a3812 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Globalization.4ulc930few.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Globalization.Calendars.e8yl47y6cv.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Globalization.Calendars.e8yl47y6cv.wasm new file mode 100644 index 0000000..b5bcc9d Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Globalization.Calendars.e8yl47y6cv.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Globalization.Calendars.e8yl47y6cv.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Globalization.Calendars.e8yl47y6cv.wasm.gz new file mode 100644 index 0000000..bba906f Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Globalization.Calendars.e8yl47y6cv.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Globalization.Extensions.fvxkfs32tv.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Globalization.Extensions.fvxkfs32tv.wasm new file mode 100644 index 0000000..4b380b0 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Globalization.Extensions.fvxkfs32tv.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Globalization.Extensions.fvxkfs32tv.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Globalization.Extensions.fvxkfs32tv.wasm.gz new file mode 100644 index 0000000..e295701 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Globalization.Extensions.fvxkfs32tv.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm new file mode 100644 index 0000000..d7ca3fe Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm.gz new file mode 100644 index 0000000..ca629d9 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm new file mode 100644 index 0000000..4902cfa Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm.gz new file mode 100644 index 0000000..4ef38fe Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm new file mode 100644 index 0000000..349a050 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm.gz new file mode 100644 index 0000000..4a9e832 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Compression.sgbc42zrd8.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Compression.sgbc42zrd8.wasm new file mode 100644 index 0000000..16ceddd Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Compression.sgbc42zrd8.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Compression.sgbc42zrd8.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Compression.sgbc42zrd8.wasm.gz new file mode 100644 index 0000000..4022d94 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Compression.sgbc42zrd8.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm new file mode 100644 index 0000000..14322c8 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm.gz new file mode 100644 index 0000000..88c52a4 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm new file mode 100644 index 0000000..d6499e6 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm.gz new file mode 100644 index 0000000..ed058e6 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm new file mode 100644 index 0000000..3a10f8c Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm.gz new file mode 100644 index 0000000..b67c991 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm new file mode 100644 index 0000000..d2453ee Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm.gz new file mode 100644 index 0000000..6d20a5c Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.FileSystem.fktu0k4b93.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.FileSystem.fktu0k4b93.wasm new file mode 100644 index 0000000..eb6248a Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.FileSystem.fktu0k4b93.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.FileSystem.fktu0k4b93.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.FileSystem.fktu0k4b93.wasm.gz new file mode 100644 index 0000000..5c20e6f Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.FileSystem.fktu0k4b93.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm new file mode 100644 index 0000000..f922254 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm.gz new file mode 100644 index 0000000..0b6e954 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm new file mode 100644 index 0000000..2af6762 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm.gz new file mode 100644 index 0000000..daa580f Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Pipelines.21z0t9w6sq.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Pipelines.21z0t9w6sq.wasm new file mode 100644 index 0000000..935b968 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Pipelines.21z0t9w6sq.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Pipelines.21z0t9w6sq.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Pipelines.21z0t9w6sq.wasm.gz new file mode 100644 index 0000000..3c9764d Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Pipelines.21z0t9w6sq.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm new file mode 100644 index 0000000..01eb9b4 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm.gz new file mode 100644 index 0000000..38cbcce Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Pipes.xosph8vk4a.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Pipes.xosph8vk4a.wasm new file mode 100644 index 0000000..e20528e Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Pipes.xosph8vk4a.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Pipes.xosph8vk4a.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Pipes.xosph8vk4a.wasm.gz new file mode 100644 index 0000000..8308e4f Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.Pipes.xosph8vk4a.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm new file mode 100644 index 0000000..5916b89 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm.gz new file mode 100644 index 0000000..448951b Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.i9g92fmb9y.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.i9g92fmb9y.wasm new file mode 100644 index 0000000..ad412f7 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.i9g92fmb9y.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.i9g92fmb9y.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.i9g92fmb9y.wasm.gz new file mode 100644 index 0000000..3b4de69 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.IO.i9g92fmb9y.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm new file mode 100644 index 0000000..a712d12 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm.gz new file mode 100644 index 0000000..bee9fb3 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Linq.Expressions.4nat0rber0.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Linq.Expressions.4nat0rber0.wasm new file mode 100644 index 0000000..bf5322f Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Linq.Expressions.4nat0rber0.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Linq.Expressions.4nat0rber0.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Linq.Expressions.4nat0rber0.wasm.gz new file mode 100644 index 0000000..e88f85a Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Linq.Expressions.4nat0rber0.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Linq.Parallel.qf7zemz9aw.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Linq.Parallel.qf7zemz9aw.wasm new file mode 100644 index 0000000..b1cf52a Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Linq.Parallel.qf7zemz9aw.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Linq.Parallel.qf7zemz9aw.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Linq.Parallel.qf7zemz9aw.wasm.gz new file mode 100644 index 0000000..013dedd Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Linq.Parallel.qf7zemz9aw.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Linq.Queryable.vwinf8twbn.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Linq.Queryable.vwinf8twbn.wasm new file mode 100644 index 0000000..f0605a4 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Linq.Queryable.vwinf8twbn.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Linq.Queryable.vwinf8twbn.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Linq.Queryable.vwinf8twbn.wasm.gz new file mode 100644 index 0000000..65d7ae6 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Linq.Queryable.vwinf8twbn.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Linq.rp2jklkmsi.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Linq.rp2jklkmsi.wasm new file mode 100644 index 0000000..827b734 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Linq.rp2jklkmsi.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Linq.rp2jklkmsi.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Linq.rp2jklkmsi.wasm.gz new file mode 100644 index 0000000..ecc04b8 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Linq.rp2jklkmsi.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Memory.3r0soomurg.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Memory.3r0soomurg.wasm new file mode 100644 index 0000000..cec8537 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Memory.3r0soomurg.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Memory.3r0soomurg.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Memory.3r0soomurg.wasm.gz new file mode 100644 index 0000000..a21ba1b Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Memory.3r0soomurg.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Http.9rl4gopayw.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Http.9rl4gopayw.wasm new file mode 100644 index 0000000..e8734b7 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Http.9rl4gopayw.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Http.9rl4gopayw.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Http.9rl4gopayw.wasm.gz new file mode 100644 index 0000000..36e92a3 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Http.9rl4gopayw.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Http.Json.t9gqpmtbpb.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Http.Json.t9gqpmtbpb.wasm new file mode 100644 index 0000000..e7886c1 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Http.Json.t9gqpmtbpb.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Http.Json.t9gqpmtbpb.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Http.Json.t9gqpmtbpb.wasm.gz new file mode 100644 index 0000000..333afe8 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Http.Json.t9gqpmtbpb.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.HttpListener.zg37o92yol.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.HttpListener.zg37o92yol.wasm new file mode 100644 index 0000000..f07270f Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.HttpListener.zg37o92yol.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.HttpListener.zg37o92yol.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.HttpListener.zg37o92yol.wasm.gz new file mode 100644 index 0000000..aab62f2 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.HttpListener.zg37o92yol.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Mail.qk214miut2.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Mail.qk214miut2.wasm new file mode 100644 index 0000000..af4ee6c Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Mail.qk214miut2.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Mail.qk214miut2.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Mail.qk214miut2.wasm.gz new file mode 100644 index 0000000..c4cf628 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Mail.qk214miut2.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.NameResolution.50dzekuu9x.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.NameResolution.50dzekuu9x.wasm new file mode 100644 index 0000000..2269a99 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.NameResolution.50dzekuu9x.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.NameResolution.50dzekuu9x.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.NameResolution.50dzekuu9x.wasm.gz new file mode 100644 index 0000000..e83a48d Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.NameResolution.50dzekuu9x.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.NetworkInformation.k8343mqust.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.NetworkInformation.k8343mqust.wasm new file mode 100644 index 0000000..cecd705 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.NetworkInformation.k8343mqust.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.NetworkInformation.k8343mqust.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.NetworkInformation.k8343mqust.wasm.gz new file mode 100644 index 0000000..52e5a8d Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.NetworkInformation.k8343mqust.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Ping.00vh2kvsiz.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Ping.00vh2kvsiz.wasm new file mode 100644 index 0000000..0629e1b Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Ping.00vh2kvsiz.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Ping.00vh2kvsiz.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Ping.00vh2kvsiz.wasm.gz new file mode 100644 index 0000000..1073b47 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Ping.00vh2kvsiz.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Primitives.whs5oed1wm.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Primitives.whs5oed1wm.wasm new file mode 100644 index 0000000..8d10ef8 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Primitives.whs5oed1wm.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Primitives.whs5oed1wm.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Primitives.whs5oed1wm.wasm.gz new file mode 100644 index 0000000..cefacf1 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Primitives.whs5oed1wm.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Quic.grloe2ix5j.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Quic.grloe2ix5j.wasm new file mode 100644 index 0000000..69930ab Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Quic.grloe2ix5j.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Quic.grloe2ix5j.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Quic.grloe2ix5j.wasm.gz new file mode 100644 index 0000000..abf44de Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Quic.grloe2ix5j.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Requests.r8ar2pd94c.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Requests.r8ar2pd94c.wasm new file mode 100644 index 0000000..1143cc6 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Requests.r8ar2pd94c.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Requests.r8ar2pd94c.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Requests.r8ar2pd94c.wasm.gz new file mode 100644 index 0000000..17d2332 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Requests.r8ar2pd94c.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Security.yn3zcskz4j.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Security.yn3zcskz4j.wasm new file mode 100644 index 0000000..0c0cc50 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Security.yn3zcskz4j.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Security.yn3zcskz4j.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Security.yn3zcskz4j.wasm.gz new file mode 100644 index 0000000..04efbae Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Security.yn3zcskz4j.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm new file mode 100644 index 0000000..2070836 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm.gz new file mode 100644 index 0000000..19b3ddf Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.ServicePoint.j436yqvrg9.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.ServicePoint.j436yqvrg9.wasm new file mode 100644 index 0000000..63626bb Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.ServicePoint.j436yqvrg9.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.ServicePoint.j436yqvrg9.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.ServicePoint.j436yqvrg9.wasm.gz new file mode 100644 index 0000000..3037a6e Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.ServicePoint.j436yqvrg9.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Sockets.utzdm9sw2p.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Sockets.utzdm9sw2p.wasm new file mode 100644 index 0000000..9d3d3a7 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Sockets.utzdm9sw2p.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Sockets.utzdm9sw2p.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Sockets.utzdm9sw2p.wasm.gz new file mode 100644 index 0000000..f729139 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.Sockets.utzdm9sw2p.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.WebClient.e5a4gx4ylt.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.WebClient.e5a4gx4ylt.wasm new file mode 100644 index 0000000..faf67fe Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.WebClient.e5a4gx4ylt.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.WebClient.e5a4gx4ylt.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.WebClient.e5a4gx4ylt.wasm.gz new file mode 100644 index 0000000..1b67aa9 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.WebClient.e5a4gx4ylt.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm new file mode 100644 index 0000000..0f51688 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm.gz new file mode 100644 index 0000000..e82024b Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.WebProxy.38jcv8jeeu.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.WebProxy.38jcv8jeeu.wasm new file mode 100644 index 0000000..9a1a060 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.WebProxy.38jcv8jeeu.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.WebProxy.38jcv8jeeu.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.WebProxy.38jcv8jeeu.wasm.gz new file mode 100644 index 0000000..af67081 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.WebProxy.38jcv8jeeu.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm new file mode 100644 index 0000000..22a5b79 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm.gz new file mode 100644 index 0000000..c686926 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.WebSockets.hdzn84g6uh.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.WebSockets.hdzn84g6uh.wasm new file mode 100644 index 0000000..bfd5903 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.WebSockets.hdzn84g6uh.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.WebSockets.hdzn84g6uh.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.WebSockets.hdzn84g6uh.wasm.gz new file mode 100644 index 0000000..0d592b3 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.WebSockets.hdzn84g6uh.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.zku96ychk7.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.zku96ychk7.wasm new file mode 100644 index 0000000..e8fcf7e Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.zku96ychk7.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.zku96ychk7.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.zku96ychk7.wasm.gz new file mode 100644 index 0000000..29e9f77 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Net.zku96ychk7.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Numerics.Vectors.1l8xruz8uh.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Numerics.Vectors.1l8xruz8uh.wasm new file mode 100644 index 0000000..1692125 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Numerics.Vectors.1l8xruz8uh.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Numerics.Vectors.1l8xruz8uh.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Numerics.Vectors.1l8xruz8uh.wasm.gz new file mode 100644 index 0000000..5b474a3 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Numerics.Vectors.1l8xruz8uh.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Numerics.on9qk50okp.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Numerics.on9qk50okp.wasm new file mode 100644 index 0000000..c62adce Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Numerics.on9qk50okp.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Numerics.on9qk50okp.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Numerics.on9qk50okp.wasm.gz new file mode 100644 index 0000000..7cb8038 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Numerics.on9qk50okp.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ObjectModel.4omhtq90sd.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ObjectModel.4omhtq90sd.wasm new file mode 100644 index 0000000..7a1dbb6 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ObjectModel.4omhtq90sd.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ObjectModel.4omhtq90sd.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ObjectModel.4omhtq90sd.wasm.gz new file mode 100644 index 0000000..8651dd2 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ObjectModel.4omhtq90sd.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Private.CoreLib.koxlwnosh6.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Private.CoreLib.koxlwnosh6.wasm new file mode 100644 index 0000000..dc2e359 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Private.CoreLib.koxlwnosh6.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Private.CoreLib.koxlwnosh6.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Private.CoreLib.koxlwnosh6.wasm.gz new file mode 100644 index 0000000..8646287 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Private.CoreLib.koxlwnosh6.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm new file mode 100644 index 0000000..b4022aa Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm.gz new file mode 100644 index 0000000..b5895cf Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Private.Uri.clehp4avpy.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Private.Uri.clehp4avpy.wasm new file mode 100644 index 0000000..92c1aef Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Private.Uri.clehp4avpy.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Private.Uri.clehp4avpy.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Private.Uri.clehp4avpy.wasm.gz new file mode 100644 index 0000000..525d5ea Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Private.Uri.clehp4avpy.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm new file mode 100644 index 0000000..2a2d262 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm.gz new file mode 100644 index 0000000..11a3a48 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Private.Xml.g9rvjereoe.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Private.Xml.g9rvjereoe.wasm new file mode 100644 index 0000000..36e155f Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Private.Xml.g9rvjereoe.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Private.Xml.g9rvjereoe.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Private.Xml.g9rvjereoe.wasm.gz new file mode 100644 index 0000000..1d13d93 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Private.Xml.g9rvjereoe.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm new file mode 100644 index 0000000..d8fbe28 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm.gz new file mode 100644 index 0000000..8fa30cf Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.Emit.3t7flfwg7o.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.Emit.3t7flfwg7o.wasm new file mode 100644 index 0000000..dd9ea2d Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.Emit.3t7flfwg7o.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.Emit.3t7flfwg7o.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.Emit.3t7flfwg7o.wasm.gz new file mode 100644 index 0000000..59285a8 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.Emit.3t7flfwg7o.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm new file mode 100644 index 0000000..c0d0d99 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm.gz new file mode 100644 index 0000000..9554ed2 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm new file mode 100644 index 0000000..07c7d86 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm.gz new file mode 100644 index 0000000..c4c8442 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.Extensions.ymwga5opgl.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.Extensions.ymwga5opgl.wasm new file mode 100644 index 0000000..4e69ce6 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.Extensions.ymwga5opgl.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.Extensions.ymwga5opgl.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.Extensions.ymwga5opgl.wasm.gz new file mode 100644 index 0000000..5be3534 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.Extensions.ymwga5opgl.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm new file mode 100644 index 0000000..a95c86f Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm.gz new file mode 100644 index 0000000..ed8e644 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.Primitives.n2ngq6as7g.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.Primitives.n2ngq6as7g.wasm new file mode 100644 index 0000000..4e314a1 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.Primitives.n2ngq6as7g.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.Primitives.n2ngq6as7g.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.Primitives.n2ngq6as7g.wasm.gz new file mode 100644 index 0000000..6464d9d Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.Primitives.n2ngq6as7g.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm new file mode 100644 index 0000000..c4a1606 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm.gz new file mode 100644 index 0000000..c760af1 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.v4mfyzbte8.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.v4mfyzbte8.wasm new file mode 100644 index 0000000..e869db0 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.v4mfyzbte8.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.v4mfyzbte8.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.v4mfyzbte8.wasm.gz new file mode 100644 index 0000000..fce73a7 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Reflection.v4mfyzbte8.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Resources.Reader.c9z9nieytf.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Resources.Reader.c9z9nieytf.wasm new file mode 100644 index 0000000..456ccb9 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Resources.Reader.c9z9nieytf.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Resources.Reader.c9z9nieytf.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Resources.Reader.c9z9nieytf.wasm.gz new file mode 100644 index 0000000..d1ab32f Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Resources.Reader.c9z9nieytf.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm new file mode 100644 index 0000000..3efe8ef Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm.gz new file mode 100644 index 0000000..1c70796 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Resources.Writer.tx9namivq6.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Resources.Writer.tx9namivq6.wasm new file mode 100644 index 0000000..1e1ff80 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Resources.Writer.tx9namivq6.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Resources.Writer.tx9namivq6.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Resources.Writer.tx9namivq6.wasm.gz new file mode 100644 index 0000000..5b78471 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Resources.Writer.tx9namivq6.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm new file mode 100644 index 0000000..f4ed1dd Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm.gz new file mode 100644 index 0000000..3b9fc39 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm new file mode 100644 index 0000000..4f46a9b Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm.gz new file mode 100644 index 0000000..054e370 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Extensions.f4fqaba1oz.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Extensions.f4fqaba1oz.wasm new file mode 100644 index 0000000..7a4d2fa Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Extensions.f4fqaba1oz.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Extensions.f4fqaba1oz.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Extensions.f4fqaba1oz.wasm.gz new file mode 100644 index 0000000..058f76f Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Extensions.f4fqaba1oz.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Handles.kpe61fymig.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Handles.kpe61fymig.wasm new file mode 100644 index 0000000..71dfcbb Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Handles.kpe61fymig.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Handles.kpe61fymig.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Handles.kpe61fymig.wasm.gz new file mode 100644 index 0000000..fcd0162 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Handles.kpe61fymig.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.InteropServices.02r2ubft18.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.InteropServices.02r2ubft18.wasm new file mode 100644 index 0000000..d313e49 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.InteropServices.02r2ubft18.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.InteropServices.02r2ubft18.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.InteropServices.02r2ubft18.wasm.gz new file mode 100644 index 0000000..c091991 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.InteropServices.02r2ubft18.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm new file mode 100644 index 0000000..200d359 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm.gz new file mode 100644 index 0000000..935af10 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm new file mode 100644 index 0000000..cd4577c Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm.gz new file mode 100644 index 0000000..f7f387a Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm new file mode 100644 index 0000000..78fc199 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm.gz new file mode 100644 index 0000000..8b56211 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Loader.bm8d2pac0a.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Loader.bm8d2pac0a.wasm new file mode 100644 index 0000000..eec6cbc Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Loader.bm8d2pac0a.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Loader.bm8d2pac0a.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Loader.bm8d2pac0a.wasm.gz new file mode 100644 index 0000000..e8de5e6 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Loader.bm8d2pac0a.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Numerics.e3fl2oogjk.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Numerics.e3fl2oogjk.wasm new file mode 100644 index 0000000..89041f6 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Numerics.e3fl2oogjk.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Numerics.e3fl2oogjk.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Numerics.e3fl2oogjk.wasm.gz new file mode 100644 index 0000000..c35fa90 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Numerics.e3fl2oogjk.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm new file mode 100644 index 0000000..c3fa22d Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm.gz new file mode 100644 index 0000000..8ca3586 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm new file mode 100644 index 0000000..6f45fe9 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm.gz new file mode 100644 index 0000000..5439c27 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm new file mode 100644 index 0000000..8690a49 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm.gz new file mode 100644 index 0000000..f965591 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm new file mode 100644 index 0000000..e304bbc Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm.gz new file mode 100644 index 0000000..750de4d Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Serialization.qfpmfujegm.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Serialization.qfpmfujegm.wasm new file mode 100644 index 0000000..7b37a00 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Serialization.qfpmfujegm.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Serialization.qfpmfujegm.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Serialization.qfpmfujegm.wasm.gz new file mode 100644 index 0000000..3935fd5 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.Serialization.qfpmfujegm.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.k6ze2203p2.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.k6ze2203p2.wasm new file mode 100644 index 0000000..2e7574a Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.k6ze2203p2.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.k6ze2203p2.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.k6ze2203p2.wasm.gz new file mode 100644 index 0000000..d1c4992 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Runtime.k6ze2203p2.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.AccessControl.4mxo8hy5cn.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.AccessControl.4mxo8hy5cn.wasm new file mode 100644 index 0000000..32ffb1d Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.AccessControl.4mxo8hy5cn.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.AccessControl.4mxo8hy5cn.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.AccessControl.4mxo8hy5cn.wasm.gz new file mode 100644 index 0000000..df3cd22 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.AccessControl.4mxo8hy5cn.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Claims.9n1yusa5e5.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Claims.9n1yusa5e5.wasm new file mode 100644 index 0000000..02d6130 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Claims.9n1yusa5e5.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Claims.9n1yusa5e5.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Claims.9n1yusa5e5.wasm.gz new file mode 100644 index 0000000..7d073f3 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Claims.9n1yusa5e5.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.5rp84ijz8t.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.5rp84ijz8t.wasm new file mode 100644 index 0000000..8a7ac3d Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.5rp84ijz8t.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.5rp84ijz8t.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.5rp84ijz8t.wasm.gz new file mode 100644 index 0000000..405c21e Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.5rp84ijz8t.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm new file mode 100644 index 0000000..a4703d6 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm.gz new file mode 100644 index 0000000..1c367cc Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm new file mode 100644 index 0000000..a1ebfac Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm.gz new file mode 100644 index 0000000..261ba9c Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm new file mode 100644 index 0000000..dfca107 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm.gz new file mode 100644 index 0000000..4a731be Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm new file mode 100644 index 0000000..c665c66 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm.gz new file mode 100644 index 0000000..497e30c Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm new file mode 100644 index 0000000..b9e4855 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm.gz new file mode 100644 index 0000000..43e9a58 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm new file mode 100644 index 0000000..78a3ab4 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm.gz new file mode 100644 index 0000000..0c11114 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm new file mode 100644 index 0000000..482f20a Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm.gz new file mode 100644 index 0000000..f0bad69 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm new file mode 100644 index 0000000..1b774f4 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm.gz new file mode 100644 index 0000000..41052ea Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Principal.j5dp7k8x6u.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Principal.j5dp7k8x6u.wasm new file mode 100644 index 0000000..813c3de Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Principal.j5dp7k8x6u.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Principal.j5dp7k8x6u.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Principal.j5dp7k8x6u.wasm.gz new file mode 100644 index 0000000..92991a6 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.Principal.j5dp7k8x6u.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.SecureString.7weoywtuje.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.SecureString.7weoywtuje.wasm new file mode 100644 index 0000000..d8eaa4c Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.SecureString.7weoywtuje.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.SecureString.7weoywtuje.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.SecureString.7weoywtuje.wasm.gz new file mode 100644 index 0000000..cb4e4fd Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.SecureString.7weoywtuje.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.snpv53zusk.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.snpv53zusk.wasm new file mode 100644 index 0000000..7005507 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.snpv53zusk.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.snpv53zusk.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.snpv53zusk.wasm.gz new file mode 100644 index 0000000..a549bbd Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Security.snpv53zusk.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ServiceModel.Web.3f1khl8k32.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ServiceModel.Web.3f1khl8k32.wasm new file mode 100644 index 0000000..b1bb0e2 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ServiceModel.Web.3f1khl8k32.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ServiceModel.Web.3f1khl8k32.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ServiceModel.Web.3f1khl8k32.wasm.gz new file mode 100644 index 0000000..bec714d Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ServiceModel.Web.3f1khl8k32.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ServiceProcess.a95c1olw0i.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ServiceProcess.a95c1olw0i.wasm new file mode 100644 index 0000000..418af37 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ServiceProcess.a95c1olw0i.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ServiceProcess.a95c1olw0i.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ServiceProcess.a95c1olw0i.wasm.gz new file mode 100644 index 0000000..6d0be69 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ServiceProcess.a95c1olw0i.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm new file mode 100644 index 0000000..9adb750 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm.gz new file mode 100644 index 0000000..4506e62 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm new file mode 100644 index 0000000..aa6af39 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm.gz new file mode 100644 index 0000000..2eb6e42 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Text.Encoding.s9ic8sulfi.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Text.Encoding.s9ic8sulfi.wasm new file mode 100644 index 0000000..96710c5 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Text.Encoding.s9ic8sulfi.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Text.Encoding.s9ic8sulfi.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Text.Encoding.s9ic8sulfi.wasm.gz new file mode 100644 index 0000000..c8a5050 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Text.Encoding.s9ic8sulfi.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Text.Encodings.Web.07hq35kp92.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Text.Encodings.Web.07hq35kp92.wasm new file mode 100644 index 0000000..f38a477 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Text.Encodings.Web.07hq35kp92.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Text.Encodings.Web.07hq35kp92.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Text.Encodings.Web.07hq35kp92.wasm.gz new file mode 100644 index 0000000..f687415 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Text.Encodings.Web.07hq35kp92.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Text.Json.2alhj4y3bm.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Text.Json.2alhj4y3bm.wasm new file mode 100644 index 0000000..73f1df0 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Text.Json.2alhj4y3bm.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Text.Json.2alhj4y3bm.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Text.Json.2alhj4y3bm.wasm.gz new file mode 100644 index 0000000..025466d Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Text.Json.2alhj4y3bm.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Text.RegularExpressions.h1qtkesphd.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Text.RegularExpressions.h1qtkesphd.wasm new file mode 100644 index 0000000..89a3d9b Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Text.RegularExpressions.h1qtkesphd.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Text.RegularExpressions.h1qtkesphd.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Text.RegularExpressions.h1qtkesphd.wasm.gz new file mode 100644 index 0000000..5ae43d9 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Text.RegularExpressions.h1qtkesphd.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.47ucbn1gg1.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.47ucbn1gg1.wasm new file mode 100644 index 0000000..78e2573 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.47ucbn1gg1.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.47ucbn1gg1.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.47ucbn1gg1.wasm.gz new file mode 100644 index 0000000..140268d Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.47ucbn1gg1.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.AccessControl.ruehy0ud5k.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.AccessControl.ruehy0ud5k.wasm new file mode 100644 index 0000000..45f1be8 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.AccessControl.ruehy0ud5k.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.AccessControl.ruehy0ud5k.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.AccessControl.ruehy0ud5k.wasm.gz new file mode 100644 index 0000000..bc9154d Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.AccessControl.ruehy0ud5k.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Channels.s3i62rxr2p.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Channels.s3i62rxr2p.wasm new file mode 100644 index 0000000..7a60d6c Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Channels.s3i62rxr2p.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Channels.s3i62rxr2p.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Channels.s3i62rxr2p.wasm.gz new file mode 100644 index 0000000..20e3c83 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Channels.s3i62rxr2p.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Overlapped.lzl7igry1t.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Overlapped.lzl7igry1t.wasm new file mode 100644 index 0000000..35799e9 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Overlapped.lzl7igry1t.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Overlapped.lzl7igry1t.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Overlapped.lzl7igry1t.wasm.gz new file mode 100644 index 0000000..abb504b Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Overlapped.lzl7igry1t.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm new file mode 100644 index 0000000..798f8e8 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm.gz new file mode 100644 index 0000000..15c446d Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm new file mode 100644 index 0000000..c3f49a1 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm.gz new file mode 100644 index 0000000..df08bf6 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm new file mode 100644 index 0000000..55fde85 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm.gz new file mode 100644 index 0000000..2978a6e Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Tasks.t0sjw89o0i.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Tasks.t0sjw89o0i.wasm new file mode 100644 index 0000000..d391a37 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Tasks.t0sjw89o0i.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Tasks.t0sjw89o0i.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Tasks.t0sjw89o0i.wasm.gz new file mode 100644 index 0000000..a0bbc08 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Tasks.t0sjw89o0i.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Thread.nfbg9v9bn0.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Thread.nfbg9v9bn0.wasm new file mode 100644 index 0000000..f574c3a Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Thread.nfbg9v9bn0.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Thread.nfbg9v9bn0.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Thread.nfbg9v9bn0.wasm.gz new file mode 100644 index 0000000..c8ea10c Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Thread.nfbg9v9bn0.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm new file mode 100644 index 0000000..04a0520 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm.gz new file mode 100644 index 0000000..c2016d7 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Timer.y8l1kxazi5.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Timer.y8l1kxazi5.wasm new file mode 100644 index 0000000..bb0adf9 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Timer.y8l1kxazi5.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Timer.y8l1kxazi5.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Timer.y8l1kxazi5.wasm.gz new file mode 100644 index 0000000..3008430 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Threading.Timer.y8l1kxazi5.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Transactions.Local.cig01jt23c.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Transactions.Local.cig01jt23c.wasm new file mode 100644 index 0000000..f1b5b18 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Transactions.Local.cig01jt23c.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Transactions.Local.cig01jt23c.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Transactions.Local.cig01jt23c.wasm.gz new file mode 100644 index 0000000..7a306cd Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Transactions.Local.cig01jt23c.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Transactions.pl50n6qbg7.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Transactions.pl50n6qbg7.wasm new file mode 100644 index 0000000..d6aeb97 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Transactions.pl50n6qbg7.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Transactions.pl50n6qbg7.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Transactions.pl50n6qbg7.wasm.gz new file mode 100644 index 0000000..38649ce Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Transactions.pl50n6qbg7.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ValueTuple.mj3r9p0pcw.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ValueTuple.mj3r9p0pcw.wasm new file mode 100644 index 0000000..cc505d5 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ValueTuple.mj3r9p0pcw.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ValueTuple.mj3r9p0pcw.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ValueTuple.mj3r9p0pcw.wasm.gz new file mode 100644 index 0000000..e66b9e0 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.ValueTuple.mj3r9p0pcw.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Web.2a6wq9gv6d.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Web.2a6wq9gv6d.wasm new file mode 100644 index 0000000..437d263 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Web.2a6wq9gv6d.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Web.2a6wq9gv6d.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Web.2a6wq9gv6d.wasm.gz new file mode 100644 index 0000000..bfed46a Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Web.2a6wq9gv6d.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Web.HttpUtility.3jfxpyq4in.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Web.HttpUtility.3jfxpyq4in.wasm new file mode 100644 index 0000000..30aa51b Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Web.HttpUtility.3jfxpyq4in.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Web.HttpUtility.3jfxpyq4in.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Web.HttpUtility.3jfxpyq4in.wasm.gz new file mode 100644 index 0000000..a89a26c Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Web.HttpUtility.3jfxpyq4in.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Windows.bw79ix589z.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Windows.bw79ix589z.wasm new file mode 100644 index 0000000..51b1034 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Windows.bw79ix589z.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Windows.bw79ix589z.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Windows.bw79ix589z.wasm.gz new file mode 100644 index 0000000..fefe862 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Windows.bw79ix589z.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.Linq.nvnhbwdsg6.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.Linq.nvnhbwdsg6.wasm new file mode 100644 index 0000000..65e4cff Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.Linq.nvnhbwdsg6.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.Linq.nvnhbwdsg6.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.Linq.nvnhbwdsg6.wasm.gz new file mode 100644 index 0000000..84e7b47 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.Linq.nvnhbwdsg6.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.ReaderWriter.szsdminork.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.ReaderWriter.szsdminork.wasm new file mode 100644 index 0000000..fcb5c7c Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.ReaderWriter.szsdminork.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.ReaderWriter.szsdminork.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.ReaderWriter.szsdminork.wasm.gz new file mode 100644 index 0000000..4d0dd9e Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.ReaderWriter.szsdminork.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.Serialization.b9imguls9w.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.Serialization.b9imguls9w.wasm new file mode 100644 index 0000000..d142ed7 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.Serialization.b9imguls9w.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.Serialization.b9imguls9w.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.Serialization.b9imguls9w.wasm.gz new file mode 100644 index 0000000..5bf8b84 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.Serialization.b9imguls9w.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.XDocument.8hg6c0at0c.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.XDocument.8hg6c0at0c.wasm new file mode 100644 index 0000000..1809a61 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.XDocument.8hg6c0at0c.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.XDocument.8hg6c0at0c.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.XDocument.8hg6c0at0c.wasm.gz new file mode 100644 index 0000000..9f202bf Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.XDocument.8hg6c0at0c.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.XPath.11wk1hhnfk.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.XPath.11wk1hhnfk.wasm new file mode 100644 index 0000000..1eb4381 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.XPath.11wk1hhnfk.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.XPath.11wk1hhnfk.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.XPath.11wk1hhnfk.wasm.gz new file mode 100644 index 0000000..1b1a4d0 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.XPath.11wk1hhnfk.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm new file mode 100644 index 0000000..8ae7920 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm.gz new file mode 100644 index 0000000..28a0a9b Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.XmlDocument.isetn6xlxa.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.XmlDocument.isetn6xlxa.wasm new file mode 100644 index 0000000..b428507 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.XmlDocument.isetn6xlxa.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.XmlDocument.isetn6xlxa.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.XmlDocument.isetn6xlxa.wasm.gz new file mode 100644 index 0000000..76374a6 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.XmlDocument.isetn6xlxa.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm new file mode 100644 index 0000000..2593f7a Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm.gz new file mode 100644 index 0000000..08d9294 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.zjgi7nrlno.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.zjgi7nrlno.wasm new file mode 100644 index 0000000..f30c56d Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.zjgi7nrlno.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.zjgi7nrlno.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.zjgi7nrlno.wasm.gz new file mode 100644 index 0000000..1f27b7d Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/System.Xml.zjgi7nrlno.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/WindowsBase.wz82kkc1p3.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/WindowsBase.wz82kkc1p3.wasm new file mode 100644 index 0000000..778aff7 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/WindowsBase.wz82kkc1p3.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/WindowsBase.wz82kkc1p3.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/WindowsBase.wz82kkc1p3.wasm.gz new file mode 100644 index 0000000..9d2f550 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/WindowsBase.wz82kkc1p3.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/blazor.webassembly.js b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/blazor.webassembly.js new file mode 100644 index 0000000..614cac1 --- /dev/null +++ b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/blazor.webassembly.js @@ -0,0 +1 @@ +!function(){"use strict";var e;let t;var n,r;!function(e){const t=[],n="__jsObjectId",r="__dotNetObject",o="__byte[]",i="__dotNetStream",s="__jsStreamReferenceLength";let a,c,l;class u{constructor(e){this._jsObject=e,this._cachedHandlers=new Map}resolveInvocationHandler(e,t){var n;const r=null===(n=this._cachedHandlers.get(e))||void 0===n?void 0:n[t];if(r)return r;const[o,i]=I(this._jsObject,e),s=function(e,t,n,r){switch(n){case l.FunctionCall:const n=e[t];if(n instanceof Function)return n.bind(e);throw new Error(`The value '${r}' is not a function.`);case l.ConstructorCall:const o=e[t];if(o instanceof Function){const t=o.bind(e);return(...e)=>new t(...e)}throw new Error(`The value '${r}' is not a function.`);case l.GetValue:if(!function(e,t){if(!(t in e))return!1;for(;void 0!==e;){const n=Object.getOwnPropertyDescriptor(e,t);if(n)return!!n.hasOwnProperty("value")||n.hasOwnProperty("get")&&"function"==typeof n.get;e=Object.getPrototypeOf(e)}return!1}(e,t))throw new Error(`The property '${r}' is not defined or is not readable.`);return()=>e[t];case l.SetValue:if(!function(e,t){if(!(t in e))return Object.isExtensible(e);for(;void 0!==e;){const n=Object.getOwnPropertyDescriptor(e,t);if(n)return!(!n.hasOwnProperty("value")||!n.writable)||n.hasOwnProperty("set")&&"function"==typeof n.set;e=Object.getPrototypeOf(e)}return!1}(e,t))throw new Error(`The property '${r}' is not writable.`);return(...n)=>e[t]=n[0]}}(o,i,t,e);return this.addHandlerToCache(e,s,t),s}getWrappedObject(){return this._jsObject}addHandlerToCache(e,t,n){const r=this._cachedHandlers.get(e);r?r[n]=t:this._cachedHandlers.set(e,{[n]:t})}}!function(e){e[e.FunctionCall=1]="FunctionCall",e[e.ConstructorCall=2]="ConstructorCall",e[e.GetValue=3]="GetValue",e[e.SetValue=4]="SetValue"}(l=e.JSCallType||(e.JSCallType={}));const d=0,f={[d]:new u(window)};f[0]._cachedHandlers.set("import",{[l.FunctionCall]:e=>("string"==typeof e&&e.startsWith("./")&&(e=new URL(e.substring(2),document.baseURI).toString()),import(e))});let m,h=1;function p(e){t.push(e)}function g(e){if(null==e)return{[n]:-1};if(e&&("object"==typeof e||e instanceof Function)){f[h]=new u(e);const t={[n]:h};return h++,t}throw new Error(`Cannot create a JSObjectReference from the value '${e}'.`)}function b(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 r={[s]:t};try{const t=g(e);r[n]=t[n]}catch(t){throw new Error(`Cannot create a JSStreamReference from the value '${e}'.`)}return r}function v(e,n){c=e;const r=n?JSON.parse(n,((e,n)=>t.reduce(((t,n)=>n(e,t)),n))):null;return c=void 0,r}function y(){if(void 0===a)throw new Error("No call dispatcher has been set.");if(null===a)throw new Error("There are multiple .NET runtimes present, so a default dispatcher could not be resolved. Use DotNetObject to invoke .NET instance methods.");return a}e.attachDispatcher=function(e){const t=new w(e);return void 0===a?a=t:a&&(a=null),t},e.attachReviver=p,e.invokeMethod=function(e,t,...n){return y().invokeDotNetStaticMethod(e,t,...n)},e.invokeMethodAsync=function(e,t,...n){return y().invokeDotNetStaticMethodAsync(e,t,...n)},e.createJSObjectReference=g,e.createJSStreamReference=b,e.disposeJSObjectReference=function(e){const t=e&&e[n];"number"==typeof t&&-1!==t&&C(t)},function(e){e[e.Default=0]="Default",e[e.JSObjectReference=1]="JSObjectReference",e[e.JSStreamReference=2]="JSStreamReference",e[e.JSVoidResult=3]="JSVoidResult"}(m=e.JSCallResultType||(e.JSCallResultType={}));class w{constructor(e){this._dotNetCallDispatcher=e,this._byteArraysToBeRevived=new Map,this._pendingDotNetToJSStreams=new Map,this._pendingAsyncCalls={},this._nextAsyncCallId=1}getDotNetCallDispatcher(){return this._dotNetCallDispatcher}invokeJSFromDotNet(e,t,n,r,o){const i=k(this.processJSCall(r,e,o,t),n);return null==i?null:_(this,i)}async beginInvokeJSFromDotNet(e,t,n,r,o,i){try{const s=this.processJSCall(o,t,i,n);if(e){const t=_(this,[e,!0,k(await s,r)]);this._dotNetCallDispatcher.endInvokeJSFromDotNet(e,!0,t)}}catch(t){if(e){const n=JSON.stringify([e,!1,E(t)]);this._dotNetCallDispatcher.endInvokeJSFromDotNet(e,!1,n)}}}processJSCall(e,t,n,r){var o;const i=null!==(o=v(this,r))&&void 0!==o?o:[];return S(t,e,n)(...i)}endInvokeDotNetFromJS(e,t,n){const r=t?v(this,n):new Error(n);this.completePendingCall(parseInt(e,10),t,r)}invokeDotNetStaticMethod(e,t,...n){return this.invokeDotNetMethod(e,t,null,n)}invokeDotNetStaticMethodAsync(e,t,...n){return this.invokeDotNetMethodAsync(e,t,null,n)}invokeDotNetMethod(e,t,n,r){if(this._dotNetCallDispatcher.invokeDotNetFromJS){const o=_(this,r),i=this._dotNetCallDispatcher.invokeDotNetFromJS(e,t,n,o);return i?v(this,i):null}throw new Error("The current dispatcher does not support synchronous calls from JS to .NET. Use invokeDotNetMethodAsync instead.")}invokeDotNetMethodAsync(e,t,n,r){if(e&&n)throw new Error(`For instance method calls, assemblyName should be null. Received '${e}'.`);const o=this._nextAsyncCallId++,i=new Promise(((e,t)=>{this._pendingAsyncCalls[o]={resolve:e,reject:t}}));try{const i=_(this,r);this._dotNetCallDispatcher.beginInvokeDotNetFromJS(o,e,t,n,i)}catch(e){this.completePendingCall(o,!1,e)}return i}receiveByteArray(e,t){this._byteArraysToBeRevived.set(e,t)}processByteArray(e){const t=this._byteArraysToBeRevived.get(e);return t?(this._byteArraysToBeRevived.delete(e),t):null}supplyDotNetStream(e,t){if(this._pendingDotNetToJSStreams.has(e)){const n=this._pendingDotNetToJSStreams.get(e);this._pendingDotNetToJSStreams.delete(e),n.resolve(t)}else{const n=new R;n.resolve(t),this._pendingDotNetToJSStreams.set(e,n)}}getDotNetStreamPromise(e){let t;if(this._pendingDotNetToJSStreams.has(e))t=this._pendingDotNetToJSStreams.get(e).streamPromise,this._pendingDotNetToJSStreams.delete(e);else{const n=new R;this._pendingDotNetToJSStreams.set(e,n),t=n.streamPromise}return t}completePendingCall(e,t,n){if(!this._pendingAsyncCalls.hasOwnProperty(e))throw new Error(`There is no pending async call with ID ${e}.`);const r=this._pendingAsyncCalls[e];delete this._pendingAsyncCalls[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 S(e,t,n){const r=f[t];if(r)return r.resolveInvocationHandler(e,null!=n?n:l.FunctionCall);throw new Error(`JS object instance with ID ${t} does not exist (has it been disposed?).`)}function C(e){delete f[e]}function I(e,t){const n=t.split(".");let r=e;for(let e=0;econsole.error(e)))}serializeAsArg(){return{[r]:this._id}}}e.DotNetObject=A,p((function(e,t){if(t&&"object"==typeof t){if(t.hasOwnProperty(r))return new A(t[r],c);if(t.hasOwnProperty(n)){const e=t[n],r=f[e];if(r)return r.getWrappedObject();throw new Error(`JS object instance with Id '${e}' does not exist. It may have been disposed.`)}if(t.hasOwnProperty(o)){const e=t[o],n=c.processByteArray(e);if(void 0===n)throw new Error(`Byte array index '${e}' does not exist.`);return n}if(t.hasOwnProperty(i)){const e=t[i],n=c.getDotNetStreamPromise(e);return new N(n)}}return t}));class N{constructor(e){this._streamPromise=e}stream(){return this._streamPromise}async arrayBuffer(){return new Response(await this.stream()).arrayBuffer()}}class R{constructor(){this.streamPromise=new Promise(((e,t)=>{this.resolve=e,this.reject=t}))}}function k(e,t){switch(t){case m.Default:return e;case m.JSObjectReference:return g(e);case m.JSStreamReference:return b(e);case m.JSVoidResult:return null;default:throw new Error(`Invalid JS call result type '${t}'.`)}}let D=0;function _(e,t){D=0,c=e;const n=JSON.stringify(t,O);return c=void 0,n}function O(e,t){if(t instanceof A)return t.serializeAsArg();if(t instanceof Uint8Array){c.getDotNetCallDispatcher().sendByteArray(D,t);const e={[o]:D};return D++,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"}(n||(n={})),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",e[e.namedEvent=10]="namedEvent"}(r||(r={}));class o{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 o(e,t.value)}return null}}const i=new Map,s=new Map,a=[];function c(e){return i.get(e)}function l(e){const t=i.get(e);return t?.browserEventName||e}function u(e,t){e.forEach((e=>i.set(e,t)))}function d(e){const t=[];for(let n=0;ne.selected)).map((e=>e.value))}}{const e=function(e){return!!e&&"INPUT"===e.tagName&&"checkbox"===e.getAttribute("type")}(t);return{value:e?!!t.checked:t.value}}}}),u(["copy","cut","paste"],{createEventArgs:e=>({type:e.type})}),u(["drag","dragend","dragenter","dragleave","dragover","dragstart","drop"],{createEventArgs:e=>{return{...f(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}}),u(["focus","blur","focusin","focusout"],{createEventArgs:e=>({type:e.type})}),u(["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,isComposing:t.isComposing};var t}}),u(["contextmenu","click","mouseover","mouseout","mousemove","mousedown","mouseup","mouseleave","mouseenter","dblclick"],{createEventArgs:e=>f(e)}),u(["error"],{createEventArgs:e=>{return{message:(t=e).message,filename:t.filename,lineno:t.lineno,colno:t.colno,type:t.type};var t}}),u(["loadstart","timeout","abort","load","loadend","progress"],{createEventArgs:e=>{return{lengthComputable:(t=e).lengthComputable,loaded:t.loaded,total:t.total,type:t.type};var t}}),u(["touchcancel","touchend","touchmove","touchenter","touchleave","touchstart"],{createEventArgs:e=>{return{detail:(t=e).detail,touches:d(t.touches),targetTouches:d(t.targetTouches),changedTouches:d(t.changedTouches),ctrlKey:t.ctrlKey,shiftKey:t.shiftKey,altKey:t.altKey,metaKey:t.metaKey,type:t.type};var t}}),u(["gotpointercapture","lostpointercapture","pointercancel","pointerdown","pointerenter","pointerleave","pointermove","pointerout","pointerover","pointerup"],{createEventArgs:e=>{return{...f(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}}),u(["wheel","mousewheel"],{createEventArgs:e=>{return{...f(t=e),deltaX:t.deltaX,deltaY:t.deltaY,deltaZ:t.deltaZ,deltaMode:t.deltaMode};var t}}),u(["cancel","close","toggle"],{createEventArgs:()=>({})});const m=["date","datetime-local","month","time","week"],h=new Map;let p,g,b=0;const v={async add(e,t,n){if(!n)throw new Error("initialParameters must be an object, even if empty.");const r="__bl-dynamic-root:"+(++b).toString();h.set(r,e);const o=await E().invokeMethodAsync("AddRootComponent",t,r),i=new w(o,g[t]);return await i.setParameters(n),i}};class y{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 y)}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 E().invokeMethodAsync("SetRootComponentParameters",this._componentId,r,t)}async dispose(){if(null!==this._componentId){await E().invokeMethodAsync("RemoveRootComponent",this._componentId),this._componentId=null;for(const e of this._jsEventCallbackWrappers.values())e.dispose()}}}function E(){if(!p)throw new Error("Dynamic root components have not been enabled in this application.");return p}const S=new Map,C=[],I=new Map;function A(e){return S.has(e)}function N(e,t,n){return k(e,t.eventHandlerId,(()=>R(e).invokeMethodAsync("DispatchEventAsync",t,n)))}function R(e){const t=S.get(e);if(!t)throw new Error(`No interop methods are registered for renderer ${e}`);return t}let k=(e,t,n)=>n();const D=x(["abort","blur","cancel","canplay","canplaythrough","change","close","cuechange","durationchange","emptied","ended","error","focus","load","loadeddata","loadedmetadata","loadend","loadstart","mouseenter","mouseleave","pointerenter","pointerleave","pause","play","playing","progress","ratechange","reset","scroll","seeked","seeking","stalled","submit","suspend","timeupdate","toggle","unload","volumechange","waiting","DOMNodeInsertedIntoDocument","DOMNodeRemovedFromDocument"]),_={submit:!0},O=x(["click","dblclick","mousedown","mousemove","mouseup"]);class T{static{this.nextEventDelegatorId=0}constructor(e){this.browserRendererId=e,this.afterClickCallbacks=[];const t=++T.nextEventDelegatorId;this.eventsCollectionKey=`_blazorEvents_${t}`,this.eventInfoStore=new L(this.onGlobalEvent.bind(this))}setListener(e,t,n,r){const o=this.getEventHandlerInfosForElement(e,!0),i=o.getHandler(t);if(i)this.eventInfoStore.update(i.eventHandlerId,n);else{const i={element:e,eventName:t,eventHandlerId:n,renderingComponentId:r};this.eventInfoStore.add(i),o.setHandler(t,i)}}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)}}removeListenersForElement(e){const t=this.getEventHandlerInfosForElement(e,!1);if(t){for(const e of t.enumerateHandlers())this.eventInfoStore.remove(e.eventHandlerId);delete e[this.eventsCollectionKey]}}notifyAfterClick(e){this.afterClickCallbacks.push(e),this.eventInfoStore.addGlobalListener("click")}setStopPropagation(e,t,n){const r=this.getEventHandlerInfosForElement(e,!0),o=r.stopPropagation(t);r.stopPropagation(t,n),!o&&n?this.eventInfoStore.addGlobalListener(t):o&&!n&&this.eventInfoStore.decrementCountByEventName(t)}setPreventDefault(e,t,n){const r=this.getEventHandlerInfosForElement(e,!0),o=r.preventDefault(t);r.preventDefault(t,n),!o&&n?this.eventInfoStore.addActiveGlobalListener(t):o&&!n&&this.eventInfoStore.decrementCountByEventName(t)}onGlobalEvent(e){if(!(e.target instanceof Element))return;if(!A(this.browserRendererId))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 r=n.shift(),i=null,s=!1;const a=Object.prototype.hasOwnProperty.call(D,e);let l=!1;for(;r;){const f=r,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)&&Object.prototype.hasOwnProperty.call(O,d)&&u.disabled))){if(!s){const n=c(e);i=n?.createEventArgs?n.createEventArgs(t):{},s=!0}Object.prototype.hasOwnProperty.call(_,t.type)&&t.preventDefault(),N(this.browserRendererId,{eventHandlerId:n.eventHandlerId,eventName:e,eventFieldInfo:o.fromEvent(n.renderingComponentId,t)},i)}m.stopPropagation(e)&&(l=!0),m.preventDefault(e)&&t.preventDefault()}r=a||l?void 0:n.shift()}var u,d}getEventHandlerInfosForElement(e,t){return Object.prototype.hasOwnProperty.call(e,this.eventsCollectionKey)?e[this.eventsCollectionKey]:t?e[this.eventsCollectionKey]=new F:null}}class L{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=l(e),Object.prototype.hasOwnProperty.call(this.countByEventName,e))this.countByEventName[e]++;else{this.countByEventName[e]=1;const t=Object.prototype.hasOwnProperty.call(D,e);document.addEventListener(e,this.globalListener,t)}}addActiveGlobalListener(e){e=l(e),Object.prototype.hasOwnProperty.call(this.countByEventName,e)?(this.countByEventName[e]++,document.removeEventListener(e,this.globalListener)):this.countByEventName[e]=1;const t=Object.prototype.hasOwnProperty.call(D,e);document.addEventListener(e,this.globalListener,{capture:t,passive:!1})}update(e,t){if(Object.prototype.hasOwnProperty.call(this.infosByEventHandlerId,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=l(t.eventName);this.decrementCountByEventName(n)}return t}decrementCountByEventName(e){0==--this.countByEventName[e]&&(delete this.countByEventName[e],document.removeEventListener(e,this.globalListener))}handleEventNameAliasAdded(e,t){if(Object.prototype.hasOwnProperty.call(this.countByEventName,e)){const n=this.countByEventName[e];delete this.countByEventName[e],document.removeEventListener(e,this.globalListener),this.addGlobalListener(t),this.countByEventName[t]+=n-1}}}class F{constructor(){this.handlers={},this.preventDefaultFlags=null,this.stopPropagationFlags=null}*enumerateHandlers(){for(const e in this.handlers)Object.prototype.hasOwnProperty.call(this.handlers,e)&&(yield this.handlers[e])}getHandler(e){return Object.prototype.hasOwnProperty.call(this.handlers,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 x(e){const t={};return e.forEach((e=>{t[e]=!0})),t}const M=Symbol(),P=Symbol(),B=Symbol();function H(e,t){if(M in e)return e;const n=[];if(e.childNodes.length>0){if(!t)throw new Error("New logical elements must start empty, or allowExistingContents must be true");e.childNodes.forEach((t=>{const r=H(t,!0);r[P]=e,n.push(r)}))}return e[M]=n,e}function j(e){const t=K(e);for(;t.length;)$(e,0)}function J(e,t){const n=document.createComment("!");return z(n,e,t),n}function z(e,t,n){const r=e;let o=e;if(e instanceof Comment){const t=K(r);if(t?.length>0){const t=Q(r),n=new Range;n.setStartBefore(e),n.setEndAfter(t),o=n.extractContents()}}const i=W(r);if(i){const e=K(i),t=Array.prototype.indexOf.call(e,r);e.splice(t,1),delete r[P]}const s=K(t);if(n0;)$(n,0)}const r=n;r.parentNode.removeChild(r)}function W(e){return e[P]||null}function U(e,t){return K(e)[t]}function V(e){const t=q(e);return"http://www.w3.org/2000/svg"===t.namespaceURI&&"foreignObject"!==t.tagName}function K(e){return e[M]}function G(e){const t=K(W(e));return t[Array.prototype.indexOf.call(t,e)+1]||null}function*X(e){const t=K(e);for(const e of t)yield*X(e);yield e}function Y(e,t){const n=K(e);t.forEach((e=>{e.moveRangeStart=n[e.fromSiblingIndex],e.moveRangeEnd=Q(e.moveRangeStart)})),t.forEach((t=>{const r=document.createComment("marker");t.moveToBeforeMarker=r;const o=n[t.toSiblingIndex+1];o?o.parentNode.insertBefore(r,o):Z(r,e)})),t.forEach((e=>{const t=e.moveToBeforeMarker,n=t.parentNode,r=e.moveRangeStart,o=e.moveRangeEnd;let i=r;for(;i;){const e=i.nextSibling;if(n.insertBefore(i,t),i===o)break;i=e}n.removeChild(t)})),t.forEach((e=>{n[e.toSiblingIndex]=e.moveRangeStart}))}function q(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 Z(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=G(t);n?n.parentNode.insertBefore(e,n):Z(e,W(t))}}}function Q(e){if(e instanceof Element||e instanceof DocumentFragment)return e;const t=G(e);if(t)return t.previousSibling;{const t=W(e);return t instanceof Element||t instanceof DocumentFragment?t.lastChild:Q(t)}}function ee(e){return`_bl_${e}`}const te="__internalId";e.attachReviver(((e,t)=>t&&"object"==typeof t&&Object.prototype.hasOwnProperty.call(t,te)&&"string"==typeof t[te]?function(e){const t=`[${ee(e)}]`;return document.querySelector(t)}(t[te]):t));const ne="_blazorDeferredValue";function re(e){return"select-multiple"===e.type}function oe(e,t){e.value=t||""}function ie(e,t){e instanceof HTMLSelectElement?re(e)?function(e,t){t||=[];for(let n=0;n{Ie()&&function(e){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=e.composedPath&&e.composedPath();if(t)for(let e=0;e{const t=document.createElement("script");t.textContent=e.textContent,e.getAttributeNames().forEach((n=>{t.setAttribute(n,e.getAttribute(n))})),e.parentNode.replaceChild(t,e)})),ae.content));var s;let a=0;for(;i.firstChild;)z(i.firstChild,o,a++)}applyAttribute(e,t,n,r){const o=e.frameReader,i=o.attributeName(r),s=o.attributeEventHandlerId(r);if(s){const e=pe(i);return void this.eventDelegator.setListener(n,e,s,t)}const a=o.attributeValue(r);this.setOrRemoveAttributeOrProperty(n,i,a)}insertFrameRange(e,t,n,r,o,i,s){const a=r;for(let a=i;adocument.baseURI,getLocationHref:()=>location.href,scrollToElement:Se};function Le(e,t,n=!1){const r=Ce(e);!t.forceLoad&&Ee(r)?Fe(r,!1,t.replaceHistoryEntry,t.historyEntryState,n):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,t.replaceHistoryEntry)}async function Fe(e,t,n,r=void 0,o=!1){if(Pe(),function(e,t){const n=new URL(e),r=new URL(t);return n.origin===r.origin&&n.pathname===r.pathname&&n.search===r.search&&""!==r.hash}(location.href,e))return xe(e,n,r),void function(e){const t=e.indexOf("#");t!==e.length-1&&Se(e.substring(t+1))}(e);const i=Je();(o||!i?.hasLocationChangingEventListeners||await Be(e,r,t,i))&&(function(e,t){const n=new URL(e),r=new URL(t);return n.protocol===r.protocol&&n.host===r.host&&n.port===r.port&&n.pathname===r.pathname}(e,location.href)||(ye=!0),xe(e,n,r),await He(t))}function xe(e,t,n=void 0){t?history.replaceState({userState:n,_index:Re},"",e):(Re++,history.pushState({userState:n,_index:Re},"",e))}function Me(e){return new Promise((t=>{const n=_e;_e=()=>{_e=n,t()},history.go(e)}))}function Pe(){Oe&&(Oe(!1),Oe=null)}function Be(e,t,n,r){return new Promise((o=>{Pe(),ke++,Oe=o,r.locationChanging(ke,e,t,n)}))}async function He(e,t){const n=location.href;await Promise.all(Array.from(De,(async([t,r])=>{A(t)&&await r.locationChanged(n,history.state?.userState,e)})))}async function je(e){_e&&(Ie(),1)&&await _e(e),Re=history.state?._index??0}function Je(){const e=Ae();if(void 0!==e)return De.get(e)}const ze={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({preventScroll:!0}))}},$e={init:function(e,t,n,r=50){const o=Ue(t);(o||document.documentElement).style.overflowAnchor="none";const i=document.createRange();f(n.parentElement)&&(t.style.display="table-row",n.style.display="table-row");const s=new IntersectionObserver((function(r){r.forEach((r=>{if(!r.isIntersecting)return;i.setStartAfter(t),i.setEndBefore(n);const o=i.getBoundingClientRect().height,s=r.rootBounds?.height;r.target===t?e.invokeMethodAsync("OnSpacerBeforeVisible",r.intersectionRect.top-r.boundingClientRect.top,o,s):r.target===n&&n.offsetHeight>0&&e.invokeMethodAsync("OnSpacerAfterVisible",r.boundingClientRect.bottom-r.intersectionRect.bottom,o,s)}))}),{root:o,rootMargin:`${r}px`});s.observe(t),s.observe(n);const a=d(t),c=d(n),{observersByDotNetObjectId:l,id:u}=Ve(e);function d(e){const t={attributes:!0},n=new MutationObserver(((n,r)=>{f(e.parentElement)&&(r.disconnect(),e.style.display="table-row",r.observe(e,t)),s.unobserve(e),s.observe(e)}));return n.observe(e,t),n}function f(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)}l[u]={intersectionObserver:s,mutationObserverBefore:a,mutationObserverAfter:c}},dispose:function(e){const{observersByDotNetObjectId:t,id:n}=Ve(e),r=t[n];r&&(r.intersectionObserver.disconnect(),r.mutationObserverBefore.disconnect(),r.mutationObserverAfter.disconnect(),e.dispose(),delete t[n])}},We=Symbol();function Ue(e){return e&&e!==document.body&&e!==document.documentElement?"visible"!==getComputedStyle(e).overflowY?e:Ue(e.parentElement):null}function Ve(e){const t=e._callDispatcher,n=e._id;return t[We]??={},{observersByDotNetObjectId:t[We],id:n}}const Ke={getAndRemoveExistingTitle:function(){const e=document.head?document.head.getElementsByTagName("title"):[];if(0===e.length)return null;let t=null;for(let n=e.length-1;n>=0;n--){const r=e[n],o=r.previousSibling;o instanceof Comment&&null!==W(o)||(null===t&&(t=r.textContent),r.parentNode?.removeChild(r))}return t}},Ge={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 i=Xe(e,t),s=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(i.blob)})),a=await new Promise((function(e){const t=Math.min(1,r/s.width),i=Math.min(1,o/s.height),a=Math.min(t,i),c=document.createElement("canvas");c.width=Math.round(s.width*a),c.height=Math.round(s.height*a),c.getContext("2d")?.drawImage(s,0,0,c.width,c.height),c.toBlob(e,n)})),c={id:++e._blazorInputFileNextFileId,lastModified:i.lastModified,name:i.name,size:a?.size||0,contentType:n,blob:a||i.blob};return e._blazorFilesById[c.id]=c,c},readFileData:async function(e,t){return Xe(e,t).blob}};function Xe(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. See https://aka.ms/aspnet/blazor-input-file-multiple-selections.`);return n}const Ye=new Set,qe={enableNavigationPrompt:function(e){0===Ye.size&&window.addEventListener("beforeunload",Ze),Ye.add(e)},disableNavigationPrompt:function(e){Ye.delete(e),0===Ye.size&&window.removeEventListener("beforeunload",Ze)}};function Ze(e){e.preventDefault(),e.returnValue=!0}const Qe=new Map,et={navigateTo:function(e,t,n=!1){Le(e,t instanceof Object?t:{forceLoad:t,replaceHistoryEntry:n})},registerCustomEventType:function(e,t){if(!t)throw new Error("The options parameter is required.");if(i.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)))}i.set(e,t)},rootComponents:v,runtime:{},_internal:{navigationManager:Te,domWrapper:ze,Virtualize:$e,PageTitle:Ke,InputFile:Ge,NavigationLock:qe,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)},attachWebRendererInterop:function(t,n,r,o){if(S.has(t))throw new Error(`Interop methods are already registered for renderer ${t}`);S.set(t,n),r&&o&&Object.keys(r).length>0&&function(t,n,r){if(p)throw new Error("Dynamic root components have already been enabled.");p=t,g=n;for(const[t,o]of Object.entries(r)){const r=e.findJSFunction(t,0);for(const e of o)r(e,n[e])}}(R(t),r,o),I.get(t)?.[0]?.(),function(e){for(const t of C)t(e)}(t)}}};window.Blazor=et;const tt=navigator,nt=tt.userAgentData&&tt.userAgentData.brands,rt=nt&&nt.length>0?nt.some((e=>"Google Chrome"===e.brand||"Microsoft Edge"===e.brand||"Chromium"===e.brand)):window.chrome,ot=tt.userAgentData?.platform??navigator.platform;function it(e){return 0!==e.debugLevel&&(rt||navigator.userAgent.includes("Firefox"))}let st=!1;function at(){const e=document.querySelector("#blazor-error-ui");e&&(e.style.display="block"),st||(st=!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()}})))}var ct,lt;!function(e){e[e.Default=0]="Default",e[e.Server=1]="Server",e[e.WebAssembly=2]="WebAssembly",e[e.WebView=3]="WebView"}(ct||(ct={})),function(e){e[e.Trace=0]="Trace",e[e.Debug=1]="Debug",e[e.Information=2]="Information",e[e.Warning=3]="Warning",e[e.Error=4]="Error",e[e.Critical=5]="Critical",e[e.None=6]="None"}(lt||(lt={}));class ut{constructor(e=!0,t,n,r=0){this.singleRuntime=e,this.logger=t,this.webRendererId=r,this.afterStartedCallbacks=[],n&&this.afterStartedCallbacks.push(...n)}async importInitializersAsync(e,t){await Promise.all(e.map((e=>async function(e,n){let r;var o;n.moduleExports||(o=n.name,r=new URL(o,document.baseURI).toString(),n.moduleExports=await import(r));const i=n.moduleExports;if(void 0!==i){if(e.singleRuntime){const{beforeStart:n,afterStarted:r,beforeWebAssemblyStart:o,afterWebAssemblyStarted:a,beforeServerStart:c,afterServerStarted:l}=i;let u=n;e.webRendererId===ct.Server&&c&&(u=c),e.webRendererId===ct.WebAssembly&&o&&(u=o);let d=r;return e.webRendererId===ct.Server&&l&&(d=l),e.webRendererId===ct.WebAssembly&&a&&(d=a),s(e,u,d,t)}return function(e,t,n){const o=n[0],{beforeStart:i,afterStarted:a,beforeWebStart:c,afterWebStarted:l,beforeWebAssemblyStart:u,afterWebAssemblyStarted:d,beforeServerStart:f,afterServerStarted:m}=t,h=!(c||l||u||d||f||m||!i&&!a),p=h&&o.enableClassicInitializers;if(h&&!o.enableClassicInitializers)e.logger?.log(lt.Warning,`Initializer '${r}' will be ignored because multiple runtimes are available. Use 'before(Web|WebAssembly|Server)Start' and 'after(Web|WebAssembly|Server)Started' instead.`);else if(p)return s(e,i,a,n);if(function(e){e.webAssembly?e.webAssembly.initializers||(e.webAssembly.initializers={beforeStart:[],afterStarted:[]}):e.webAssembly={initializers:{beforeStart:[],afterStarted:[]}},e.circuit?e.circuit.initializers||(e.circuit.initializers={beforeStart:[],afterStarted:[]}):e.circuit={initializers:{beforeStart:[],afterStarted:[]}}}(o),u&&o.webAssembly.initializers.beforeStart.push(u),d&&o.webAssembly.initializers.afterStarted.push(d),f&&o.circuit.initializers.beforeStart.push(f),m&&o.circuit.initializers.afterStarted.push(m),l&&e.afterStartedCallbacks.push(l),c)return c(o)}(e,i,t)}function s(e,t,n,r){if(n&&e.afterStartedCallbacks.push(n),t)return t(...r)}}(this,e))))}async invokeAfterStartedCallbacks(e){const t=(n=this.webRendererId,I.get(n)?.[1]);var n;t&&await t,await Promise.all(this.afterStartedCallbacks.map((t=>t(e))))}}let dt,ft,mt,ht,pt=null;const gt={load:function(e,t){return async function(e,t){const{dotnet:n}=await async function(e){if("undefined"==typeof WebAssembly||!WebAssembly.validate)throw new Error("This browser does not support WebAssembly.");if(e.loadBootResource){const t="dotnetjs",n=e.loadBootResource(t,"dotnet.js","_framework/dotnet.js","","js-module-dotnet");if("string"==typeof n){const e=new URL(n,document.baseURI).toString();return await import(e)}if(n)throw new Error(`For a ${t} resource, custom loaders must supply a URI string.`)}return await import("./dotnet.js")}(e),r=function(e,t){const n={maxParallelDownloads:1e6,enableDownloadRetry:!1};e.environment&&(n.applicationEnvironment=e.environment);const r={...window.Module||{},onConfigLoaded:async n=>{n.environmentVariables||(n.environmentVariables={}),"sharded"===n.globalizationMode&&(n.environmentVariables.__BLAZOR_SHARDED_ICU="1"),et._internal.getApplicationEnvironment=()=>n.applicationEnvironment,t?.(n),ht=await async function(e,t){if(e.initializers)return await Promise.all(e.initializers.beforeStart.map((t=>t(e)))),new ut(!1,void 0,e.initializers.afterStarted,ct.WebAssembly);{const n=[e,t.resources?.extensions??{}],r=new ut(!0,void 0,void 0,ct.WebAssembly),o=t?.resources?.libraryInitializers;let i;return i=o?"length"in o?o:Object.keys(o).map((e=>({name:e}))):[],await r.importInitializersAsync(i,n),r}}(e,n)},onDownloadResourceProgress:bt,config:n,out:yt,err:wt};return r}(e,t);e.applicationCulture&&n.withApplicationCulture(e.applicationCulture),e.environment&&n.withApplicationEnvironment(e.environment),e.loadBootResource&&n.withResourceLoader(e.loadBootResource),n.withModuleConfig(r),e.configureRuntime&&e.configureRuntime(n),mt=await n.create()}(e,t)},start:function(){return async function(){if(!mt)throw new Error("The runtime must be loaded it gets configured.");const{setModuleImports:t,INTERNAL:n,getConfig:r,invokeLibraryInitializers:o}=mt;ft=n,function(e){const t=ot.match(/^Mac/i)?"Cmd":"Alt";it(e)&&console.info(`Debugging hotkey: Shift+${t}+D (when application has focus)`),document.addEventListener("keydown",(t=>{t.shiftKey&&(t.metaKey||t.altKey)&&"KeyD"===t.code&&(it(e)?navigator.userAgent.includes("Firefox")?async function(){const e=await fetch(`_framework/debug?url=${encodeURIComponent(location.href)}&isFirefox=true`);200!==e.status&&console.warn(await e.text())}():rt?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+), Google Chrome, or Chromium, are supported for debugging."):console.error("Cannot start debugging, because the application was not compiled with debugging enabled."))}))}(r()),et.runtime=mt,et._internal.dotNetCriticalError=wt,t("blazor-internal",{Blazor:{_internal:et._internal}});const i=await mt.getAssemblyExports("Microsoft.AspNetCore.Components.WebAssembly");return Object.assign(et._internal,{dotNetExports:{...i.Microsoft.AspNetCore.Components.WebAssembly.Services.DefaultWebAssemblyJSRuntime}}),dt=e.attachDispatcher({beginInvokeDotNetFromJS:(e,t,n,r,o)=>{if(Et(),!r&&!t)throw new Error("Either assemblyName or dotNetObjectId must have a non null value.");const i=r?r.toString():t;et._internal.dotNetExports.BeginInvokeDotNet(e?e.toString():null,i,n,o)},endInvokeJSFromDotNet:(e,t,n)=>{et._internal.dotNetExports.EndInvokeJS(n)},sendByteArray:(e,t)=>{et._internal.dotNetExports.ReceiveByteArrayFromJS(e,t)},invokeDotNetFromJS:(e,t,n,r)=>(Et(),et._internal.dotNetExports.InvokeDotNet(e||null,t,n??0,r))}),{invokeLibraryInitializers:o}}()},callEntryPoint:async function(){try{await mt.runMain(mt.getConfig().mainAssemblyName,[])}catch(e){console.error(e),at()}},getArrayEntryPtr:function(e,t,n){const r=function(e){return e+12}(e)+4+t*n;return r},getObjectFieldsBaseAddress:function(e){return e+8},readInt16Field:function(e,t){return mt.getHeapI16(e+(t||0))},readInt32Field:function(e,t){return mt.getHeapI32(e+(t||0))},readUint64Field:function(e,t){return mt.getHeapU52(e+(t||0))},readObjectField:function(e,t){return mt.getHeapU32(e+(t||0))},readStringField:function(e,t,n){const r=mt.getHeapU32(e+(t||0));if(0===r)return null;if(n){const e=ft.monoObjectAsBoolOrNullUnsafe(r);if("boolean"==typeof e)return e?"":null}return ft.monoStringToStringUnsafe(r)},readStructField:function(e,t){return e+(t||0)},beginHeapLock:function(){return Et(),pt=St.create(),pt},invokeWhenHeapUnlocked:function(e){pt?pt.enqueuePostReleaseAction(e):e()}};function bt(e,t){const n=e/t*100;document.documentElement.style.setProperty("--blazor-load-percentage",`${n}%`),document.documentElement.style.setProperty("--blazor-load-percentage-text",`"${Math.floor(n)}%"`)}const vt=["DEBUGGING ENABLED"],yt=e=>vt.indexOf(e)<0&&console.log(e),wt=e=>{console.error(e||"(null)"),at()};function Et(){if(pt)throw new Error("Assertion failed - heap is currently locked")}class St{enqueuePostReleaseAction(e){this.postReleaseActions||(this.postReleaseActions=[]),this.postReleaseActions.push(e)}release(){if(pt!==this)throw new Error("Trying to release a lock which isn't current");for(ft.mono_wasm_gc_unlock(),pt=null;this.postReleaseActions?.length;)this.postReleaseActions.shift()(),Et()}static create(){return ft.mono_wasm_gc_lock(),new St}}class Ct{constructor(e){this.batchAddress=e,this.arrayRangeReader=It,this.arrayBuilderSegmentReader=At,this.diffReader=Nt,this.editReader=Rt,this.frameReader=kt}updatedComponents(){return t.readStructField(this.batchAddress,0)}referenceFrames(){return t.readStructField(this.batchAddress,It.structLength)}disposedComponentIds(){return t.readStructField(this.batchAddress,2*It.structLength)}disposedEventHandlerIds(){return t.readStructField(this.batchAddress,3*It.structLength)}updatedComponentsEntry(e,t){return Dt(e,t,Nt.structLength)}referenceFramesEntry(e,t){return Dt(e,t,kt.structLength)}disposedComponentIdsEntry(e,n){const r=Dt(e,n,4);return t.readInt32Field(r)}disposedEventHandlerIdsEntry(e,n){const r=Dt(e,n,8);return t.readUint64Field(r)}}const It={structLength:8,values:e=>t.readObjectField(e,0),count:e=>t.readInt32Field(e,4)},At={structLength:12,values:e=>{const n=t.readObjectField(e,0),r=t.getObjectFieldsBaseAddress(n);return t.readObjectField(r,0)},offset:e=>t.readInt32Field(e,4),count:e=>t.readInt32Field(e,8)},Nt={structLength:4+At.structLength,componentId:e=>t.readInt32Field(e,0),edits:e=>t.readStructField(e,4),editsEntry:(e,t)=>Dt(e,t,Rt.structLength)},Rt={structLength:20,editType:e=>t.readInt32Field(e,0),siblingIndex:e=>t.readInt32Field(e,4),newTreeIndex:e=>t.readInt32Field(e,8),moveToSiblingIndex:e=>t.readInt32Field(e,8),removedAttributeName:e=>t.readStringField(e,16)},kt={structLength:36,frameType:e=>t.readInt16Field(e,4),subtreeLength:e=>t.readInt32Field(e,8),elementReferenceCaptureId:e=>t.readStringField(e,16),componentId:e=>t.readInt32Field(e,12),elementName:e=>t.readStringField(e,16),textContent:e=>t.readStringField(e,16),markupContent:e=>t.readStringField(e,16),attributeName:e=>t.readStringField(e,16),attributeValue:e=>t.readStringField(e,24,!0),attributeEventHandlerId:e=>t.readUint64Field(e,8)};function Dt(e,n,r){return t.getArrayEntryPtr(e,n,r)}const _t=/^\s*Blazor-WebAssembly-Component-State:(?[a-zA-Z0-9+/=]+)$/,Ot=/^\s*Blazor-WebAssembly:[^{]*(?.*)$/;function Tt(e,t,n="state"){if(e.nodeType===Node.COMMENT_NODE){const r=e.textContent||"",o=t.exec(r),i=o&&o.groups&&o.groups[n];return i&&e.parentNode?.removeChild(e),i}if(!e.hasChildNodes())return;const r=e.childNodes;for(let e=0;e.*)$/);function xt(e,t){const n=e.currentElement;var r,o,i;if(n&&n.nodeType===Node.COMMENT_NODE&&n.textContent){const s=Ft.exec(n.textContent),a=s&&s.groups&&s.groups.descriptor;if(!a)return;!function(e){if(e.parentNode instanceof Document)throw new Error("Root components cannot be marked as interactive. The element must be rendered statically so that scripts are not evaluated multiple times.")}(n);try{const s=function(e){const t=JSON.parse(e),{type:n}=t;if("server"!==n&&"webassembly"!==n&&"auto"!==n)throw new Error(`Invalid component type '${n}'.`);return t}(a),c=function(e,t,n){const{prerenderId:r}=e;if(r){for(;n.next()&&n.currentElement;){const e=n.currentElement;if(e.nodeType!==Node.COMMENT_NODE)continue;if(!e.textContent)continue;const t=Ft.exec(e.textContent),o=t&&t[1];if(o)return $t(o,r),e}throw new Error(`Could not find an end component comment for '${t}'.`)}}(s,n,e);if(t!==s.type)return;switch(s.type){case"webassembly":return o=n,i=c,zt(r=s),{...r,uniqueId:jt++,start:o,end:i};case"server":return function(e,t,n){return Jt(e),{...e,uniqueId:jt++,start:t,end:n}}(s,n,c);case"auto":return function(e,t,n){return Jt(e),zt(e),{...e,uniqueId:jt++,start:t,end:n}}(s,n,c)}}catch(e){throw new Error(`Found malformed component comment at ${n.textContent}`)}}}let Mt,Pt,Bt,Ht,jt=0;function Jt(e){const{descriptor:t,sequence:n}=e;if(!t)throw new Error("descriptor must be defined when using a descriptor.");if(void 0===n)throw new Error("sequence must be defined when using a descriptor.");if(!Number.isInteger(n))throw new Error(`Error parsing the sequence '${n}' for component '${JSON.stringify(e)}'`)}function zt(e){const{assembly:t,typeName:n}=e;if(!t)throw new Error("assembly must be defined when using a descriptor.");if(!n)throw new Error("typeName must be defined when using a descriptor.");e.parameterDefinitions=e.parameterDefinitions&&atob(e.parameterDefinitions),e.parameterValues=e.parameterValues&&atob(e.parameterValues)}function $t(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 Wt{constructor(e){this.childNodes=e,this.currentIndex=-1,this.length=e.length}next(){return this.currentIndex++,this.currentIndex{Ht=e}));const Vt=new Promise((e=>{}));let Kt;const Gt=new Promise((e=>{Kt=e}));function Xt(e){if(Mt)throw new Error("WebAssembly options have already been configured.");!async function(e){const t=await e;Mt=t,Kt()}(e)}function Yt(e,t){if(void 0!==Bt)throw new Error("Blazor WebAssembly has already started.");return Bt=new Promise(qt.bind(null,e,t)),Bt}async function qt(e,n,r,o){(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((()=>{}));const i=Zt(n);!function(){const e=k;k=(t,n,r)=>{((e,t,n)=>{const r=function(e){return ge[e]}(e);r?.eventDelegator.getHandler(t)&>.invokeWhenHeapUnlocked(n)})(t,n,(()=>e(t,n,r)))}}(),et._internal.invokeJSJson=Qt,et._internal.endInvokeDotNetFromJS=en,et._internal.receiveWebAssemblyDotNetDataStream=tn,et._internal.receiveByteArray=nn;const s=(t=gt,t);et.platform=s,et._internal.renderBatch=(e,t)=>{const n=gt.beginHeapLock();try{!function(e,t){const n=ge[e];if(!n)throw new Error(`There is no browser renderer with ID ${e}.`);const r=t.arrayRangeReader,o=t.updatedComponents(),i=r.values(o),s=r.count(o),a=t.referenceFrames(),c=r.values(a),l=t.diffReader;for(let e=0;e{await dt.invokeDotNetStaticMethodAsync("Microsoft.AspNetCore.Components.WebAssembly","NotifyLocationChanged",e,t,n)}),(async(e,t,n,r)=>{const o=await dt.invokeDotNetStaticMethodAsync("Microsoft.AspNetCore.Components.WebAssembly","NotifyLocationChangingAsync",t,n,r);et._internal.navigationManager.endLocationChanging(e,o)}));const a=new Ut(e);et._internal.registeredComponents={getRegisteredComponentsCount:()=>a.getCount(),getAssembly:e=>a.getAssembly(e),getTypeName:e=>a.getTypeName(e),getParameterDefinitions:e=>a.getParameterDefinitions(e)||"",getParameterValues:e=>a.getParameterValues(e)||""},et._internal.getPersistedState=()=>Tt(document,_t)||"",et._internal.getInitialComponentsUpdate=()=>Vt,et._internal.updateRootComponents=(e,t)=>{et._internal.dotNetExports?.UpdateRootComponentsCore(e,t)},et._internal.endUpdateRootComponents=t=>e.onAfterUpdateRootComponents?.(t),et._internal.attachRootComponentToElement=(e,t,n)=>{const r=a.resolveRegisteredElement(e);r?we(n,r,t,!1):function(e,t,n){const r="::before";let o=!1;if(e.endsWith("::after"))e=e.slice(0,-7),o=!0;else if(e.endsWith(r))throw new Error(`The '${r}' selector is not supported.`);const i=function(e){const t=h.get(e);if(t)return h.delete(e),t}(e)||document.querySelector(e);if(!i)throw new Error(`Could not find any element matching selector '${e}'.`);we(n,H(i,!0),t,o)}(e,t,n)};try{await i,await s.start()}catch(e){throw new Error(`Failed to start platform. Reason: ${e}`)}s.callEntryPoint(),ht.invokeAfterStartedCallbacks(et),r()}function Zt(e){return Pt??=(async()=>{await Gt;const t=Mt??{};t.environment||(t.environment=e?.environmentName??void 0);const n=Mt?.configureRuntime;t.configureRuntime=t=>{n?.(t),e?.environmentVariables&&t.withEnvironmentVariables(e.environmentVariables)},await gt.load(t,Ht)})(),Pt}function Qt(e,t,n,r,o,i){return 0!==o?(dt.beginInvokeJSFromDotNet(o,e,r,n,t,i),null):dt.invokeJSFromDotNet(e,r,n,t,i)}function en(e,t,n){dt.endInvokeDotNetFromJS(e,t,n)}function tn(e,t,n,r){!function(e,t,n,r,o){let i=Qe.get(t);if(!i){const n=new ReadableStream({start(e){Qe.set(t,e),i=e}});e.supplyDotNetStream(t,n)}o?(i.error(o),Qe.delete(t)):0===r?(i.close(),Qe.delete(t)):i.enqueue(n.length===r?n:n.subarray(0,r))}(dt,e,t,n,r)}function nn(e,t){dt.receiveByteArray(e,t)}class rn{constructor(e){this.initialComponents=e}resolveRootComponent(e){return this.initialComponents[e]}}class on{constructor(){this._eventListeners=new Map}static create(e){const t=new on;return e.addEventListener=t.addEventListener.bind(t),e.removeEventListener=t.removeEventListener.bind(t),t}addEventListener(e,t){let n=this._eventListeners.get(e);n||(n=new Set,this._eventListeners.set(e,n)),n.add(t)}removeEventListener(e,t){this._eventListeners.get(e)?.delete(t)}dispatchEvent(e,t){const n=this._eventListeners.get(e);if(!n)return;const r={...t,type:e};for(const e of n)e(r)}}let sn=!1;async function an(e){if(sn)throw new Error("Blazor has already started.");sn=!0,Xt(Promise.resolve(e||{})),on.create(et);const t=Lt(document,"webassembly"),n=function(){const e=Tt(document,Ot,"options");if(e)return JSON.parse(e)}(),r=new rn(t);await Yt(r,n)}et.start=an,window.DotNet=e,document&&document.currentScript&&"false"!==document.currentScript.getAttribute("autostart")&&an().catch(wt)}(); diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/blazor.webassembly.js.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/blazor.webassembly.js.gz new file mode 100644 index 0000000..7b90153 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/blazor.webassembly.js.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/dotnet.js b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/dotnet.js new file mode 100644 index 0000000..34695d4 --- /dev/null +++ b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/dotnet.js @@ -0,0 +1,1332 @@ +//! Licensed to the .NET Foundation under one or more agreements. +//! The .NET Foundation licenses this file to you under the MIT license. + +var e=!1;const t=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,4,1,96,0,0,3,2,1,0,10,8,1,6,0,6,64,25,11,11])),o=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,5,1,96,0,1,123,3,2,1,0,10,15,1,13,0,65,1,253,15,65,2,253,15,253,128,2,11])),n=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,5,1,96,0,1,123,3,2,1,0,10,10,1,8,0,65,0,253,15,253,98,11])),r=Symbol.for("wasm promise_control");function i(e,t){let o=null;const n=new Promise((function(n,r){o={isDone:!1,promise:null,resolve:t=>{o.isDone||(o.isDone=!0,n(t),e&&e())},reject:e=>{o.isDone||(o.isDone=!0,r(e),t&&t())}}}));o.promise=n;const i=n;return i[r]=o,{promise:i,promise_control:o}}function s(e){return e[r]}function a(e){e&&function(e){return void 0!==e[r]}(e)||Be(!1,"Promise is not controllable")}const l="__mono_message__",c=["debug","log","trace","warn","info","error"],d="MONO_WASM: ";let u,f,m,g,p,h;function w(e){g=e}function b(e){if(Pe.diagnosticTracing){const t="function"==typeof e?e():e;console.debug(d+t)}}function y(e,...t){console.info(d+e,...t)}function v(e,...t){console.info(e,...t)}function E(e,...t){console.warn(d+e,...t)}function _(e,...t){if(t&&t.length>0&&t[0]&&"object"==typeof t[0]){if(t[0].silent)return;if(t[0].toString)return void console.error(d+e,t[0].toString())}console.error(d+e,...t)}function x(e,t,o){return function(...n){try{let r=n[0];if(void 0===r)r="undefined";else if(null===r)r="null";else if("function"==typeof r)r=r.toString();else if("string"!=typeof r)try{r=JSON.stringify(r)}catch(e){r=r.toString()}t(o?JSON.stringify({method:e,payload:r,arguments:n.slice(1)}):[e+r,...n.slice(1)])}catch(e){m.error(`proxyConsole failed: ${e}`)}}}function j(e,t,o){f=t,g=e,m={...t};const n=`${o}/console`.replace("https://","wss://").replace("http://","ws://");u=new WebSocket(n),u.addEventListener("error",A),u.addEventListener("close",S),function(){for(const e of c)f[e]=x(`console.${e}`,T,!0)}()}function R(e){let t=30;const o=()=>{u?0==u.bufferedAmount||0==t?(e&&v(e),function(){for(const e of c)f[e]=x(`console.${e}`,m.log,!1)}(),u.removeEventListener("error",A),u.removeEventListener("close",S),u.close(1e3,e),u=void 0):(t--,globalThis.setTimeout(o,100)):e&&m&&m.log(e)};o()}function T(e){u&&u.readyState===WebSocket.OPEN?u.send(e):m.log(e)}function A(e){m.error(`[${g}] proxy console websocket error: ${e}`,e)}function S(e){m.debug(`[${g}] proxy console websocket closed: ${e}`,e)}function D(){Pe.preferredIcuAsset=O(Pe.config);let e="invariant"==Pe.config.globalizationMode;if(!e)if(Pe.preferredIcuAsset)Pe.diagnosticTracing&&b("ICU data archive(s) available, disabling invariant mode");else{if("custom"===Pe.config.globalizationMode||"all"===Pe.config.globalizationMode||"sharded"===Pe.config.globalizationMode){const e="invariant globalization mode is inactive and no ICU data archives are available";throw _(`ERROR: ${e}`),new Error(e)}Pe.diagnosticTracing&&b("ICU data archive(s) not available, using invariant globalization mode"),e=!0,Pe.preferredIcuAsset=null}const t="DOTNET_SYSTEM_GLOBALIZATION_INVARIANT",o=Pe.config.environmentVariables;if(void 0===o[t]&&e&&(o[t]="1"),void 0===o.TZ)try{const e=Intl.DateTimeFormat().resolvedOptions().timeZone||null;e&&(o.TZ=e)}catch(e){y("failed to detect timezone, will fallback to UTC")}}function O(e){var t;if((null===(t=e.resources)||void 0===t?void 0:t.icu)&&"invariant"!=e.globalizationMode){const t=e.applicationCulture||(ke?globalThis.navigator&&globalThis.navigator.languages&&globalThis.navigator.languages[0]:Intl.DateTimeFormat().resolvedOptions().locale),o=e.resources.icu;let n=null;if("custom"===e.globalizationMode){if(o.length>=1)return o[0].name}else t&&"all"!==e.globalizationMode?"sharded"===e.globalizationMode&&(n=function(e){const t=e.split("-")[0];return"en"===t||["fr","fr-FR","it","it-IT","de","de-DE","es","es-ES"].includes(e)?"icudt_EFIGS.dat":["zh","ko","ja"].includes(t)?"icudt_CJK.dat":"icudt_no_CJK.dat"}(t)):n="icudt.dat";if(n)for(let e=0;enull},url:e,arrayBuffer:()=>r,json:()=>JSON.parse(r),text:()=>{throw new Error("NotImplementedException")}}}if(o)return globalThis.fetch(e,t||{credentials:"same-origin"});if("function"==typeof read)return{ok:!0,url:e,headers:{length:0,get:()=>null},arrayBuffer:()=>new Uint8Array(read(e,"binary")),json:()=>JSON.parse(read(e,"utf8")),text:()=>read(e,"utf8")}}catch(t){return{ok:!1,url:e,status:500,headers:{length:0,get:()=>null},statusText:"ERR28: "+t,arrayBuffer:()=>{throw t},json:()=>{throw t},text:()=>{throw t}}}throw new Error("No fetch implementation available")}function I(e){return"string"!=typeof e&&Be(!1,"url must be a string"),!M(e)&&0!==e.indexOf("./")&&0!==e.indexOf("../")&&globalThis.URL&&globalThis.document&&globalThis.document.baseURI&&(e=new URL(e,globalThis.document.baseURI).toString()),e}const U=/^[a-zA-Z][a-zA-Z\d+\-.]*?:\/\//,P=/[a-zA-Z]:[\\/]/;function M(e){return Se||Ie?e.startsWith("/")||e.startsWith("\\")||-1!==e.indexOf("///")||P.test(e):U.test(e)}let L,N=0;const $=[],z=[],W=new Map,F={"js-module-threads":!0,"js-module-runtime":!0,"js-module-dotnet":!0,"js-module-native":!0,"js-module-diagnostics":!0},B={...F,"js-module-library-initializer":!0},V={...F,dotnetwasm:!0,heap:!0,manifest:!0},q={...B,manifest:!0},H={...B,dotnetwasm:!0},J={dotnetwasm:!0,symbols:!0},Z={...B,dotnetwasm:!0,symbols:!0},Q={symbols:!0};function G(e){return!("icu"==e.behavior&&e.name!=Pe.preferredIcuAsset)}function K(e,t,o){null!=t||(t=[]),Be(1==t.length,`Expect to have one ${o} asset in resources`);const n=t[0];return n.behavior=o,X(n),e.push(n),n}function X(e){V[e.behavior]&&W.set(e.behavior,e)}function Y(e){Be(V[e],`Unknown single asset behavior ${e}`);const t=W.get(e);if(t&&!t.resolvedUrl)if(t.resolvedUrl=Pe.locateFile(t.name),F[t.behavior]){const e=ge(t);e?("string"!=typeof e&&Be(!1,"loadBootResource response for 'dotnetjs' type should be a URL string"),t.resolvedUrl=e):t.resolvedUrl=ce(t.resolvedUrl,t.behavior)}else if("dotnetwasm"!==t.behavior)throw new Error(`Unknown single asset behavior ${e}`);return t}function ee(e){const t=Y(e);return Be(t,`Single asset for ${e} not found`),t}let te=!1;async function oe(){if(!te){te=!0,Pe.diagnosticTracing&&b("mono_download_assets");try{const e=[],t=[],o=(e,t)=>{!Z[e.behavior]&&G(e)&&Pe.expected_instantiated_assets_count++,!H[e.behavior]&&G(e)&&(Pe.expected_downloaded_assets_count++,t.push(se(e)))};for(const t of $)o(t,e);for(const e of z)o(e,t);Pe.allDownloadsQueued.promise_control.resolve(),Promise.all([...e,...t]).then((()=>{Pe.allDownloadsFinished.promise_control.resolve()})).catch((e=>{throw Pe.err("Error in mono_download_assets: "+e),Xe(1,e),e})),await Pe.runtimeModuleLoaded.promise;const n=async e=>{const t=await e;if(t.buffer){if(!Z[t.behavior]){t.buffer&&"object"==typeof t.buffer||Be(!1,"asset buffer must be array-like or buffer-like or promise of these"),"string"!=typeof t.resolvedUrl&&Be(!1,"resolvedUrl must be string");const e=t.resolvedUrl,o=await t.buffer,n=new Uint8Array(o);pe(t),await Ue.beforeOnRuntimeInitialized.promise,Ue.instantiate_asset(t,e,n)}}else J[t.behavior]?("symbols"===t.behavior&&(await Ue.instantiate_symbols_asset(t),pe(t)),J[t.behavior]&&++Pe.actual_downloaded_assets_count):(t.isOptional||Be(!1,"Expected asset to have the downloaded buffer"),!H[t.behavior]&&G(t)&&Pe.expected_downloaded_assets_count--,!Z[t.behavior]&&G(t)&&Pe.expected_instantiated_assets_count--)},r=[],i=[];for(const t of e)r.push(n(t));for(const e of t)i.push(n(e));Promise.all(r).then((()=>{Ce||Ue.coreAssetsInMemory.promise_control.resolve()})).catch((e=>{throw Pe.err("Error in mono_download_assets: "+e),Xe(1,e),e})),Promise.all(i).then((async()=>{Ce||(await Ue.coreAssetsInMemory.promise,Ue.allAssetsInMemory.promise_control.resolve())})).catch((e=>{throw Pe.err("Error in mono_download_assets: "+e),Xe(1,e),e}))}catch(e){throw Pe.err("Error in mono_download_assets: "+e),e}}}let ne=!1;function re(){if(ne)return;ne=!0;const e=Pe.config,t=[];if(e.assets)for(const t of e.assets)"object"!=typeof t&&Be(!1,`asset must be object, it was ${typeof t} : ${t}`),"string"!=typeof t.behavior&&Be(!1,"asset behavior must be known string"),"string"!=typeof t.name&&Be(!1,"asset name must be string"),t.resolvedUrl&&"string"!=typeof t.resolvedUrl&&Be(!1,"asset resolvedUrl could be string"),t.hash&&"string"!=typeof t.hash&&Be(!1,"asset resolvedUrl could be string"),t.pendingDownload&&"object"!=typeof t.pendingDownload&&Be(!1,"asset pendingDownload could be object"),t.isCore?$.push(t):z.push(t),X(t);else if(e.resources){const o=e.resources;o.wasmNative||Be(!1,"resources.wasmNative must be defined"),o.jsModuleNative||Be(!1,"resources.jsModuleNative must be defined"),o.jsModuleRuntime||Be(!1,"resources.jsModuleRuntime must be defined"),K(z,o.wasmNative,"dotnetwasm"),K(t,o.jsModuleNative,"js-module-native"),K(t,o.jsModuleRuntime,"js-module-runtime"),o.jsModuleDiagnostics&&K(t,o.jsModuleDiagnostics,"js-module-diagnostics");const n=(e,t,o)=>{const n=e;n.behavior=t,o?(n.isCore=!0,$.push(n)):z.push(n)};if(o.coreAssembly)for(let e=0;eglobalThis.setTimeout(e,100))),Pe.diagnosticTracing&&b(`Retrying download (2) '${e.name}' after delay`),await ae(e)}}}async function ae(e){for(;L;)await L.promise;try{++N,N==Pe.maxParallelDownloads&&(Pe.diagnosticTracing&&b("Throttling further parallel downloads"),L=i());const t=await async function(e){if(e.pendingDownload&&(e.pendingDownloadInternal=e.pendingDownload),e.pendingDownloadInternal&&e.pendingDownloadInternal.response)return e.pendingDownloadInternal.response;if(e.buffer){const t=await e.buffer;return e.resolvedUrl||(e.resolvedUrl="undefined://"+e.name),e.pendingDownloadInternal={url:e.resolvedUrl,name:e.name,response:Promise.resolve({ok:!0,arrayBuffer:()=>t,json:()=>JSON.parse(new TextDecoder("utf-8").decode(t)),text:()=>{throw new Error("NotImplementedException")},headers:{get:()=>{}}})},e.pendingDownloadInternal.response}const t=e.loadRemote&&Pe.config.remoteSources?Pe.config.remoteSources:[""];let o;for(let n of t){n=n.trim(),"./"===n&&(n="");const t=le(e,n);e.name===t?Pe.diagnosticTracing&&b(`Attempting to download '${t}'`):Pe.diagnosticTracing&&b(`Attempting to download '${t}' for ${e.name}`);try{e.resolvedUrl=t;const n=fe(e);if(e.pendingDownloadInternal=n,o=await n.response,!o||!o.ok)continue;return o}catch(e){o||(o={ok:!1,url:t,status:0,statusText:""+e});continue}}const n=e.isOptional||e.name.match(/\.pdb$/)&&Pe.config.ignorePdbLoadErrors;if(o||Be(!1,`Response undefined ${e.name}`),!n){const t=new Error(`download '${o.url}' for ${e.name} failed ${o.status} ${o.statusText}`);throw t.status=o.status,t}y(`optional download '${o.url}' for ${e.name} failed ${o.status} ${o.statusText}`)}(e);return t?(J[e.behavior]||(e.buffer=await t.arrayBuffer(),++Pe.actual_downloaded_assets_count),e):e}finally{if(--N,L&&N==Pe.maxParallelDownloads-1){Pe.diagnosticTracing&&b("Resuming more parallel downloads");const e=L;L=void 0,e.promise_control.resolve()}}}function le(e,t){let o;return null==t&&Be(!1,`sourcePrefix must be provided for ${e.name}`),e.resolvedUrl?o=e.resolvedUrl:(o=""===t?"assembly"===e.behavior||"pdb"===e.behavior?e.name:"resource"===e.behavior&&e.culture&&""!==e.culture?`${e.culture}/${e.name}`:e.name:t+e.name,o=ce(Pe.locateFile(o),e.behavior)),o&&"string"==typeof o||Be(!1,"attemptUrl need to be path or url string"),o}function ce(e,t){return Pe.modulesUniqueQuery&&q[t]&&(e+=Pe.modulesUniqueQuery),e}let de=0;const ue=new Set;function fe(e){try{e.resolvedUrl||Be(!1,"Request's resolvedUrl must be set");const t=function(e){let t=e.resolvedUrl;if(Pe.loadBootResource){const o=ge(e);if(o instanceof Promise)return o;"string"==typeof o&&(t=o)}const o={};return e.cache?o.cache=e.cache:Pe.config.disableNoCacheFetch||(o.cache="no-cache"),e.useCredentials?o.credentials="include":!Pe.config.disableIntegrityCheck&&e.hash&&(o.integrity=e.hash),Pe.fetch_like(t,o)}(e),o={name:e.name,url:e.resolvedUrl,response:t};return ue.add(e.name),o.response.then((()=>{"assembly"==e.behavior&&Pe.loadedAssemblies.push(e.name),de++,Pe.onDownloadResourceProgress&&Pe.onDownloadResourceProgress(de,ue.size)})),o}catch(t){const o={ok:!1,url:e.resolvedUrl,status:500,statusText:"ERR29: "+t,arrayBuffer:()=>{throw t},json:()=>{throw t}};return{name:e.name,url:e.resolvedUrl,response:Promise.resolve(o)}}}const me={resource:"assembly",assembly:"assembly",pdb:"pdb",icu:"globalization",vfs:"configuration",manifest:"manifest",dotnetwasm:"dotnetwasm","js-module-dotnet":"dotnetjs","js-module-native":"dotnetjs","js-module-runtime":"dotnetjs","js-module-threads":"dotnetjs"};function ge(e){var t;if(Pe.loadBootResource){const o=null!==(t=e.hash)&&void 0!==t?t:"",n=e.resolvedUrl,r=me[e.behavior];if(r){const t=Pe.loadBootResource(r,e.name,n,o,e.behavior);return"string"==typeof t?I(t):t}}}function pe(e){e.pendingDownloadInternal=null,e.pendingDownload=null,e.buffer=null,e.moduleExports=null}function he(e){let t=e.lastIndexOf("/");return t>=0&&t++,e.substring(t)}async function we(e){e&&await Promise.all((null!=e?e:[]).map((e=>async function(e){try{const t=e.name;if(!e.moduleExports){const o=ce(Pe.locateFile(t),"js-module-library-initializer");Pe.diagnosticTracing&&b(`Attempting to import '${o}' for ${e}`),e.moduleExports=await import(/*! webpackIgnore: true */o)}Pe.libraryInitializers.push({scriptName:t,exports:e.moduleExports})}catch(t){E(`Failed to import library initializer '${e}': ${t}`)}}(e))))}async function be(e,t){if(!Pe.libraryInitializers)return;const o=[];for(let n=0;nr.exports[e](...t))))}await Promise.all(o)}async function ye(e,t,o){try{await o()}catch(o){throw E(`Failed to invoke '${t}' on library initializer '${e}': ${o}`),Xe(1,o),o}}function ve(e,t){if(e===t)return e;const o={...t};return void 0!==o.assets&&o.assets!==e.assets&&(o.assets=[...e.assets||[],...o.assets||[]]),void 0!==o.resources&&(o.resources=_e(e.resources||{assembly:[],jsModuleNative:[],jsModuleRuntime:[],wasmNative:[]},o.resources)),void 0!==o.environmentVariables&&(o.environmentVariables={...e.environmentVariables||{},...o.environmentVariables||{}}),void 0!==o.runtimeOptions&&o.runtimeOptions!==e.runtimeOptions&&(o.runtimeOptions=[...e.runtimeOptions||[],...o.runtimeOptions||[]]),Object.assign(e,o)}function Ee(e,t){if(e===t)return e;const o={...t};return o.config&&(e.config||(e.config={}),o.config=ve(e.config,o.config)),Object.assign(e,o)}function _e(e,t){if(e===t)return e;const o={...t};return void 0!==o.coreAssembly&&(o.coreAssembly=[...e.coreAssembly||[],...o.coreAssembly||[]]),void 0!==o.assembly&&(o.assembly=[...e.assembly||[],...o.assembly||[]]),void 0!==o.lazyAssembly&&(o.lazyAssembly=[...e.lazyAssembly||[],...o.lazyAssembly||[]]),void 0!==o.corePdb&&(o.corePdb=[...e.corePdb||[],...o.corePdb||[]]),void 0!==o.pdb&&(o.pdb=[...e.pdb||[],...o.pdb||[]]),void 0!==o.jsModuleWorker&&(o.jsModuleWorker=[...e.jsModuleWorker||[],...o.jsModuleWorker||[]]),void 0!==o.jsModuleNative&&(o.jsModuleNative=[...e.jsModuleNative||[],...o.jsModuleNative||[]]),void 0!==o.jsModuleDiagnostics&&(o.jsModuleDiagnostics=[...e.jsModuleDiagnostics||[],...o.jsModuleDiagnostics||[]]),void 0!==o.jsModuleRuntime&&(o.jsModuleRuntime=[...e.jsModuleRuntime||[],...o.jsModuleRuntime||[]]),void 0!==o.wasmSymbols&&(o.wasmSymbols=[...e.wasmSymbols||[],...o.wasmSymbols||[]]),void 0!==o.wasmNative&&(o.wasmNative=[...e.wasmNative||[],...o.wasmNative||[]]),void 0!==o.icu&&(o.icu=[...e.icu||[],...o.icu||[]]),void 0!==o.satelliteResources&&(o.satelliteResources=function(e,t){if(e===t)return e;for(const o in t)e[o]=[...e[o]||[],...t[o]||[]];return e}(e.satelliteResources||{},o.satelliteResources||{})),void 0!==o.modulesAfterConfigLoaded&&(o.modulesAfterConfigLoaded=[...e.modulesAfterConfigLoaded||[],...o.modulesAfterConfigLoaded||[]]),void 0!==o.modulesAfterRuntimeReady&&(o.modulesAfterRuntimeReady=[...e.modulesAfterRuntimeReady||[],...o.modulesAfterRuntimeReady||[]]),void 0!==o.extensions&&(o.extensions={...e.extensions||{},...o.extensions||{}}),void 0!==o.vfs&&(o.vfs=[...e.vfs||[],...o.vfs||[]]),Object.assign(e,o)}function xe(){const e=Pe.config;if(e.environmentVariables=e.environmentVariables||{},e.runtimeOptions=e.runtimeOptions||[],e.resources=e.resources||{assembly:[],jsModuleNative:[],jsModuleWorker:[],jsModuleRuntime:[],wasmNative:[],vfs:[],satelliteResources:{}},e.assets){Pe.diagnosticTracing&&b("config.assets is deprecated, use config.resources instead");for(const t of e.assets){const o={};switch(t.behavior){case"assembly":o.assembly=[t];break;case"pdb":o.pdb=[t];break;case"resource":o.satelliteResources={},o.satelliteResources[t.culture]=[t];break;case"icu":o.icu=[t];break;case"symbols":o.wasmSymbols=[t];break;case"vfs":o.vfs=[t];break;case"dotnetwasm":o.wasmNative=[t];break;case"js-module-threads":o.jsModuleWorker=[t];break;case"js-module-runtime":o.jsModuleRuntime=[t];break;case"js-module-native":o.jsModuleNative=[t];break;case"js-module-diagnostics":o.jsModuleDiagnostics=[t];break;case"js-module-dotnet":break;default:throw new Error(`Unexpected behavior ${t.behavior} of asset ${t.name}`)}_e(e.resources,o)}}e.debugLevel,e.applicationEnvironment||(e.applicationEnvironment="Production"),e.applicationCulture&&(e.environmentVariables.LANG=`${e.applicationCulture}.UTF-8`),Ue.diagnosticTracing=Pe.diagnosticTracing=!!e.diagnosticTracing,Ue.waitForDebugger=e.waitForDebugger,Pe.maxParallelDownloads=e.maxParallelDownloads||Pe.maxParallelDownloads,Pe.enableDownloadRetry=void 0!==e.enableDownloadRetry?e.enableDownloadRetry:Pe.enableDownloadRetry}let je=!1;async function Re(e){var t;if(je)return void await Pe.afterConfigLoaded.promise;let o;try{if(e.configSrc||Pe.config&&0!==Object.keys(Pe.config).length&&(Pe.config.assets||Pe.config.resources)||(e.configSrc="dotnet.boot.js"),o=e.configSrc,je=!0,o&&(Pe.diagnosticTracing&&b("mono_wasm_load_config"),await async function(e){const t=e.configSrc,o=Pe.locateFile(t);let n=null;void 0!==Pe.loadBootResource&&(n=Pe.loadBootResource("manifest",t,o,"","manifest"));let r,i=null;if(n)if("string"==typeof n)n.includes(".json")?(i=await s(I(n)),r=await Ae(i)):r=(await import(I(n))).config;else{const e=await n;"function"==typeof e.json?(i=e,r=await Ae(i)):r=e.config}else o.includes(".json")?(i=await s(ce(o,"manifest")),r=await Ae(i)):r=(await import(ce(o,"manifest"))).config;function s(e){return Pe.fetch_like(e,{method:"GET",credentials:"include",cache:"no-cache"})}Pe.config.applicationEnvironment&&(r.applicationEnvironment=Pe.config.applicationEnvironment),ve(Pe.config,r)}(e)),xe(),await we(null===(t=Pe.config.resources)||void 0===t?void 0:t.modulesAfterConfigLoaded),await be("onRuntimeConfigLoaded",[Pe.config]),e.onConfigLoaded)try{await e.onConfigLoaded(Pe.config,Le),xe()}catch(e){throw _("onConfigLoaded() failed",e),e}xe(),Pe.afterConfigLoaded.promise_control.resolve(Pe.config)}catch(t){const n=`Failed to load config file ${o} ${t} ${null==t?void 0:t.stack}`;throw Pe.config=e.config=Object.assign(Pe.config,{message:n,error:t,isError:!0}),Xe(1,new Error(n)),t}}function Te(){return!!globalThis.navigator&&(Pe.isChromium||Pe.isFirefox)}async function Ae(e){const t=Pe.config,o=await e.json();t.applicationEnvironment||o.applicationEnvironment||(o.applicationEnvironment=e.headers.get("Blazor-Environment")||e.headers.get("DotNet-Environment")||void 0),o.environmentVariables||(o.environmentVariables={});const n=e.headers.get("DOTNET-MODIFIABLE-ASSEMBLIES");n&&(o.environmentVariables.DOTNET_MODIFIABLE_ASSEMBLIES=n);const r=e.headers.get("ASPNETCORE-BROWSER-TOOLS");return r&&(o.environmentVariables.__ASPNETCORE_BROWSER_TOOLS=r),o}"function"!=typeof importScripts||globalThis.onmessage||(globalThis.dotnetSidecar=!0);const Se="object"==typeof process&&"object"==typeof process.versions&&"string"==typeof process.versions.node,De="function"==typeof importScripts,Oe=De&&"undefined"!=typeof dotnetSidecar,Ce=De&&!Oe,ke="object"==typeof window||De&&!Se,Ie=!ke&&!Se;let Ue={},Pe={},Me={},Le={},Ne={},$e=!1;const ze={},We={config:ze},Fe={mono:{},binding:{},internal:Ne,module:We,loaderHelpers:Pe,runtimeHelpers:Ue,diagnosticHelpers:Me,api:Le};function Be(e,t){if(e)return;const o="Assert failed: "+("function"==typeof t?t():t),n=new Error(o);_(o,n),Ue.nativeAbort(n)}function Ve(){return void 0!==Pe.exitCode}function qe(){return Ue.runtimeReady&&!Ve()}function He(){Ve()&&Be(!1,`.NET runtime already exited with ${Pe.exitCode} ${Pe.exitReason}. You can use runtime.runMain() which doesn't exit the runtime.`),Ue.runtimeReady||Be(!1,".NET runtime didn't start yet. Please call dotnet.create() first.")}function Je(){ke&&(globalThis.addEventListener("unhandledrejection",et),globalThis.addEventListener("error",tt))}let Ze,Qe;function Ge(e){Qe&&Qe(e),Xe(e,Pe.exitReason)}function Ke(e){Ze&&Ze(e||Pe.exitReason),Xe(1,e||Pe.exitReason)}function Xe(t,o){var n,r;const i=o&&"object"==typeof o;t=i&&"number"==typeof o.status?o.status:void 0===t?-1:t;const s=i&&"string"==typeof o.message?o.message:""+o;(o=i?o:Ue.ExitStatus?function(e,t){const o=new Ue.ExitStatus(e);return o.message=t,o.toString=()=>t,o}(t,s):new Error("Exit with code "+t+" "+s)).status=t,o.message||(o.message=s);const a=""+(o.stack||(new Error).stack);try{Object.defineProperty(o,"stack",{get:()=>a})}catch(e){}const l=!!o.silent;if(o.silent=!0,Ve())Pe.diagnosticTracing&&b("mono_exit called after exit");else{try{We.onAbort==Ke&&(We.onAbort=Ze),We.onExit==Ge&&(We.onExit=Qe),ke&&(globalThis.removeEventListener("unhandledrejection",et),globalThis.removeEventListener("error",tt)),Ue.runtimeReady?(Ue.jiterpreter_dump_stats&&Ue.jiterpreter_dump_stats(!1),0===t&&(null===(n=Pe.config)||void 0===n?void 0:n.interopCleanupOnExit)&&Ue.forceDisposeProxies(!0,!0),e&&0!==t&&(null===(r=Pe.config)||void 0===r||r.dumpThreadsOnNonZeroExit)):(Pe.diagnosticTracing&&b(`abort_startup, reason: ${o}`),function(e){Pe.allDownloadsQueued.promise_control.reject(e),Pe.allDownloadsFinished.promise_control.reject(e),Pe.afterConfigLoaded.promise_control.reject(e),Pe.wasmCompilePromise.promise_control.reject(e),Pe.runtimeModuleLoaded.promise_control.reject(e),Ue.dotnetReady&&(Ue.dotnetReady.promise_control.reject(e),Ue.afterInstantiateWasm.promise_control.reject(e),Ue.beforePreInit.promise_control.reject(e),Ue.afterPreInit.promise_control.reject(e),Ue.afterPreRun.promise_control.reject(e),Ue.beforeOnRuntimeInitialized.promise_control.reject(e),Ue.afterOnRuntimeInitialized.promise_control.reject(e),Ue.afterPostRun.promise_control.reject(e))}(o))}catch(e){E("mono_exit A failed",e)}try{l||(function(e,t){if(0!==e&&t){const e=Ue.ExitStatus&&t instanceof Ue.ExitStatus?b:_;"string"==typeof t?e(t):(void 0===t.stack&&(t.stack=(new Error).stack+""),t.message?e(Ue.stringify_as_error_with_stack?Ue.stringify_as_error_with_stack(t.message+"\n"+t.stack):t.message+"\n"+t.stack):e(JSON.stringify(t)))}!Ce&&Pe.config&&(Pe.config.logExitCode?Pe.config.forwardConsoleLogsToWS?R("WASM EXIT "+e):v("WASM EXIT "+e):Pe.config.forwardConsoleLogsToWS&&R())}(t,o),function(e){if(ke&&!Ce&&Pe.config&&Pe.config.appendElementOnExit&&document){const t=document.createElement("label");t.id="tests_done",0!==e&&(t.style.background="red"),t.innerHTML=""+e,document.body.appendChild(t)}}(t))}catch(e){E("mono_exit B failed",e)}Pe.exitCode=t,Pe.exitReason||(Pe.exitReason=o),!Ce&&Ue.runtimeReady&&We.runtimeKeepalivePop()}if(Pe.config&&Pe.config.asyncFlushOnExit&&0===t)throw(async()=>{try{await async function(){try{const e=await import(/*! webpackIgnore: true */"process"),t=e=>new Promise(((t,o)=>{e.on("error",o),e.end("","utf8",t)})),o=t(e.stderr),n=t(e.stdout);let r;const i=new Promise((e=>{r=setTimeout((()=>e("timeout")),1e3)}));await Promise.race([Promise.all([n,o]),i]),clearTimeout(r)}catch(e){_(`flushing std* streams failed: ${e}`)}}()}finally{Ye(t,o)}})(),o;Ye(t,o)}function Ye(e,t){if(Ue.runtimeReady&&Ue.nativeExit)try{Ue.nativeExit(e)}catch(e){!Ue.ExitStatus||e instanceof Ue.ExitStatus||E("set_exit_code_and_quit_now failed: "+e.toString())}if(0!==e||!ke)throw Se&&Ne.process?Ne.process.exit(e):Ue.quit&&Ue.quit(e,t),t}function et(e){ot(e,e.reason,"rejection")}function tt(e){ot(e,e.error,"error")}function ot(e,t,o){e.preventDefault();try{t||(t=new Error("Unhandled "+o)),void 0===t.stack&&(t.stack=(new Error).stack),t.stack=t.stack+"",t.silent||(_("Unhandled error:",t),Xe(1,t))}catch(e){}}!function(e){if($e)throw new Error("Loader module already loaded");$e=!0,Ue=e.runtimeHelpers,Pe=e.loaderHelpers,Me=e.diagnosticHelpers,Le=e.api,Ne=e.internal,Object.assign(Le,{INTERNAL:Ne,invokeLibraryInitializers:be}),Object.assign(e.module,{config:ve(ze,{environmentVariables:{}})});const r={mono_wasm_bindings_is_ready:!1,config:e.module.config,diagnosticTracing:!1,nativeAbort:e=>{throw e||new Error("abort")},nativeExit:e=>{throw new Error("exit:"+e)}},l={gitHash:"a612c2a1056fe3265387ae3ff7c94eba1505caf9",config:e.module.config,diagnosticTracing:!1,maxParallelDownloads:16,enableDownloadRetry:!0,_loaded_files:[],loadedFiles:[],loadedAssemblies:[],libraryInitializers:[],workerNextNumber:1,actual_downloaded_assets_count:0,actual_instantiated_assets_count:0,expected_downloaded_assets_count:0,expected_instantiated_assets_count:0,afterConfigLoaded:i(),allDownloadsQueued:i(),allDownloadsFinished:i(),wasmCompilePromise:i(),runtimeModuleLoaded:i(),loadingWorkers:i(),is_exited:Ve,is_runtime_running:qe,assert_runtime_running:He,mono_exit:Xe,createPromiseController:i,getPromiseController:s,assertIsControllablePromise:a,mono_download_assets:oe,resolve_single_asset_path:ee,setup_proxy_console:j,set_thread_prefix:w,installUnhandledErrorHandler:Je,retrieve_asset_download:ie,invokeLibraryInitializers:be,isDebuggingSupported:Te,exceptions:t,simd:n,relaxedSimd:o};Object.assign(Ue,r),Object.assign(Pe,l)}(Fe);let nt,rt,it,st=!1,at=!1;async function lt(e){if(!at){if(at=!0,ke&&Pe.config.forwardConsoleLogsToWS&&void 0!==globalThis.WebSocket&&j("main",globalThis.console,globalThis.location.origin),We||Be(!1,"Null moduleConfig"),Pe.config||Be(!1,"Null moduleConfig.config"),"function"==typeof e){const t=e(Fe.api);if(t.ready)throw new Error("Module.ready couldn't be redefined.");Object.assign(We,t),Ee(We,t)}else{if("object"!=typeof e)throw new Error("Can't use moduleFactory callback of createDotnetRuntime function.");Ee(We,e)}await async function(e){if(Se){const e=await import(/*! webpackIgnore: true */"process"),t=14;if(e.versions.node.split(".")[0]0&&(Pe.modulesUniqueQuery=t.substring(o)),Pe.scriptUrl=t.replace(/\\/g,"/").replace(/[?#].*/,""),Pe.scriptDirectory=(n=Pe.scriptUrl).slice(0,n.lastIndexOf("/"))+"/",Pe.locateFile=e=>"URL"in globalThis&&globalThis.URL!==C?new URL(e,Pe.scriptDirectory).toString():M(e)?e:Pe.scriptDirectory+e,Pe.fetch_like=k,Pe.out=console.log,Pe.err=console.error,Pe.onDownloadResourceProgress=e.onDownloadResourceProgress,ke&&globalThis.navigator){const e=globalThis.navigator,t=e.userAgentData&&e.userAgentData.brands;t&&t.length>0?Pe.isChromium=t.some((e=>"Google Chrome"===e.brand||"Microsoft Edge"===e.brand||"Chromium"===e.brand)):e.userAgent&&(Pe.isChromium=e.userAgent.includes("Chrome"),Pe.isFirefox=e.userAgent.includes("Firefox"))}Ne.require=Se?await import(/*! webpackIgnore: true */"module").then((e=>e.createRequire(/*! webpackIgnore: true */import.meta.url))):Promise.resolve((()=>{throw new Error("require not supported")})),void 0===globalThis.URL&&(globalThis.URL=C)}(We)}}async function ct(e){return await lt(e),Ze=We.onAbort,Qe=We.onExit,We.onAbort=Ke,We.onExit=Ge,We.ENVIRONMENT_IS_PTHREAD?async function(){(function(){const e=new MessageChannel,t=e.port1,o=e.port2;t.addEventListener("message",(e=>{var n,r;n=JSON.parse(e.data.config),r=JSON.parse(e.data.monoThreadInfo),st?Pe.diagnosticTracing&&b("mono config already received"):(ve(Pe.config,n),Ue.monoThreadInfo=r,xe(),Pe.diagnosticTracing&&b("mono config received"),st=!0,Pe.afterConfigLoaded.promise_control.resolve(Pe.config),ke&&n.forwardConsoleLogsToWS&&void 0!==globalThis.WebSocket&&Pe.setup_proxy_console("worker-idle",console,globalThis.location.origin)),t.close(),o.close()}),{once:!0}),t.start(),self.postMessage({[l]:{monoCmd:"preload",port:o}},[o])})(),await Pe.afterConfigLoaded.promise,function(){const e=Pe.config;e.assets||Be(!1,"config.assets must be defined");for(const t of e.assets)X(t),Q[t.behavior]&&z.push(t)}(),setTimeout((async()=>{try{await oe()}catch(e){Xe(1,e)}}),0);const e=dt(),t=await Promise.all(e);return await ut(t),We}():async function(){var e;await Re(We),re();const t=dt();(async function(){try{const e=ee("dotnetwasm");await se(e),e&&e.pendingDownloadInternal&&e.pendingDownloadInternal.response||Be(!1,"Can't load dotnet.native.wasm");const t=await e.pendingDownloadInternal.response,o=t.headers&&t.headers.get?t.headers.get("Content-Type"):void 0;let n;if("function"==typeof WebAssembly.compileStreaming&&"application/wasm"===o)n=await WebAssembly.compileStreaming(t);else{ke&&"application/wasm"!==o&&E('WebAssembly resource does not have the expected content type "application/wasm", so falling back to slower ArrayBuffer instantiation.');const e=await t.arrayBuffer();Pe.diagnosticTracing&&b("instantiate_wasm_module buffered"),n=Ie?await Promise.resolve(new WebAssembly.Module(e)):await WebAssembly.compile(e)}e.pendingDownloadInternal=null,e.pendingDownload=null,e.buffer=null,e.moduleExports=null,Pe.wasmCompilePromise.promise_control.resolve(n)}catch(e){Pe.wasmCompilePromise.promise_control.reject(e)}})(),setTimeout((async()=>{try{D(),await oe()}catch(e){Xe(1,e)}}),0);const o=await Promise.all(t);return await ut(o),await Ue.dotnetReady.promise,await we(null===(e=Pe.config.resources)||void 0===e?void 0:e.modulesAfterRuntimeReady),await be("onRuntimeReady",[Fe.api]),Le}()}function dt(){const e=ee("js-module-runtime"),t=ee("js-module-native");if(nt&&rt)return[nt,rt,it];"object"==typeof e.moduleExports?nt=e.moduleExports:(Pe.diagnosticTracing&&b(`Attempting to import '${e.resolvedUrl}' for ${e.name}`),nt=import(/*! webpackIgnore: true */e.resolvedUrl)),"object"==typeof t.moduleExports?rt=t.moduleExports:(Pe.diagnosticTracing&&b(`Attempting to import '${t.resolvedUrl}' for ${t.name}`),rt=import(/*! webpackIgnore: true */t.resolvedUrl));const o=Y("js-module-diagnostics");return o&&("object"==typeof o.moduleExports?it=o.moduleExports:(Pe.diagnosticTracing&&b(`Attempting to import '${o.resolvedUrl}' for ${o.name}`),it=import(/*! webpackIgnore: true */o.resolvedUrl))),[nt,rt,it]}async function ut(e){const{initializeExports:t,initializeReplacements:o,configureRuntimeStartup:n,configureEmscriptenStartup:r,configureWorkerStartup:i,setRuntimeGlobals:s,passEmscriptenInternals:a}=e[0],{default:l}=e[1],c=e[2];s(Fe),t(Fe),c&&c.setRuntimeGlobals(Fe),await n(We),Pe.runtimeModuleLoaded.promise_control.resolve(),l((e=>(Object.assign(We,{ready:e.ready,__dotnet_runtime:{initializeReplacements:o,configureEmscriptenStartup:r,configureWorkerStartup:i,passEmscriptenInternals:a}}),We))).catch((e=>{if(e.message&&e.message.toLowerCase().includes("out of memory"))throw new Error(".NET runtime has failed to start, because too much memory was requested. Please decrease the memory by adjusting EmccMaximumHeapSize. See also https://aka.ms/dotnet-wasm-features");throw e}))}const ft=new class{withModuleConfig(e){try{return Ee(We,e),this}catch(e){throw Xe(1,e),e}}withOnConfigLoaded(e){try{return Ee(We,{onConfigLoaded:e}),this}catch(e){throw Xe(1,e),e}}withConsoleForwarding(){try{return ve(ze,{forwardConsoleLogsToWS:!0}),this}catch(e){throw Xe(1,e),e}}withExitOnUnhandledError(){try{return ve(ze,{exitOnUnhandledError:!0}),Je(),this}catch(e){throw Xe(1,e),e}}withAsyncFlushOnExit(){try{return ve(ze,{asyncFlushOnExit:!0}),this}catch(e){throw Xe(1,e),e}}withExitCodeLogging(){try{return ve(ze,{logExitCode:!0}),this}catch(e){throw Xe(1,e),e}}withElementOnExit(){try{return ve(ze,{appendElementOnExit:!0}),this}catch(e){throw Xe(1,e),e}}withInteropCleanupOnExit(){try{return ve(ze,{interopCleanupOnExit:!0}),this}catch(e){throw Xe(1,e),e}}withDumpThreadsOnNonZeroExit(){try{return ve(ze,{dumpThreadsOnNonZeroExit:!0}),this}catch(e){throw Xe(1,e),e}}withWaitingForDebugger(e){try{return ve(ze,{waitForDebugger:e}),this}catch(e){throw Xe(1,e),e}}withInterpreterPgo(e,t){try{return ve(ze,{interpreterPgo:e,interpreterPgoSaveDelay:t}),ze.runtimeOptions?ze.runtimeOptions.push("--interp-pgo-recording"):ze.runtimeOptions=["--interp-pgo-recording"],this}catch(e){throw Xe(1,e),e}}withConfig(e){try{return ve(ze,e),this}catch(e){throw Xe(1,e),e}}withConfigSrc(e){try{return e&&"string"==typeof e||Be(!1,"must be file path or URL"),Ee(We,{configSrc:e}),this}catch(e){throw Xe(1,e),e}}withVirtualWorkingDirectory(e){try{return e&&"string"==typeof e||Be(!1,"must be directory path"),ve(ze,{virtualWorkingDirectory:e}),this}catch(e){throw Xe(1,e),e}}withEnvironmentVariable(e,t){try{const o={};return o[e]=t,ve(ze,{environmentVariables:o}),this}catch(e){throw Xe(1,e),e}}withEnvironmentVariables(e){try{return e&&"object"==typeof e||Be(!1,"must be dictionary object"),ve(ze,{environmentVariables:e}),this}catch(e){throw Xe(1,e),e}}withDiagnosticTracing(e){try{return"boolean"!=typeof e&&Be(!1,"must be boolean"),ve(ze,{diagnosticTracing:e}),this}catch(e){throw Xe(1,e),e}}withDebugging(e){try{return null!=e&&"number"==typeof e||Be(!1,"must be number"),ve(ze,{debugLevel:e}),this}catch(e){throw Xe(1,e),e}}withApplicationArguments(...e){try{return e&&Array.isArray(e)||Be(!1,"must be array of strings"),ve(ze,{applicationArguments:e}),this}catch(e){throw Xe(1,e),e}}withRuntimeOptions(e){try{return e&&Array.isArray(e)||Be(!1,"must be array of strings"),ze.runtimeOptions?ze.runtimeOptions.push(...e):ze.runtimeOptions=e,this}catch(e){throw Xe(1,e),e}}withMainAssembly(e){try{return ve(ze,{mainAssemblyName:e}),this}catch(e){throw Xe(1,e),e}}withApplicationArgumentsFromQuery(){try{if(!globalThis.window)throw new Error("Missing window to the query parameters from");if(void 0===globalThis.URLSearchParams)throw new Error("URLSearchParams is supported");const e=new URLSearchParams(globalThis.window.location.search).getAll("arg");return this.withApplicationArguments(...e)}catch(e){throw Xe(1,e),e}}withApplicationEnvironment(e){try{return ve(ze,{applicationEnvironment:e}),this}catch(e){throw Xe(1,e),e}}withApplicationCulture(e){try{return ve(ze,{applicationCulture:e}),this}catch(e){throw Xe(1,e),e}}withResourceLoader(e){try{return Pe.loadBootResource=e,this}catch(e){throw Xe(1,e),e}}async download(){try{await async function(){lt(We),await Re(We),re(),D(),oe(),await Pe.allDownloadsFinished.promise}()}catch(e){throw Xe(1,e),e}}async create(){try{return this.instance||(this.instance=await async function(){return await ct(We),Fe.api}()),this.instance}catch(e){throw Xe(1,e),e}}async run(){try{return We.config||Be(!1,"Null moduleConfig.config"),this.instance||await this.create(),this.instance.runMainAndExit()}catch(e){throw Xe(1,e),e}}},mt=Xe,gt=ct;Ie||"function"==typeof globalThis.URL||Be(!1,"This browser/engine doesn't support URL API. Please use a modern version. See also https://aka.ms/dotnet-wasm-features"),"function"!=typeof globalThis.BigInt64Array&&Be(!1,"This browser/engine doesn't support BigInt64Array API. Please use a modern version. See also https://aka.ms/dotnet-wasm-features"),ft.withConfig(/*json-start*/{ + "mainAssemblyName": "OnProfNext.Client", + "applicationEnvironment": "Development", + "resources": { + "hash": "sha256-g4gaY7tK4jSQr8//fauk60ySrGga4xKLILOwBcV0s18=", + "jsModuleNative": [ + { + "name": "dotnet.native.ykrnppwhq2.js" + } + ], + "jsModuleRuntime": [ + { + "name": "dotnet.runtime.peu2mfb29t.js" + } + ], + "wasmNative": [ + { + "name": "dotnet.native.53ez3dx5uy.wasm", + "integrity": "sha256-Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU=", + "cache": "force-cache" + } + ], + "icu": [ + { + "virtualPath": "icudt_CJK.dat", + "name": "icudt_CJK.tjcz0u77k5.dat", + "integrity": "sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=", + "cache": "force-cache" + }, + { + "virtualPath": "icudt_EFIGS.dat", + "name": "icudt_EFIGS.tptq2av103.dat", + "integrity": "sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=", + "cache": "force-cache" + }, + { + "virtualPath": "icudt_no_CJK.dat", + "name": "icudt_no_CJK.lfu7j35m59.dat", + "integrity": "sha256-L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs=", + "cache": "force-cache" + } + ], + "coreAssembly": [ + { + "virtualPath": "System.Runtime.InteropServices.JavaScript.wasm", + "name": "System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm", + "integrity": "sha256-BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Private.CoreLib.wasm", + "name": "System.Private.CoreLib.koxlwnosh6.wasm", + "integrity": "sha256-xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg=", + "cache": "force-cache" + } + ], + "assembly": [ + { + "virtualPath": "Microsoft.AspNetCore.Authorization.wasm", + "name": "Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm", + "integrity": "sha256-G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.AspNetCore.Components.wasm", + "name": "Microsoft.AspNetCore.Components.uddsvpv1sv.wasm", + "integrity": "sha256-wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.AspNetCore.Components.Forms.wasm", + "name": "Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm", + "integrity": "sha256-sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.AspNetCore.Components.Web.wasm", + "name": "Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm", + "integrity": "sha256-XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.AspNetCore.Components.WebAssembly.wasm", + "name": "Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm", + "integrity": "sha256-r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.AspNetCore.Metadata.wasm", + "name": "Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm", + "integrity": "sha256-3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", + "name": "Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm", + "integrity": "sha256-7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.Configuration.wasm", + "name": "Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm", + "integrity": "sha256-D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.Configuration.Abstractions.wasm", + "name": "Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm", + "integrity": "sha256-YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.Configuration.Binder.wasm", + "name": "Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm", + "integrity": "sha256-KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.Configuration.FileExtensions.wasm", + "name": "Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm", + "integrity": "sha256-MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.Configuration.Json.wasm", + "name": "Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm", + "integrity": "sha256-iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.DependencyInjection.wasm", + "name": "Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm", + "integrity": "sha256-EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.DependencyInjection.Abstractions.wasm", + "name": "Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm", + "integrity": "sha256-PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.Diagnostics.wasm", + "name": "Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm", + "integrity": "sha256-MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.Diagnostics.Abstractions.wasm", + "name": "Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm", + "integrity": "sha256-4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.FileProviders.Abstractions.wasm", + "name": "Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm", + "integrity": "sha256-/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.FileProviders.Physical.wasm", + "name": "Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm", + "integrity": "sha256-CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.FileSystemGlobbing.wasm", + "name": "Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm", + "integrity": "sha256-pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.Localization.wasm", + "name": "Microsoft.Extensions.Localization.xcslyy3nju.wasm", + "integrity": "sha256-L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.Localization.Abstractions.wasm", + "name": "Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm", + "integrity": "sha256-8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.Logging.wasm", + "name": "Microsoft.Extensions.Logging.y4ydx3rk2c.wasm", + "integrity": "sha256-7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.Logging.Abstractions.wasm", + "name": "Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm", + "integrity": "sha256-5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.Options.wasm", + "name": "Microsoft.Extensions.Options.2rz5zbidnd.wasm", + "integrity": "sha256-PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.Options.ConfigurationExtensions.wasm", + "name": "Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm", + "integrity": "sha256-652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.Primitives.wasm", + "name": "Microsoft.Extensions.Primitives.bd164v6l3f.wasm", + "integrity": "sha256-b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.Validation.wasm", + "name": "Microsoft.Extensions.Validation.r1sv3m5lsf.wasm", + "integrity": "sha256-QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.JSInterop.wasm", + "name": "Microsoft.JSInterop.1r0ampr2q1.wasm", + "integrity": "sha256-TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.JSInterop.WebAssembly.wasm", + "name": "Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm", + "integrity": "sha256-vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU=", + "cache": "force-cache" + }, + { + "virtualPath": "MudBlazor.wasm", + "name": "MudBlazor.k6079czmkm.wasm", + "integrity": "sha256-rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.CSharp.wasm", + "name": "Microsoft.CSharp.452y5fjxmv.wasm", + "integrity": "sha256-qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.VisualBasic.Core.wasm", + "name": "Microsoft.VisualBasic.Core.re3geseai5.wasm", + "integrity": "sha256-vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.VisualBasic.wasm", + "name": "Microsoft.VisualBasic.91iw3j3d9p.wasm", + "integrity": "sha256-TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Win32.Primitives.wasm", + "name": "Microsoft.Win32.Primitives.2mjytoh92q.wasm", + "integrity": "sha256-NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Win32.Registry.wasm", + "name": "Microsoft.Win32.Registry.yz8nt3ycsq.wasm", + "integrity": "sha256-sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU=", + "cache": "force-cache" + }, + { + "virtualPath": "System.AppContext.wasm", + "name": "System.AppContext.uwq3fpef1w.wasm", + "integrity": "sha256-/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Buffers.wasm", + "name": "System.Buffers.m4yhcvz2y2.wasm", + "integrity": "sha256-+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Collections.Concurrent.wasm", + "name": "System.Collections.Concurrent.1zv6wuzklu.wasm", + "integrity": "sha256-XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Collections.Immutable.wasm", + "name": "System.Collections.Immutable.6uzpuv4o5d.wasm", + "integrity": "sha256-UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Collections.NonGeneric.wasm", + "name": "System.Collections.NonGeneric.k5rgagff9o.wasm", + "integrity": "sha256-eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Collections.Specialized.wasm", + "name": "System.Collections.Specialized.84wojkejb4.wasm", + "integrity": "sha256-mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Collections.wasm", + "name": "System.Collections.63jrcion39.wasm", + "integrity": "sha256-Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg=", + "cache": "force-cache" + }, + { + "virtualPath": "System.ComponentModel.Annotations.wasm", + "name": "System.ComponentModel.Annotations.cjsvkufomv.wasm", + "integrity": "sha256-yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg=", + "cache": "force-cache" + }, + { + "virtualPath": "System.ComponentModel.DataAnnotations.wasm", + "name": "System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm", + "integrity": "sha256-7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o=", + "cache": "force-cache" + }, + { + "virtualPath": "System.ComponentModel.EventBasedAsync.wasm", + "name": "System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm", + "integrity": "sha256-9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38=", + "cache": "force-cache" + }, + { + "virtualPath": "System.ComponentModel.Primitives.wasm", + "name": "System.ComponentModel.Primitives.u0y5oi3qdg.wasm", + "integrity": "sha256-fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4=", + "cache": "force-cache" + }, + { + "virtualPath": "System.ComponentModel.TypeConverter.wasm", + "name": "System.ComponentModel.TypeConverter.e2hbv9lola.wasm", + "integrity": "sha256-Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco=", + "cache": "force-cache" + }, + { + "virtualPath": "System.ComponentModel.wasm", + "name": "System.ComponentModel.m11rh1qn2x.wasm", + "integrity": "sha256-9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Configuration.wasm", + "name": "System.Configuration.j8qjkqg593.wasm", + "integrity": "sha256-bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Console.wasm", + "name": "System.Console.x9at0eh4vs.wasm", + "integrity": "sha256-ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Core.wasm", + "name": "System.Core.ickp29885z.wasm", + "integrity": "sha256-vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Data.Common.wasm", + "name": "System.Data.Common.4wisaz8pj4.wasm", + "integrity": "sha256-pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Data.DataSetExtensions.wasm", + "name": "System.Data.DataSetExtensions.904tnen1ot.wasm", + "integrity": "sha256-dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Data.wasm", + "name": "System.Data.0h75nr7qqd.wasm", + "integrity": "sha256-7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Diagnostics.Contracts.wasm", + "name": "System.Diagnostics.Contracts.z1eotzj35n.wasm", + "integrity": "sha256-2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Diagnostics.Debug.wasm", + "name": "System.Diagnostics.Debug.aeh9b1tcuc.wasm", + "integrity": "sha256-Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Diagnostics.DiagnosticSource.wasm", + "name": "System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm", + "integrity": "sha256-sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Diagnostics.FileVersionInfo.wasm", + "name": "System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm", + "integrity": "sha256-ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Diagnostics.Process.wasm", + "name": "System.Diagnostics.Process.lqtqkmw274.wasm", + "integrity": "sha256-87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Diagnostics.StackTrace.wasm", + "name": "System.Diagnostics.StackTrace.wvlboxd9cz.wasm", + "integrity": "sha256-jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Diagnostics.TextWriterTraceListener.wasm", + "name": "System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm", + "integrity": "sha256-9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Diagnostics.Tools.wasm", + "name": "System.Diagnostics.Tools.862j1ozg5o.wasm", + "integrity": "sha256-wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Diagnostics.TraceSource.wasm", + "name": "System.Diagnostics.TraceSource.j08okd90mo.wasm", + "integrity": "sha256-k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Diagnostics.Tracing.wasm", + "name": "System.Diagnostics.Tracing.bnz7jo4op8.wasm", + "integrity": "sha256-ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Drawing.Primitives.wasm", + "name": "System.Drawing.Primitives.k3z431p3v7.wasm", + "integrity": "sha256-sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Drawing.wasm", + "name": "System.Drawing.v0usa2s224.wasm", + "integrity": "sha256-/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Dynamic.Runtime.wasm", + "name": "System.Dynamic.Runtime.iktlm0yhdx.wasm", + "integrity": "sha256-8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Formats.Asn1.wasm", + "name": "System.Formats.Asn1.9iyl1hnh76.wasm", + "integrity": "sha256-8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Formats.Tar.wasm", + "name": "System.Formats.Tar.9ikmelhi7g.wasm", + "integrity": "sha256-rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Globalization.Calendars.wasm", + "name": "System.Globalization.Calendars.e8yl47y6cv.wasm", + "integrity": "sha256-jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Globalization.Extensions.wasm", + "name": "System.Globalization.Extensions.fvxkfs32tv.wasm", + "integrity": "sha256-e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Globalization.wasm", + "name": "System.Globalization.4ulc930few.wasm", + "integrity": "sha256-jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I=", + "cache": "force-cache" + }, + { + "virtualPath": "System.IO.Compression.Brotli.wasm", + "name": "System.IO.Compression.Brotli.ibxx4kh8c6.wasm", + "integrity": "sha256-7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY=", + "cache": "force-cache" + }, + { + "virtualPath": "System.IO.Compression.FileSystem.wasm", + "name": "System.IO.Compression.FileSystem.bselp9vv9w.wasm", + "integrity": "sha256-5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM=", + "cache": "force-cache" + }, + { + "virtualPath": "System.IO.Compression.ZipFile.wasm", + "name": "System.IO.Compression.ZipFile.b0ha8vyo8i.wasm", + "integrity": "sha256-m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk=", + "cache": "force-cache" + }, + { + "virtualPath": "System.IO.Compression.wasm", + "name": "System.IO.Compression.sgbc42zrd8.wasm", + "integrity": "sha256-DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY=", + "cache": "force-cache" + }, + { + "virtualPath": "System.IO.FileSystem.AccessControl.wasm", + "name": "System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm", + "integrity": "sha256-kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg=", + "cache": "force-cache" + }, + { + "virtualPath": "System.IO.FileSystem.DriveInfo.wasm", + "name": "System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm", + "integrity": "sha256-2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU=", + "cache": "force-cache" + }, + { + "virtualPath": "System.IO.FileSystem.Primitives.wasm", + "name": "System.IO.FileSystem.Primitives.6j2ed42ac7.wasm", + "integrity": "sha256-UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI=", + "cache": "force-cache" + }, + { + "virtualPath": "System.IO.FileSystem.Watcher.wasm", + "name": "System.IO.FileSystem.Watcher.v9i07bnq2k.wasm", + "integrity": "sha256-g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg=", + "cache": "force-cache" + }, + { + "virtualPath": "System.IO.FileSystem.wasm", + "name": "System.IO.FileSystem.fktu0k4b93.wasm", + "integrity": "sha256-L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM=", + "cache": "force-cache" + }, + { + "virtualPath": "System.IO.IsolatedStorage.wasm", + "name": "System.IO.IsolatedStorage.8ll4gxwfs1.wasm", + "integrity": "sha256-TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4=", + "cache": "force-cache" + }, + { + "virtualPath": "System.IO.MemoryMappedFiles.wasm", + "name": "System.IO.MemoryMappedFiles.6do4olk7ib.wasm", + "integrity": "sha256-WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk=", + "cache": "force-cache" + }, + { + "virtualPath": "System.IO.Pipelines.wasm", + "name": "System.IO.Pipelines.21z0t9w6sq.wasm", + "integrity": "sha256-VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM=", + "cache": "force-cache" + }, + { + "virtualPath": "System.IO.Pipes.AccessControl.wasm", + "name": "System.IO.Pipes.AccessControl.5lvzz4lks7.wasm", + "integrity": "sha256-qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE=", + "cache": "force-cache" + }, + { + "virtualPath": "System.IO.Pipes.wasm", + "name": "System.IO.Pipes.xosph8vk4a.wasm", + "integrity": "sha256-gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg=", + "cache": "force-cache" + }, + { + "virtualPath": "System.IO.UnmanagedMemoryStream.wasm", + "name": "System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm", + "integrity": "sha256-gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4=", + "cache": "force-cache" + }, + { + "virtualPath": "System.IO.wasm", + "name": "System.IO.i9g92fmb9y.wasm", + "integrity": "sha256-akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Linq.AsyncEnumerable.wasm", + "name": "System.Linq.AsyncEnumerable.4m1mh525k0.wasm", + "integrity": "sha256-VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Linq.Expressions.wasm", + "name": "System.Linq.Expressions.4nat0rber0.wasm", + "integrity": "sha256-IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Linq.Parallel.wasm", + "name": "System.Linq.Parallel.qf7zemz9aw.wasm", + "integrity": "sha256-ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Linq.Queryable.wasm", + "name": "System.Linq.Queryable.vwinf8twbn.wasm", + "integrity": "sha256-geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Linq.wasm", + "name": "System.Linq.rp2jklkmsi.wasm", + "integrity": "sha256-f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Memory.wasm", + "name": "System.Memory.3r0soomurg.wasm", + "integrity": "sha256-z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.Http.Json.wasm", + "name": "System.Net.Http.Json.t9gqpmtbpb.wasm", + "integrity": "sha256-H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.Http.wasm", + "name": "System.Net.Http.9rl4gopayw.wasm", + "integrity": "sha256-JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.HttpListener.wasm", + "name": "System.Net.HttpListener.zg37o92yol.wasm", + "integrity": "sha256-rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.Mail.wasm", + "name": "System.Net.Mail.qk214miut2.wasm", + "integrity": "sha256-tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.NameResolution.wasm", + "name": "System.Net.NameResolution.50dzekuu9x.wasm", + "integrity": "sha256-a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.NetworkInformation.wasm", + "name": "System.Net.NetworkInformation.k8343mqust.wasm", + "integrity": "sha256-ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.Ping.wasm", + "name": "System.Net.Ping.00vh2kvsiz.wasm", + "integrity": "sha256-MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.Primitives.wasm", + "name": "System.Net.Primitives.whs5oed1wm.wasm", + "integrity": "sha256-fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.Quic.wasm", + "name": "System.Net.Quic.grloe2ix5j.wasm", + "integrity": "sha256-1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.Requests.wasm", + "name": "System.Net.Requests.r8ar2pd94c.wasm", + "integrity": "sha256-ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.Security.wasm", + "name": "System.Net.Security.yn3zcskz4j.wasm", + "integrity": "sha256-TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.ServerSentEvents.wasm", + "name": "System.Net.ServerSentEvents.37wbq4jfsy.wasm", + "integrity": "sha256-Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.ServicePoint.wasm", + "name": "System.Net.ServicePoint.j436yqvrg9.wasm", + "integrity": "sha256-rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.Sockets.wasm", + "name": "System.Net.Sockets.utzdm9sw2p.wasm", + "integrity": "sha256-olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.WebClient.wasm", + "name": "System.Net.WebClient.e5a4gx4ylt.wasm", + "integrity": "sha256-YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.WebHeaderCollection.wasm", + "name": "System.Net.WebHeaderCollection.rbzkmij005.wasm", + "integrity": "sha256-132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.WebProxy.wasm", + "name": "System.Net.WebProxy.38jcv8jeeu.wasm", + "integrity": "sha256-UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.WebSockets.Client.wasm", + "name": "System.Net.WebSockets.Client.nv5izr3rt6.wasm", + "integrity": "sha256-vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.WebSockets.wasm", + "name": "System.Net.WebSockets.hdzn84g6uh.wasm", + "integrity": "sha256-1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.wasm", + "name": "System.Net.zku96ychk7.wasm", + "integrity": "sha256-E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Numerics.Vectors.wasm", + "name": "System.Numerics.Vectors.1l8xruz8uh.wasm", + "integrity": "sha256-tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Numerics.wasm", + "name": "System.Numerics.on9qk50okp.wasm", + "integrity": "sha256-ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk=", + "cache": "force-cache" + }, + { + "virtualPath": "System.ObjectModel.wasm", + "name": "System.ObjectModel.4omhtq90sd.wasm", + "integrity": "sha256-BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Private.DataContractSerialization.wasm", + "name": "System.Private.DataContractSerialization.zlwtcvnuqv.wasm", + "integrity": "sha256-qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Private.Uri.wasm", + "name": "System.Private.Uri.clehp4avpy.wasm", + "integrity": "sha256-IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Private.Xml.Linq.wasm", + "name": "System.Private.Xml.Linq.ga3n3gh9b6.wasm", + "integrity": "sha256-aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Private.Xml.wasm", + "name": "System.Private.Xml.g9rvjereoe.wasm", + "integrity": "sha256-xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Reflection.DispatchProxy.wasm", + "name": "System.Reflection.DispatchProxy.b7qn4zpc0q.wasm", + "integrity": "sha256-mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Reflection.Emit.ILGeneration.wasm", + "name": "System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm", + "integrity": "sha256-ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Reflection.Emit.Lightweight.wasm", + "name": "System.Reflection.Emit.Lightweight.3tzjd7znni.wasm", + "integrity": "sha256-B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Reflection.Emit.wasm", + "name": "System.Reflection.Emit.3t7flfwg7o.wasm", + "integrity": "sha256-uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Reflection.Extensions.wasm", + "name": "System.Reflection.Extensions.ymwga5opgl.wasm", + "integrity": "sha256-xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Reflection.Metadata.wasm", + "name": "System.Reflection.Metadata.9lgg9wjd2a.wasm", + "integrity": "sha256-/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Reflection.Primitives.wasm", + "name": "System.Reflection.Primitives.n2ngq6as7g.wasm", + "integrity": "sha256-z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Reflection.TypeExtensions.wasm", + "name": "System.Reflection.TypeExtensions.ivmzcfvrc6.wasm", + "integrity": "sha256-jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Reflection.wasm", + "name": "System.Reflection.v4mfyzbte8.wasm", + "integrity": "sha256-MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Resources.Reader.wasm", + "name": "System.Resources.Reader.c9z9nieytf.wasm", + "integrity": "sha256-QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Resources.ResourceManager.wasm", + "name": "System.Resources.ResourceManager.f3fiwdwb50.wasm", + "integrity": "sha256-61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Resources.Writer.wasm", + "name": "System.Resources.Writer.tx9namivq6.wasm", + "integrity": "sha256-EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Runtime.CompilerServices.Unsafe.wasm", + "name": "System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm", + "integrity": "sha256-M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Runtime.CompilerServices.VisualC.wasm", + "name": "System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm", + "integrity": "sha256-b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Runtime.Extensions.wasm", + "name": "System.Runtime.Extensions.f4fqaba1oz.wasm", + "integrity": "sha256-8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Runtime.Handles.wasm", + "name": "System.Runtime.Handles.kpe61fymig.wasm", + "integrity": "sha256-+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Runtime.InteropServices.RuntimeInformation.wasm", + "name": "System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm", + "integrity": "sha256-Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Runtime.InteropServices.wasm", + "name": "System.Runtime.InteropServices.02r2ubft18.wasm", + "integrity": "sha256-iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Runtime.Intrinsics.wasm", + "name": "System.Runtime.Intrinsics.j8lrpban8m.wasm", + "integrity": "sha256-vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Runtime.Loader.wasm", + "name": "System.Runtime.Loader.bm8d2pac0a.wasm", + "integrity": "sha256-Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Runtime.Numerics.wasm", + "name": "System.Runtime.Numerics.e3fl2oogjk.wasm", + "integrity": "sha256-Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Runtime.Serialization.Formatters.wasm", + "name": "System.Runtime.Serialization.Formatters.a0v88kqnif.wasm", + "integrity": "sha256-Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Runtime.Serialization.Json.wasm", + "name": "System.Runtime.Serialization.Json.pez04wd9mo.wasm", + "integrity": "sha256-vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Runtime.Serialization.Primitives.wasm", + "name": "System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm", + "integrity": "sha256-hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Runtime.Serialization.Xml.wasm", + "name": "System.Runtime.Serialization.Xml.mmwsbcsgly.wasm", + "integrity": "sha256-0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Runtime.Serialization.wasm", + "name": "System.Runtime.Serialization.qfpmfujegm.wasm", + "integrity": "sha256-un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Runtime.wasm", + "name": "System.Runtime.k6ze2203p2.wasm", + "integrity": "sha256-ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Security.AccessControl.wasm", + "name": "System.Security.AccessControl.4mxo8hy5cn.wasm", + "integrity": "sha256-1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Security.Claims.wasm", + "name": "System.Security.Claims.9n1yusa5e5.wasm", + "integrity": "sha256-KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Security.Cryptography.Algorithms.wasm", + "name": "System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm", + "integrity": "sha256-CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Security.Cryptography.Cng.wasm", + "name": "System.Security.Cryptography.Cng.dyaxkkx3lb.wasm", + "integrity": "sha256-SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Security.Cryptography.Csp.wasm", + "name": "System.Security.Cryptography.Csp.20t5iw27a6.wasm", + "integrity": "sha256-EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Security.Cryptography.Encoding.wasm", + "name": "System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm", + "integrity": "sha256-7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Security.Cryptography.OpenSsl.wasm", + "name": "System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm", + "integrity": "sha256-nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Security.Cryptography.Primitives.wasm", + "name": "System.Security.Cryptography.Primitives.7bcdd4uolu.wasm", + "integrity": "sha256-kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Security.Cryptography.X509Certificates.wasm", + "name": "System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm", + "integrity": "sha256-+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Security.Cryptography.wasm", + "name": "System.Security.Cryptography.5rp84ijz8t.wasm", + "integrity": "sha256-YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Security.Principal.Windows.wasm", + "name": "System.Security.Principal.Windows.7ssqvw2wfy.wasm", + "integrity": "sha256-NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Security.Principal.wasm", + "name": "System.Security.Principal.j5dp7k8x6u.wasm", + "integrity": "sha256-KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Security.SecureString.wasm", + "name": "System.Security.SecureString.7weoywtuje.wasm", + "integrity": "sha256-Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Security.wasm", + "name": "System.Security.snpv53zusk.wasm", + "integrity": "sha256-qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk=", + "cache": "force-cache" + }, + { + "virtualPath": "System.ServiceModel.Web.wasm", + "name": "System.ServiceModel.Web.3f1khl8k32.wasm", + "integrity": "sha256-0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY=", + "cache": "force-cache" + }, + { + "virtualPath": "System.ServiceProcess.wasm", + "name": "System.ServiceProcess.a95c1olw0i.wasm", + "integrity": "sha256-nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Text.Encoding.CodePages.wasm", + "name": "System.Text.Encoding.CodePages.8bhn50uz8f.wasm", + "integrity": "sha256-nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Text.Encoding.Extensions.wasm", + "name": "System.Text.Encoding.Extensions.tqz9dyg6j7.wasm", + "integrity": "sha256-y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Text.Encoding.wasm", + "name": "System.Text.Encoding.s9ic8sulfi.wasm", + "integrity": "sha256-gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Text.Encodings.Web.wasm", + "name": "System.Text.Encodings.Web.07hq35kp92.wasm", + "integrity": "sha256-dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Text.Json.wasm", + "name": "System.Text.Json.2alhj4y3bm.wasm", + "integrity": "sha256-BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Text.RegularExpressions.wasm", + "name": "System.Text.RegularExpressions.h1qtkesphd.wasm", + "integrity": "sha256-FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Threading.AccessControl.wasm", + "name": "System.Threading.AccessControl.ruehy0ud5k.wasm", + "integrity": "sha256-c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Threading.Channels.wasm", + "name": "System.Threading.Channels.s3i62rxr2p.wasm", + "integrity": "sha256-2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Threading.Overlapped.wasm", + "name": "System.Threading.Overlapped.lzl7igry1t.wasm", + "integrity": "sha256-ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Threading.Tasks.Dataflow.wasm", + "name": "System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm", + "integrity": "sha256-zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Threading.Tasks.Extensions.wasm", + "name": "System.Threading.Tasks.Extensions.unp0hcfijn.wasm", + "integrity": "sha256-Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Threading.Tasks.Parallel.wasm", + "name": "System.Threading.Tasks.Parallel.hyku0ejwye.wasm", + "integrity": "sha256-ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Threading.Tasks.wasm", + "name": "System.Threading.Tasks.t0sjw89o0i.wasm", + "integrity": "sha256-YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Threading.Thread.wasm", + "name": "System.Threading.Thread.nfbg9v9bn0.wasm", + "integrity": "sha256-43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Threading.ThreadPool.wasm", + "name": "System.Threading.ThreadPool.jrzo6stg1k.wasm", + "integrity": "sha256-D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Threading.Timer.wasm", + "name": "System.Threading.Timer.y8l1kxazi5.wasm", + "integrity": "sha256-0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Threading.wasm", + "name": "System.Threading.47ucbn1gg1.wasm", + "integrity": "sha256-ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Transactions.Local.wasm", + "name": "System.Transactions.Local.cig01jt23c.wasm", + "integrity": "sha256-lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Transactions.wasm", + "name": "System.Transactions.pl50n6qbg7.wasm", + "integrity": "sha256-XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio=", + "cache": "force-cache" + }, + { + "virtualPath": "System.ValueTuple.wasm", + "name": "System.ValueTuple.mj3r9p0pcw.wasm", + "integrity": "sha256-Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Web.HttpUtility.wasm", + "name": "System.Web.HttpUtility.3jfxpyq4in.wasm", + "integrity": "sha256-IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Web.wasm", + "name": "System.Web.2a6wq9gv6d.wasm", + "integrity": "sha256-Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Windows.wasm", + "name": "System.Windows.bw79ix589z.wasm", + "integrity": "sha256-O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Xml.Linq.wasm", + "name": "System.Xml.Linq.nvnhbwdsg6.wasm", + "integrity": "sha256-I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Xml.ReaderWriter.wasm", + "name": "System.Xml.ReaderWriter.szsdminork.wasm", + "integrity": "sha256-+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Xml.Serialization.wasm", + "name": "System.Xml.Serialization.b9imguls9w.wasm", + "integrity": "sha256-EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Xml.XDocument.wasm", + "name": "System.Xml.XDocument.8hg6c0at0c.wasm", + "integrity": "sha256-7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Xml.XPath.XDocument.wasm", + "name": "System.Xml.XPath.XDocument.g7i5gd64yo.wasm", + "integrity": "sha256-bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Xml.XPath.wasm", + "name": "System.Xml.XPath.11wk1hhnfk.wasm", + "integrity": "sha256-28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Xml.XmlDocument.wasm", + "name": "System.Xml.XmlDocument.isetn6xlxa.wasm", + "integrity": "sha256-Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Xml.XmlSerializer.wasm", + "name": "System.Xml.XmlSerializer.okgnp5v9bw.wasm", + "integrity": "sha256-WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Xml.wasm", + "name": "System.Xml.zjgi7nrlno.wasm", + "integrity": "sha256-scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas=", + "cache": "force-cache" + }, + { + "virtualPath": "System.wasm", + "name": "System.7rk3uansaa.wasm", + "integrity": "sha256-00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q=", + "cache": "force-cache" + }, + { + "virtualPath": "WindowsBase.wasm", + "name": "WindowsBase.wz82kkc1p3.wasm", + "integrity": "sha256-DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ=", + "cache": "force-cache" + }, + { + "virtualPath": "mscorlib.wasm", + "name": "mscorlib.555t1ekkz8.wasm", + "integrity": "sha256-SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M=", + "cache": "force-cache" + }, + { + "virtualPath": "netstandard.wasm", + "name": "netstandard.0e3bjkca9m.wasm", + "integrity": "sha256-6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs=", + "cache": "force-cache" + }, + { + "virtualPath": "OnProfNext.Client.wasm", + "name": "OnProfNext.Client.xhq6acanj0.wasm", + "integrity": "sha256-pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc=", + "cache": "force-cache" + } + ], + "pdb": [ + { + "virtualPath": "OnProfNext.Client.pdb", + "name": "OnProfNext.Client.lplk7v275j.pdb", + "integrity": "sha256-FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0=", + "cache": "force-cache" + } + ], + "libraryInitializers": [ + { + "name": "_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js" + } + ], + "modulesAfterConfigLoaded": [ + { + "name": "../_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js" + } + ] + }, + "debugLevel": -1, + "appsettings": [ + "../appsettings.Development.json", + "../appsettings.json" + ], + "globalizationMode": "sharded", + "extensions": { + "blazor": {} + }, + "runtimeConfig": { + "runtimeOptions": { + "configProperties": { + "Microsoft.AspNetCore.Components.Routing.RegexConstraintSupport": false, + "Microsoft.Extensions.DependencyInjection.VerifyOpenGenericServiceTrimmability": true, + "System.ComponentModel.DefaultValueAttribute.IsSupported": false, + "System.ComponentModel.Design.IDesignerHost.IsSupported": false, + "System.ComponentModel.TypeConverter.EnableUnsafeBinaryFormatterInDesigntimeLicenseContextSerialization": false, + "System.ComponentModel.TypeDescriptor.IsComObjectDescriptorSupported": false, + "System.Data.DataSet.XmlSerializationIsSupported": false, + "System.Diagnostics.Metrics.Meter.IsSupported": false, + "System.Diagnostics.Tracing.EventSource.IsSupported": false, + "System.GC.Server": true, + "System.Globalization.Invariant": false, + "System.TimeZoneInfo.Invariant": false, + "System.Linq.Enumerable.IsSizeOptimized": true, + "System.Net.Http.EnableActivityPropagation": false, + "System.Net.Http.WasmEnableStreamingResponse": true, + "System.Net.SocketsHttpHandler.Http3Support": false, + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, + "System.Resources.ResourceManager.AllowCustomResourceTypes": false, + "System.Resources.UseSystemResourceKeys": true, + "System.Runtime.CompilerServices.RuntimeFeature.IsDynamicCodeSupported": true, + "System.Runtime.InteropServices.BuiltInComInterop.IsSupported": false, + "System.Runtime.InteropServices.EnableConsumingManagedCodeFromNativeHosting": false, + "System.Runtime.InteropServices.EnableCppCLIHostActivation": false, + "System.Runtime.InteropServices.Marshalling.EnableGeneratedComInterfaceComImportInterop": false, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false, + "System.StartupHookProvider.IsSupported": false, + "System.Text.Encoding.EnableUnsafeUTF7Encoding": false, + "System.Text.Json.JsonSerializer.IsReflectionEnabledByDefault": true, + "System.Threading.Thread.EnableAutoreleasePool": false, + "Microsoft.AspNetCore.Components.Endpoints.NavigationManager.DisableThrowNavigationException": true + } + } + } +}/*json-end*/);export{gt as default,ft as dotnet,mt as exit}; diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/dotnet.js.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/dotnet.js.gz new file mode 100644 index 0000000..68d7b7c Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/dotnet.js.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/dotnet.js.map b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/dotnet.js.map new file mode 100644 index 0000000..492d724 --- /dev/null +++ b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/dotnet.js.map @@ -0,0 +1 @@ +{"version":3,"file":"dotnet.js","sources":["https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/node_modules/wasm-feature-detect/dist/esm/index.js","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/loader/promise-controller.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/types/internal.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/loader/logging.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/loader/polyfills.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/loader/icu.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/loader/assets.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/loader/libraryInitializers.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/loader/config.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/loader/globals.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/loader/exit.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/loader/worker.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/loader/run.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/loader/index.ts"],"sourcesContent":["export const bigInt=()=>(async e=>{try{return(await WebAssembly.instantiate(e)).instance.exports.b(BigInt(0))===BigInt(0)}catch(e){return!1}})(new Uint8Array([0,97,115,109,1,0,0,0,1,6,1,96,1,126,1,126,3,2,1,0,7,5,1,1,98,0,0,10,6,1,4,0,32,0,11])),bulkMemory=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,4,1,96,0,0,3,2,1,0,5,3,1,0,1,10,14,1,12,0,65,0,65,0,65,0,252,10,0,0,11])),exceptions=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,4,1,96,0,0,3,2,1,0,10,8,1,6,0,6,64,25,11,11])),extendedConst=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,5,3,1,0,1,11,9,1,0,65,1,65,2,106,11,0])),gc=()=>(async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,5,1,95,1,120,0])))(),jspi=()=>(async()=>\"Suspender\"in WebAssembly)(),memory64=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,5,3,1,4,1])),multiMemory=()=>(async()=>{try{return new WebAssembly.Module(new Uint8Array([0,97,115,109,1,0,0,0,5,5,2,0,0,0,0])),!0}catch(e){return!1}})(),multiValue=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,6,1,96,0,2,127,127,3,2,1,0,10,8,1,6,0,65,0,65,0,11])),mutableGlobals=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,2,8,1,1,97,1,98,3,127,1,6,6,1,127,1,65,0,11,7,5,1,1,97,3,1])),referenceTypes=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,4,1,96,0,0,3,2,1,0,10,7,1,5,0,208,112,26,11])),relaxedSimd=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,5,1,96,0,1,123,3,2,1,0,10,15,1,13,0,65,1,253,15,65,2,253,15,253,128,2,11])),saturatedFloatToInt=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,4,1,96,0,0,3,2,1,0,10,12,1,10,0,67,0,0,0,0,252,0,26,11])),signExtensions=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,4,1,96,0,0,3,2,1,0,10,8,1,6,0,65,0,192,26,11])),simd=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,5,1,96,0,1,123,3,2,1,0,10,10,1,8,0,65,0,253,15,253,98,11])),streamingCompilation=()=>(async()=>\"compileStreaming\"in WebAssembly)(),tailCall=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,4,1,96,0,0,3,2,1,0,10,6,1,4,0,18,0,11])),threads=()=>(async e=>{try{return\"undefined\"!=typeof MessageChannel&&(new MessageChannel).port1.postMessage(new SharedArrayBuffer(1)),WebAssembly.validate(e)}catch(e){return!1}})(new Uint8Array([0,97,115,109,1,0,0,0,1,4,1,96,0,0,3,2,1,0,5,4,1,3,1,1,10,11,1,9,0,65,0,254,16,2,0,26,11])),typeReflection=()=>(async()=>\"Function\"in WebAssembly)();\n",null,null,null,null,null,null,null,null,null,null,null,null,null],"names":["exceptions","async","WebAssembly","validate","Uint8Array","relaxedSimd","simd","promise_control_symbol","Symbol","for","createPromiseController","afterResolve","afterReject","promise_control","promise","Promise","resolve","reject","isDone","data","reason","controllablePromise","getPromiseController","assertIsControllablePromise","undefined","isControllablePromise","mono_assert","monoMessageSymbol","methods","prefix","consoleWebSocket","theConsoleApi","originalConsoleMethods","threadNamePrefix","node_fs","node_url","set_thread_prefix","threadPrefix","mono_log_debug","messageFactory","loaderHelpers","diagnosticTracing","message","console","debug","mono_log_info","msg","info","mono_log_info_no_prefix","mono_log_warn","warn","mono_log_error","length","silent","toString","error","proxyConsoleMethod","func","asJson","args","payload","JSON","stringify","e","method","arguments","slice","err","setup_proxy_console","id","origin","consoleUrl","replace","WebSocket","addEventListener","logWSError","logWSClose","m","send","setupWS","teardown_proxy_console","counter","stop_when_ws_buffer_empty","bufferedAmount","log","setupOriginal","removeEventListener","close","globalThis","setTimeout","readyState","OPEN","event","init_globalization","preferredIcuAsset","getIcuResourceName","config","invariantMode","globalizationMode","Error","invariantEnv","env_variables","environmentVariables","timezone","Intl","DateTimeFormat","resolvedOptions","timeZone","_a","resources","icu","culture","applicationCulture","ENVIRONMENT_IS_WEB","navigator","languages","locale","icuFiles","icuFile","name","split","includes","getShardedIcuResourceName","i","asset","virtualPath","Date","valueOf","URLPolyfill","constructor","url","this","fetch_like","init","hasFetch","ENVIRONMENT_IS_NODE","isFileUrl","startsWith","fetch","credentials","INTERNAL","require","fileURLToPath","arrayBuffer","promises","readFile","ok","headers","get","json","parse","text","read","status","statusText","makeURLAbsoluteWithApplicationBase","isPathAbsolute","indexOf","URL","document","baseURI","protocolRx","windowsAbsoluteRx","path","ENVIRONMENT_IS_SHELL","test","throttlingPromise","parallel_count","coreAssetsToLoad","assetsToLoad","singleAssets","Map","jsRuntimeModulesAssetTypes","jsModulesAssetTypes","singleAssetTypes","dotnetwasm","heap","manifest","appendQueryAssetTypes","skipDownloadsByAssetTypes","skipBufferByAssetTypes","symbols","skipInstantiateByAssetTypes","loadIntoWorker","shouldLoadIcuAsset","behavior","convert_single_asset","assetsCollection","resource","assetEntry","set_single_asset","push","set","try_resolve_single_asset_path","resolvedUrl","locateFile","customLoadResult","invokeLoadBootResource","appendUniqueQuery","resolve_single_asset_path","downloadAssetsStarted","mono_download_assets","promises_of_assets_core","promises_of_assets_remaining","countAndStartDownload","promises_list","expected_instantiated_assets_count","expected_downloaded_assets_count","start_asset_download","allDownloadsQueued","all","then","allDownloadsFinished","catch","mono_exit","runtimeModuleLoaded","instantiate","downloadPromise","buffer","cleanupAsset","runtimeHelpers","beforeOnRuntimeInitialized","instantiate_asset","instantiate_symbols_asset","actual_downloaded_assets_count","promises_of_asset_instantiation_core","promises_of_asset_instantiation_remaining","ENVIRONMENT_IS_WORKER","coreAssetsInMemory","allAssetsInMemory","assetsPrepared","prepareAssets","modulesAssets","assets","hash","pendingDownload","isCore","wasmNative","jsModuleNative","jsModuleRuntime","jsModuleDiagnostics","addAsset","coreAssembly","assembly","debugLevel","isDebuggingSupported","corePdb","pdb","loadAllSatelliteResources","satelliteResources","coreVfs","vfs","icuDataResourceName","wasmSymbols","appsettings","configUrl","configFileName","fileName","applicationEnvironment","cache","useCredentials","retrieve_asset_download","pendingAsset","pendingDownloadInternal","response","start_asset_download_with_throttle","enableDownloadRetry","maxParallelDownloads","TextDecoder","decode","sourcesList","loadRemote","remoteSources","sourcePrefix","trim","attemptUrl","resolve_path","loadingResource","download_resource","isOkToFail","isOptional","match","ignorePdbLoadErrors","start_asset_download_sources","old_throttling","modulesUniqueQuery","resourcesLoaded","totalResources","Set","fetchResponse","loadBootResource","fetchOptions","disableNoCacheFetch","disableIntegrityCheck","integrity","fetchResource","add","loadedAssemblies","onDownloadResourceProgress","size","monoToBlazorAssetTypeMap","requestHash","resourceType","moduleExports","lastIndexOfSlash","lastIndexOf","substring","importLibraryInitializers","libraryInitializers","map","adjustedPath","import","scriptName","exports","importInitializer","invokeLibraryInitializers","functionName","initializer","abortStartupOnError","methodName","callback","deep_merge_config","target","source","providedConfig","deep_merge_resources","runtimeOptions","Object","assign","deep_merge_module","providedResources","lazyAssembly","jsModuleWorker","key","deepMergeSatelliteResources","modulesAfterConfigLoaded","modulesAfterRuntimeReady","extensions","normalizeConfig","toMerge","waitForDebugger","configLoaded","mono_wasm_load_config","module","afterConfigLoaded","configFilePath","configSrc","keys","defaultConfigSrc","defaultConfigUrl","loaderResponse","loadedConfig","loadedConfigResponse","fetchBootConfig","readBootConfigResponse","loadedResponse","loadBootConfig","onConfigLoaded","exportedRuntimeAPI","errMessage","stack","isError","isChromium","isFirefox","loadConfigResponse","modifiableAssemblies","aspnetCoreBrowserTools","importScripts","onmessage","dotnetSidecar","process","versions","node","ENVIRONMENT_IS_WEB_WORKER","ENVIRONMENT_IS_SIDECAR","window","diagnosticHelpers","_loaderModuleLoaded","monoConfig","emscriptenModule","globalObjectsRoot","mono","binding","internal","api","condition","nativeAbort","is_exited","exitCode","is_runtime_running","runtimeReady","assert_runtime_running","exitReason","installUnhandledErrorHandler","unhandledrejection_handler","error_handler","originalOnAbort","originalOnExit","onExit","code","onAbort","exit_code","is_object","ExitStatus","ex","createExitStatus","defineProperty","alreadySilent","jiterpreter_dump_stats","interopCleanupOnExit","forceDisposeProxies","WasmEnableThreads","_b","dumpThreadsOnNonZeroExit","wasmCompilePromise","dotnetReady","afterInstantiateWasm","beforePreInit","afterPreInit","afterPreRun","afterOnRuntimeInitialized","afterPostRun","abort_promises","mono_log","stringify_as_error_with_stack","logExitCode","forwardConsoleLogsToWS","logOnExit","appendElementOnExit","tests_done_elem","createElement","style","background","innerHTML","body","appendChild","runtimeKeepalivePop","asyncFlushOnExit","flushStream","stream","on","end","stderrFlushed","stderr","stdoutFlushed","stdout","timeoutId","timeout","race","clearTimeout","flush_node_streams","set_exit_code_and_quit_now","nativeExit","exit","quit","fatal_handler","type","preventDefault","globalObjects","rh","mono_wasm_bindings_is_ready","lh","gitHash","_loaded_files","loadedFiles","workerNextNumber","actual_instantiated_assets_count","loadingWorkers","setLoaderGlobals","jsModuleRuntimePromise","jsModuleNativePromise","jsModuleDiagnosticPromise","workerMonoConfigReceived","emscriptenPrepared","prepareEmscripten","moduleFactory","location","extension","ready","minNodeVersion","execPath","scriptUrlQuery","queryIndex","dir","scriptUrl","scriptDirectory","out","brands","userAgentData","some","b","brand","userAgent","mod","createRequire","detect_features_and_polyfill","createEmscripten","ENVIRONMENT_IS_PTHREAD","channel","MessageChannel","workerPort","port1","mainPort","port2","monoThreadInfo","once","start","self","postMessage","monoCmd","port","setupPreloadChannelToMainThread","prepareAssetsWorker","importModules","es6Modules","initializeModules","createEmscriptenWorker","wasmModuleAsset","contentType","compiledModule","compileStreaming","Module","compile","streamingCompileWasm","createEmscriptenMain","jsModuleRuntimeAsset","jsModuleNativeAsset","jsModuleDiagnosticAsset","initializeExports","initializeReplacements","configureRuntimeStartup","configureEmscriptenStartup","configureWorkerStartup","setRuntimeGlobals","passEmscriptenInternals","default","emscriptenFactory","diagnosticModule","originalModule","__dotnet_runtime","toLowerCase","dotnet","withModuleConfig","moduleConfig","withOnConfigLoaded","withConsoleForwarding","withExitOnUnhandledError","exitOnUnhandledError","withAsyncFlushOnExit","withExitCodeLogging","withElementOnExit","withInteropCleanupOnExit","withDumpThreadsOnNonZeroExit","withWaitingForDebugger","level","withInterpreterPgo","value","autoSaveDelay","interpreterPgo","interpreterPgoSaveDelay","withConfig","withConfigSrc","withVirtualWorkingDirectory","vfsPath","virtualWorkingDirectory","withEnvironmentVariable","withEnvironmentVariables","variables","withDiagnosticTracing","enabled","withDebugging","withApplicationArguments","Array","isArray","applicationArguments","withRuntimeOptions","withMainAssembly","mainAssemblyName","withApplicationArgumentsFromQuery","URLSearchParams","values","search","getAll","withApplicationEnvironment","withApplicationCulture","withResourceLoader","download","downloadOnly","create","instance","createApi","run","runMainAndExit","legacyEntrypoint","BigInt64Array"],"mappings":"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","x_google_ignoreList":[0]} \ No newline at end of file diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/dotnet.js.map.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/dotnet.js.map.gz new file mode 100644 index 0000000..5327a1e Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/dotnet.js.map.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/dotnet.native.53ez3dx5uy.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/dotnet.native.53ez3dx5uy.wasm new file mode 100644 index 0000000..0adfaff Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/dotnet.native.53ez3dx5uy.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/dotnet.native.53ez3dx5uy.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/dotnet.native.53ez3dx5uy.wasm.gz new file mode 100644 index 0000000..115712e Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/dotnet.native.53ez3dx5uy.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/dotnet.native.ykrnppwhq2.js b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/dotnet.native.ykrnppwhq2.js new file mode 100644 index 0000000..bbbcf33 --- /dev/null +++ b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/dotnet.native.ykrnppwhq2.js @@ -0,0 +1,16 @@ + +var createDotnetRuntime = (() => { + var _scriptDir = import.meta.url; + + return ( +async function(moduleArg = {}) { + +var Module=moduleArg;var readyPromiseResolve,readyPromiseReject;Module["ready"]=new Promise((resolve,reject)=>{readyPromiseResolve=resolve;readyPromiseReject=reject});if(_nativeModuleLoaded)throw new Error("Native module already loaded");_nativeModuleLoaded=true;createDotnetRuntime=Module=moduleArg(Module);var moduleOverrides=Object.assign({},Module);var arguments_=[];var thisProgram="./this.program";var quit_=(status,toThrow)=>{throw toThrow};var ENVIRONMENT_IS_WEB=typeof window=="object";var ENVIRONMENT_IS_WORKER=typeof importScripts=="function";var ENVIRONMENT_IS_NODE=typeof process=="object"&&typeof process.versions=="object"&&typeof process.versions.node=="string";var 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;if(ENVIRONMENT_IS_NODE){const{createRequire:createRequire}=await import("module");var require=createRequire(import.meta.url);var fs=require("fs");var nodePath=require("path");if(ENVIRONMENT_IS_WORKER){scriptDirectory=nodePath.dirname(scriptDirectory)+"/"}else{scriptDirectory=require("url").fileURLToPath(new URL("./",import.meta.url))}read_=(filename,binary)=>{filename=isFileURI(filename)?new URL(filename):nodePath.normalize(filename);return fs.readFileSync(filename,binary?undefined:"utf8")};readBinary=filename=>{var ret=read_(filename,true);if(!ret.buffer){ret=new Uint8Array(ret)}return ret};readAsync=(filename,onload,onerror,binary=true)=>{filename=isFileURI(filename)?new URL(filename):nodePath.normalize(filename);fs.readFile(filename,binary?undefined:"utf8",(err,data)=>{if(err)onerror(err);else onload(binary?data.buffer:data)})};if(!Module["thisProgram"]&&process.argv.length>1){thisProgram=process.argv[1].replace(/\\/g,"/")}arguments_=process.argv.slice(2);quit_=(status,toThrow)=>{process.exitCode=status;throw toThrow}}else if(ENVIRONMENT_IS_SHELL){if(typeof read!="undefined"){read_=read}readBinary=f=>{if(typeof readbuffer=="function"){return new Uint8Array(readbuffer(f))}let data=read(f,"binary");assert(typeof data=="object");return data};readAsync=(f,onload,onerror)=>{setTimeout(()=>onload(readBinary(f)))};if(typeof clearTimeout=="undefined"){globalThis.clearTimeout=id=>{}}if(typeof setTimeout=="undefined"){globalThis.setTimeout=f=>typeof f=="function"?f():abort()}if(typeof scriptArgs!="undefined"){arguments_=scriptArgs}else if(typeof arguments!="undefined"){arguments_=arguments}if(typeof quit=="function"){quit_=(status,toThrow)=>{setTimeout(()=>{if(!(toThrow instanceof ExitStatus)){let toLog=toThrow;if(toThrow&&typeof toThrow=="object"&&toThrow.stack){toLog=[toThrow,toThrow.stack]}err(`exiting due to exception: ${toLog}`)}quit(status)});throw toThrow}}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(_scriptDir){scriptDirectory=_scriptDir}if(scriptDirectory.startsWith("blob:")){scriptDirectory=""}else{scriptDirectory=scriptDirectory.substr(0,scriptDirectory.replace(/[?#].*/,"").lastIndexOf("/")+1)}{read_=url=>{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.send(null);return xhr.responseText};if(ENVIRONMENT_IS_WORKER){readBinary=url=>{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.responseType="arraybuffer";xhr.send(null);return new Uint8Array(xhr.response)}}readAsync=(url,onload,onerror)=>{var xhr=new XMLHttpRequest;xhr.open("GET",url,true);xhr.responseType="arraybuffer";xhr.onload=()=>{if(xhr.status==200||xhr.status==0&&xhr.response){onload(xhr.response);return}onerror()};xhr.onerror=onerror;xhr.send(null)}}}else{}var out=Module["print"]||console.log.bind(console);var err=Module["printErr"]||console.error.bind(console);Object.assign(Module,moduleOverrides);moduleOverrides=null;if(Module["arguments"])arguments_=Module["arguments"];if(Module["thisProgram"])thisProgram=Module["thisProgram"];if(Module["quit"])quit_=Module["quit"];var wasmBinary;if(Module["wasmBinary"])wasmBinary=Module["wasmBinary"];if(typeof atob=="undefined"){if(typeof global!="undefined"&&typeof globalThis=="undefined"){globalThis=global}globalThis.atob=function(input){var keyStr="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";var output="";var chr1,chr2,chr3;var enc1,enc2,enc3,enc4;var i=0;input=input.replace(/[^A-Za-z0-9\+\/\=]/g,"");do{enc1=keyStr.indexOf(input.charAt(i++));enc2=keyStr.indexOf(input.charAt(i++));enc3=keyStr.indexOf(input.charAt(i++));enc4=keyStr.indexOf(input.charAt(i++));chr1=enc1<<2|enc2>>4;chr2=(enc2&15)<<4|enc3>>2;chr3=(enc3&3)<<6|enc4;output=output+String.fromCharCode(chr1);if(enc3!==64){output=output+String.fromCharCode(chr2)}if(enc4!==64){output=output+String.fromCharCode(chr3)}}while(ifilename.startsWith(dataURIPrefix);var isFileURI=filename=>filename.startsWith("file://");var wasmBinaryFile;if(Module["locateFile"]){wasmBinaryFile="dotnet.native.wasm";if(!isDataURI(wasmBinaryFile)){wasmBinaryFile=locateFile(wasmBinaryFile)}}else{if(ENVIRONMENT_IS_SHELL)wasmBinaryFile="dotnet.native.wasm";else wasmBinaryFile=new URL("dotnet.native.wasm",import.meta.url).href}function getBinarySync(file){if(file==wasmBinaryFile&&wasmBinary){return new Uint8Array(wasmBinary)}if(readBinary){return readBinary(file)}throw"both async and sync fetching of the wasm failed"}function getBinaryPromise(binaryFile){if(!wasmBinary&&(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER)){if(typeof fetch=="function"&&!isFileURI(binaryFile)){return fetch(binaryFile,{credentials:"same-origin"}).then(response=>{if(!response["ok"]){throw`failed to load wasm binary file at '${binaryFile}'`}return response["arrayBuffer"]()}).catch(()=>getBinarySync(binaryFile))}else if(readAsync){return new Promise((resolve,reject)=>{readAsync(binaryFile,response=>resolve(new Uint8Array(response)),reject)})}}return Promise.resolve().then(()=>getBinarySync(binaryFile))}function instantiateArrayBuffer(binaryFile,imports,receiver){return getBinaryPromise(binaryFile).then(binary=>WebAssembly.instantiate(binary,imports)).then(receiver,reason=>{err(`failed to asynchronously prepare wasm: ${reason}`);abort(reason)})}function instantiateAsync(binary,binaryFile,imports,callback){if(!binary&&typeof WebAssembly.instantiateStreaming=="function"&&!isDataURI(binaryFile)&&!isFileURI(binaryFile)&&!ENVIRONMENT_IS_NODE&&typeof fetch=="function"){return fetch(binaryFile,{credentials:"same-origin"}).then(response=>{var result=WebAssembly.instantiateStreaming(response,imports);return result.then(callback,function(reason){err(`wasm streaming compile failed: ${reason}`);err("falling back to ArrayBuffer instantiation");return instantiateArrayBuffer(binaryFile,imports,callback)})})}return instantiateArrayBuffer(binaryFile,imports,callback)}function createWasm(){var info={"env":wasmImports,"wasi_snapshot_preview1":wasmImports};function receiveInstance(instance,module){wasmExports=instance.exports;Module["wasmExports"]=wasmExports;wasmMemory=wasmExports["memory"];updateMemoryViews();wasmTable=wasmExports["__indirect_function_table"];addOnInit(wasmExports["__wasm_call_ctors"]);removeRunDependency("wasm-instantiate");return wasmExports}addRunDependency("wasm-instantiate");function receiveInstantiationResult(result){receiveInstance(result["instance"])}if(Module["instantiateWasm"]){try{return Module["instantiateWasm"](info,receiveInstance)}catch(e){err(`Module.instantiateWasm callback failed with error: ${e}`);readyPromiseReject(e)}}instantiateAsync(wasmBinary,wasmBinaryFile,info,receiveInstantiationResult).catch(readyPromiseReject);return{}}function ExitStatus(status){this.name="ExitStatus";this.message=`Program terminated with exit(${status})`;this.status=status}var callRuntimeCallbacks=callbacks=>{while(callbacks.length>0){callbacks.shift()(Module)}};function getValue(ptr,type="i8"){if(type.endsWith("*"))type="*";switch(type){case"i1":return HEAP8[ptr];case"i8":return HEAP8[ptr];case"i16":return HEAP16[ptr>>1];case"i32":return HEAP32[ptr>>2];case"i64":return HEAP64[ptr>>3];case"float":return HEAPF32[ptr>>2];case"double":return HEAPF64[ptr>>3];case"*":return HEAPU32[ptr>>2];default:abort(`invalid type for getValue: ${type}`)}}var noExitRuntime=Module["noExitRuntime"]||false;function setValue(ptr,value,type="i8"){if(type.endsWith("*"))type="*";switch(type){case"i1":HEAP8[ptr]=value;break;case"i8":HEAP8[ptr]=value;break;case"i16":HEAP16[ptr>>1]=value;break;case"i32":HEAP32[ptr>>2]=value;break;case"i64":HEAP64[ptr>>3]=BigInt(value);break;case"float":HEAPF32[ptr>>2]=value;break;case"double":HEAPF64[ptr>>3]=value;break;case"*":HEAPU32[ptr>>2]=value;break;default:abort(`invalid type for setValue: ${type}`)}}var exceptionCaught=[];var uncaughtExceptionCount=0;var ___cxa_begin_catch=ptr=>{var info=new ExceptionInfo(ptr);if(!info.get_caught()){info.set_caught(true);uncaughtExceptionCount--}info.set_rethrown(false);exceptionCaught.push(info);___cxa_increment_exception_refcount(info.excPtr);return info.get_exception_ptr()};var exceptionLast=0;var ___cxa_end_catch=()=>{_setThrew(0,0);var info=exceptionCaught.pop();___cxa_decrement_exception_refcount(info.excPtr);exceptionLast=0};class ExceptionInfo{constructor(excPtr){this.excPtr=excPtr;this.ptr=excPtr-24}set_type(type){HEAPU32[this.ptr+4>>2]=type}get_type(){return HEAPU32[this.ptr+4>>2]}set_destructor(destructor){HEAPU32[this.ptr+8>>2]=destructor}get_destructor(){return HEAPU32[this.ptr+8>>2]}set_caught(caught){caught=caught?1:0;HEAP8[this.ptr+12]=caught}get_caught(){return HEAP8[this.ptr+12]!=0}set_rethrown(rethrown){rethrown=rethrown?1:0;HEAP8[this.ptr+13]=rethrown}get_rethrown(){return HEAP8[this.ptr+13]!=0}init(type,destructor){this.set_adjusted_ptr(0);this.set_type(type);this.set_destructor(destructor)}set_adjusted_ptr(adjustedPtr){HEAPU32[this.ptr+16>>2]=adjustedPtr}get_adjusted_ptr(){return HEAPU32[this.ptr+16>>2]}get_exception_ptr(){var isPointer=___cxa_is_pointer_type(this.get_type());if(isPointer){return HEAPU32[this.excPtr>>2]}var adjusted=this.get_adjusted_ptr();if(adjusted!==0)return adjusted;return this.excPtr}}var ___resumeException=ptr=>{if(!exceptionLast){exceptionLast=ptr}throw exceptionLast};var findMatchingCatch=args=>{var thrown=exceptionLast;if(!thrown){setTempRet0(0);return 0}var info=new ExceptionInfo(thrown);info.set_adjusted_ptr(thrown);var thrownType=info.get_type();if(!thrownType){setTempRet0(0);return thrown}for(var arg in args){var caughtType=args[arg];if(caughtType===0||caughtType===thrownType){break}var adjusted_ptr_addr=info.ptr+16;if(___cxa_can_catch(caughtType,thrownType,adjusted_ptr_addr)){setTempRet0(caughtType);return thrown}}setTempRet0(thrownType);return thrown};var ___cxa_find_matching_catch_3=arg0=>findMatchingCatch([arg0]);var ___cxa_throw=(ptr,type,destructor)=>{var info=new ExceptionInfo(ptr);info.init(type,destructor);exceptionLast=ptr;uncaughtExceptionCount++;throw exceptionLast};var PATH={isAbs:path=>path.charAt(0)==="/",splitPath:filename=>{var splitPathRe=/^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/;return splitPathRe.exec(filename).slice(1)},normalizeArray:(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:path=>{var isAbsolute=PATH.isAbs(path),trailingSlash=path.substr(-1)==="/";path=PATH.normalizeArray(path.split("/").filter(p=>!!p),!isAbsolute).join("/");if(!path&&!isAbsolute){path="."}if(path&&trailingSlash){path+="/"}return(isAbsolute?"/":"")+path},dirname: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: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)},join:(...paths)=>PATH.normalize(paths.join("/")),join2:(l,r)=>PATH.normalize(l+"/"+r)};var initRandomFill=()=>{if(typeof crypto=="object"&&typeof crypto["getRandomValues"]=="function"){return view=>crypto.getRandomValues(view)}else if(ENVIRONMENT_IS_NODE){try{var crypto_module=require("crypto");var randomFillSync=crypto_module["randomFillSync"];if(randomFillSync){return view=>crypto_module["randomFillSync"](view)}var randomBytes=crypto_module["randomBytes"];return view=>(view.set(randomBytes(view.byteLength)),view)}catch(e){}}abort("initRandomDevice")};var randomFill=view=>(randomFill=initRandomFill())(view);var PATH_FS={resolve:(...args)=>{var resolvedPath="",resolvedAbsolute=false;for(var i=args.length-1;i>=-1&&!resolvedAbsolute;i--){var path=i>=0?args[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.isAbs(path)}resolvedPath=PATH.normalizeArray(resolvedPath.split("/").filter(p=>!!p),!resolvedAbsolute).join("/");return(resolvedAbsolute?"/":"")+resolvedPath||"."},relative:(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;i{var endIdx=idx+maxBytesToRead;var endPtr=idx;while(heapOrArray[endPtr]&&!(endPtr>=endIdx))++endPtr;if(endPtr-idx>16&&heapOrArray.buffer&&UTF8Decoder){return UTF8Decoder.decode(heapOrArray.subarray(idx,endPtr))}var str="";while(idx>10,56320|ch&1023)}}return str};var FS_stdin_getChar_buffer=[];var lengthBytesUTF8=str=>{var len=0;for(var i=0;i=55296&&c<=57343){len+=4;++i}else{len+=3}}return len};var 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 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 FS_stdin_getChar=()=>{if(!FS_stdin_getChar_buffer.length){var result=null;if(ENVIRONMENT_IS_NODE){var BUFSIZE=256;var buf=Buffer.alloc(BUFSIZE);var bytesRead=0;var fd=process.stdin.fd;try{bytesRead=fs.readSync(fd,buf)}catch(e){if(e.toString().includes("EOF"))bytesRead=0;else throw e}if(bytesRead>0){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}FS_stdin_getChar_buffer=intArrayFromString(result,true)}return FS_stdin_getChar_buffer.shift()};var TTY={ttys:[],init(){},shutdown(){},register(dev,ops){TTY.ttys[dev]={input:[],output:[],ops:ops};FS.registerDevice(dev,TTY.stream_ops)},stream_ops:{open(stream){var tty=TTY.ttys[stream.node.rdev];if(!tty){throw new FS.ErrnoError(43)}stream.tty=tty;stream.seekable=false},close(stream){stream.tty.ops.fsync(stream.tty)},fsync(stream){stream.tty.ops.fsync(stream.tty)},read(stream,buffer,offset,length,pos){if(!stream.tty||!stream.tty.ops.get_char){throw new FS.ErrnoError(60)}var bytesRead=0;for(var i=0;i0){out(UTF8ArrayToString(tty.output,0));tty.output=[]}},ioctl_tcgets(tty){return{c_iflag:25856,c_oflag:5,c_cflag:191,c_lflag:35387,c_cc:[3,28,127,21,4,0,1,0,17,19,26,0,18,15,23,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}},ioctl_tcsets(tty,optional_actions,data){return 0},ioctl_tiocgwinsz(tty){return[24,80]}},default_tty1_ops:{put_char(tty,val){if(val===null||val===10){err(UTF8ArrayToString(tty.output,0));tty.output=[]}else{if(val!=0)tty.output.push(val)}},fsync(tty){if(tty.output&&tty.output.length>0){err(UTF8ArrayToString(tty.output,0));tty.output=[]}}}};var zeroMemory=(address,size)=>{HEAPU8.fill(0,address,address+size);return address};var alignMemory=(size,alignment)=>Math.ceil(size/alignment)*alignment;var mmapAlloc=size=>{size=alignMemory(size,65536);var ptr=_emscripten_builtin_memalign(65536,size);if(!ptr)return 0;return zeroMemory(ptr,size)};var MEMFS={ops_table:null,mount(mount){return MEMFS.createNode(null,"/",16384|511,0)},createNode(parent,name,mode,dev){if(FS.isBlkdev(mode)||FS.isFIFO(mode)){throw new FS.ErrnoError(63)}MEMFS.ops_table||={dir:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr,lookup:MEMFS.node_ops.lookup,mknod:MEMFS.node_ops.mknod,rename:MEMFS.node_ops.rename,unlink:MEMFS.node_ops.unlink,rmdir:MEMFS.node_ops.rmdir,readdir:MEMFS.node_ops.readdir,symlink:MEMFS.node_ops.symlink},stream:{llseek:MEMFS.stream_ops.llseek}},file:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr},stream:{llseek:MEMFS.stream_ops.llseek,read:MEMFS.stream_ops.read,write:MEMFS.stream_ops.write,allocate:MEMFS.stream_ops.allocate,mmap:MEMFS.stream_ops.mmap,msync:MEMFS.stream_ops.msync}},link:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr,readlink:MEMFS.node_ops.readlink},stream:{}},chrdev:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr},stream:FS.chrdev_stream_ops}};var node=FS.createNode(parent,name,mode,dev);if(FS.isDir(node.mode)){node.node_ops=MEMFS.ops_table.dir.node;node.stream_ops=MEMFS.ops_table.dir.stream;node.contents={}}else if(FS.isFile(node.mode)){node.node_ops=MEMFS.ops_table.file.node;node.stream_ops=MEMFS.ops_table.file.stream;node.usedBytes=0;node.contents=null}else if(FS.isLink(node.mode)){node.node_ops=MEMFS.ops_table.link.node;node.stream_ops=MEMFS.ops_table.link.stream}else if(FS.isChrdev(node.mode)){node.node_ops=MEMFS.ops_table.chrdev.node;node.stream_ops=MEMFS.ops_table.chrdev.stream}node.timestamp=Date.now();if(parent){parent.contents[name]=node;parent.timestamp=node.timestamp}return node},getFileDataAsTypedArray(node){if(!node.contents)return new Uint8Array(0);if(node.contents.subarray)return node.contents.subarray(0,node.usedBytes);return new Uint8Array(node.contents)},expandFileStorage(node,newCapacity){var prevCapacity=node.contents?node.contents.length:0;if(prevCapacity>=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(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(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(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(parent,name){throw FS.genericErrors[44]},mknod(parent,name,mode,dev){return MEMFS.createNode(parent,name,mode,dev)},rename(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(parent,name){delete parent.contents[name];parent.timestamp=Date.now()},rmdir(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(node){var entries=[".",".."];for(var key of Object.keys(node.contents)){entries.push(key)}return entries},symlink(parent,newname,oldpath){var node=MEMFS.createNode(parent,newname,511|40960,0);node.link=oldpath;return node},readlink(node){if(!FS.isLink(node.mode)){throw new FS.ErrnoError(28)}return node.link}},stream_ops:{read(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+length{var dep=!noRunDep?getUniqueRunDependency(`al ${url}`):"";readAsync(url,arrayBuffer=>{onload(new Uint8Array(arrayBuffer));if(dep)removeRunDependency(dep)},event=>{if(onerror){onerror()}else{throw`Loading data file "${url}" failed.`}});if(dep)addRunDependency(dep)};var FS_createDataFile=(parent,name,fileData,canRead,canWrite,canOwn)=>{FS.createDataFile(parent,name,fileData,canRead,canWrite,canOwn)};var preloadPlugins=Module["preloadPlugins"]||[];var FS_handledByPreloadPlugin=(byteArray,fullname,finish,onerror)=>{if(typeof Browser!="undefined")Browser.init();var handled=false;preloadPlugins.forEach(plugin=>{if(handled)return;if(plugin["canHandle"](fullname)){plugin["handle"](byteArray,fullname,finish,onerror);handled=true}});return handled};var FS_createPreloadedFile=(parent,name,url,canRead,canWrite,onload,onerror,dontCreateFile,canOwn,preFinish)=>{var fullname=name?PATH_FS.resolve(PATH.join2(parent,name)):parent;var dep=getUniqueRunDependency(`cp ${fullname}`);function processData(byteArray){function finish(byteArray){preFinish?.();if(!dontCreateFile){FS_createDataFile(parent,name,byteArray,canRead,canWrite,canOwn)}onload?.();removeRunDependency(dep)}if(FS_handledByPreloadPlugin(byteArray,fullname,finish,()=>{onerror?.();removeRunDependency(dep)})){return}finish(byteArray)}addRunDependency(dep);if(typeof url=="string"){asyncLoad(url,processData,onerror)}else{processData(url)}};var FS_modeStringToFlags=str=>{var flagModes={"r":0,"r+":2,"w":512|64|1,"w+":512|64|2,"a":1024|64|1,"a+":1024|64|2};var flags=flagModes[str];if(typeof flags=="undefined"){throw new Error(`Unknown file open mode: ${str}`)}return flags};var FS_getMode=(canRead,canWrite)=>{var mode=0;if(canRead)mode|=292|73;if(canWrite)mode|=146;return mode};var FS={root:null,mounts:[],devices:{},streams:[],nextInode:1,nameTable:null,currentPath:"/",initialized:false,ignorePermissions:true,ErrnoError:class{constructor(errno){this.name="ErrnoError";this.errno=errno}},genericErrors:{},filesystems:null,syncFSRequests:0,FSStream:class{constructor(){this.shared={}}get object(){return this.node}set object(val){this.node=val}get isRead(){return(this.flags&2097155)!==1}get isWrite(){return(this.flags&2097155)!==0}get isAppend(){return this.flags&1024}get flags(){return this.shared.flags}set flags(val){this.shared.flags=val}get position(){return this.shared.position}set position(val){this.shared.position=val}},FSNode:class{constructor(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;this.readMode=292|73;this.writeMode=146}get read(){return(this.mode&this.readMode)===this.readMode}set read(val){val?this.mode|=this.readMode:this.mode&=~this.readMode}get write(){return(this.mode&this.writeMode)===this.writeMode}set write(val){val?this.mode|=this.writeMode:this.mode&=~this.writeMode}get isFolder(){return FS.isDir(this.mode)}get isDevice(){return FS.isChrdev(this.mode)}},lookupPath(path,opts={}){path=PATH_FS.resolve(path);if(!path)return{path:"",node:null};var defaults={follow_mount:true,recurse_count:0};opts=Object.assign(defaults,opts);if(opts.recurse_count>8){throw new FS.ErrnoError(32)}var parts=path.split("/").filter(p=>!!p);var current=FS.root;var current_path="/";for(var i=0;i40){throw new FS.ErrnoError(32)}}}}return{path:current_path,node:current}},getPath(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(parentid,name){var hash=0;for(var i=0;i>>0)%FS.nameTable.length},hashAddNode(node){var hash=FS.hashName(node.parent.id,node.name);node.name_next=FS.nameTable[hash];FS.nameTable[hash]=node},hashRemoveNode(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(parent,name){var errCode=FS.mayLookup(parent);if(errCode){throw new FS.ErrnoError(errCode)}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(parent,name,mode,rdev){var node=new FS.FSNode(parent,name,mode,rdev);FS.hashAddNode(node);return node},destroyNode(node){FS.hashRemoveNode(node)},isRoot(node){return node===node.parent},isMountpoint(node){return!!node.mounted},isFile(mode){return(mode&61440)===32768},isDir(mode){return(mode&61440)===16384},isLink(mode){return(mode&61440)===40960},isChrdev(mode){return(mode&61440)===8192},isBlkdev(mode){return(mode&61440)===24576},isFIFO(mode){return(mode&61440)===4096},isSocket(mode){return(mode&49152)===49152},flagsToPermissionString(flag){var perms=["r","w","rw"][flag&3];if(flag&512){perms+="w"}return perms},nodePermissions(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(dir){if(!FS.isDir(dir.mode))return 54;var errCode=FS.nodePermissions(dir,"x");if(errCode)return errCode;if(!dir.node_ops.lookup)return 2;return 0},mayCreate(dir,name){try{var node=FS.lookupNode(dir,name);return 20}catch(e){}return FS.nodePermissions(dir,"wx")},mayDelete(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(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(){for(var fd=0;fd<=FS.MAX_OPEN_FDS;fd++){if(!FS.streams[fd]){return fd}}throw new FS.ErrnoError(33)},getStreamChecked(fd){var stream=FS.getStream(fd);if(!stream){throw new FS.ErrnoError(8)}return stream},getStream:fd=>FS.streams[fd],createStream(stream,fd=-1){stream=Object.assign(new FS.FSStream,stream);if(fd==-1){fd=FS.nextfd()}stream.fd=fd;FS.streams[fd]=stream;return stream},closeStream(fd){FS.streams[fd]=null},dupStream(origStream,fd=-1){var stream=FS.createStream(origStream,fd);stream.stream_ops?.dup?.(stream);return stream},chrdev_stream_ops:{open(stream){var device=FS.getDevice(stream.node.rdev);stream.stream_ops=device.stream_ops;stream.stream_ops.open?.(stream)},llseek(){throw new FS.ErrnoError(70)}},major:dev=>dev>>8,minor:dev=>dev&255,makedev:(ma,mi)=>ma<<8|mi,registerDevice(dev,ops){FS.devices[dev]={stream_ops:ops}},getDevice:dev=>FS.devices[dev],getMounts(mount){var mounts=[];var check=[mount];while(check.length){var m=check.pop();mounts.push(m);check.push(...m.mounts)}return mounts},syncfs(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(mount=>{if(!mount.type.syncfs){return done(null)}mount.type.syncfs(mount,populate,done)})},mount(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(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(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(parent,name){return parent.node_ops.lookup(parent,name)},mknod(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(path,mode){mode=mode!==undefined?mode:438;mode&=4095;mode|=32768;return FS.mknod(path,mode,0)},mkdir(path,mode){mode=mode!==undefined?mode:511;mode&=511|512;mode|=16384;return FS.mknod(path,mode,0)},mkdirTree(path,mode){var dirs=path.split("/");var d="";for(var i=0;iFS.currentPath,chdir(path){var lookup=FS.lookupPath(path,{follow:true});if(lookup.node===null){throw new FS.ErrnoError(44)}if(!FS.isDir(lookup.node.mode)){throw new FS.ErrnoError(54)}var errCode=FS.nodePermissions(lookup.node,"x");if(errCode){throw new FS.ErrnoError(errCode)}FS.currentPath=lookup.path},createDefaultDirectories(){FS.mkdir("/tmp");FS.mkdir("/home");FS.mkdir("/home/web_user")},createDefaultDevices(){FS.mkdir("/dev");FS.registerDevice(FS.makedev(1,3),{read:()=>0,write:(stream,buffer,offset,length,pos)=>length});FS.mkdev("/dev/null",FS.makedev(1,3));TTY.register(FS.makedev(5,0),TTY.default_tty_ops);TTY.register(FS.makedev(6,0),TTY.default_tty1_ops);FS.mkdev("/dev/tty",FS.makedev(5,0));FS.mkdev("/dev/tty1",FS.makedev(6,0));var randomBuffer=new Uint8Array(1024),randomLeft=0;var randomByte=()=>{if(randomLeft===0){randomLeft=randomFill(randomBuffer).byteLength}return randomBuffer[--randomLeft]};FS.createDevice("/dev","random",randomByte);FS.createDevice("/dev","urandom",randomByte);FS.mkdir("/dev/shm");FS.mkdir("/dev/shm/tmp")},createSpecialDirectories(){FS.mkdir("/proc");var proc_self=FS.mkdir("/proc/self");FS.mkdir("/proc/self/fd");FS.mount({mount(){var node=FS.createNode(proc_self,"fd",16384|511,73);node.node_ops={lookup(parent,name){var fd=+name;var stream=FS.getStreamChecked(fd);var ret={parent:null,mount:{mountpoint:"fake"},node_ops:{readlink:()=>stream.path}};ret.parent=ret;return ret}};return node}},{},"/proc/self/fd")},createStandardStreams(){if(Module["stdin"]){FS.createDevice("/dev","stdin",Module["stdin"])}else{FS.symlink("/dev/tty","/dev/stdin")}if(Module["stdout"]){FS.createDevice("/dev","stdout",null,Module["stdout"])}else{FS.symlink("/dev/tty","/dev/stdout")}if(Module["stderr"]){FS.createDevice("/dev","stderr",null,Module["stderr"])}else{FS.symlink("/dev/tty1","/dev/stderr")}var stdin=FS.open("/dev/stdin",0);var stdout=FS.open("/dev/stdout",1);var stderr=FS.open("/dev/stderr",1)},staticInit(){[44].forEach(code=>{FS.genericErrors[code]=new FS.ErrnoError(code);FS.genericErrors[code].stack=""});FS.nameTable=new Array(4096);FS.mount(MEMFS,{},"/");FS.createDefaultDirectories();FS.createDefaultDevices();FS.createSpecialDirectories();FS.filesystems={"MEMFS":MEMFS}},init(input,output,error){FS.init.initialized=true;Module["stdin"]=input||Module["stdin"];Module["stdout"]=output||Module["stdout"];Module["stderr"]=error||Module["stderr"];FS.createStandardStreams()},quit(){FS.init.initialized=false;_fflush(0);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]}setDataGetter(getter){this.getter=getter}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=(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);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||[])}return intArrayFromString(xhr.responseText||"",true)};var lazyArray=this;lazyArray.setDataGetter(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}get length(){if(!this.lengthKnown){this.cacheLength()}return this._length}get chunkSize(){if(!this.lengthKnown){this.cacheLength()}return this._chunkSize}}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;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(key=>{var fn=node.stream_ops[key];stream_ops[key]=(...args)=>{FS.forceLoadFile(node);return fn(...args)}});function writeChunks(stream,buffer,offset,length,position){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{FS.forceLoadFile(node);return writeChunks(stream,buffer,offset,length,position)};stream_ops.mmap=(stream,length,position,prot,flags)=>{FS.forceLoadFile(node);var ptr=mmapAlloc(length);if(!ptr){throw new FS.ErrnoError(48)}writeChunks(stream,HEAP8,ptr,length,position);return{ptr:ptr,allocated:true}};node.stream_ops=stream_ops;return node}};var UTF8ToString=(ptr,maxBytesToRead)=>ptr?UTF8ArrayToString(HEAPU8,ptr,maxBytesToRead):"";var SYSCALLS={DEFAULT_POLLMASK:5,calculateAt(dirfd,path,allowEmpty){if(PATH.isAbs(path)){return path}var dir;if(dirfd===-100){dir=FS.cwd()}else{var dirstream=SYSCALLS.getStreamFromFD(dirfd);dir=dirstream.path}if(path.length==0){if(!allowEmpty){throw new FS.ErrnoError(44)}return dir}return PATH.join2(dir,path)},doStat(func,path,buf){var stat=func(path);HEAP32[buf>>2]=stat.dev;HEAP32[buf+4>>2]=stat.mode;HEAPU32[buf+8>>2]=stat.nlink;HEAP32[buf+12>>2]=stat.uid;HEAP32[buf+16>>2]=stat.gid;HEAP32[buf+20>>2]=stat.rdev;HEAP64[buf+24>>3]=BigInt(stat.size);HEAP32[buf+32>>2]=4096;HEAP32[buf+36>>2]=stat.blocks;var atime=stat.atime.getTime();var mtime=stat.mtime.getTime();var ctime=stat.ctime.getTime();HEAP64[buf+40>>3]=BigInt(Math.floor(atime/1e3));HEAPU32[buf+48>>2]=atime%1e3*1e3;HEAP64[buf+56>>3]=BigInt(Math.floor(mtime/1e3));HEAPU32[buf+64>>2]=mtime%1e3*1e3;HEAP64[buf+72>>3]=BigInt(Math.floor(ctime/1e3));HEAPU32[buf+80>>2]=ctime%1e3*1e3;HEAP64[buf+88>>3]=BigInt(stat.ino);return 0},doMsync(addr,stream,len,flags,offset){if(!FS.isFile(stream.node.mode)){throw new FS.ErrnoError(43)}if(flags&2){return 0}var buffer=HEAPU8.slice(addr,addr+len);FS.msync(stream,buffer,offset,len,flags)},varargs:undefined,get(){var ret=HEAP32[+SYSCALLS.varargs>>2];SYSCALLS.varargs+=4;return ret},getp(){return SYSCALLS.get()},getStr(ptr){var ret=UTF8ToString(ptr);return ret},getStreamFromFD(fd){var stream=FS.getStreamChecked(fd);return stream}};function ___syscall_chdir(path){try{path=SYSCALLS.getStr(path);FS.chdir(path);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_chmod(path,mode){try{path=SYSCALLS.getStr(path);FS.chmod(path,mode);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}var SOCKFS={mount(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(family,type,protocol){type&=~526336;var streaming=type==1;if(streaming&&protocol&&protocol!=6){throw new FS.ErrnoError(66)}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(fd){var stream=FS.getStream(fd);if(!stream||!FS.isSocket(stream.node.mode)){return null}return stream.node.sock},stream_ops:{poll(stream){var sock=stream.node.sock;return sock.sock_ops.poll(sock)},ioctl(stream,request,varargs){var sock=stream.node.sock;return sock.sock_ops.ioctl(sock,request,varargs)},read(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(stream,buffer,offset,length,position){var sock=stream.node.sock;return sock.sock_ops.sendmsg(sock,buffer,offset,length)},close(stream){var sock=stream.node.sock;sock.sock_ops.close(sock)}},nextname(){if(!SOCKFS.nextname.current){SOCKFS.nextname.current=0}return"socket["+SOCKFS.nextname.current+++"]"},websocket_sock_ops:{createPeer(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=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(23)}}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(sock,addr,port){return sock.peers[addr+":"+port]},addPeer(sock,peer){sock.peers[peer.addr+":"+peer.port]=peer},removePeer(sock,peer){delete sock.peers[peer.addr+":"+peer.port]},handlePeerEvents(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}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,isBinary){if(!isBinary){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=14;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=14;Module["websocket"].emit("error",[sock.stream.fd,sock.error,"ECONNREFUSED: Connection refused"])}}},poll(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(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 28}},close(sock){if(sock.server){try{sock.server.close()}catch(e){}sock.server=null}var peers=Object.keys(sock.peers);for(var i=0;i{var socket=SOCKFS.getSocket(fd);if(!socket)throw new FS.ErrnoError(8);return socket};var inetNtop4=addr=>(addr&255)+"."+(addr>>8&255)+"."+(addr>>16&255)+"."+(addr>>24&255);var 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{var family=HEAP16[sa>>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}};var 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};var jstoi_q=str=>parseInt(str);var 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{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 ___syscall_connect(fd,addr,addrlen,d1,d2,d3){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.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_faccessat(dirfd,path,amode,flags){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);if(amode&~7){return-28}var lookup=FS.lookupPath(path,{follow:true});var 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}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}var ___syscall_fadvise64=(fd,offset,len,advice)=>0;function ___syscall_fchmod(fd,mode){try{FS.fchmod(fd,mode);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_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}while(FS.streams[arg]){arg++}var newStream;newStream=FS.dupStream(stream,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.getp();var offset=0;HEAP16[arg+offset>>1]=2;return 0}case 13:case 14:return 0}return-28}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_fstat64(fd,buf){try{var stream=SYSCALLS.getStreamFromFD(fd);return SYSCALLS.doStat(FS.stat,stream.path,buf)}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_statfs64(path,size,buf){try{path=SYSCALLS.getStr(path);HEAP32[buf+4>>2]=4096;HEAP32[buf+40>>2]=4096;HEAP32[buf+8>>2]=1e6;HEAP32[buf+12>>2]=5e5;HEAP32[buf+16>>2]=5e5;HEAP32[buf+20>>2]=FS.nextInode;HEAP32[buf+24>>2]=1e6;HEAP32[buf+28>>2]=42;HEAP32[buf+44>>2]=2;HEAP32[buf+36>>2]=255;return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_fstatfs64(fd,size,buf){try{var stream=SYSCALLS.getStreamFromFD(fd);return ___syscall_statfs64(0,size,buf)}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}var MAX_INT53=9007199254740992;var MIN_INT53=-9007199254740992;var bigintToI53Checked=num=>numMAX_INT53?NaN:Number(num);function ___syscall_ftruncate64(fd,length){length=bigintToI53Checked(length);try{if(isNaN(length))return 61;FS.ftruncate(fd,length);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}var stringToUTF8=(str,outPtr,maxBytesToWrite)=>stringToUTF8Array(str,HEAPU8,outPtr,maxBytesToWrite);function ___syscall_getcwd(buf,size){try{if(size===0)return-28;var cwd=FS.cwd();var cwdLengthInBytes=lengthBytesUTF8(cwd)+1;if(size>3]=BigInt(id);HEAP64[dirp+pos+8>>3]=BigInt((idx+1)*struct_size);HEAP16[dirp+pos+16>>1]=280;HEAP8[dirp+pos+18]=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.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_ioctl(fd,op,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(fd);switch(op){case 21509:{if(!stream.tty)return-59;return 0}case 21505:{if(!stream.tty)return-59;if(stream.tty.ops.ioctl_tcgets){var termios=stream.tty.ops.ioctl_tcgets(stream);var argp=SYSCALLS.getp();HEAP32[argp>>2]=termios.c_iflag||0;HEAP32[argp+4>>2]=termios.c_oflag||0;HEAP32[argp+8>>2]=termios.c_cflag||0;HEAP32[argp+12>>2]=termios.c_lflag||0;for(var i=0;i<32;i++){HEAP8[argp+i+17]=termios.c_cc[i]||0}return 0}return 0}case 21510:case 21511:case 21512:{if(!stream.tty)return-59;return 0}case 21506:case 21507:case 21508:{if(!stream.tty)return-59;if(stream.tty.ops.ioctl_tcsets){var argp=SYSCALLS.getp();var c_iflag=HEAP32[argp>>2];var c_oflag=HEAP32[argp+4>>2];var c_cflag=HEAP32[argp+8>>2];var c_lflag=HEAP32[argp+12>>2];var c_cc=[];for(var i=0;i<32;i++){c_cc.push(HEAP8[argp+i+17])}return stream.tty.ops.ioctl_tcsets(stream.tty,op,{c_iflag:c_iflag,c_oflag:c_oflag,c_cflag:c_cflag,c_lflag:c_lflag,c_cc:c_cc})}return 0}case 21519:{if(!stream.tty)return-59;var argp=SYSCALLS.getp();HEAP32[argp>>2]=0;return 0}case 21520:{if(!stream.tty)return-59;return-28}case 21531:{var argp=SYSCALLS.getp();return FS.ioctl(stream,op,argp)}case 21523:{if(!stream.tty)return-59;if(stream.tty.ops.ioctl_tiocgwinsz){var winsize=stream.tty.ops.ioctl_tiocgwinsz(stream.tty);var argp=SYSCALLS.getp();HEAP16[argp>>1]=winsize[0];HEAP16[argp+2>>1]=winsize[1]}return 0}case 21524:{if(!stream.tty)return-59;return 0}case 21515:{if(!stream.tty)return-59;return 0}default:return-28}}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_lstat64(path,buf){try{path=SYSCALLS.getStr(path);return SYSCALLS.doStat(FS.lstat,path,buf)}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_mkdirat(dirfd,path,mode){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);path=PATH.normalize(path);if(path[path.length-1]==="/")path=path.substr(0,path.length-1);FS.mkdir(path,mode,0);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_newfstatat(dirfd,path,buf,flags){try{path=SYSCALLS.getStr(path);var nofollow=flags&256;var allowEmpty=flags&4096;flags=flags&~6400;path=SYSCALLS.calculateAt(dirfd,path,allowEmpty);return SYSCALLS.doStat(nofollow?FS.lstat:FS.stat,path,buf)}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_openat(dirfd,path,flags,varargs){SYSCALLS.varargs=varargs;try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);var mode=varargs?SYSCALLS.get():0;return FS.open(path,flags,mode).fd}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_readlinkat(dirfd,path,buf,bufsize){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);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}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}var writeSockaddr=(sa,family,addr,port,addrlen)=>{switch(family){case 2:addr=inetPton4(addr);zeroMemory(sa,16);if(addrlen){HEAP32[addrlen>>2]=16}HEAP16[sa>>1]=family;HEAP32[sa+4>>2]=addr;HEAP16[sa+2>>1]=_htons(port);break;case 10:addr=inetPton6(addr);zeroMemory(sa,28);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);break;default:return 5}return 0};function ___syscall_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.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_renameat(olddirfd,oldpath,newdirfd,newpath){try{oldpath=SYSCALLS.getStr(oldpath);newpath=SYSCALLS.getStr(newpath);oldpath=SYSCALLS.calculateAt(olddirfd,oldpath);newpath=SYSCALLS.calculateAt(newdirfd,newpath);FS.rename(oldpath,newpath);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_rmdir(path){try{path=SYSCALLS.getStr(path);FS.rmdir(path);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_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)}return sock.sock_ops.sendmsg(sock,HEAP8,message,length,dest.addr,dest.port)}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_socket(domain,type,protocol){try{var sock=SOCKFS.createSocket(domain,type,protocol);return sock.stream.fd}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_stat64(path,buf){try{path=SYSCALLS.getStr(path);return SYSCALLS.doStat(FS.stat,path,buf)}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_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.name==="ErrnoError"))throw e;return-e.errno}}function ___syscall_unlinkat(dirfd,path,flags){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);if(flags===0){FS.unlink(path)}else if(flags===512){FS.rmdir(path)}else{abort("Invalid flags passed to unlinkat")}return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}var readI53FromI64=ptr=>HEAPU32[ptr>>2]+HEAP32[ptr+4>>2]*4294967296;function ___syscall_utimensat(dirfd,path,times,flags){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path,true);if(!times){var atime=Date.now();var mtime=atime}else{var seconds=readI53FromI64(times);var nanoseconds=HEAP32[times+8>>2];atime=seconds*1e3+nanoseconds/(1e3*1e3);times+=16;seconds=readI53FromI64(times);nanoseconds=HEAP32[times+8>>2];mtime=seconds*1e3+nanoseconds/(1e3*1e3)}FS.utime(path,atime,mtime);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}var nowIsMonotonic=1;var __emscripten_get_now_is_monotonic=()=>nowIsMonotonic;function __gmtime_js(time,tmPtr){time=bigintToI53Checked(time);var date=new Date(time*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();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}var isLeapYear=year=>year%4===0&&(year%100!==0||year%400===0);var MONTH_DAYS_LEAP_CUMULATIVE=[0,31,60,91,121,152,182,213,244,274,305,335];var MONTH_DAYS_REGULAR_CUMULATIVE=[0,31,59,90,120,151,181,212,243,273,304,334];var ydayFromDate=date=>{var leap=isLeapYear(date.getFullYear());var monthDaysCumulative=leap?MONTH_DAYS_LEAP_CUMULATIVE:MONTH_DAYS_REGULAR_CUMULATIVE;var yday=monthDaysCumulative[date.getMonth()]+date.getDate()-1;return yday};function __localtime_js(time,tmPtr){time=bigintToI53Checked(time);var date=new Date(time*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 yday=ydayFromDate(date)|0;HEAP32[tmPtr+28>>2]=yday;HEAP32[tmPtr+36>>2]=-(date.getTimezoneOffset()*60);var start=new Date(date.getFullYear(),0,1);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}function __mmap_js(len,prot,flags,fd,offset,allocated,addr){offset=bigintToI53Checked(offset);try{if(isNaN(offset))return 61;var stream=SYSCALLS.getStreamFromFD(fd);var res=FS.mmap(stream,len,offset,prot,flags);var ptr=res.ptr;HEAP32[allocated>>2]=res.allocated;HEAPU32[addr>>2]=ptr;return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function __msync_js(addr,len,prot,flags,fd,offset){offset=bigintToI53Checked(offset);try{if(isNaN(offset))return 61;SYSCALLS.doMsync(addr,SYSCALLS.getStreamFromFD(fd),len,flags,offset);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}function __munmap_js(addr,len,prot,flags,fd,offset){offset=bigintToI53Checked(offset);try{var stream=SYSCALLS.getStreamFromFD(fd);if(prot&2){SYSCALLS.doMsync(addr,stream,len,flags,offset)}}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return-e.errno}}var __tzset_js=(timezone,daylight,std_name,dst_name)=>{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);HEAPU32[timezone>>2]=stdTimezoneOffset*60;HEAP32[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);if(summerOffset{abort("")};var _emscripten_date_now=()=>Date.now();var runtimeKeepaliveCounter=0;var keepRuntimeAlive=()=>noExitRuntime||runtimeKeepaliveCounter>0;var _proc_exit=code=>{EXITSTATUS=code;if(!keepRuntimeAlive()){Module["onExit"]?.(code);ABORT=true}quit_(code,new ExitStatus(code))};var exitJS=(status,implicit)=>{EXITSTATUS=status;if(!keepRuntimeAlive()){exitRuntime()}_proc_exit(status)};var _exit=exitJS;var __emscripten_runtime_keepalive_clear=()=>{noExitRuntime=false;runtimeKeepaliveCounter=0};var _emscripten_force_exit=status=>{__emscripten_runtime_keepalive_clear();_exit(status)};Module["_emscripten_force_exit"]=_emscripten_force_exit;var getHeapMax=()=>2147483648;var _emscripten_get_heap_max=()=>getHeapMax();var _emscripten_get_now;_emscripten_get_now=()=>performance.now();var _emscripten_get_now_res=()=>{if(ENVIRONMENT_IS_NODE){return 1}return 1e3};var growMemory=size=>{var b=wasmMemory.buffer;var pages=(size-b.byteLength+65535)/65536;try{wasmMemory.grow(pages);updateMemoryViews();return 1}catch(e){}};var _emscripten_resize_heap=requestedSize=>{var oldSize=HEAPU8.length;requestedSize>>>=0;var maxHeapSize=getHeapMax();if(requestedSize>maxHeapSize){return false}var alignUp=(x,multiple)=>x+(multiple-x%multiple)%multiple;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=growMemory(newSize);if(replacement){return true}}return false};var ENV={};var getExecutableName=()=>thisProgram||"./this.program";var getEnvStrings=()=>{if(!getEnvStrings.strings){var lang=(typeof navigator=="object"&&navigator.languages&&navigator.languages[0]||"C").replace("-","_")+".UTF-8";var env={"USER":"web_user","LOGNAME":"web_user","PATH":"/","PWD":"/","HOME":"/home/web_user","LANG":lang,"_":getExecutableName()};for(var x in ENV){if(ENV[x]===undefined)delete env[x];else env[x]=ENV[x]}var strings=[];for(var x in env){strings.push(`${x}=${env[x]}`)}getEnvStrings.strings=strings}return getEnvStrings.strings};var stringToAscii=(str,buffer)=>{for(var i=0;i{var bufSize=0;getEnvStrings().forEach((string,i)=>{var ptr=environ_buf+bufSize;HEAPU32[__environ+i*4>>2]=ptr;stringToAscii(string,ptr);bufSize+=string.length+1});return 0};var _environ_sizes_get=(penviron_count,penviron_buf_size)=>{var strings=getEnvStrings();HEAPU32[penviron_count>>2]=strings.length;var bufSize=0;strings.forEach(string=>bufSize+=string.length+1);HEAPU32[penviron_buf_size>>2]=bufSize;return 0};function _fd_close(fd){try{var stream=SYSCALLS.getStreamFromFD(fd);FS.close(stream);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return e.errno}}function _fd_fdstat_get(fd,pbuf){try{var rightsBase=0;var rightsInheriting=0;var flags=0;{var stream=SYSCALLS.getStreamFromFD(fd);var type=stream.tty?2:FS.isDir(stream.mode)?3:FS.isLink(stream.mode)?7:4}HEAP8[pbuf]=type;HEAP16[pbuf+2>>1]=flags;HEAP64[pbuf+8>>3]=BigInt(rightsBase);HEAP64[pbuf+16>>3]=BigInt(rightsInheriting);return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return e.errno}}var doReadv=(stream,iov,iovcnt,offset)=>{var ret=0;for(var i=0;i>2];var len=HEAPU32[iov+4>>2];iov+=8;var curr=FS.read(stream,HEAP8,ptr,len,offset);if(curr<0)return-1;ret+=curr;if(curr>2]=num;return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return e.errno}}var doWritev=(stream,iov,iovcnt,offset)=>{var ret=0;for(var i=0;i>2];var len=HEAPU32[iov+4>>2];iov+=8;var curr=FS.write(stream,HEAP8,ptr,len,offset);if(curr<0)return-1;ret+=curr;if(typeof offset!=="undefined"){offset+=curr}}return ret};function _fd_pwrite(fd,iov,iovcnt,offset,pnum){offset=bigintToI53Checked(offset);try{if(isNaN(offset))return 61;var stream=SYSCALLS.getStreamFromFD(fd);var num=doWritev(stream,iov,iovcnt,offset);HEAPU32[pnum>>2]=num;return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return e.errno}}function _fd_read(fd,iov,iovcnt,pnum){try{var stream=SYSCALLS.getStreamFromFD(fd);var num=doReadv(stream,iov,iovcnt);HEAPU32[pnum>>2]=num;return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return e.errno}}function _fd_seek(fd,offset,whence,newOffset){offset=bigintToI53Checked(offset);try{if(isNaN(offset))return 61;var stream=SYSCALLS.getStreamFromFD(fd);FS.llseek(stream,offset,whence);HEAP64[newOffset>>3]=BigInt(stream.position);if(stream.getdents&&offset===0&&whence===0)stream.getdents=null;return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return e.errno}}function _fd_sync(fd){try{var stream=SYSCALLS.getStreamFromFD(fd);if(stream.stream_ops?.fsync){return stream.stream_ops.fsync(stream)}return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return e.errno}}function _fd_write(fd,iov,iovcnt,pnum){try{var stream=SYSCALLS.getStreamFromFD(fd);var num=doWritev(stream,iov,iovcnt);HEAPU32[pnum>>2]=num;return 0}catch(e){if(typeof FS=="undefined"||!(e.name==="ErrnoError"))throw e;return e.errno}}var _llvm_eh_typeid_for=type=>type;var DOTNET={setup:function setup(emscriptenBuildOptions){const modulePThread={};const ENVIRONMENT_IS_PTHREAD=false;const dotnet_replacements={fetch:globalThis.fetch,ENVIRONMENT_IS_WORKER:ENVIRONMENT_IS_WORKER,require:require,modulePThread:modulePThread,scriptDirectory:scriptDirectory};ENVIRONMENT_IS_WORKER=dotnet_replacements.ENVIRONMENT_IS_WORKER;Module.__dotnet_runtime.initializeReplacements(dotnet_replacements);noExitRuntime=dotnet_replacements.noExitRuntime;fetch=dotnet_replacements.fetch;require=dotnet_replacements.require;_scriptDir=__dirname=scriptDirectory=dotnet_replacements.scriptDirectory;Module.__dotnet_runtime.passEmscriptenInternals({isPThread:ENVIRONMENT_IS_PTHREAD,quit_:quit_,ExitStatus:ExitStatus,updateMemoryViews:updateMemoryViews,getMemory:()=>wasmMemory,getWasmIndirectFunctionTable:()=>wasmTable},emscriptenBuildOptions);Module.__dotnet_runtime.configureEmscriptenStartup(Module)}};function _mono_interp_flush_jitcall_queue(){return{runtime_idx:12}}function _mono_interp_invoke_wasm_jit_call_trampoline(){return{runtime_idx:11}}function _mono_interp_jit_wasm_entry_trampoline(){return{runtime_idx:9}}function _mono_interp_jit_wasm_jit_call_trampoline(){return{runtime_idx:10}}function _mono_interp_record_interp_entry(){return{runtime_idx:8}}function _mono_interp_tier_prepare_jiterpreter(){return{runtime_idx:7}}function _mono_wasm_add_dbg_command_received(){return{runtime_idx:3}}function _mono_wasm_asm_loaded(){return{runtime_idx:1}}function _mono_wasm_bind_js_import_ST(){return{runtime_idx:22}}function _mono_wasm_browser_entropy(){return{runtime_idx:18}}function _mono_wasm_cancel_promise(){return{runtime_idx:26}}function _mono_wasm_console_clear(){return{runtime_idx:20}}function _mono_wasm_debugger_log(){return{runtime_idx:2}}function _mono_wasm_fire_debugger_agent_message_with_data(){return{runtime_idx:4}}function _mono_wasm_free_method_data(){return{runtime_idx:13}}function _mono_wasm_get_locale_info(){return{runtime_idx:27}}function _mono_wasm_invoke_js_function(){return{runtime_idx:23}}function _mono_wasm_invoke_jsimport_ST(){return{runtime_idx:24}}function _mono_wasm_process_current_pid(){return{runtime_idx:19}}function _mono_wasm_release_cs_owned_object(){return{runtime_idx:21}}function _mono_wasm_resolve_or_reject_promise(){return{runtime_idx:25}}function _mono_wasm_schedule_timer(){return{runtime_idx:0}}function _mono_wasm_set_entrypoint_breakpoint(){return{runtime_idx:17}}function _mono_wasm_trace_logger(){return{runtime_idx:16}}function _schedule_background_exec(){return{runtime_idx:6}}var 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];var 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};var writeArrayToMemory=(array,buffer)=>{HEAP8.set(array,buffer)};var _strftime=(s,maxsize,format,tm)=>{var tm_zone=HEAPU32[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}return thisDate.getFullYear()}return thisDate.getFullYear()-1}var EXPANSION_RULES_2={"%a":date=>WEEKDAYS[date.tm_wday].substring(0,3),"%A":date=>WEEKDAYS[date.tm_wday],"%b":date=>MONTHS[date.tm_mon].substring(0,3),"%B":date=>MONTHS[date.tm_mon],"%C":date=>{var year=date.tm_year+1900;return leadingNulls(year/100|0,2)},"%d":date=>leadingNulls(date.tm_mday,2),"%e":date=>leadingSomething(date.tm_mday,2," "),"%g":date=>getWeekBasedYear(date).toString().substring(2),"%G":getWeekBasedYear,"%H":date=>leadingNulls(date.tm_hour,2),"%I":date=>{var twelveHour=date.tm_hour;if(twelveHour==0)twelveHour=12;else if(twelveHour>12)twelveHour-=12;return leadingNulls(twelveHour,2)},"%j":date=>leadingNulls(date.tm_mday+arraySum(isLeapYear(date.tm_year+1900)?MONTH_DAYS_LEAP:MONTH_DAYS_REGULAR,date.tm_mon-1),3),"%m":date=>leadingNulls(date.tm_mon+1,2),"%M":date=>leadingNulls(date.tm_min,2),"%n":()=>"\n","%p":date=>{if(date.tm_hour>=0&&date.tm_hour<12){return"AM"}return"PM"},"%S":date=>leadingNulls(date.tm_sec,2),"%t":()=>"\t","%u":date=>date.tm_wday||7,"%U":date=>{var days=date.tm_yday+7-date.tm_wday;return leadingNulls(Math.floor(days/7),2)},"%V":date=>{var val=Math.floor((date.tm_yday+7-(date.tm_wday+6)%7)/7);if((date.tm_wday+371-date.tm_yday-2)%7<=2){val++}if(!val){val=52;var dec31=(date.tm_wday+7-date.tm_yday-1)%7;if(dec31==4||dec31==5&&isLeapYear(date.tm_year%400-1)){val++}}else if(val==53){var jan1=(date.tm_wday+371-date.tm_yday)%7;if(jan1!=4&&(jan1!=3||!isLeapYear(date.tm_year)))val=1}return leadingNulls(val,2)},"%w":date=>date.tm_wday,"%W":date=>{var days=date.tm_yday+7-(date.tm_wday+6)%7;return leadingNulls(Math.floor(days/7),2)},"%y":date=>(date.tm_year+1900).toString().substring(2),"%Y":date=>date.tm_year+1900,"%z":date=>{var off=date.tm_gmtoff;var ahead=off>=0;off=Math.abs(off)/60;off=off/60*100+off%60;return(ahead?"+":"-")+String("0000"+off).slice(-4)},"%Z":date=>date.tm_zone,"%%":()=>"%"};pattern=pattern.replace(/%%/g,"\0\0");for(var rule in EXPANSION_RULES_2){if(pattern.includes(rule)){pattern=pattern.replace(new RegExp(rule,"g"),EXPANSION_RULES_2[rule](date))}}pattern=pattern.replace(/\0\0/g,"%");var bytes=intArrayFromString(pattern,false);if(bytes.length>maxsize){return 0}writeArrayToMemory(bytes,s);return bytes.length-1};var wasmTableMirror=[];var wasmTable;var getWasmTableEntry=funcPtr=>{var func=wasmTableMirror[funcPtr];if(!func){if(funcPtr>=wasmTableMirror.length)wasmTableMirror.length=funcPtr+1;wasmTableMirror[funcPtr]=func=wasmTable.get(funcPtr)}return func};var getCFunc=ident=>{var func=Module["_"+ident];return func};var stringToUTF8OnStack=str=>{var size=lengthBytesUTF8(str)+1;var ret=stackAlloc(size);stringToUTF8(str,ret,size);return ret};var ccall=(ident,returnType,argTypes,args,opts)=>{var toC={"string":str=>{var ret=0;if(str!==null&&str!==undefined&&str!==0){ret=stringToUTF8OnStack(str)}return ret},"array":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{var numericArgs=!argTypes||argTypes.every(type=>type==="number"||type==="boolean");var numericRet=returnType!=="string";if(numericRet&&numericArgs&&!opts){return getCFunc(ident)}return(...args)=>ccall(ident,returnType,argTypes,args,opts)};var uleb128Encode=(n,target)=>{if(n<128){target.push(n)}else{target.push(n%128|128,n>>7)}};var sigToWasmTypes=sig=>{var typeNames={"i":"i32","j":"i64","f":"f32","d":"f64","e":"externref","p":"i32"};var type={parameters:[],results:sig[0]=="v"?[]:[typeNames[sig[0]]]};for(var i=1;i{var sigRet=sig.slice(0,1);var sigParam=sig.slice(1);var typeCodes={"i":127,"p":127,"j":126,"f":125,"d":124,"e":111};target.push(96);uleb128Encode(sigParam.length,target);for(var i=0;i{if(typeof WebAssembly.Function=="function"){return new WebAssembly.Function(sigToWasmTypes(sig),func)}var typeSectionBody=[1];generateFuncType(sig,typeSectionBody);var bytes=[0,97,115,109,1,0,0,0,1];uleb128Encode(typeSectionBody.length,bytes);bytes.push(...typeSectionBody);bytes.push(2,7,1,1,101,1,102,0,0,7,5,1,1,102,0,0);var module=new WebAssembly.Module(new Uint8Array(bytes));var instance=new WebAssembly.Instance(module,{"e":{"f":func}});var wrappedFunc=instance.exports["f"];return wrappedFunc};var updateTableMap=(offset,count)=>{if(functionsInTableMap){for(var i=offset;i{if(!functionsInTableMap){functionsInTableMap=new WeakMap;updateTableMap(0,wasmTable.length)}return functionsInTableMap.get(func)||0};var freeTableIndexes=[];var getEmptyTableSlot=()=>{if(freeTableIndexes.length){return freeTableIndexes.pop()}try{wasmTable.grow(1)}catch(err){if(!(err instanceof RangeError)){throw err}throw"Unable to grow wasm table. Set ALLOW_TABLE_GROWTH."}return wasmTable.length-1};var setWasmTableEntry=(idx,func)=>{wasmTable.set(idx,func);wasmTableMirror[idx]=wasmTable.get(idx)};var addFunction=(func,sig)=>{var rtn=getFunctionAddress(func);if(rtn){return rtn}var ret=getEmptyTableSlot();try{setWasmTableEntry(ret,func)}catch(err){if(!(err instanceof TypeError)){throw err}var wrapped=convertJsFunctionToWasm(func,sig);setWasmTableEntry(ret,wrapped)}functionsInTableMap.set(func,ret);return ret};var handleException=e=>{if(e instanceof ExitStatus||e=="unwind"){return EXITSTATUS}quit_(1,e)};var maybeExit=()=>{if(runtimeExited){return}if(!keepRuntimeAlive()){try{_exit(EXITSTATUS)}catch(e){handleException(e)}}};var callUserCallback=func=>{if(runtimeExited||ABORT){return}try{func();maybeExit()}catch(e){handleException(e)}};var runtimeKeepalivePush=()=>{runtimeKeepaliveCounter+=1};var runtimeKeepalivePop=()=>{runtimeKeepaliveCounter-=1};var safeSetTimeout=(func,timeout)=>{runtimeKeepalivePush();return setTimeout(()=>{runtimeKeepalivePop();callUserCallback(func)},timeout)};FS.createPreloadedFile=FS_createPreloadedFile;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_unlink"]=FS.unlink;Module["FS_createLazyFile"]=FS.createLazyFile;Module["FS_createDevice"]=FS.createDevice;DOTNET.setup({wasmEnableSIMD:true,wasmEnableEH:true,enableAotProfiler:false,enableDevToolsProfiler:false,enableLogProfiler:false,enableEventPipe:false,runAOTCompilation:false,wasmEnableThreads:false,gitHash:"a612c2a1056fe3265387ae3ff7c94eba1505caf9"});var wasmImports={__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,__syscall_chdir:___syscall_chdir,__syscall_chmod:___syscall_chmod,__syscall_connect:___syscall_connect,__syscall_faccessat:___syscall_faccessat,__syscall_fadvise64:___syscall_fadvise64,__syscall_fchmod:___syscall_fchmod,__syscall_fcntl64:___syscall_fcntl64,__syscall_fstat64:___syscall_fstat64,__syscall_fstatfs64:___syscall_fstatfs64,__syscall_ftruncate64:___syscall_ftruncate64,__syscall_getcwd:___syscall_getcwd,__syscall_getdents64:___syscall_getdents64,__syscall_ioctl:___syscall_ioctl,__syscall_lstat64:___syscall_lstat64,__syscall_mkdirat:___syscall_mkdirat,__syscall_newfstatat:___syscall_newfstatat,__syscall_openat:___syscall_openat,__syscall_readlinkat:___syscall_readlinkat,__syscall_recvfrom:___syscall_recvfrom,__syscall_renameat:___syscall_renameat,__syscall_rmdir:___syscall_rmdir,__syscall_sendto:___syscall_sendto,__syscall_socket:___syscall_socket,__syscall_stat64:___syscall_stat64,__syscall_symlink:___syscall_symlink,__syscall_unlinkat:___syscall_unlinkat,__syscall_utimensat:___syscall_utimensat,_emscripten_get_now_is_monotonic:__emscripten_get_now_is_monotonic,_gmtime_js:__gmtime_js,_localtime_js:__localtime_js,_mmap_js:__mmap_js,_msync_js:__msync_js,_munmap_js:__munmap_js,_tzset_js:__tzset_js,abort:_abort,emscripten_date_now:_emscripten_date_now,emscripten_force_exit:_emscripten_force_exit,emscripten_get_heap_max:_emscripten_get_heap_max,emscripten_get_now:_emscripten_get_now,emscripten_get_now_res:_emscripten_get_now_res,emscripten_resize_heap:_emscripten_resize_heap,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,invoke_vi:invoke_vi,llvm_eh_typeid_for:_llvm_eh_typeid_for,mono_interp_flush_jitcall_queue:_mono_interp_flush_jitcall_queue,mono_interp_invoke_wasm_jit_call_trampoline:_mono_interp_invoke_wasm_jit_call_trampoline,mono_interp_jit_wasm_entry_trampoline:_mono_interp_jit_wasm_entry_trampoline,mono_interp_jit_wasm_jit_call_trampoline:_mono_interp_jit_wasm_jit_call_trampoline,mono_interp_record_interp_entry:_mono_interp_record_interp_entry,mono_interp_tier_prepare_jiterpreter:_mono_interp_tier_prepare_jiterpreter,mono_wasm_add_dbg_command_received:_mono_wasm_add_dbg_command_received,mono_wasm_asm_loaded:_mono_wasm_asm_loaded,mono_wasm_bind_js_import_ST:_mono_wasm_bind_js_import_ST,mono_wasm_browser_entropy:_mono_wasm_browser_entropy,mono_wasm_cancel_promise:_mono_wasm_cancel_promise,mono_wasm_console_clear:_mono_wasm_console_clear,mono_wasm_debugger_log:_mono_wasm_debugger_log,mono_wasm_fire_debugger_agent_message_with_data:_mono_wasm_fire_debugger_agent_message_with_data,mono_wasm_free_method_data:_mono_wasm_free_method_data,mono_wasm_get_locale_info:_mono_wasm_get_locale_info,mono_wasm_invoke_js_function:_mono_wasm_invoke_js_function,mono_wasm_invoke_jsimport_ST:_mono_wasm_invoke_jsimport_ST,mono_wasm_process_current_pid:_mono_wasm_process_current_pid,mono_wasm_release_cs_owned_object:_mono_wasm_release_cs_owned_object,mono_wasm_resolve_or_reject_promise:_mono_wasm_resolve_or_reject_promise,mono_wasm_schedule_timer:_mono_wasm_schedule_timer,mono_wasm_set_entrypoint_breakpoint:_mono_wasm_set_entrypoint_breakpoint,mono_wasm_trace_logger:_mono_wasm_trace_logger,schedule_background_exec:_schedule_background_exec,strftime:_strftime};var wasmExports=createWasm();var ___wasm_call_ctors=()=>(___wasm_call_ctors=wasmExports["__wasm_call_ctors"])();var _malloc=Module["_malloc"]=a0=>(_malloc=Module["_malloc"]=wasmExports["malloc"])(a0);var _free=Module["_free"]=a0=>(_free=Module["_free"]=wasmExports["free"])(a0);var _mono_wasm_assembly_load=Module["_mono_wasm_assembly_load"]=a0=>(_mono_wasm_assembly_load=Module["_mono_wasm_assembly_load"]=wasmExports["mono_wasm_assembly_load"])(a0);var _mono_wasm_assembly_find_class=Module["_mono_wasm_assembly_find_class"]=(a0,a1,a2)=>(_mono_wasm_assembly_find_class=Module["_mono_wasm_assembly_find_class"]=wasmExports["mono_wasm_assembly_find_class"])(a0,a1,a2);var _mono_wasm_assembly_find_method=Module["_mono_wasm_assembly_find_method"]=(a0,a1,a2)=>(_mono_wasm_assembly_find_method=Module["_mono_wasm_assembly_find_method"]=wasmExports["mono_wasm_assembly_find_method"])(a0,a1,a2);var _mono_wasm_register_root=Module["_mono_wasm_register_root"]=(a0,a1,a2)=>(_mono_wasm_register_root=Module["_mono_wasm_register_root"]=wasmExports["mono_wasm_register_root"])(a0,a1,a2);var _mono_wasm_deregister_root=Module["_mono_wasm_deregister_root"]=a0=>(_mono_wasm_deregister_root=Module["_mono_wasm_deregister_root"]=wasmExports["mono_wasm_deregister_root"])(a0);var _mono_wasm_add_assembly=Module["_mono_wasm_add_assembly"]=(a0,a1,a2)=>(_mono_wasm_add_assembly=Module["_mono_wasm_add_assembly"]=wasmExports["mono_wasm_add_assembly"])(a0,a1,a2);var _mono_wasm_add_satellite_assembly=Module["_mono_wasm_add_satellite_assembly"]=(a0,a1,a2,a3)=>(_mono_wasm_add_satellite_assembly=Module["_mono_wasm_add_satellite_assembly"]=wasmExports["mono_wasm_add_satellite_assembly"])(a0,a1,a2,a3);var _mono_wasm_setenv=Module["_mono_wasm_setenv"]=(a0,a1)=>(_mono_wasm_setenv=Module["_mono_wasm_setenv"]=wasmExports["mono_wasm_setenv"])(a0,a1);var _mono_wasm_getenv=Module["_mono_wasm_getenv"]=a0=>(_mono_wasm_getenv=Module["_mono_wasm_getenv"]=wasmExports["mono_wasm_getenv"])(a0);var _mono_wasm_load_runtime=Module["_mono_wasm_load_runtime"]=(a0,a1,a2,a3)=>(_mono_wasm_load_runtime=Module["_mono_wasm_load_runtime"]=wasmExports["mono_wasm_load_runtime"])(a0,a1,a2,a3);var _mono_wasm_invoke_jsexport=Module["_mono_wasm_invoke_jsexport"]=(a0,a1)=>(_mono_wasm_invoke_jsexport=Module["_mono_wasm_invoke_jsexport"]=wasmExports["mono_wasm_invoke_jsexport"])(a0,a1);var _mono_wasm_string_from_utf16_ref=Module["_mono_wasm_string_from_utf16_ref"]=(a0,a1,a2)=>(_mono_wasm_string_from_utf16_ref=Module["_mono_wasm_string_from_utf16_ref"]=wasmExports["mono_wasm_string_from_utf16_ref"])(a0,a1,a2);var _mono_wasm_exec_regression=Module["_mono_wasm_exec_regression"]=(a0,a1)=>(_mono_wasm_exec_regression=Module["_mono_wasm_exec_regression"]=wasmExports["mono_wasm_exec_regression"])(a0,a1);var _mono_wasm_exit=Module["_mono_wasm_exit"]=a0=>(_mono_wasm_exit=Module["_mono_wasm_exit"]=wasmExports["mono_wasm_exit"])(a0);var _fflush=a0=>(_fflush=wasmExports["fflush"])(a0);var _mono_wasm_set_main_args=Module["_mono_wasm_set_main_args"]=(a0,a1)=>(_mono_wasm_set_main_args=Module["_mono_wasm_set_main_args"]=wasmExports["mono_wasm_set_main_args"])(a0,a1);var _mono_wasm_strdup=Module["_mono_wasm_strdup"]=a0=>(_mono_wasm_strdup=Module["_mono_wasm_strdup"]=wasmExports["mono_wasm_strdup"])(a0);var _mono_wasm_parse_runtime_options=Module["_mono_wasm_parse_runtime_options"]=(a0,a1)=>(_mono_wasm_parse_runtime_options=Module["_mono_wasm_parse_runtime_options"]=wasmExports["mono_wasm_parse_runtime_options"])(a0,a1);var _mono_wasm_intern_string_ref=Module["_mono_wasm_intern_string_ref"]=a0=>(_mono_wasm_intern_string_ref=Module["_mono_wasm_intern_string_ref"]=wasmExports["mono_wasm_intern_string_ref"])(a0);var _mono_wasm_string_get_data_ref=Module["_mono_wasm_string_get_data_ref"]=(a0,a1,a2,a3)=>(_mono_wasm_string_get_data_ref=Module["_mono_wasm_string_get_data_ref"]=wasmExports["mono_wasm_string_get_data_ref"])(a0,a1,a2,a3);var _mono_wasm_write_managed_pointer_unsafe=Module["_mono_wasm_write_managed_pointer_unsafe"]=(a0,a1)=>(_mono_wasm_write_managed_pointer_unsafe=Module["_mono_wasm_write_managed_pointer_unsafe"]=wasmExports["mono_wasm_write_managed_pointer_unsafe"])(a0,a1);var _mono_wasm_copy_managed_pointer=Module["_mono_wasm_copy_managed_pointer"]=(a0,a1)=>(_mono_wasm_copy_managed_pointer=Module["_mono_wasm_copy_managed_pointer"]=wasmExports["mono_wasm_copy_managed_pointer"])(a0,a1);var _mono_wasm_init_finalizer_thread=Module["_mono_wasm_init_finalizer_thread"]=()=>(_mono_wasm_init_finalizer_thread=Module["_mono_wasm_init_finalizer_thread"]=wasmExports["mono_wasm_init_finalizer_thread"])();var _mono_wasm_i52_to_f64=Module["_mono_wasm_i52_to_f64"]=(a0,a1)=>(_mono_wasm_i52_to_f64=Module["_mono_wasm_i52_to_f64"]=wasmExports["mono_wasm_i52_to_f64"])(a0,a1);var _mono_wasm_u52_to_f64=Module["_mono_wasm_u52_to_f64"]=(a0,a1)=>(_mono_wasm_u52_to_f64=Module["_mono_wasm_u52_to_f64"]=wasmExports["mono_wasm_u52_to_f64"])(a0,a1);var _mono_wasm_f64_to_u52=Module["_mono_wasm_f64_to_u52"]=(a0,a1)=>(_mono_wasm_f64_to_u52=Module["_mono_wasm_f64_to_u52"]=wasmExports["mono_wasm_f64_to_u52"])(a0,a1);var _mono_wasm_f64_to_i52=Module["_mono_wasm_f64_to_i52"]=(a0,a1)=>(_mono_wasm_f64_to_i52=Module["_mono_wasm_f64_to_i52"]=wasmExports["mono_wasm_f64_to_i52"])(a0,a1);var _mono_wasm_method_get_full_name=Module["_mono_wasm_method_get_full_name"]=a0=>(_mono_wasm_method_get_full_name=Module["_mono_wasm_method_get_full_name"]=wasmExports["mono_wasm_method_get_full_name"])(a0);var _mono_wasm_method_get_name=Module["_mono_wasm_method_get_name"]=a0=>(_mono_wasm_method_get_name=Module["_mono_wasm_method_get_name"]=wasmExports["mono_wasm_method_get_name"])(a0);var _mono_wasm_method_get_name_ex=Module["_mono_wasm_method_get_name_ex"]=a0=>(_mono_wasm_method_get_name_ex=Module["_mono_wasm_method_get_name_ex"]=wasmExports["mono_wasm_method_get_name_ex"])(a0);var _mono_wasm_get_f32_unaligned=Module["_mono_wasm_get_f32_unaligned"]=a0=>(_mono_wasm_get_f32_unaligned=Module["_mono_wasm_get_f32_unaligned"]=wasmExports["mono_wasm_get_f32_unaligned"])(a0);var _mono_wasm_get_f64_unaligned=Module["_mono_wasm_get_f64_unaligned"]=a0=>(_mono_wasm_get_f64_unaligned=Module["_mono_wasm_get_f64_unaligned"]=wasmExports["mono_wasm_get_f64_unaligned"])(a0);var _mono_wasm_get_i32_unaligned=Module["_mono_wasm_get_i32_unaligned"]=a0=>(_mono_wasm_get_i32_unaligned=Module["_mono_wasm_get_i32_unaligned"]=wasmExports["mono_wasm_get_i32_unaligned"])(a0);var _mono_wasm_is_zero_page_reserved=Module["_mono_wasm_is_zero_page_reserved"]=()=>(_mono_wasm_is_zero_page_reserved=Module["_mono_wasm_is_zero_page_reserved"]=wasmExports["mono_wasm_is_zero_page_reserved"])();var _mono_wasm_read_as_bool_or_null_unsafe=Module["_mono_wasm_read_as_bool_or_null_unsafe"]=a0=>(_mono_wasm_read_as_bool_or_null_unsafe=Module["_mono_wasm_read_as_bool_or_null_unsafe"]=wasmExports["mono_wasm_read_as_bool_or_null_unsafe"])(a0);var _mono_wasm_set_is_debugger_attached=Module["_mono_wasm_set_is_debugger_attached"]=a0=>(_mono_wasm_set_is_debugger_attached=Module["_mono_wasm_set_is_debugger_attached"]=wasmExports["mono_wasm_set_is_debugger_attached"])(a0);var _mono_wasm_change_debugger_log_level=Module["_mono_wasm_change_debugger_log_level"]=a0=>(_mono_wasm_change_debugger_log_level=Module["_mono_wasm_change_debugger_log_level"]=wasmExports["mono_wasm_change_debugger_log_level"])(a0);var _mono_wasm_send_dbg_command_with_parms=Module["_mono_wasm_send_dbg_command_with_parms"]=(a0,a1,a2,a3,a4,a5,a6)=>(_mono_wasm_send_dbg_command_with_parms=Module["_mono_wasm_send_dbg_command_with_parms"]=wasmExports["mono_wasm_send_dbg_command_with_parms"])(a0,a1,a2,a3,a4,a5,a6);var _mono_wasm_send_dbg_command=Module["_mono_wasm_send_dbg_command"]=(a0,a1,a2,a3,a4)=>(_mono_wasm_send_dbg_command=Module["_mono_wasm_send_dbg_command"]=wasmExports["mono_wasm_send_dbg_command"])(a0,a1,a2,a3,a4);var _mono_jiterp_register_jit_call_thunk=Module["_mono_jiterp_register_jit_call_thunk"]=(a0,a1)=>(_mono_jiterp_register_jit_call_thunk=Module["_mono_jiterp_register_jit_call_thunk"]=wasmExports["mono_jiterp_register_jit_call_thunk"])(a0,a1);var _mono_jiterp_stackval_to_data=Module["_mono_jiterp_stackval_to_data"]=(a0,a1,a2)=>(_mono_jiterp_stackval_to_data=Module["_mono_jiterp_stackval_to_data"]=wasmExports["mono_jiterp_stackval_to_data"])(a0,a1,a2);var _mono_jiterp_stackval_from_data=Module["_mono_jiterp_stackval_from_data"]=(a0,a1,a2)=>(_mono_jiterp_stackval_from_data=Module["_mono_jiterp_stackval_from_data"]=wasmExports["mono_jiterp_stackval_from_data"])(a0,a1,a2);var _mono_jiterp_get_arg_offset=Module["_mono_jiterp_get_arg_offset"]=(a0,a1,a2)=>(_mono_jiterp_get_arg_offset=Module["_mono_jiterp_get_arg_offset"]=wasmExports["mono_jiterp_get_arg_offset"])(a0,a1,a2);var _mono_jiterp_overflow_check_i4=Module["_mono_jiterp_overflow_check_i4"]=(a0,a1,a2)=>(_mono_jiterp_overflow_check_i4=Module["_mono_jiterp_overflow_check_i4"]=wasmExports["mono_jiterp_overflow_check_i4"])(a0,a1,a2);var _mono_jiterp_overflow_check_u4=Module["_mono_jiterp_overflow_check_u4"]=(a0,a1,a2)=>(_mono_jiterp_overflow_check_u4=Module["_mono_jiterp_overflow_check_u4"]=wasmExports["mono_jiterp_overflow_check_u4"])(a0,a1,a2);var _mono_jiterp_ld_delegate_method_ptr=Module["_mono_jiterp_ld_delegate_method_ptr"]=(a0,a1)=>(_mono_jiterp_ld_delegate_method_ptr=Module["_mono_jiterp_ld_delegate_method_ptr"]=wasmExports["mono_jiterp_ld_delegate_method_ptr"])(a0,a1);var _mono_jiterp_interp_entry=Module["_mono_jiterp_interp_entry"]=(a0,a1)=>(_mono_jiterp_interp_entry=Module["_mono_jiterp_interp_entry"]=wasmExports["mono_jiterp_interp_entry"])(a0,a1);var _memset=Module["_memset"]=(a0,a1,a2)=>(_memset=Module["_memset"]=wasmExports["memset"])(a0,a1,a2);var _fmodf=Module["_fmodf"]=(a0,a1)=>(_fmodf=Module["_fmodf"]=wasmExports["fmodf"])(a0,a1);var _fmod=Module["_fmod"]=(a0,a1)=>(_fmod=Module["_fmod"]=wasmExports["fmod"])(a0,a1);var _asin=Module["_asin"]=a0=>(_asin=Module["_asin"]=wasmExports["asin"])(a0);var _asinh=Module["_asinh"]=a0=>(_asinh=Module["_asinh"]=wasmExports["asinh"])(a0);var _acos=Module["_acos"]=a0=>(_acos=Module["_acos"]=wasmExports["acos"])(a0);var _acosh=Module["_acosh"]=a0=>(_acosh=Module["_acosh"]=wasmExports["acosh"])(a0);var _atan=Module["_atan"]=a0=>(_atan=Module["_atan"]=wasmExports["atan"])(a0);var _atanh=Module["_atanh"]=a0=>(_atanh=Module["_atanh"]=wasmExports["atanh"])(a0);var _cos=Module["_cos"]=a0=>(_cos=Module["_cos"]=wasmExports["cos"])(a0);var _cbrt=Module["_cbrt"]=a0=>(_cbrt=Module["_cbrt"]=wasmExports["cbrt"])(a0);var _cosh=Module["_cosh"]=a0=>(_cosh=Module["_cosh"]=wasmExports["cosh"])(a0);var _exp=Module["_exp"]=a0=>(_exp=Module["_exp"]=wasmExports["exp"])(a0);var _log=Module["_log"]=a0=>(_log=Module["_log"]=wasmExports["log"])(a0);var _log2=Module["_log2"]=a0=>(_log2=Module["_log2"]=wasmExports["log2"])(a0);var _log10=Module["_log10"]=a0=>(_log10=Module["_log10"]=wasmExports["log10"])(a0);var _sin=Module["_sin"]=a0=>(_sin=Module["_sin"]=wasmExports["sin"])(a0);var _sinh=Module["_sinh"]=a0=>(_sinh=Module["_sinh"]=wasmExports["sinh"])(a0);var _tan=Module["_tan"]=a0=>(_tan=Module["_tan"]=wasmExports["tan"])(a0);var _tanh=Module["_tanh"]=a0=>(_tanh=Module["_tanh"]=wasmExports["tanh"])(a0);var _atan2=Module["_atan2"]=(a0,a1)=>(_atan2=Module["_atan2"]=wasmExports["atan2"])(a0,a1);var _pow=Module["_pow"]=(a0,a1)=>(_pow=Module["_pow"]=wasmExports["pow"])(a0,a1);var _fma=Module["_fma"]=(a0,a1,a2)=>(_fma=Module["_fma"]=wasmExports["fma"])(a0,a1,a2);var _asinf=Module["_asinf"]=a0=>(_asinf=Module["_asinf"]=wasmExports["asinf"])(a0);var _asinhf=Module["_asinhf"]=a0=>(_asinhf=Module["_asinhf"]=wasmExports["asinhf"])(a0);var _acosf=Module["_acosf"]=a0=>(_acosf=Module["_acosf"]=wasmExports["acosf"])(a0);var _acoshf=Module["_acoshf"]=a0=>(_acoshf=Module["_acoshf"]=wasmExports["acoshf"])(a0);var _atanf=Module["_atanf"]=a0=>(_atanf=Module["_atanf"]=wasmExports["atanf"])(a0);var _atanhf=Module["_atanhf"]=a0=>(_atanhf=Module["_atanhf"]=wasmExports["atanhf"])(a0);var _cosf=Module["_cosf"]=a0=>(_cosf=Module["_cosf"]=wasmExports["cosf"])(a0);var _cbrtf=Module["_cbrtf"]=a0=>(_cbrtf=Module["_cbrtf"]=wasmExports["cbrtf"])(a0);var _coshf=Module["_coshf"]=a0=>(_coshf=Module["_coshf"]=wasmExports["coshf"])(a0);var _expf=Module["_expf"]=a0=>(_expf=Module["_expf"]=wasmExports["expf"])(a0);var _logf=Module["_logf"]=a0=>(_logf=Module["_logf"]=wasmExports["logf"])(a0);var _log2f=Module["_log2f"]=a0=>(_log2f=Module["_log2f"]=wasmExports["log2f"])(a0);var _log10f=Module["_log10f"]=a0=>(_log10f=Module["_log10f"]=wasmExports["log10f"])(a0);var _sinf=Module["_sinf"]=a0=>(_sinf=Module["_sinf"]=wasmExports["sinf"])(a0);var _sinhf=Module["_sinhf"]=a0=>(_sinhf=Module["_sinhf"]=wasmExports["sinhf"])(a0);var _tanf=Module["_tanf"]=a0=>(_tanf=Module["_tanf"]=wasmExports["tanf"])(a0);var _tanhf=Module["_tanhf"]=a0=>(_tanhf=Module["_tanhf"]=wasmExports["tanhf"])(a0);var _atan2f=Module["_atan2f"]=(a0,a1)=>(_atan2f=Module["_atan2f"]=wasmExports["atan2f"])(a0,a1);var _powf=Module["_powf"]=(a0,a1)=>(_powf=Module["_powf"]=wasmExports["powf"])(a0,a1);var _fmaf=Module["_fmaf"]=(a0,a1,a2)=>(_fmaf=Module["_fmaf"]=wasmExports["fmaf"])(a0,a1,a2);var _mono_jiterp_get_polling_required_address=Module["_mono_jiterp_get_polling_required_address"]=()=>(_mono_jiterp_get_polling_required_address=Module["_mono_jiterp_get_polling_required_address"]=wasmExports["mono_jiterp_get_polling_required_address"])();var _mono_jiterp_prof_enter=Module["_mono_jiterp_prof_enter"]=(a0,a1)=>(_mono_jiterp_prof_enter=Module["_mono_jiterp_prof_enter"]=wasmExports["mono_jiterp_prof_enter"])(a0,a1);var _mono_jiterp_prof_samplepoint=Module["_mono_jiterp_prof_samplepoint"]=(a0,a1)=>(_mono_jiterp_prof_samplepoint=Module["_mono_jiterp_prof_samplepoint"]=wasmExports["mono_jiterp_prof_samplepoint"])(a0,a1);var _mono_jiterp_prof_leave=Module["_mono_jiterp_prof_leave"]=(a0,a1)=>(_mono_jiterp_prof_leave=Module["_mono_jiterp_prof_leave"]=wasmExports["mono_jiterp_prof_leave"])(a0,a1);var _mono_jiterp_do_safepoint=Module["_mono_jiterp_do_safepoint"]=(a0,a1)=>(_mono_jiterp_do_safepoint=Module["_mono_jiterp_do_safepoint"]=wasmExports["mono_jiterp_do_safepoint"])(a0,a1);var _mono_jiterp_imethod_to_ftnptr=Module["_mono_jiterp_imethod_to_ftnptr"]=a0=>(_mono_jiterp_imethod_to_ftnptr=Module["_mono_jiterp_imethod_to_ftnptr"]=wasmExports["mono_jiterp_imethod_to_ftnptr"])(a0);var _mono_jiterp_enum_hasflag=Module["_mono_jiterp_enum_hasflag"]=(a0,a1,a2,a3)=>(_mono_jiterp_enum_hasflag=Module["_mono_jiterp_enum_hasflag"]=wasmExports["mono_jiterp_enum_hasflag"])(a0,a1,a2,a3);var _mono_jiterp_get_simd_intrinsic=Module["_mono_jiterp_get_simd_intrinsic"]=(a0,a1)=>(_mono_jiterp_get_simd_intrinsic=Module["_mono_jiterp_get_simd_intrinsic"]=wasmExports["mono_jiterp_get_simd_intrinsic"])(a0,a1);var _mono_jiterp_get_simd_opcode=Module["_mono_jiterp_get_simd_opcode"]=(a0,a1)=>(_mono_jiterp_get_simd_opcode=Module["_mono_jiterp_get_simd_opcode"]=wasmExports["mono_jiterp_get_simd_opcode"])(a0,a1);var _mono_jiterp_get_opcode_info=Module["_mono_jiterp_get_opcode_info"]=(a0,a1)=>(_mono_jiterp_get_opcode_info=Module["_mono_jiterp_get_opcode_info"]=wasmExports["mono_jiterp_get_opcode_info"])(a0,a1);var _mono_jiterp_placeholder_trace=Module["_mono_jiterp_placeholder_trace"]=(a0,a1,a2,a3)=>(_mono_jiterp_placeholder_trace=Module["_mono_jiterp_placeholder_trace"]=wasmExports["mono_jiterp_placeholder_trace"])(a0,a1,a2,a3);var _mono_jiterp_placeholder_jit_call=Module["_mono_jiterp_placeholder_jit_call"]=(a0,a1,a2,a3)=>(_mono_jiterp_placeholder_jit_call=Module["_mono_jiterp_placeholder_jit_call"]=wasmExports["mono_jiterp_placeholder_jit_call"])(a0,a1,a2,a3);var _mono_jiterp_get_interp_entry_func=Module["_mono_jiterp_get_interp_entry_func"]=a0=>(_mono_jiterp_get_interp_entry_func=Module["_mono_jiterp_get_interp_entry_func"]=wasmExports["mono_jiterp_get_interp_entry_func"])(a0);var _mono_jiterp_is_enabled=Module["_mono_jiterp_is_enabled"]=()=>(_mono_jiterp_is_enabled=Module["_mono_jiterp_is_enabled"]=wasmExports["mono_jiterp_is_enabled"])();var _mono_jiterp_encode_leb64_ref=Module["_mono_jiterp_encode_leb64_ref"]=(a0,a1,a2)=>(_mono_jiterp_encode_leb64_ref=Module["_mono_jiterp_encode_leb64_ref"]=wasmExports["mono_jiterp_encode_leb64_ref"])(a0,a1,a2);var _mono_jiterp_encode_leb52=Module["_mono_jiterp_encode_leb52"]=(a0,a1,a2)=>(_mono_jiterp_encode_leb52=Module["_mono_jiterp_encode_leb52"]=wasmExports["mono_jiterp_encode_leb52"])(a0,a1,a2);var _mono_jiterp_encode_leb_signed_boundary=Module["_mono_jiterp_encode_leb_signed_boundary"]=(a0,a1,a2)=>(_mono_jiterp_encode_leb_signed_boundary=Module["_mono_jiterp_encode_leb_signed_boundary"]=wasmExports["mono_jiterp_encode_leb_signed_boundary"])(a0,a1,a2);var _mono_jiterp_increase_entry_count=Module["_mono_jiterp_increase_entry_count"]=a0=>(_mono_jiterp_increase_entry_count=Module["_mono_jiterp_increase_entry_count"]=wasmExports["mono_jiterp_increase_entry_count"])(a0);var _mono_jiterp_object_unbox=Module["_mono_jiterp_object_unbox"]=a0=>(_mono_jiterp_object_unbox=Module["_mono_jiterp_object_unbox"]=wasmExports["mono_jiterp_object_unbox"])(a0);var _mono_jiterp_type_is_byref=Module["_mono_jiterp_type_is_byref"]=a0=>(_mono_jiterp_type_is_byref=Module["_mono_jiterp_type_is_byref"]=wasmExports["mono_jiterp_type_is_byref"])(a0);var _mono_jiterp_value_copy=Module["_mono_jiterp_value_copy"]=(a0,a1,a2)=>(_mono_jiterp_value_copy=Module["_mono_jiterp_value_copy"]=wasmExports["mono_jiterp_value_copy"])(a0,a1,a2);var _mono_jiterp_try_newobj_inlined=Module["_mono_jiterp_try_newobj_inlined"]=(a0,a1)=>(_mono_jiterp_try_newobj_inlined=Module["_mono_jiterp_try_newobj_inlined"]=wasmExports["mono_jiterp_try_newobj_inlined"])(a0,a1);var _mono_jiterp_try_newstr=Module["_mono_jiterp_try_newstr"]=(a0,a1)=>(_mono_jiterp_try_newstr=Module["_mono_jiterp_try_newstr"]=wasmExports["mono_jiterp_try_newstr"])(a0,a1);var _mono_jiterp_try_newarr=Module["_mono_jiterp_try_newarr"]=(a0,a1,a2)=>(_mono_jiterp_try_newarr=Module["_mono_jiterp_try_newarr"]=wasmExports["mono_jiterp_try_newarr"])(a0,a1,a2);var _mono_jiterp_gettype_ref=Module["_mono_jiterp_gettype_ref"]=(a0,a1)=>(_mono_jiterp_gettype_ref=Module["_mono_jiterp_gettype_ref"]=wasmExports["mono_jiterp_gettype_ref"])(a0,a1);var _mono_jiterp_has_parent_fast=Module["_mono_jiterp_has_parent_fast"]=(a0,a1)=>(_mono_jiterp_has_parent_fast=Module["_mono_jiterp_has_parent_fast"]=wasmExports["mono_jiterp_has_parent_fast"])(a0,a1);var _mono_jiterp_implements_interface=Module["_mono_jiterp_implements_interface"]=(a0,a1)=>(_mono_jiterp_implements_interface=Module["_mono_jiterp_implements_interface"]=wasmExports["mono_jiterp_implements_interface"])(a0,a1);var _mono_jiterp_is_special_interface=Module["_mono_jiterp_is_special_interface"]=a0=>(_mono_jiterp_is_special_interface=Module["_mono_jiterp_is_special_interface"]=wasmExports["mono_jiterp_is_special_interface"])(a0);var _mono_jiterp_implements_special_interface=Module["_mono_jiterp_implements_special_interface"]=(a0,a1,a2)=>(_mono_jiterp_implements_special_interface=Module["_mono_jiterp_implements_special_interface"]=wasmExports["mono_jiterp_implements_special_interface"])(a0,a1,a2);var _mono_jiterp_cast_v2=Module["_mono_jiterp_cast_v2"]=(a0,a1,a2,a3)=>(_mono_jiterp_cast_v2=Module["_mono_jiterp_cast_v2"]=wasmExports["mono_jiterp_cast_v2"])(a0,a1,a2,a3);var _mono_jiterp_localloc=Module["_mono_jiterp_localloc"]=(a0,a1,a2)=>(_mono_jiterp_localloc=Module["_mono_jiterp_localloc"]=wasmExports["mono_jiterp_localloc"])(a0,a1,a2);var _mono_jiterp_ldtsflda=Module["_mono_jiterp_ldtsflda"]=(a0,a1)=>(_mono_jiterp_ldtsflda=Module["_mono_jiterp_ldtsflda"]=wasmExports["mono_jiterp_ldtsflda"])(a0,a1);var _mono_jiterp_box_ref=Module["_mono_jiterp_box_ref"]=(a0,a1,a2,a3)=>(_mono_jiterp_box_ref=Module["_mono_jiterp_box_ref"]=wasmExports["mono_jiterp_box_ref"])(a0,a1,a2,a3);var _mono_jiterp_conv=Module["_mono_jiterp_conv"]=(a0,a1,a2)=>(_mono_jiterp_conv=Module["_mono_jiterp_conv"]=wasmExports["mono_jiterp_conv"])(a0,a1,a2);var _mono_jiterp_relop_fp=Module["_mono_jiterp_relop_fp"]=(a0,a1,a2)=>(_mono_jiterp_relop_fp=Module["_mono_jiterp_relop_fp"]=wasmExports["mono_jiterp_relop_fp"])(a0,a1,a2);var _mono_jiterp_get_size_of_stackval=Module["_mono_jiterp_get_size_of_stackval"]=()=>(_mono_jiterp_get_size_of_stackval=Module["_mono_jiterp_get_size_of_stackval"]=wasmExports["mono_jiterp_get_size_of_stackval"])();var _mono_jiterp_type_get_raw_value_size=Module["_mono_jiterp_type_get_raw_value_size"]=a0=>(_mono_jiterp_type_get_raw_value_size=Module["_mono_jiterp_type_get_raw_value_size"]=wasmExports["mono_jiterp_type_get_raw_value_size"])(a0);var _mono_jiterp_trace_bailout=Module["_mono_jiterp_trace_bailout"]=a0=>(_mono_jiterp_trace_bailout=Module["_mono_jiterp_trace_bailout"]=wasmExports["mono_jiterp_trace_bailout"])(a0);var _mono_jiterp_get_trace_bailout_count=Module["_mono_jiterp_get_trace_bailout_count"]=a0=>(_mono_jiterp_get_trace_bailout_count=Module["_mono_jiterp_get_trace_bailout_count"]=wasmExports["mono_jiterp_get_trace_bailout_count"])(a0);var _mono_jiterp_adjust_abort_count=Module["_mono_jiterp_adjust_abort_count"]=(a0,a1)=>(_mono_jiterp_adjust_abort_count=Module["_mono_jiterp_adjust_abort_count"]=wasmExports["mono_jiterp_adjust_abort_count"])(a0,a1);var _mono_jiterp_interp_entry_prologue=Module["_mono_jiterp_interp_entry_prologue"]=(a0,a1)=>(_mono_jiterp_interp_entry_prologue=Module["_mono_jiterp_interp_entry_prologue"]=wasmExports["mono_jiterp_interp_entry_prologue"])(a0,a1);var _mono_jiterp_get_opcode_value_table_entry=Module["_mono_jiterp_get_opcode_value_table_entry"]=a0=>(_mono_jiterp_get_opcode_value_table_entry=Module["_mono_jiterp_get_opcode_value_table_entry"]=wasmExports["mono_jiterp_get_opcode_value_table_entry"])(a0);var _mono_jiterp_get_trace_hit_count=Module["_mono_jiterp_get_trace_hit_count"]=a0=>(_mono_jiterp_get_trace_hit_count=Module["_mono_jiterp_get_trace_hit_count"]=wasmExports["mono_jiterp_get_trace_hit_count"])(a0);var _mono_jiterp_parse_option=Module["_mono_jiterp_parse_option"]=a0=>(_mono_jiterp_parse_option=Module["_mono_jiterp_parse_option"]=wasmExports["mono_jiterp_parse_option"])(a0);var _mono_jiterp_get_options_version=Module["_mono_jiterp_get_options_version"]=()=>(_mono_jiterp_get_options_version=Module["_mono_jiterp_get_options_version"]=wasmExports["mono_jiterp_get_options_version"])();var _mono_jiterp_get_options_as_json=Module["_mono_jiterp_get_options_as_json"]=()=>(_mono_jiterp_get_options_as_json=Module["_mono_jiterp_get_options_as_json"]=wasmExports["mono_jiterp_get_options_as_json"])();var _mono_jiterp_get_option_as_int=Module["_mono_jiterp_get_option_as_int"]=a0=>(_mono_jiterp_get_option_as_int=Module["_mono_jiterp_get_option_as_int"]=wasmExports["mono_jiterp_get_option_as_int"])(a0);var _mono_jiterp_object_has_component_size=Module["_mono_jiterp_object_has_component_size"]=a0=>(_mono_jiterp_object_has_component_size=Module["_mono_jiterp_object_has_component_size"]=wasmExports["mono_jiterp_object_has_component_size"])(a0);var _mono_jiterp_get_hashcode=Module["_mono_jiterp_get_hashcode"]=a0=>(_mono_jiterp_get_hashcode=Module["_mono_jiterp_get_hashcode"]=wasmExports["mono_jiterp_get_hashcode"])(a0);var _mono_jiterp_try_get_hashcode=Module["_mono_jiterp_try_get_hashcode"]=a0=>(_mono_jiterp_try_get_hashcode=Module["_mono_jiterp_try_get_hashcode"]=wasmExports["mono_jiterp_try_get_hashcode"])(a0);var _mono_jiterp_get_signature_has_this=Module["_mono_jiterp_get_signature_has_this"]=a0=>(_mono_jiterp_get_signature_has_this=Module["_mono_jiterp_get_signature_has_this"]=wasmExports["mono_jiterp_get_signature_has_this"])(a0);var _mono_jiterp_get_signature_return_type=Module["_mono_jiterp_get_signature_return_type"]=a0=>(_mono_jiterp_get_signature_return_type=Module["_mono_jiterp_get_signature_return_type"]=wasmExports["mono_jiterp_get_signature_return_type"])(a0);var _mono_jiterp_get_signature_param_count=Module["_mono_jiterp_get_signature_param_count"]=a0=>(_mono_jiterp_get_signature_param_count=Module["_mono_jiterp_get_signature_param_count"]=wasmExports["mono_jiterp_get_signature_param_count"])(a0);var _mono_jiterp_get_signature_params=Module["_mono_jiterp_get_signature_params"]=a0=>(_mono_jiterp_get_signature_params=Module["_mono_jiterp_get_signature_params"]=wasmExports["mono_jiterp_get_signature_params"])(a0);var _mono_jiterp_type_to_ldind=Module["_mono_jiterp_type_to_ldind"]=a0=>(_mono_jiterp_type_to_ldind=Module["_mono_jiterp_type_to_ldind"]=wasmExports["mono_jiterp_type_to_ldind"])(a0);var _mono_jiterp_type_to_stind=Module["_mono_jiterp_type_to_stind"]=a0=>(_mono_jiterp_type_to_stind=Module["_mono_jiterp_type_to_stind"]=wasmExports["mono_jiterp_type_to_stind"])(a0);var _mono_jiterp_get_array_rank=Module["_mono_jiterp_get_array_rank"]=(a0,a1)=>(_mono_jiterp_get_array_rank=Module["_mono_jiterp_get_array_rank"]=wasmExports["mono_jiterp_get_array_rank"])(a0,a1);var _mono_jiterp_get_array_element_size=Module["_mono_jiterp_get_array_element_size"]=(a0,a1)=>(_mono_jiterp_get_array_element_size=Module["_mono_jiterp_get_array_element_size"]=wasmExports["mono_jiterp_get_array_element_size"])(a0,a1);var _mono_jiterp_set_object_field=Module["_mono_jiterp_set_object_field"]=(a0,a1,a2,a3)=>(_mono_jiterp_set_object_field=Module["_mono_jiterp_set_object_field"]=wasmExports["mono_jiterp_set_object_field"])(a0,a1,a2,a3);var _mono_jiterp_debug_count=Module["_mono_jiterp_debug_count"]=()=>(_mono_jiterp_debug_count=Module["_mono_jiterp_debug_count"]=wasmExports["mono_jiterp_debug_count"])();var _mono_jiterp_stelem_ref=Module["_mono_jiterp_stelem_ref"]=(a0,a1,a2)=>(_mono_jiterp_stelem_ref=Module["_mono_jiterp_stelem_ref"]=wasmExports["mono_jiterp_stelem_ref"])(a0,a1,a2);var _mono_jiterp_get_member_offset=Module["_mono_jiterp_get_member_offset"]=a0=>(_mono_jiterp_get_member_offset=Module["_mono_jiterp_get_member_offset"]=wasmExports["mono_jiterp_get_member_offset"])(a0);var _mono_jiterp_get_counter=Module["_mono_jiterp_get_counter"]=a0=>(_mono_jiterp_get_counter=Module["_mono_jiterp_get_counter"]=wasmExports["mono_jiterp_get_counter"])(a0);var _mono_jiterp_modify_counter=Module["_mono_jiterp_modify_counter"]=(a0,a1)=>(_mono_jiterp_modify_counter=Module["_mono_jiterp_modify_counter"]=wasmExports["mono_jiterp_modify_counter"])(a0,a1);var _mono_jiterp_write_number_unaligned=Module["_mono_jiterp_write_number_unaligned"]=(a0,a1,a2)=>(_mono_jiterp_write_number_unaligned=Module["_mono_jiterp_write_number_unaligned"]=wasmExports["mono_jiterp_write_number_unaligned"])(a0,a1,a2);var _mono_jiterp_get_rejected_trace_count=Module["_mono_jiterp_get_rejected_trace_count"]=()=>(_mono_jiterp_get_rejected_trace_count=Module["_mono_jiterp_get_rejected_trace_count"]=wasmExports["mono_jiterp_get_rejected_trace_count"])();var _mono_jiterp_boost_back_branch_target=Module["_mono_jiterp_boost_back_branch_target"]=a0=>(_mono_jiterp_boost_back_branch_target=Module["_mono_jiterp_boost_back_branch_target"]=wasmExports["mono_jiterp_boost_back_branch_target"])(a0);var _mono_jiterp_is_imethod_var_address_taken=Module["_mono_jiterp_is_imethod_var_address_taken"]=(a0,a1)=>(_mono_jiterp_is_imethod_var_address_taken=Module["_mono_jiterp_is_imethod_var_address_taken"]=wasmExports["mono_jiterp_is_imethod_var_address_taken"])(a0,a1);var _mono_jiterp_initialize_table=Module["_mono_jiterp_initialize_table"]=(a0,a1,a2)=>(_mono_jiterp_initialize_table=Module["_mono_jiterp_initialize_table"]=wasmExports["mono_jiterp_initialize_table"])(a0,a1,a2);var _mono_jiterp_allocate_table_entry=Module["_mono_jiterp_allocate_table_entry"]=a0=>(_mono_jiterp_allocate_table_entry=Module["_mono_jiterp_allocate_table_entry"]=wasmExports["mono_jiterp_allocate_table_entry"])(a0);var _mono_jiterp_tlqueue_next=Module["_mono_jiterp_tlqueue_next"]=a0=>(_mono_jiterp_tlqueue_next=Module["_mono_jiterp_tlqueue_next"]=wasmExports["mono_jiterp_tlqueue_next"])(a0);var _mono_jiterp_tlqueue_add=Module["_mono_jiterp_tlqueue_add"]=(a0,a1)=>(_mono_jiterp_tlqueue_add=Module["_mono_jiterp_tlqueue_add"]=wasmExports["mono_jiterp_tlqueue_add"])(a0,a1);var _mono_jiterp_tlqueue_clear=Module["_mono_jiterp_tlqueue_clear"]=a0=>(_mono_jiterp_tlqueue_clear=Module["_mono_jiterp_tlqueue_clear"]=wasmExports["mono_jiterp_tlqueue_clear"])(a0);var _mono_interp_pgo_load_table=Module["_mono_interp_pgo_load_table"]=(a0,a1)=>(_mono_interp_pgo_load_table=Module["_mono_interp_pgo_load_table"]=wasmExports["mono_interp_pgo_load_table"])(a0,a1);var _mono_interp_pgo_save_table=Module["_mono_interp_pgo_save_table"]=(a0,a1)=>(_mono_interp_pgo_save_table=Module["_mono_interp_pgo_save_table"]=wasmExports["mono_interp_pgo_save_table"])(a0,a1);var _sbrk=Module["_sbrk"]=a0=>(_sbrk=Module["_sbrk"]=wasmExports["sbrk"])(a0);var _posix_memalign=Module["_posix_memalign"]=(a0,a1,a2)=>(_posix_memalign=Module["_posix_memalign"]=wasmExports["posix_memalign"])(a0,a1,a2);var _mono_background_exec=Module["_mono_background_exec"]=()=>(_mono_background_exec=Module["_mono_background_exec"]=wasmExports["mono_background_exec"])();var _mono_wasm_ds_exec=Module["_mono_wasm_ds_exec"]=()=>(_mono_wasm_ds_exec=Module["_mono_wasm_ds_exec"]=wasmExports["mono_wasm_ds_exec"])();var _htons=Module["_htons"]=a0=>(_htons=Module["_htons"]=wasmExports["htons"])(a0);var _mono_wasm_gc_lock=Module["_mono_wasm_gc_lock"]=()=>(_mono_wasm_gc_lock=Module["_mono_wasm_gc_lock"]=wasmExports["mono_wasm_gc_lock"])();var _mono_wasm_gc_unlock=Module["_mono_wasm_gc_unlock"]=()=>(_mono_wasm_gc_unlock=Module["_mono_wasm_gc_unlock"]=wasmExports["mono_wasm_gc_unlock"])();var _mono_print_method_from_ip=Module["_mono_print_method_from_ip"]=a0=>(_mono_print_method_from_ip=Module["_mono_print_method_from_ip"]=wasmExports["mono_print_method_from_ip"])(a0);var _mono_llvm_cpp_catch_exception=Module["_mono_llvm_cpp_catch_exception"]=(a0,a1,a2)=>(_mono_llvm_cpp_catch_exception=Module["_mono_llvm_cpp_catch_exception"]=wasmExports["mono_llvm_cpp_catch_exception"])(a0,a1,a2);var _mono_wasm_execute_timer=Module["_mono_wasm_execute_timer"]=()=>(_mono_wasm_execute_timer=Module["_mono_wasm_execute_timer"]=wasmExports["mono_wasm_execute_timer"])();var _mono_jiterp_begin_catch=Module["_mono_jiterp_begin_catch"]=a0=>(_mono_jiterp_begin_catch=Module["_mono_jiterp_begin_catch"]=wasmExports["mono_jiterp_begin_catch"])(a0);var _mono_jiterp_end_catch=Module["_mono_jiterp_end_catch"]=()=>(_mono_jiterp_end_catch=Module["_mono_jiterp_end_catch"]=wasmExports["mono_jiterp_end_catch"])();var _ntohs=Module["_ntohs"]=a0=>(_ntohs=Module["_ntohs"]=wasmExports["ntohs"])(a0);var _mono_wasm_load_icu_data=Module["_mono_wasm_load_icu_data"]=a0=>(_mono_wasm_load_icu_data=Module["_mono_wasm_load_icu_data"]=wasmExports["mono_wasm_load_icu_data"])(a0);var ___funcs_on_exit=()=>(___funcs_on_exit=wasmExports["__funcs_on_exit"])();var _htonl=a0=>(_htonl=wasmExports["htonl"])(a0);var _emscripten_builtin_memalign=(a0,a1)=>(_emscripten_builtin_memalign=wasmExports["emscripten_builtin_memalign"])(a0,a1);var _memalign=Module["_memalign"]=(a0,a1)=>(_memalign=Module["_memalign"]=wasmExports["memalign"])(a0,a1);var _setThrew=(a0,a1)=>(_setThrew=wasmExports["setThrew"])(a0,a1);var setTempRet0=a0=>(setTempRet0=wasmExports["setTempRet0"])(a0);var stackSave=Module["stackSave"]=()=>(stackSave=Module["stackSave"]=wasmExports["stackSave"])();var stackRestore=Module["stackRestore"]=a0=>(stackRestore=Module["stackRestore"]=wasmExports["stackRestore"])(a0);var stackAlloc=Module["stackAlloc"]=a0=>(stackAlloc=Module["stackAlloc"]=wasmExports["stackAlloc"])(a0);var ___cxa_decrement_exception_refcount=a0=>(___cxa_decrement_exception_refcount=wasmExports["__cxa_decrement_exception_refcount"])(a0);var ___cxa_increment_exception_refcount=a0=>(___cxa_increment_exception_refcount=wasmExports["__cxa_increment_exception_refcount"])(a0);var ___cxa_can_catch=(a0,a1,a2)=>(___cxa_can_catch=wasmExports["__cxa_can_catch"])(a0,a1,a2);var ___cxa_is_pointer_type=a0=>(___cxa_is_pointer_type=wasmExports["__cxa_is_pointer_type"])(a0);function invoke_vi(index,a1){var sp=stackSave();try{getWasmTableEntry(index)(a1)}catch(e){stackRestore(sp);if(e!==e+0)throw e;_setThrew(1,0)}}Module["addRunDependency"]=addRunDependency;Module["removeRunDependency"]=removeRunDependency;Module["FS_createPath"]=FS.createPath;Module["FS_createLazyFile"]=FS.createLazyFile;Module["FS_createDevice"]=FS.createDevice;Module["out"]=out;Module["err"]=err;Module["abort"]=abort;Module["wasmExports"]=wasmExports;Module["runtimeKeepalivePush"]=runtimeKeepalivePush;Module["runtimeKeepalivePop"]=runtimeKeepalivePop;Module["maybeExit"]=maybeExit;Module["ccall"]=ccall;Module["cwrap"]=cwrap;Module["addFunction"]=addFunction;Module["setValue"]=setValue;Module["getValue"]=getValue;Module["UTF8ArrayToString"]=UTF8ArrayToString;Module["UTF8ToString"]=UTF8ToString;Module["stringToUTF8Array"]=stringToUTF8Array;Module["lengthBytesUTF8"]=lengthBytesUTF8;Module["safeSetTimeout"]=safeSetTimeout;Module["FS_createPreloadedFile"]=FS.createPreloadedFile;Module["FS"]=FS;Module["FS_createDataFile"]=FS.createDataFile;Module["FS_unlink"]=FS.unlink;var calledRun;dependenciesFulfilled=function runCaller(){if(!calledRun)run();if(!calledRun)dependenciesFulfilled=runCaller};function run(){if(runDependencies>0){return}preRun();if(runDependencies>0){return}function doRun(){if(calledRun)return;calledRun=true;Module["calledRun"]=true;if(ABORT)return;initRuntime();readyPromiseResolve(Module);if(Module["onRuntimeInitialized"])Module["onRuntimeInitialized"]();postRun()}if(Module["setStatus"]){Module["setStatus"]("Running...");setTimeout(function(){setTimeout(function(){Module["setStatus"]("")},1);doRun()},1)}else{doRun()}}if(Module["preInit"]){if(typeof Module["preInit"]=="function")Module["preInit"]=[Module["preInit"]];while(Module["preInit"].length>0){Module["preInit"].pop()()}}run(); + + + return moduleArg.ready +} +); +})(); +export default createDotnetRuntime; +var fetch = fetch || undefined; var require = require || undefined; var __dirname = __dirname || ''; var _nativeModuleLoaded = false; diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/dotnet.native.ykrnppwhq2.js.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/dotnet.native.ykrnppwhq2.js.gz new file mode 100644 index 0000000..45a72b3 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/dotnet.native.ykrnppwhq2.js.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/dotnet.runtime.js.map b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/dotnet.runtime.js.map new file mode 100644 index 0000000..37c5e18 --- /dev/null +++ b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/dotnet.runtime.js.map @@ -0,0 +1 @@ +{"version":3,"file":"dotnet.runtime.js","sources":["https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/cwraps.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/types/internal.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/memory.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/gc-lock.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/roots.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/strings.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/logging.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/globals.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/base64.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/debug.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/profiler.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/marshal-to-js.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/marshal.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/managed-exports.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/gc-handles.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/pthreads/shared.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/invoke-js.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/weak-ref.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/invoke-cs.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/cancelable-promise.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/marshal-to-cs.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/polyfills.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/http.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/scheduling.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/queue.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/web-socket.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/assets.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/icu.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/jiterpreter-opcodes.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/jiterpreter-support.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/jiterpreter-enums.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime//mintops.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/jiterpreter-tables.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/jiterpreter-trace-generator.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/jiterpreter-interp-entry.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/jiterpreter-jit-call.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/jiterpreter.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/interp-pgo.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/lazyLoading.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/satelliteAssemblies.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/exports-internal.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/globalization-locale.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/exports-binding.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/startup.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/crypto.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/diagnostics.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/run.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/exports.ts","https://raw.githubusercontent.com/dotnet/dotnet/a612c2a1056fe3265387ae3ff7c94eba1505caf9/src/runtime/src/mono/browser/runtime/export-api.ts"],"sourcesContent":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"names":["fn_signatures","runtimeHelpers","emscriptenBuildOptions","enableAotProfiler","enableDevToolsProfiler","enableLogProfiler","enableEventPipe","wrapped_c_functions","threads_c_functions","profiler_c_functions","fastCwrapTypes","cwrap","name","returnType","argTypes","opts","fce","indexOf","every","atype","Module","undefined","length","mono_log_error","Error","MonoObjectNull","MonoStringNull","GCHandleNull","max_int64_big","BigInt","min_int64_big","malloc","size","_malloc","free","ptr","_free","assert_int_in_range","value","min","max","Number","isSafeInteger","_zero_region","byteOffset","sizeBytes","localHeapViewU8","fill","setB32","offset","boolValue","HEAP32","setB8","HEAPU8","setU8","setU16","HEAPU16","setU32","HEAPU32","setI8","HEAP8","setI16","HEAP16","setI32","autoThrowI52","error","setI52","cwraps","mono_wasm_f64_to_i52","setU52","mono_wasm_f64_to_u52","setI64Big","HEAP64","setF32","HEAPF32","setF64","HEAPF64","warnDirtyBool","getB32","mono_log_warn","getB8","getU8","getU16","getU32","getU32_local","localView","getI32_unaligned","mono_wasm_get_i32_unaligned","getU32_unaligned","getI8","getI16","getI32","getI52","result","mono_wasm_i52_to_f64","_i52_error_scratch_buffer","getU52","mono_wasm_u52_to_f64","getI64Big","getF32","getF64","localHeapViewI8","localHeapViewI16","localHeapViewI32","localHeapViewI64Big","localHeapViewU16","localHeapViewU32","localHeapViewF32","localHeapViewF64","fixupPointer","signature","shiftAmount","gc_locked","mono_wasm_gc_lock","mono_wasm_gc_unlock","maxScratchRoots","_scratch_root_buffer","_scratch_root_free_indices","_scratch_root_free_indices_count","_scratch_root_free_instances","_external_root_free_instances","mono_wasm_new_root_buffer","capacity","capacityBytes","WasmRootBufferImpl","constructor","ownsAllocation","this","__offset","__offset32","__count","__handle","mono_wasm_register_root","__ownsAllocation","_throw_index_out_of_range","_check_in_range","index","get_address","get_address_32","get","set","address","mono_wasm_write_managed_pointer_unsafe","copy_value_from_address","sourceAddress","destinationAddress","mono_wasm_copy_managed_pointer","_unsafe_get","_unsafe_set","clear","release","mono_wasm_deregister_root","toString","WasmJsOwnedRoot","buffer","__buffer","__index","copy_from","source","copy_to","destination","copy_from_address","copy_to_address","valueOf","address32","push","WasmExternalRoot","__external_address","__external_address_32","_set_address","interned_js_string_table","Map","mono_wasm_empty_string","mono_wasm_string_decoder_buffer","interned_string_table","_text_decoder_utf16","_text_decoder_utf8_relaxed","_text_decoder_utf8_validating","_text_encoder_utf8","mono_wasm_string_root","_empty_string_ptr","_interned_string_current_root_buffer","_interned_string_current_root_buffer_count","stringToUTF8","str","len","lengthBytesUTF8","Uint8Array","stringToUTF8Array","encode","stringToUTF8Ptr","subarray","utf8ToString","heapU8","heapOrArray","idx","maxBytesToRead","endIdx","endPtr","UTF8ArrayToString","view","viewOrCopy","decode","utf8BufferToString","utf16ToString","startPtr","subArray","heapU16","i","char","String","fromCharCode","utf16ToStringLoop","stringToUTF16","dstPtr","text","heapI16","charCodeAt","stringToUTF16Ptr","bytes","monoStringToString","root","ppChars","pLengthBytes","pIsInterned","mono_wasm_string_get_data_ref","heapU32","lengthBytes","pChars","isInterned","stringToInternedMonoStringRoot","string","description","Symbol","keyFor","stringToMonoStringNewRoot","internIt","rootBuffer","mono_wasm_intern_string_ref","storeStringInInternTable","bufferLen","mono_wasm_string_from_utf16_ref","start","end","monoStringToStringUnsafe","mono_string","prefix","mono_log_debug","messageFactory","diagnosticTracing","message","console","debug","mono_log_info","msg","data","info","warn","silent","wasm_func_map","wasm_pending_symbol_table","regexes","mono_wasm_symbolicate_string","performDeferredSymbolMapParsing","origMessage","newRaw","replace","RegExp","substring","args","groups","find","arg","replaceSection","funcNum","mono_wasm_stringify_as_error_with_stack","reason","stack","split","forEach","line","parts","splice","join","loaderHelpers","exc","mono_wasm_get_func_id_to_name_mappings","values","INTERNAL","ENVIRONMENT_IS_NODE","process","versions","node","ENVIRONMENT_IS_WEB_WORKER","importScripts","ENVIRONMENT_IS_SIDECAR","dotnetSidecar","ENVIRONMENT_IS_WORKER","ENVIRONMENT_IS_WEB","window","ENVIRONMENT_IS_SHELL","exportedRuntimeAPI","diagnosticHelpers","_runtimeModuleLoaded","passEmscriptenInternals","internals","isPThread","quit","quit_","ExitStatus","getMemory","getWasmIndirectFunctionTable","updateMemoryViews","setRuntimeGlobals","globalObjects","module","internal","api","rh","gitHash","coreAssetsInMemory","createPromiseController","allAssetsInMemory","dotnetReady","afterInstantiateWasm","beforePreInit","afterPreInit","afterPreRun","beforeOnRuntimeInitialized","afterMonoStarted","afterDeputyReady","afterIOStarted","afterOnRuntimeInitialized","afterPostRun","nativeAbort","nativeExit","code","Object","assign","config","afterResolve","afterReject","mono_assert","condition","toBase64StringImpl","inArray","reader","count","endpoint","position","read","nextByte","defineProperty","configurable","enumerable","_makeByteReader","ch1","ch2","ch3","bits","equalsCount","sum","_base64Table","commands_received","remove","key","delete","_debugger_buffer","_assembly_name_str","_entrypoint_method_token","_call_function_res_cache","_next_call_function_res_id","_debugger_buffer_len","mono_wasm_fire_debugger_agent_message_with_data_to_pause","base64String","assert","mono_wasm_malloc_and_set_debug_buffer","command_parameters","Math","byteCharacters","atob","mono_wasm_send_dbg_command_with_parms","id","command_set","command","valtype","newvalue","res_ok","res","mono_wasm_send_dbg_command","mono_wasm_get_dbg_command_info","mono_wasm_debugger_resume","mono_wasm_detach_debugger","mono_wasm_set_is_debugger_attached","mono_wasm_change_debugger_log_level","level","mono_wasm_raise_debug_event","event","JSON","stringify","eventName","mono_wasm_debugger_attached","waitForDebugger","mono_wasm_call_function_on","request","arguments","Array","isArray","objId","objectId","details","proxy","startsWith","ret","items","map","p","dimensionsDetails","keys","prop","commandSet","newValue","_create_proxy_from_object_id","fn_args","a","fn_body_template","functionDeclaration","fn_res","Function","fn_defn","type","subtype","returnByValue","getPrototypeOf","prototype","fn_res_id","_cache_call_function_res","className","mono_wasm_get_details","real_obj","descriptors","getOwnPropertyDescriptors","accessorPropertiesOnly","k","Reflect","deleteProperty","res_details","new_obj","prop_desc","__value_as_json_string__","_get_cfo_res_details","obj","mono_wasm_release_object","enablePerfMeasure","startMeasure","globalThis","performance","now","endMeasure","block","options","startTime","measure","methodNames","bind_arg_marshal_to_js","sig","marshaler_type","res_marshaler","arg1_marshaler","arg2_marshaler","arg3_marshaler","get_marshaler_to_cs_by_type","get_signature_arg1_type","get_signature_arg2_type","get_signature_arg3_type","marshaler_type_res","get_signature_res_type","get_marshaler_to_js_by_type","converter","element_type","arg_offset","JavaScriptMarshalerArgSize","cs_to_js_marshalers","jsinteropDoc","_marshal_bool_to_js","get_arg_type","get_arg_bool","_marshal_byte_to_js","get_arg_u8","_marshal_char_to_js","get_arg_u16","_marshal_int16_to_js","get_arg_i16","marshal_int32_to_js","get_arg_i32","_marshal_int52_to_js","get_arg_i52","_marshal_bigint64_to_js","get_arg_i64_big","_marshal_float_to_js","get_arg_f32","_marshal_double_to_js","get_arg_f64","_marshal_intptr_to_js","get_arg_intptr","_marshal_null_to_js","_marshal_datetime_to_js","unixTime","Date","get_arg_date","_marshal_delegate_to_js","_","res_converter","arg1_converter","arg2_converter","arg3_converter","gc_handle","get_arg_gc_handle","_lookup_js_owned_object","arg1_js","arg2_js","arg3_js","callback_gc_handle","assert_runtime_running","sp","stackSave","alloc_stack_frame","arg1","get_arg","set_arg_type","set_gc_handle","invoke_sync_jsexport","managedExports","CallDelegate","is_runtime_running","stackRestore","call_delegate","dispose","isDisposed","teardown_managed_proxy","setup_managed_proxy","TaskHolder","promise","resolve_or_reject","marshal_task_to_js","try_marshal_sync_task_to_js","jsv_handle","get_arg_js_handle","holder","create_task_holder","js_obj","assert_js_interop","_cs_owned_objects_by_jsv_handle","isExtensible","cs_owned_js_handle_symbol","register_with_jsv_handle","begin_marshal_task_to_js","set_js_handle","mono_wasm_get_js_handle","end_marshal_task_to_js","eagerPromise","mono_wasm_release_cs_owned_object","Promise","reject","marshal_exception_to_js","get_arg_element_type","resolve","val","promise_control","js_handle","argInner","js_value","marshal_string_to_js","get_string_root","mono_wasm_get_jsobj_from_js_handle","ManagedError","_marshal_js_object_to_js","_marshal_cs_object_to_js","_marshal_array_to_js_impl","ManagedObject","_marshal_array_to_js","array_element_size","buffer_ptr","get_arg_length","element_arg","bufferOffset","slice","_marshal_span_to_js","Span","_marshal_array_segment_to_js","ArraySegment","monoThreadInfo","pthreadId","reuseCount","updateCount","threadPrefix","threadName","invoke_async_jsexport","managedTID","method","mono_wasm_invoke_jsexport","is_args_exception","get_method","method_name","mono_wasm_assembly_find_method","runtime_interop_exports_class","runtime_interop_namespace","runtime_interop_exports_classname","js_to_cs_marshalers","bound_cs_function_symbol","for","bound_js_function_symbol","imported_js_function_symbol","JSMarshalerTypeSize","JSMarshalerSignatureHeaderSize","stackAlloc","get_sig","get_signature_type","get_signature_argument_count","get_signature_version","set_arg_bool","set_arg_intptr","set_arg_date","getTime","set_arg_f64","jsHandle","gcHandle","pop","mono_wasm_new_external_root","set_arg_length","js_owned_gc_handle_symbol","super","superStack","getOwnPropertyDescriptor","getManageStack","getSuperStack","call","managed_stack","exception_gc_handle","GetManagedStackTrace","get_managed_stack_trace","MemoryView","_pointer","_length","_viewType","_unsafe_create_view","Int32Array","Float64Array","targetOffset","targetView","copyTo","target","sourceOffset","sourceView","trimmedSource","byteLength","pointer","viewType","is_disposed","js_import_wrapper_by_fn_handle","bind_fn","closure","args_count","arg_marshalers","arg_cleanup","has_cleanup","fn","fqn","mark","WasmEnableThreads","js_args","js_arg","marshaler","js_result","cleanup","ex","marshal_exception_to_cs","mono_wasm_set_module_imports","module_name","moduleImports","importedModules","set_property","self","get_property","has_property","get_typeof_property","get_global_this","importedModulesPromises","dynamic_import","module_url","newPromise","import","wrap_as_cancelable_promise","async","invoke_later_when_on_ui_thread_async","_use_weak_ref","WeakRef","create_weak_ref","deref","create_strong_ref","mono_wasm_bind_cs_function","assemblyName","namespaceName","shortClassName","methodName","signatureHash","fullyQualifiedName","version","arg_marshaler","bind_arg_marshal_to_cs","res_sig","res_marshaler_type","is_async","is_discard_no_wait","bound_fn","marshaler1","managedThreadTID","bind_fn_1RA","marshaler2","arg2","bind_fn_2RA","bind_fn_1R","bind_fn_2R","bind_fn_1V","bind_fn_0V","assembly","namespace","classname","methodname","signature_hash","scope","assemblyScope","exportsByAssembly","part","newscope","_walk_exports_to_set_function","mono_wasm_get_assembly_exports","marshal_string_to_cs","BindAssemblyExports","bind_assembly_exports","_use_finalization_registry","FinalizationRegistry","_js_owned_object_registry","_cs_owned_objects_by_js_handle","_js_handle_free_list","_next_js_handle","_js_owned_object_table","_gcv_handle_free_list","_next_gcv_handle","is_jsv_handle","is_js_handle","is_gcv_handle","_js_owned_object_finalized","do_not_force_dispose","hasOwnProperty","owner","register","wr","skipManaged","gcv_handle","unregister","force_dispose_proxies_in_progress","isUI","ReleaseJSOwnedObjectByGCHandle","release_js_owned_object_by_gc_handle","assert_not_disposed","forceDisposeProxies","disposeMethods","verbose","keepSomeCsAlive","keepSomeJsAlive","doneImports","doneExports","doneGCHandles","doneJSHandles","gc_handles","keepAlive","getPromiseController","free_js_handle","list","disposed","assemblyExports","assemblyExport","exportName","isThenable","then","catch","promise_holder_symbol","PromiseHolder","promiseHolderPtr","isResolved","isPosted","isPostponed","setIsResolving","complete_task_wrapper","cancel","assertIsControllablePromise","holder_gc_handle","arg3","ioThreadTID","CompleteTask","complete_task","marshal_cs_object_to_cs","mono_exit","ex2","marshal_bool_to_cs","_marshal_byte_to_cs","set_arg_u8","_marshal_char_to_cs","set_arg_u16","_marshal_int16_to_cs","set_arg_i16","_marshal_int32_to_cs","set_arg_i32","_marshal_int52_to_cs","set_arg_i52","_marshal_bigint64_to_cs","set_arg_i64_big","_marshal_double_to_cs","_marshal_float_to_cs","set_arg_f32","marshal_intptr_to_cs","_marshal_date_time_to_cs","_marshal_date_time_offset_to_cs","_marshal_string_to_cs_impl","interned","stringToMonoStringRoot","_marshal_null_to_cs","_marshal_function_to_cs","wrapper","previousPendingSynchronousCall","isPendingSynchronousCall","res_js","marshal_task_to_cs","handleIsPreallocated","known_js_handle","marshal_js_object_to_cs","js_type","marshal_array_to_cs_impl","Int16Array","Int8Array","Uint8ClampedArray","Uint16Array","Uint32Array","Float32Array","marshal_array_to_cs","element_size","buffer_length","set_arg_element_type","_marshal_span_to_cs","checkViewType","_marshal_array_segment_to_cs","dummyPerformance","initializeReplacements","replacements","require","scriptDirectory","locateFile","__locateFile","fetch","fetch_like","verifyEnvironment","AbortController","http_wasm_supports_streaming_request","Request","ReadableStream","TransformStream","duplexAccessed","hasContentType","body","duplex","headers","has","http_wasm_supports_streaming_response","Response","http_wasm_create_controller","abortController","mute_unhandledrejection","err","http_wasm_abort","controller","isAborted","streamWriter","abort","streamReader","signal","aborted","http_wasm_transform_stream_write","bufferPtr","bufferLength","copy","ready","write","http_wasm_transform_stream_close","close","http_wasm_fetch_stream","url","header_names","header_values","option_names","option_values","transformStream","writable","getWriter","closed","http_wasm_fetch","readable","http_wasm_fetch_bytes","bodyPtr","bodyLength","Headers","append","responsePromise","response","responseHeaderNames","responseHeaderValues","entries","pair","http_wasm_get_response_type","_a","http_wasm_get_response_status","_b","status","http_wasm_get_response_header_names","http_wasm_get_response_header_values","http_wasm_get_response_length","arrayBuffer","responseBuffer","currentBufferOffset","http_wasm_get_response_bytes","source_view","bytes_read","http_wasm_get_streamed_response_bytes","getReader","currentStreamReaderChunk","done","remaining_source","bytes_copied","lastScheduledBackground","lastScheduledTimeoutId","spread_timers_maximum","prevent_timer_throttling","isChromium","desired_reach_time","schedule","delay","setTimeout","prevent_timer_throttling_tick","maybeExit","mono_wasm_execute_timer","mono_background_exec_until_done","mono_background_exec","mono_wasm_schedule_timer_tick","Queue","queue","getLength","isEmpty","enqueue","item","dequeue","peek","drain","onEach","wasm_ws_pending_send_buffer","wasm_ws_pending_send_buffer_offset","wasm_ws_pending_send_buffer_type","wasm_ws_pending_receive_event_queue","wasm_ws_pending_receive_promise_queue","wasm_ws_pending_open_promise","wasm_ws_pending_open_promise_used","wasm_ws_pending_error","wasm_ws_pending_close_promises","wasm_ws_pending_send_promises","wasm_ws_is_aborted","wasm_ws_close_sent","wasm_ws_close_received","wasm_ws_receive_status_ptr","ws_send_buffer_blocking_threshold","emptyBuffer","ws_get_state","ws","readyState","WebSocket","CLOSED","CLOSING","OPEN","ws_wasm_create","uri","sub_protocols","receive_status_ptr","open_promise_control","binaryType","local_on_open","local_on_message","ev","event_queue","promise_queue","web_socket_receive_buffering","web_socket_on_message","local_on_close","removeEventListener","close_promise_control","safeSetTimeout","receive_promise_control","local_on_error","reject_promises","addEventListener","once","ws_wasm_abort","ws_wasm_open","rejectedPromise","ws_wasm_send","message_type","end_of_message","whole_buffer","buffer_view","newbuffer","utf8ToStringRelaxed","web_socket_send_buffering","send","bufferedAmount","pending","nextDelay","polling_check","isDone","web_socket_send_and_wait","ws_wasm_receive","receive_event_queue","receive_promise_queue","ws_wasm_close","wait_for_close_received","open_promise_used","send_promise_control","response_ptr","inner","wrap_as_cancelable","instantiate_asset","asset","behavior","virtualName","virtualPath","_loaded_files","file","desiredSize","memoryOffset","_sbrk","mono_wasm_load_bytes_into_heap_persistent","lastSlash","lastIndexOf","parentDirectory","fileName","FS_createPath","FS_createDataFile","mono_wasm_add_assembly","findIndex","element","mono_wasm_load_icu_data","mono_wasm_add_satellite_assembly","culture","actual_instantiated_assets_count","instantiate_symbols_asset","pendingAsset","pendingDownloadInternal","mono_wasm_get_loaded_files","loadedFiles","opcodeNameCache","getOpcodeName","opcode","pName","mono_jiterp_get_opcode_info","maxFailures","maxMemsetSize","maxMemmoveSize","INT32_MIN","compressedNameCache","WasmBuilder","constantSlotCount","locals","permanentFunctionTypeCount","permanentFunctionTypes","permanentFunctionTypesByShape","permanentFunctionTypesByIndex","functionTypesByIndex","permanentImportedFunctionCount","permanentImportedFunctions","nextImportIndex","functions","estimatedExportBytes","frame","traceBuf","branchTargets","Set","constantSlots","backBranchOffsets","callHandlerReturnAddresses","nextConstantSlot","backBranchTraceLevel","compressImportNames","lockImports","_assignParameterIndices","parms","BlobBuilder","cfg","Cfg","defineType","getOptions","maxModuleSize","stackSize","inSection","inFunction","functionTypeCount","functionTypes","create","functionTypesByShape","importedFunctionCount","importedFunctions","argumentCount","current","activeBlocks","useConstants","allowNullCheckOptimization","eliminateNullChecks","containsSimd","containsAtomics","_push","_pop","writeToOutput","appendULeb","getArrayView","setImportFunction","imp","func","getExceptionTag","exceptionTag","WebAssembly","Tag","getWasmImports","memory","Memory","c","getConstants","m","h","x","e","importsToEmit","getImportsToEmit","ifi","mangledName","getCompressedName","subTable","bytesGeneratedSoFar","importSize","appendU8","appendSimd","allowLoad","appendAtomic","allowNotify","appendU32","appendF32","appendF64","appendBoundaryValue","sign","appendLeb","appendLebRef","signed","appendBytes","appendName","ip","ip_const","i32_const","ptr_const","base","i52_const","v128_const","local","isZero","parameters","permanent","shape","tup","generateTypeSection","beginSection","parameterCount","endSection","getImportedFunctionTable","imports","f","v","sort","lhs","rhs","_generateImportSection","includeFunctionTable","enableWasmEh","typeIndex","getTypeIndex","defineImportedFunction","functionTypeName","table","getWasmFunctionTable","markImportAsUsed","defineFunction","generator","rec","typeName","export","blob","emitImportsAndFunctions","exportCount","beginFunction","endFunction","call_indirect","callImport","_assignLocalIndices","counts","localGroupCount","ty","offi64","offf32","offf64","offv128","tk","localBaseIndex","endBlock","appendMemarg","alignPower","lea","ptr1","fullCapacity","suppressDeepStackError","textBuf","encoder","TextEncoder","mono_jiterp_write_number_unaligned","appendI32","bytesWritten","mono_jiterp_encode_leb_signed_boundary","mono_jiterp_encode_leb52","mono_jiterp_encode_leb64_ref","copyWithin","actualCount","singleChar","encodeInto","written","ch","builder","segments","backBranchTargets","lastSegmentEnd","overheadBytes","blockStack","backDispatchOffsets","dispatchTable","observedBackBranchTargets","trace","initialize","startOfBody","lastSegmentStartIp","firstOpcodeIp","entry","entryIp","enterSizeU16","appendBlob","entryBlob","startBranchBlock","isBackBranchTarget","branch","isBackward","branchType","add","from","jumpTable","targets","fallthrough","emitBlob","segment","generate","indexInStack","shift","modifyCounter","fallthroughIndex","lookupTarget","disp","successfulBackBranch","exitIp","isConditional","append_bailout","wasmTable","simdFallbackCounters","_now","bind","append_profiler_event","event_name","countBailouts","traceIndex","append_exit","opcodeCounter","getMemberOffset","monitoringLongDistance","addWasmFunctionPointer","mono_jiterp_allocate_table_entry","try_append_memset_fast","localOffset","destOnStack","destLocal","enableSimd","sizeofV128","localCount","append_memset_dest","try_append_memmove_fast","destLocalOffset","srcLocalOffset","addressesOnStack","srcLocal","destOffset","srcOffset","loadOp","storeOp","append_memmove_dest_src","recordFailure","applyOptions","enableTraces","enableInterpEntry","enableJitCall","memberOffsets","member","cached","mono_jiterp_get_member_offset","getRawCwrap","opcodeTableCache","getOpcodeTableValue","mono_jiterp_get_opcode_value_table_entry","importDef","observedTaintedZeroPage","isZeroPageReserved","mono_wasm_is_zero_page_reserved","optionNames","enableBackwardBranches","enableCallResume","enableAtomics","zeroPageOptimization","cprop","enableStats","disableHeuristic","estimateHeat","dumpTraces","noExitBackwardBranches","directJitCalls","minimumTraceValue","minimumTraceHitCount","monitoringPeriod","monitoringShortDistance","monitoringMaxAveragePenalty","backBranchBoost","jitCallHitCount","jitCallFlushThreshold","interpEntryHitCount","interpEntryFlushThreshold","wasmBytesLimit","tableSize","aotTableSize","maxSwitchSize","optionsVersion","optionTable","mono_jiterp_parse_option","getCounter","counter","mono_jiterp_get_counter","delta","mono_jiterp_modify_counter","currentVersion","mono_jiterp_get_options_version","mono_jiterp_get_option_as_int","updateOptions","jiterpreter_allocate_table","fillValue","firstIndex","lastIndex","mono_jiterp_initialize_table","jiterpreter_tables_allocated","BailoutReasonNames","SimdInfo","ldcTable","floatToIntTable","unopTable","intrinsicFpBinops","binopTable","relopbranchTable","mathIntrinsicTable","xchgTable","cmpxchgTable","simdCreateSizes","simdCreateLoadOps","simdCreateStoreOps","simdShiftTable","simdExtractTable","simdReplaceTable","simdLoadTable","simdStoreTable","bitmaskTable","createScalarTable","getArgU16","indexPlusOne","getArgI16","getArgU32","getArgI32","get_imethod","get_imethod_data","pData","sizeOfDataItem","get_imethod_clause_data_offset","is_backward_branch_target","backwardBranchTable","knownConstants","get_known_constant","isAddressTaken","get_known_constant_value","kc","getOpcodeLengthU16","notNullSince","cknullOffset","eraseInferredState","invalidate_local","invalidate_local_range","append_branch_target_block","computeMemoryAlignment","opcodeOrPrefix","simdOpcode","alignment","try_append_ldloc_cprop","dryRun","requireNonzero","knownConstant","append_ldloca","append_ldloc","append_stloc_tail","bytesInvalidated","append_memset_local","append_memmove_local_local","sourceLocalOffset","mono_jiterp_is_imethod_var_address_taken","append_ldloc_cknull","leaveOnStack","emit_ldc","storeType","tableEntry","mono_wasm_get_f32_unaligned","getArgF32","mono_wasm_get_f64_unaligned","getArgF64","emit_mov","emit_fieldop","isLoad","objectOffset","fieldOffset","notNull","setter","getter","klass","emit_sfieldop","pVtable","pStaticData","append_vtable_initialize","emit_binop","lhsLoadOp","rhsLoadOp","lhsVar","rhsVar","operandsCached","intrinsicFpBinop","isF64","emit_math_intrinsic","is64","emit_unop","append_call_handler_store_ret_ip","retIp","clauseDataOffset","getBranchDisplacement","opArgType","payloadAddress","emit_branch","isSafepoint","displacement","isCallHandler","bbo","mono_jiterp_boost_back_branch_target","emit_relop_branch","relopBranchInfo","relop","relopInfo","operandLoadOp","isUnary","isF32","wasmOp","rhsOffset","emit_indirectop","isAddMul","isOffset","isImm","valueVarIndex","addressVarIndex","offsetVarIndex","constantOffset","constantMultiplier","addressCprop","append_getelema1","indexOffset","elementSize","ptrLocal","emit_arrayop","valueOffset","elementGetter","elementSetter","get_import_name","functionPtr","emit_simd","opname","argCount","featureWasmSimd","simple","mono_jiterp_get_simd_opcode","bitmask","append_simd_2_load","append_simd_store","emit_simd_2","isShift","extractTup","lane","laneCount","append_simd_3_load","isR8","eqOpcode","indicesOffset","constantIndices","elementCount","newShuffleVector","sizeOfV128","nativeIndices","elementIndex","j","featureWasmRelaxedSimd","emit_shuffle","emit_simd_3","rtup","stup","append_simd_4_load","indices","emit_simd_4","numElements","sizeOfStackval","importName","mono_jiterp_get_simd_intrinsic","emit_atomics","xchg","cmpxchg","emit_switch","exitOpcodeCounter","lengthU16","n","decodeSwitch","failed","sizeOfJiterpEntryData","trampBuilder","trampImports","fnTable","jitQueueTimeout","infoTable","getTrampImports","mostRecentOptions","TrampolineInfo$1","imethod","pParamTypes","unbox","hasThisReference","hasReturnValue","defaultImplementation","paramTypes","hitCount","generateName","namePtr","mono_wasm_method_get_full_name","subName","maxLength","traceName","getTraceName","getName","flush_wasm_entry_trampoline_jit_queue","jitQueue","methodPtr","mono_jiterp_tlqueue_next","pMonoObject","this_arg","started","compileStarted","rejected","threw","sp_args","need_unbox","scratchBuffer","generate_wasm_body","traceModule","wasmImports","traceInstance","Instance","exports","finished","s","buf","b","append_stackval_from_data","valueName","argIndex","rawSize","mono_jiterp_type_get_raw_value_size","mono_jiterp_get_arg_offset","offsetOfArgInfo","JIT_ARG_BYVAL","nextDisambiguateIndex","fnCache","targetCache","infosByMethod","TrampolineInfo","rmethod","cinfo","arg_offsets","catch_exceptions","catchExceptions","addr","noWrapper","mono_jiterp_get_signature_return_type","paramCount","mono_jiterp_get_signature_param_count","mono_jiterp_get_signature_has_this","mono_jiterp_get_signature_params","argOffsetCount","argOffsets","wasmNativeReturnType","wasmTypeFromCilOpcode","mono_jiterp_type_to_stind","wasmNativeSignature","monoType","mono_jiterp_type_to_ldind","enableDirect","vt","suffix","disambiguate","getWasmTableEntry","mono_interp_flush_jitcall_queue","infos","ret_sp","ftndesc","thrown","mono_jiterp_tlqueue_clear","featureWasmEh","actualParamCount","callTarget","old_sp","mono_jiterp_register_jit_call_thunk","wasmOpcodeFromCilOpcode","offsetBytes","stack_index","svalOffset","loadCilOp","loadWasmOp","storeCilOp","storeWasmOp","summaryStatCount","mostRecentTrace","traceTableIsFull","disabledOpcodes","instrumentedMethodNames","InstrumentedTraceState","eip","TraceInfo","isVerbose","mono_jiterp_get_trace_hit_count","instrumentedTraces","nextInstrumentedTraceId","abortCounts","traceInfo","traceBuilder","traceImports","mathOps1d","mathOps2d","mathOps1f","mathOps2f","recordBailout","mono_jiterp_trace_bailout","bailoutCounts","bailoutCount","getTraceImports","trace_current_ip","trace_operands","pushMathOps","mop","traceId","operand1","operand2","record_abort","mono_jiterp_adjust_abort_count","abortCount","abortReason","jiterpreter_dump_stats","concise","runtimeReady","backBranchesEmitted","backBranchesNotEmitted","nullChecksEliminated","nullChecksFused","jitCallsCompiled","directJitCallsCompiled","entryWrappersCompiled","tracesCompiled","traceCandidates","bytesGenerated","elapsedGenerationMs","elapsedCompilationMs","switchTargetsOk","switchTargetsFailed","backBranchHitRate","tracesRejected","mono_jiterp_get_rejected_trace_count","nullChecksEliminatedText","nullChecksFusedText","backBranchesEmittedText","toFixed","directJitCallsText","traces","mono_jiterp_get_trace_bailout_count","l","r","fnPtr","tuples","tablePrefix","interp_pgo_save_data","cacheKey","getCacheKey","expectedSize","mono_interp_pgo_save_table","mimeType","cache","openCache","responseToCache","put","storeCacheEntry","protectKey","cleanupCache","interp_pgo_load_data","match","getCacheEntry","mono_interp_pgo_load_table","isSecureContext","caches","cacheName","document","baseURI","location","origin","open","subtle","inputs","resourcesHash","resources","hash","assets","preferredIcuAsset","forwardConsoleLogsToWS","appendElementOnExit","interopCleanupOnExit","dumpThreadsOnNonZeroExit","logExitCode","pthreadPoolInitialSize","pthreadPoolUnusedSize","asyncFlushOnExit","remoteSources","ignorePdbLoadErrors","maxParallelDownloads","enableDownloadRetry","extensions","runtimeId","jsThreadBlockingMode","GitHash","ProductVersion","inputsJson","sha256Buffer","digest","uint8ViewOfHash","padStart","loadLazyAssembly","assemblyNameToLoad","lazyAssemblies","lazyAssembly","assemblyNameWithoutExtension","endsWith","assemblyNameToLoadDll","assemblyNameToLoadWasm","dllAsset","loadedAssemblies","includes","pdbNameToLoad","shouldLoadPdb","pdbAsset","debugLevel","isDebuggingSupported","dllBytesPromise","retrieve_asset_download","dll","pdb","pdbBytesPromise","dllBytes","pdbBytes","all","LoadLazyAssembly","load_lazy_assembly","loadSatelliteAssemblies","culturesToLoad","satelliteResources","filter","promises","reduce","previous","next","concat","bytesPromise","LoadSatelliteAssembly","load_satellite_assembly","monoObjectAsBoolOrNullUnsafe","mono_wasm_read_as_bool_or_null_unsafe","normalizeLocale","locale","toLocaleLowerCase","canonicalLocales","Intl","getCanonicalLocales","shortestDueTimeMs","clearTimeout","assembly_name","assembly_ptr","assembly_len","pdb_ptr","pdb_len","mono_wasm_runtime_is_ready","assembly_name_str","assembly_b64","pdb_b64","message_ptr","logging","debugger","buffer_len","buffer_obj","mono_wasm_fire_debugger_agent_message_with_data","sizeOfBody","presetFunctionPointer","methodFullName","pMethodName","mono_wasm_method_get_name","endOfBody","rbase16","rip16","opLengthU16","rtarget16","generateBackwardBranchTable","threshold","foundReachableBranchTarget","pLocals","retval","dest","src","ppString","pResult","pIndex","span","y","z","ppDestination","vtable","ppSource","parent","ppObj","sp1","sp2","fieldOffsetBytes","targetLocalOffsetBytes","sourceLocalOffsetBytes","expected","traceIp","o","aindex","ref","arg0","initialize_builder","ti","instrument","instrumentedTraceId","traceLocals","cknull_ptr","dest_ptr","src_ptr","memop_dest","memop_src","math_lhs32","math_rhs32","math_lhs64","math_rhs64","temp_f32","temp_f64","keep","traceValue","isFirstInstruction","isConditionallyExecuted","pruneOpcodes","hasEmittedUnreachable","prologueOpcodeCounter","conditionalOpcodeCounter","rip","spaceLeft","numSregs","numDregs","isSimdIntrins","simdIntrinsArgCount","simdIntrinsIndex","_ip","isForwardBranchTarget","skipDregInvalidation","opcodeValue","sizeOffset","constantSize","iMethod","flag","mono_jiterp_imethod_to_ftnptr","isSpecialInterface","mono_jiterp_is_special_interface","bailoutOnFailure","canDoFastCheck","elementClassOffset","elementClass","ra","isI64","limit","tempLocal","isI32","multiplier","firstDreg","stmtText","firstSreg","generateWasmBody","desc","generate_wasm","mono_jiterp_tlqueue_add","defaultImplementationFn","tableId","existing","jitQueueLength","ibm","thunkIndex","thunk","haveTag","Exception","is","getArg","mono_jiterp_begin_catch","mono_jiterp_end_catch","mono_wasm_profiler_free_method","mono_jiterp_free_method_data_interp_entry","infoArray","mono_jiterp_free_method_data_jit_call","chars","mono_wasm_method_get_name_ex","log_domain_ptr","log_level_ptr","fatal","user_data","isFatal","domain","dataPtr","log_level","messageWithStack","exitReason","log","entrypoint_method_token","mainAssemblyName","crypto","getRandomValues","memoryView","needsCopy","targetBuffer","targetBatch","mono_wasm_process_current_pid","js_function_name","functionNameOffset","functionNameLength","get_signature_function_name","js_module_name","moduleNameOffset","get_signature_module_name","function_handle","get_signature_handle","function_name","mono_wasm_lookup_js_import","wrapped_fn","bind_js_import","normalize_exception","bound_function_js_handle","mono_wasm_invoke_js_function_impl","receiver_should_free","arg_handle","arg_value","mono_wasm_resolve_or_reject_promise_impl","task_holder_gc_handle","mono_wasm_cancel_promise_impl","cultureLength","localeLength","dst","dstMaxLength","dstLength","localeNameOriginal","localeName","cultureName","localeParts","languageName","regionName","region","DisplayNames","of","language","RangeError","localeInfo","LanguageName","RegionName","urlPtr","ds_rt_websocket_create","client_socket","bytes_to_write","ds_rt_websocket_send","ds_rt_websocket_poll","bytes_to_read","ds_rt_websocket_recv","ds_rt_websocket_close","mono_run_main_and_exit","main_assembly_name","mono_run_main","applicationArguments","argv","allRuntimeArguments","main_argc","main_argv","setValue","mono_wasm_strdup","mono_wasm_set_main_args","interval","setInterval","clearInterval","runtimeKeepalivePush","program_args","CallEntrypoint","call_entry_point","runtimeKeepalivePop","mono_wasm_exit","reasonString","pid","timeOrigin","configureRuntimeStartup","out","print","printErr","nodeCrypto","webcrypto","randomBytes","init_polyfills_async","configureEmscriptenStartup","path","mainScriptUrlOrBlob","scriptUrl","userInstantiateWasm","instantiateWasm","userPreInit","preInit","userPreRun","preRun","userpostRun","postRun","userOnRuntimeInitialized","onRuntimeInitialized","callback","successCallback","instance","afterConfigLoaded","addRunDependency","simd","relaxedSimd","exceptions","wasmEnableSIMD","wasmEnableEH","ensureUsedWasmFeatures","env","indexToNameMap","shortName","stub_fn","runtime_idx","realFn","replace_linker_placeholders","compiledModule","wasmCompilePromise","instantiate","removeRunDependency","instantiate_wasm_module","wasmEnableThreads","fns","wf","lazyOrSkip","maybeSkip","init_c_exports","mono_wasm_profiler_init_aot","mono_wasm_profiler_init_browser_devtools","mono_wasm_exec_regression","mono_wasm_print_thread_dump","mono_wasm_pre_init_essential_async","preRunAsync","virtualWorkingDirectory","FS","cwd","wds","stat","isDir","mode","chdir","interpreterPgo","maybeSaveInterpPgoTable","interpreterPgoSaveDelay","environmentVariables","mono_wasm_setenv","runtimeOptions","option","mono_wasm_parse_runtime_options","mono_wasm_set_runtime_options","diagnosticPorts","jsReady","writeAt","sendTo","mono_wasm_init_aot_profiler","aotProfilerOptions","mono_wasm_init_devtools_profiler","logProfilerOptions","configuration","takeHeapshot","mono_wasm_profiler_init_log","corePdb","runtimeConfigProperties","runtimeConfig","configProperties","_d","_c","propertyCount","buffers","appctx_keys","appctx_values","keyPtr","valuePtr","mono_wasm_load_runtime","traceTableSize","jitCallTableSize","runAOTCompilation","interpEntryTableSize","totalSize","beforeGrow","grow","afterGrow","mono_jiterp_get_interp_entry_func","afterTables","jiterpreter_allocate_tables","mono_wasm_bindings_is_ready","TextDecoder","_mono_wasm_claim_scratch_index","mono_wasm_new_root","exports_fqn_asm","runtime_interop_module","mono_wasm_assembly_load","mono_wasm_assembly_find_class","InstallMainSynchronizationContext","init_managed_exports","bindings_init","start_runtime","actual_downloaded_assets_count","expected_downloaded_assets_count","expected_instantiated_assets_count","wait_for_all_assets","runtimeList","registerRuntime","mono_wasm_runtime_ready","dotnetDebugger","onDotnetReady","mono_wasm_after_user_runtime_initialized","onRuntimeInitializedAsync","postRunAsync","exitCode","configureWorkerStartup","initializeExports","globals","globalThisAny","exit_code","mono_wasm_dump_threads","get_dotnet_instance","jiterpreter_apply_options","jiterpreter_get_options","stringify_as_error_with_stack","tcwraps","mono_wasm_ds_exec","API","runMain","runMainAndExit","exit","setEnvironmentVariable","getAssemblyExports","setModuleImports","getConfig","invokeLibraryInitializers","setHeapB32","setHeapB8","setHeapU8","setHeapU16","setHeapU32","setHeapI8","setHeapI16","setHeapI32","setHeapI52","setHeapU52","setHeapI64Big","setHeapF32","setHeapF64","getHeapB32","getHeapB8","getHeapU8","getHeapU16","getHeapU32","getHeapI8","getHeapI16","getHeapI32","getHeapI52","getHeapU52","getHeapI64Big","getHeapF32","getHeapF64","collectCpuSamples","collectMetrics","collectGcDump","connectDSRouter","runtimeBuildInfo","productVersion","buildConfiguration","BuildConfiguration","wasmEnableExceptionHandling","getDotnetRuntime","__list","getRuntime","RuntimeList"],"mappings":"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+B,ECx+D5B,MAAMC,GAAqB,CAC9B,UACA,qBACA,YACA,uBACA,SACA,iBACA,oBACA,4BACA,gBACA,kBACA,mBACA,wBACA,eACA,WACA,SACA,OACA,QACA,cACA,sBACA,aACA,uBACA,cACA,eACA,YACA,QACA,kBACA,aACA,aACA,gBC2+BSC,GAA2B,CACpC,EAAG,CACC,mBACA,mBACA,mBACA,uBACA,sBACA,sBACA,wBACA,wBACA,wBACA,wBACA,sBACA,sBACA,sBACA,sBACA,iBACA,iBACA,iBACA,iBACA,UACA,UACA,UACA,UACA,WACA,WACA,WACA,WACA,WACA,WACA,SACA,SACA,YACA,YACA,UACA,UACA,aACA,aACA,mBACA,mBACA,SACA,aACA,YACA,YACA,YACA,YACA,aACA,YACA,YACA,YACA,YACA,wBACA,wBACA,wBACA,wBACA,QACA,QACA,QACA,QACA,QACA,QACA,oBACA,oBACA,oBACA,yBACA,yBACA,yBACA,2BACA,4BACA,2BACA,4BACA,4BACA,4BACA,4BACA,4BACA,4BACA,4BACA,4BACA,4BACA,4BACA,4BACA,4BACA,4BACA,mBACA,wBACA,wBACA,gCACA,gCACA,gCACA,gCACA,0BACA,0BACA,0BACA,0BACA,0BACA,2BAEJ,EAAG,CACC,cACA,cACA,cACA,cACA,cACA,cACA,cACA,cACA,mBACA,kBACA,wBACA,0BACA,yBACA,yBACA,oBACA,mBACA,mBACA,mBACA,mBACA,mBACA,qBACA,qBACA,qBACA,qBACA,sBACA,sBACA,sBACA,uBACA,uBACA,uBACA,uBACA,iBACA,uBACA,oBACA,oBACA,oBACA,iBACA,iBACA,iBACA,iBACA,iBACA,qBACA,qBACA,qBACA,qBACA,eACA,0BACA,kBACA,kBACA,kBACA,kBACA,kBACA,kBACA,kBACA,kBACA,kBACA,kBACA,kBACA,kBACA,YACA,QACA,QACA,QACA,QACA,QACA,QACA,aACA,aACA,aACA,aACA,aACA,aACA,aACA,aACA,aACA,aACA,aACA,WACA,WACA,QACA,cACA,cACA,cACA,cACA,yBACA,yBACA,yBACA,yBACA,sBACA,sBACA,sBACA,sBACA,SACA,YACA,QACA,SACA,iBACA,iBACA,iBACA,iBACA,iBACA,iBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,uBACA,uBACA,uBACA,uBACA,uBACA,uBACA,uBACA,uBACA,uBACA,8BACA,8BACA,8BACA,8BACA,8BACA,8BACA,8BACA,8BACA,8BACA,mCACA,mCACA,qCACA,qCACA,0BACA,0BACA,0BACA,0BACA,0BACA,0BACA,0BACA,0BACA,0BACA,0BACA,0BACA,0BACA,gBACA,gBACA,gBACA,gBACA,qBACA,qBACA,qBACA,qBACA,+BACA,QACA,QACA,QACA,QACA,QACA,QACA,QACA,QACA,QACA,QACA,QACA,QACA,mBACA,mBACA,QACA,QACA,QACA,QACA,cACA,cACA,cACA,cACA,YAEJ,EAAG,CACC,0BACA,kBACA,kBACA,kBACA,kBACA,kBACA,kBACA,YACA,mBACA,wBACA,wBACA,wBACA,wBACA,wBACA,wBACA,wBACA,0BCz7CKC,GAAuD,CAChE,GAA6B,CAAwB,GAAA,GACrD,GAA6B,CAAwB,GAAA,IAQ5CC,GAAoD,CAC7D,IAAwD,IACxD,IAAwD,IACxD,IAAwD,IACxD,IAAwD,KAG/CC,GAAsD,CAC/D,IAAiC,CAA+D,GAAA,GAAA,IAChG,IAAiC,CAA+D,IAAA,GAAA,IAChG,IAAiC,CAA+D,IAAA,GAAA,IAChG,IAAiC,CAA+D,IAAA,GAAA,IAChG,IAAiC,CAA+D,IAAA,GAAA,IAEhG,IAAiC,CAA+D,IAAA,GAAA,IAChG,IAAiC,CAA+D,IAAA,GAAA,IAChG,IAAiC,CAA+D,IAAA,GAAA,IAChG,IAAiC,CAA+D,IAAA,GAAA,IAEhG,IAAiC,CAA+D,IAAA,GAAA,IAChG,IAAiC,CAA+D,IAAA,GAAA,IAChG,IA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"} \ No newline at end of file diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/dotnet.runtime.js.map.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/dotnet.runtime.js.map.gz new file mode 100644 index 0000000..152f5df Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/dotnet.runtime.js.map.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/dotnet.runtime.peu2mfb29t.js b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/dotnet.runtime.peu2mfb29t.js new file mode 100644 index 0000000..ffa78eb --- /dev/null +++ b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/dotnet.runtime.peu2mfb29t.js @@ -0,0 +1,4 @@ +//! Licensed to the .NET Foundation under one or more agreements. +//! The .NET Foundation licenses this file to you under the MIT license. +var e="10.0.5",t="Release",n=!1;const r=[[!0,"mono_wasm_register_root","number",["number","number","string"]],[!0,"mono_wasm_deregister_root",null,["number"]],[!0,"mono_wasm_string_get_data_ref",null,["number","number","number","number"]],[!0,"mono_wasm_set_is_debugger_attached","void",["bool"]],[!0,"mono_wasm_send_dbg_command","bool",["number","number","number","number","number"]],[!0,"mono_wasm_send_dbg_command_with_parms","bool",["number","number","number","number","number","number","string"]],[!0,"mono_wasm_setenv",null,["string","string"]],[!0,"mono_wasm_parse_runtime_options",null,["number","number"]],[!0,"mono_wasm_strdup","number",["string"]],[!0,"mono_background_exec",null,[]],[!0,"mono_wasm_ds_exec",null,[]],[!0,"mono_wasm_execute_timer",null,[]],[!0,"mono_wasm_load_icu_data","number",["number"]],[!1,"mono_wasm_add_assembly","number",["string","number","number"]],[!0,"mono_wasm_add_satellite_assembly","void",["string","string","number","number"]],[!1,"mono_wasm_load_runtime",null,["number","number","number","number"]],[!0,"mono_wasm_change_debugger_log_level","void",["number"]],[!0,"mono_wasm_assembly_load","number",["string"]],[!0,"mono_wasm_assembly_find_class","number",["number","string","string"]],[!0,"mono_wasm_assembly_find_method","number",["number","string","number"]],[!0,"mono_wasm_string_from_utf16_ref","void",["number","number","number"]],[!0,"mono_wasm_intern_string_ref","void",["number"]],[!1,"mono_wasm_exit","void",["number"]],[!0,"mono_wasm_getenv","number",["string"]],[!0,"mono_wasm_set_main_args","void",["number","number"]],[()=>!ct.emscriptenBuildOptions.enableAotProfiler,"mono_wasm_profiler_init_aot","void",["string"]],[()=>!ct.emscriptenBuildOptions.enableDevToolsProfiler,"mono_wasm_profiler_init_browser_devtools","void",["string"]],[()=>!ct.emscriptenBuildOptions.enableLogProfiler,"mono_wasm_profiler_init_log","void",["string"]],[!1,"mono_wasm_exec_regression","number",["number","string"]],[!1,"mono_wasm_invoke_jsexport","void",["number","number"]],[!0,"mono_wasm_write_managed_pointer_unsafe","void",["number","number"]],[!0,"mono_wasm_copy_managed_pointer","void",["number","number"]],[!0,"mono_wasm_i52_to_f64","number",["number","number"]],[!0,"mono_wasm_u52_to_f64","number",["number","number"]],[!0,"mono_wasm_f64_to_i52","number",["number","number"]],[!0,"mono_wasm_f64_to_u52","number",["number","number"]],[!0,"mono_wasm_method_get_name","number",["number"]],[!0,"mono_wasm_method_get_name_ex","number",["number"]],[!0,"mono_wasm_method_get_full_name","number",["number"]],[!0,"mono_wasm_gc_lock","void",[]],[!0,"mono_wasm_gc_unlock","void",[]],[!0,"mono_wasm_get_i32_unaligned","number",["number"]],[!0,"mono_wasm_get_f32_unaligned","number",["number"]],[!0,"mono_wasm_get_f64_unaligned","number",["number"]],[!0,"mono_wasm_read_as_bool_or_null_unsafe","number",["number"]],[!0,"mono_jiterp_trace_bailout","void",["number"]],[!0,"mono_jiterp_get_trace_bailout_count","number",["number"]],[!0,"mono_jiterp_value_copy","void",["number","number","number"]],[!0,"mono_jiterp_get_member_offset","number",["number"]],[!0,"mono_jiterp_encode_leb52","number",["number","number","number"]],[!0,"mono_jiterp_encode_leb64_ref","number",["number","number","number"]],[!0,"mono_jiterp_encode_leb_signed_boundary","number",["number","number","number"]],[!0,"mono_jiterp_write_number_unaligned","void",["number","number","number"]],[!0,"mono_jiterp_type_is_byref","number",["number"]],[!0,"mono_jiterp_get_size_of_stackval","number",[]],[!0,"mono_jiterp_parse_option","number",["string"]],[!0,"mono_jiterp_get_options_as_json","number",[]],[!0,"mono_jiterp_get_option_as_int","number",["string"]],[!0,"mono_jiterp_get_options_version","number",[]],[!0,"mono_jiterp_adjust_abort_count","number",["number","number"]],[!0,"mono_jiterp_register_jit_call_thunk","void",["number","number"]],[!0,"mono_jiterp_type_get_raw_value_size","number",["number"]],[!0,"mono_jiterp_get_signature_has_this","number",["number"]],[!0,"mono_jiterp_get_signature_return_type","number",["number"]],[!0,"mono_jiterp_get_signature_param_count","number",["number"]],[!0,"mono_jiterp_get_signature_params","number",["number"]],[!0,"mono_jiterp_type_to_ldind","number",["number"]],[!0,"mono_jiterp_type_to_stind","number",["number"]],[!0,"mono_jiterp_imethod_to_ftnptr","number",["number"]],[!0,"mono_jiterp_debug_count","number",[]],[!0,"mono_jiterp_get_trace_hit_count","number",["number"]],[!0,"mono_jiterp_get_polling_required_address","number",[]],[!0,"mono_jiterp_get_rejected_trace_count","number",[]],[!0,"mono_jiterp_boost_back_branch_target","void",["number"]],[!0,"mono_jiterp_is_imethod_var_address_taken","number",["number","number"]],[!0,"mono_jiterp_get_opcode_value_table_entry","number",["number"]],[!0,"mono_jiterp_get_simd_intrinsic","number",["number","number"]],[!0,"mono_jiterp_get_simd_opcode","number",["number","number"]],[!0,"mono_jiterp_get_arg_offset","number",["number","number","number"]],[!0,"mono_jiterp_get_opcode_info","number",["number","number"]],[!0,"mono_wasm_is_zero_page_reserved","number",[]],[!0,"mono_jiterp_is_special_interface","number",["number"]],[!0,"mono_jiterp_initialize_table","void",["number","number","number"]],[!0,"mono_jiterp_allocate_table_entry","number",["number"]],[!0,"mono_jiterp_get_interp_entry_func","number",["number"]],[!0,"mono_jiterp_get_counter","number",["number"]],[!0,"mono_jiterp_modify_counter","number",["number","number"]],[!0,"mono_jiterp_tlqueue_next","number",["number"]],[!0,"mono_jiterp_tlqueue_add","number",["number","number"]],[!0,"mono_jiterp_tlqueue_clear","void",["number"]],[!0,"mono_jiterp_begin_catch","void",["number"]],[!0,"mono_jiterp_end_catch","void",[]],[!0,"mono_interp_pgo_load_table","number",["number","number"]],[!0,"mono_interp_pgo_save_table","number",["number","number"]],[()=>!ct.emscriptenBuildOptions.enableEventPipe&&!ct.emscriptenBuildOptions.enableDevToolsProfiler,"mono_jiterp_prof_enter","void",["number","number"]],[()=>!ct.emscriptenBuildOptions.enableEventPipe&&!ct.emscriptenBuildOptions.enableDevToolsProfiler,"mono_jiterp_prof_samplepoint","void",["number","number"]],[()=>!ct.emscriptenBuildOptions.enableEventPipe&&!ct.emscriptenBuildOptions.enableDevToolsProfiler,"mono_jiterp_prof_leave","void",["number","number"]]],o={},s=o,a=o,i=["void","number",null];function c(e,t,n,r){let o=void 0===r&&i.indexOf(t)>=0&&(!n||n.every((e=>i.indexOf(e)>=0)))&&Ke.wasmExports?Ke.wasmExports[e]:void 0;if(o&&n&&o.length!==n.length&&(He(`argument count mismatch for cwrap ${e}`),o=void 0),"function"!=typeof o&&(o=Ke.cwrap(e,t,n,r)),"function"!=typeof o)throw new Error(`cwrap ${e} not found or not a function`);return o}const l=0,p=0,u=0,d=BigInt("9223372036854775807"),f=BigInt("-9223372036854775808");function _(e){return Ke._malloc(e)>>>0}function m(e){Ke._free(e)}function h(e,t,n){if(!Number.isSafeInteger(e))throw new Error(`Assert failed: Value is not an integer: ${e} (${typeof e})`);if(!(e>=t&&e<=n))throw new Error(`Assert failed: Overflow: value ${e} is out of ${t} ${n} range`)}function g(e,t){K().fill(0,e,e+t)}function b(e,t){const n=!!t;"number"==typeof t&&h(t,0,1),Ke.HEAP32[e>>>2]=n?1:0}function y(e,t){const n=!!t;"number"==typeof t&&h(t,0,1),Ke.HEAPU8[e]=n?1:0}function w(e,t){h(t,0,255),Ke.HEAPU8[e]=t}function k(e,t){h(t,0,65535),Ke.HEAPU16[e>>>1]=t}function S(e,t){h(t,0,4294967295),Ke.HEAPU32[e>>>2]=t}function v(e,t){h(t,-128,127),Ke.HEAP8[e]=t}function U(e,t){h(t,-32768,32767),Ke.HEAP16[e>>>1]=t}function T(e,t){h(t,-2147483648,2147483647),Ke.HEAP32[e>>>2]=t}function E(e){if(0!==e)switch(e){case 1:throw new Error("value was not an integer");case 2:throw new Error("value out of range");default:throw new Error("unknown internal error")}}function x(e,t){if(!Number.isSafeInteger(t))throw new Error(`Assert failed: Value is not a safe integer: ${t} (${typeof t})`);E(o.mono_wasm_f64_to_i52(e,t))}function I(e,t){if(!Number.isSafeInteger(t))throw new Error(`Assert failed: Value is not a safe integer: ${t} (${typeof t})`);if(!(t>=0))throw new Error("Assert failed: Can't convert negative Number into UInt64");E(o.mono_wasm_f64_to_u52(e,t))}function A(e,t){if("bigint"!=typeof t)throw new Error(`Assert failed: Value is not an bigint: ${t} (${typeof t})`);if(!(t>=f&&t<=d))throw new Error(`Assert failed: Overflow: value ${t} is out of ${f} ${d} range`);Ke.HEAP64[e>>>3]=t}function j(e,t){if("number"!=typeof t)throw new Error(`Assert failed: Value is not a Number: ${t} (${typeof t})`);Ke.HEAPF32[e>>>2]=t}function $(e,t){if("number"!=typeof t)throw new Error(`Assert failed: Value is not a Number: ${t} (${typeof t})`);Ke.HEAPF64[e>>>3]=t}let L=!0;function R(e){const t=Ke.HEAPU32[e>>>2];return t>1&&L&&(L=!1,We(`getB32: value at ${e} is not a boolean, but a number: ${t}`)),!!t}function B(e){return!!Ke.HEAPU8[e]}function N(e){return Ke.HEAPU8[e]}function O(e){return Ke.HEAPU16[e>>>1]}function C(e){return Ke.HEAPU32[e>>>2]}function D(e,t){return e[t>>>2]}function F(e){return o.mono_wasm_get_i32_unaligned(e)}function P(e){return o.mono_wasm_get_i32_unaligned(e)>>>0}function M(e){return Ke.HEAP8[e]}function z(e){return Ke.HEAP16[e>>>1]}function V(e){return Ke.HEAP32[e>>>2]}function W(e){const t=o.mono_wasm_i52_to_f64(e,ct._i52_error_scratch_buffer);return E(V(ct._i52_error_scratch_buffer)),t}function H(e){const t=o.mono_wasm_u52_to_f64(e,ct._i52_error_scratch_buffer);return E(V(ct._i52_error_scratch_buffer)),t}function q(e){return Ke.HEAP64[e>>>3]}function G(e){return Ke.HEAPF32[e>>>2]}function J(e){return Ke.HEAPF64[e>>>3]}function X(){return Ke.HEAP8}function Q(){return Ke.HEAP16}function Y(){return Ke.HEAP32}function Z(){return Ke.HEAP64}function K(){return Ke.HEAPU8}function ee(){return Ke.HEAPU16}function te(){return Ke.HEAPU32}function ne(){return Ke.HEAPF32}function re(){return Ke.HEAPF64}function oe(e,t){return e>>>t}let se=!1;function ae(){if(se)throw new Error("GC is already locked");se=!0}function ie(){if(!se)throw new Error("GC is not locked");se=!1}const ce=8192;let le=null,pe=null,ue=0;const de=[],fe=[];function _e(e,t){if(e<=0)throw new Error("capacity >= 1");const n=4*(e|=0),r=_(n);if(r%4!=0)throw new Error("Malloc returned an unaligned offset");return g(r,n),new me(r,e,!0,t)}class me{constructor(e,t,n,r){const s=4*t;this.__offset=e,this.__offset32=e>>>2,this.__count=t,this.length=t,this.__handle=o.mono_wasm_register_root(e,s,r||"noname"),this.__ownsAllocation=n}_throw_index_out_of_range(){throw new Error("index out of range")}_check_in_range(e){(e>=this.__count||e<0)&&this._throw_index_out_of_range()}get_address(e){return this._check_in_range(e),this.__offset+4*e}get_address_32(e){return this._check_in_range(e),this.__offset32+e}get(e){this._check_in_range(e);const t=this.get_address_32(e);return te()[t]}set(e,t){const n=this.get_address(e);return o.mono_wasm_write_managed_pointer_unsafe(n,t),t}copy_value_from_address(e,t){const n=this.get_address(e);o.mono_wasm_copy_managed_pointer(n,t)}_unsafe_get(e){return te()[this.__offset32+e]}_unsafe_set(e,t){const n=this.__offset+e;o.mono_wasm_write_managed_pointer_unsafe(n,t)}clear(){this.__offset&&g(this.__offset,4*this.__count)}release(){this.__offset&&this.__ownsAllocation&&(o.mono_wasm_deregister_root(this.__offset),g(this.__offset,4*this.__count),m(this.__offset)),this.__handle=this.__offset=this.__count=this.__offset32=0}toString(){return`[root buffer @${this.get_address(0)}, size ${this.__count} ]`}}class he{constructor(e,t){this.__buffer=e,this.__index=t}get_address(){return this.__buffer.get_address(this.__index)}get_address_32(){return this.__buffer.get_address_32(this.__index)}get address(){return this.__buffer.get_address(this.__index)}get(){return this.__buffer._unsafe_get(this.__index)}set(e){const t=this.__buffer.get_address(this.__index);return o.mono_wasm_write_managed_pointer_unsafe(t,e),e}copy_from(e){const t=e.address,n=this.address;o.mono_wasm_copy_managed_pointer(n,t)}copy_to(e){const t=this.address,n=e.address;o.mono_wasm_copy_managed_pointer(n,t)}copy_from_address(e){const t=this.address;o.mono_wasm_copy_managed_pointer(t,e)}copy_to_address(e){const t=this.address;o.mono_wasm_copy_managed_pointer(e,t)}get value(){return this.get()}set value(e){this.set(e)}valueOf(){throw new Error("Implicit conversion of roots to pointers is no longer supported. Use .value or .address as appropriate")}clear(){const e=this.__buffer.get_address_32(this.__index);te()[e]=0}release(){if(!this.__buffer)throw new Error("No buffer");var e;de.length>128?(void 0!==(e=this.__index)&&(le.set(e,0),pe[ue]=e,ue++),this.__buffer=null,this.__index=0):(this.set(0),de.push(this))}toString(){return`[root @${this.address}]`}}class ge{constructor(e){this.__external_address=0,this.__external_address_32=0,this._set_address(e)}_set_address(e){this.__external_address=e,this.__external_address_32=e>>>2}get address(){return this.__external_address}get_address(){return this.__external_address}get_address_32(){return this.__external_address_32}get(){return te()[this.__external_address_32]}set(e){return o.mono_wasm_write_managed_pointer_unsafe(this.__external_address,e),e}copy_from(e){const t=e.address,n=this.__external_address;o.mono_wasm_copy_managed_pointer(n,t)}copy_to(e){const t=this.__external_address,n=e.address;o.mono_wasm_copy_managed_pointer(n,t)}copy_from_address(e){const t=this.__external_address;o.mono_wasm_copy_managed_pointer(t,e)}copy_to_address(e){const t=this.__external_address;o.mono_wasm_copy_managed_pointer(e,t)}get value(){return this.get()}set value(e){this.set(e)}valueOf(){throw new Error("Implicit conversion of roots to pointers is no longer supported. Use .value or .address as appropriate")}clear(){te()[this.__external_address>>>2]=0}release(){fe.length<128&&fe.push(this)}toString(){return`[external root @${this.address}]`}}const be=new Map,ye="";let we;const ke=new Map;let Se,ve,Ue,Te,Ee,xe=0,Ie=null,Ae=0;function je(e){if(void 0===Te){const t=Ke.lengthBytesUTF8(e),n=new Uint8Array(t);return Ke.stringToUTF8Array(e,n,0,t),n}return Te.encode(e)}function $e(e){const t=Ke.lengthBytesUTF8(e)+1,n=_(t),r=K().subarray(n,n+t);return Ke.stringToUTF8Array(e,r,0,t),r[t-1]=0,n}function Le(e){const t=K();return function(e,t,n){const r=t+n;let o=t;for(;e[o]&&!(o>=r);)++o;if(o-t<=16)return Ke.UTF8ArrayToString(e,t,n);if(void 0===Ue)return Ke.UTF8ArrayToString(e,t,n);const s=Fe(e,t,o);return Ue.decode(s)}(t,e,t.length-e)}function Re(e,t){if(Se){const n=Fe(K(),e,t);return Se.decode(n)}return function(e,t){let n="";const r=ee();for(let o=e;o>>1];n+=String.fromCharCode(e)}return n}(e,t)}function Be(e,t,n){const r=ee(),o=n.length;for(let c=0;c>>1]=i,!((e+=2)>=t));c++);var s,a,i}function Ne(e){const t=2*(e.length+1),n=_(t);return g(n,2*e.length),Be(n,n+t,e),n}function Oe(e){if(e.value===p)return null;const t=we+0,n=we+4,r=we+8;let s;o.mono_wasm_string_get_data_ref(e.address,t,n,r);const a=te(),i=D(a,n),c=D(a,t),l=D(a,r);if(l&&(s=ke.get(e.value)),void 0===s&&(i&&c?(s=Re(c,c+i),l&&ke.set(e.value,s)):s=ye),void 0===s)throw new Error(`internal error when decoding string at location ${e.value}`);return s}function Ce(e,t){let n;if("symbol"==typeof e?(n=e.description,"string"!=typeof n&&(n=Symbol.keyFor(e)),"string"!=typeof n&&(n="")):"string"==typeof e&&(n=e),"string"!=typeof n)throw new Error(`Argument to stringToInternedMonoStringRoot must be a string but was ${e}`);if(0===n.length&&xe)return void t.set(xe);const r=be.get(n);r?t.set(r):(De(n,t),function(e,t,n){if(!t.value)throw new Error("null pointer passed to _store_string_in_intern_table");Ae>=8192&&(Ie=null),Ie||(Ie=_e(8192,"interned strings"),Ae=0);const r=Ie,s=Ae++;if(o.mono_wasm_intern_string_ref(t.address),!t.value)throw new Error("mono_wasm_intern_string_ref produced a null pointer");be.set(e,t.value),ke.set(t.value,e),0!==e.length||xe||(xe=t.value),r.copy_value_from_address(s,t.address)}(n,t))}function De(e,t){const n=2*(e.length+1),r=_(n);Be(r,r+n,e),o.mono_wasm_string_from_utf16_ref(r,e.length,t.address),m(r)}function Fe(e,t,n){return e.buffer,e.subarray(t,n)}function Pe(e){if(e===p)return null;Ee.value=e;const t=Oe(Ee);return Ee.value=p,t}let Me="MONO_WASM: ";function ze(e){if(ct.diagnosticTracing){const t="function"==typeof e?e():e;console.debug(Me+t)}}function Ve(e,...t){console.info(Me+e,...t)}function We(e,...t){console.warn(Me+e,...t)}function He(e,...t){if(t&&t.length>0&&t[0]&&"object"==typeof t[0]){if(t[0].silent)return;if(t[0].toString)return void console.error(Me+e,t[0].toString())}console.error(Me+e,...t)}const qe=new Map;let Ge;const Je=[];function Xe(e){try{if(Ye(),0==qe.size)return e;const t=e;for(let n=0;n{const n=t.find((e=>"object"==typeof e&&void 0!==e.replaceSection));if(void 0===n)return e;const r=n.funcNum,o=n.replaceSection,s=qe.get(Number(r));return void 0===s?e:e.replace(o,`${s} (${o})`)}));if(r!==t)return r}return t}catch(t){return console.debug(`failed to symbolicate: ${t}`),e}}function Qe(e){let t;return t="string"==typeof e?e:null==e||void 0===e.stack?(new Error).stack+"":e.stack+"",Xe(t)}function Ye(){if(!Ge)return;Je.push(/at (?[^:()]+:wasm-function\[(?\d+)\]:0x[a-fA-F\d]+)((?![^)a-fA-F\d])|$)/),Je.push(/(?:WASM \[[\da-zA-Z]+\], (?function #(?[\d]+) \(''\)))/),Je.push(/(?[a-z]+:\/\/[^ )]*:wasm-function\[(?\d+)\]:0x[a-fA-F\d]+)/),Je.push(/(?<[^ >]+>[.:]wasm-function\[(?[0-9]+)\])/);const e=Ge;Ge=void 0;try{e.split(/[\r\n]/).forEach((e=>{const t=e.split(/:/);t.length<2||(t[1]=t.splice(1).join(":"),qe.set(Number(t[0]),t[1]))})),lt.diagnosticTracing&&ze(`Loaded ${qe.size} symbols`)}catch(e){We(`Failed to load symbol map: ${e}`)}}function Ze(){return Ye(),[...qe.values()]}let Ke,et;const tt="object"==typeof process&&"object"==typeof process.versions&&"string"==typeof process.versions.node,nt="function"==typeof importScripts,rt=nt&&"undefined"!=typeof dotnetSidecar,ot=nt&&!rt,st="object"==typeof window||nt&&!tt,at=!st&&!tt;let it=null,ct=null,lt=null,pt=null,ut=!1;function dt(e,t){ct.emscriptenBuildOptions=t,e.isPThread,ct.quit=e.quit_,ct.ExitStatus=e.ExitStatus,ct.getMemory=e.getMemory,ct.getWasmIndirectFunctionTable=e.getWasmIndirectFunctionTable,ct.updateMemoryViews=e.updateMemoryViews}function ft(e){if(ut)throw new Error("Runtime module already loaded");ut=!0,Ke=e.module,et=e.internal,ct=e.runtimeHelpers,lt=e.loaderHelpers,pt=e.diagnosticHelpers,it=e.api;const t={gitHash:"a612c2a1056fe3265387ae3ff7c94eba1505caf9",coreAssetsInMemory:_t(),allAssetsInMemory:_t(),dotnetReady:_t(),afterInstantiateWasm:_t(),beforePreInit:_t(),afterPreInit:_t(),afterPreRun:_t(),beforeOnRuntimeInitialized:_t(),afterMonoStarted:_t(),afterDeputyReady:_t(),afterIOStarted:_t(),afterOnRuntimeInitialized:_t(),afterPostRun:_t(),nativeAbort:e=>{throw e||new Error("abort")},nativeExit:e=>{throw new Error("exit:"+e)}};Object.assign(ct,t),Object.assign(e.module.config,{}),Object.assign(e.api,{Module:e.module,...e.module}),Object.assign(e.api,{INTERNAL:e.internal})}function _t(e,t){return lt.createPromiseController(e,t)}function mt(e,t){if(e)return;const n="Assert failed: "+("function"==typeof t?t():t),r=new Error(n);He(n,r),ct.nativeAbort(r)}function ht(e,t,n){const r=function(e,t,n){let r,o=0;r=e.length-o;const s={read:function(){if(o>=r)return null;const t=e[o];return o+=1,t}};return Object.defineProperty(s,"eof",{get:function(){return o>=r},configurable:!0,enumerable:!0}),s}(e);let o="",s=0,a=0,i=0,c=0,l=0,p=0;for(;s=r.read(),a=r.read(),i=r.read(),null!==s;)null===a&&(a=0,l+=1),null===i&&(i=0,l+=1),p=s<<16|a<<8|i,c=(16777215&p)>>18,o+=gt[c],c=(262143&p)>>12,o+=gt[c],l<2&&(c=(4095&p)>>6,o+=gt[c]),2===l?o+="==":1===l?o+="=":(c=63&p,o+=gt[c]);return o}const gt=["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","+","/"],bt=new Map;bt.remove=function(e){const t=this.get(e);return this.delete(e),t};let yt,wt,kt,St={},vt=0,Ut=-1;function mono_wasm_fire_debugger_agent_message_with_data_to_pause(e){console.assert(!0,`mono_wasm_fire_debugger_agent_message_with_data ${e}`);debugger}function Tt(e){e.length>Ut&&(yt&&m(yt),Ut=Math.max(e.length,Ut,256),yt=_(Ut));const t=atob(e),n=K();for(let e=0;ee.value)),e;if(void 0===t.dimensionsDetails||1===t.dimensionsDetails.length)return e=t.items.map((e=>e.value)),e}const n={};return Object.keys(t).forEach((e=>{const r=t[e];void 0!==r.get?Object.defineProperty(n,r.name,{get:()=>xt(r.get.id,r.get.commandSet,r.get.command,r.get.buffer),set:function(e){return Et(r.set.id,r.set.commandSet,r.set.command,r.set.buffer,r.set.length,r.set.valtype,e),!0}}):void 0!==r.set?Object.defineProperty(n,r.name,{get:()=>r.value,set:function(e){return Et(r.set.id,r.set.commandSet,r.set.command,r.set.buffer,r.set.length,r.set.valtype,e),!0}}):n[r.name]=r.value})),n}(t,n);const o=null!=e.arguments?e.arguments.map((e=>JSON.stringify(e.value))):[],s=`const fn = ${e.functionDeclaration}; return fn.apply(proxy, [${o}]);`,a=new Function("proxy",s)(r);if(void 0===a)return{type:"undefined"};if(Object(a)!==a)return"object"==typeof a&&null==a?{type:typeof a,subtype:`${a}`,value:null}:{type:typeof a,description:`${a}`,value:`${a}`};if(e.returnByValue&&null==a.subtype)return{type:"object",value:a};if(Object.getPrototypeOf(a)==Array.prototype){const e=Ot(a);return{type:"object",subtype:"array",className:"Array",description:`Array(${a.length})`,objectId:e}}return void 0!==a.value||void 0!==a.subtype?a:a==r?{type:"object",className:"Object",description:"Object",objectId:t}:{type:"object",className:"Object",description:"Object",objectId:Ot(a)}}function Nt(e,t={}){return function(e,t){if(!(e in St))throw new Error(`Could not find any object with id ${e}`);const n=St[e],r=Object.getOwnPropertyDescriptors(n);t.accessorPropertiesOnly&&Object.keys(r).forEach((e=>{void 0===r[e].get&&Reflect.deleteProperty(r,e)}));const o=[];return Object.keys(r).forEach((e=>{let t;const n=r[e];t="object"==typeof n.value?Object.assign({name:e},n):void 0!==n.value?{name:e,value:Object.assign({type:typeof n.value,description:""+n.value},n)}:void 0!==n.get?{name:e,get:{className:"Function",description:`get ${e} () {}`,type:"function"}}:{name:e,value:{type:"symbol",value:"",description:""}},o.push(t)})),{__value_as_json_string__:JSON.stringify(o)}}(`dotnet:cfo_res:${e}`,t)}function Ot(e){const t="dotnet:cfo_res:"+vt++;return St[t]=e,t}function Ct(e){e in St&&delete St[e]}let Dt=!1;function Ft(){if(Dt)return globalThis.performance.now()}function Pt(e,t,n){if(Dt&&e){const r=st?{start:e}:{startTime:e},o=n?`${t}${n} `:t;globalThis.performance.measure(o,r)}}const Mt=new Map;function zt(e,t,n){if(0===t||1===t||2===t||26===t)return;let r,o,s,a;o=to(Cn(e)),s=to(Dn(e)),a=to(Fn(e));const i=On(e);r=Vt(i),19===t&&(t=i);const c=Vt(t),l=Cn(e),p=n*In;return e=>c(e+p,l,r,o,s,a)}function Vt(e){if(0===e||1===e)return;const t=vn.get(e);return t&&"function"==typeof t||mt(!1,`ERR41: Unknown converter for type ${e}. ${Kr}`),t}function Wt(e){return 0==zn(e)?null:function(e){return e||mt(!1,"Null arg"),B(e)}(e)}function Ht(e){return 0==zn(e)?null:function(e){return e||mt(!1,"Null arg"),N(e)}(e)}function qt(e){return 0==zn(e)?null:function(e){return e||mt(!1,"Null arg"),O(e)}(e)}function Gt(e){return 0==zn(e)?null:function(e){return e||mt(!1,"Null arg"),z(e)}(e)}function Jt(e){return 0==zn(e)?null:function(e){return e||mt(!1,"Null arg"),V(e)}(e)}function Xt(e){return 0==zn(e)?null:function(e){return e||mt(!1,"Null arg"),J(e)}(e)}function Qt(e){return 0==zn(e)?null:function(e){return e||mt(!1,"Null arg"),q(e)}(e)}function Yt(e){return 0==zn(e)?null:function(e){return e||mt(!1,"Null arg"),G(e)}(e)}function Zt(e){return 0==zn(e)?null:function(e){return e||mt(!1,"Null arg"),J(e)}(e)}function Kt(e){return 0==zn(e)?null:Hn(e)}function en(){return null}function tn(e){return 0===zn(e)?null:function(e){e||mt(!1,"Null arg");const t=J(e);return new Date(t)}(e)}function nn(e,t,n,r,o,s){if(0===zn(e))return null;const a=Zn(e);let i=qr(a);return null==i&&(i=(e,t,i)=>function(e,t,n,r,o,s,a,i){lt.assert_runtime_running();const c=Ke.stackSave();try{const c=$n(6),l=Ln(c,2);if(Wn(l,14),Kn(l,e),s&&s(Ln(c,3),t),a&&a(Ln(c,4),n),i&&i(Ln(c,5),r),kn(yn.CallDelegate,c),o)return o(Ln(c,1))}finally{lt.is_runtime_running()&&Ke.stackRestore(c)}}(a,e,t,i,n,r,o,s),i.dispose=()=>{i.isDisposed||(i.isDisposed=!0,Vr(i,a))},i.isDisposed=!1,zr(i,a)),i}class rn{constructor(e,t){this.promise=e,this.resolve_or_reject=t}}function on(e,t,n){const r=zn(e);30==r&&mt(!1,"Unexpected Task type: TaskPreCreated");const o=cn(e,r,n);if(!1!==o)return o;const s=Qn(e),a=ln(n);return function(e,t){hr(),xr[0-t]=e,Object.isExtensible(e)&&(e[Cr]=t)}(a,s),a.promise}function sn(e,t,n){const r=ln(n);return Yn(e,Pr(r)),Wn(e,30),r.promise}function an(e,t,n){const r=Ln(e,1),o=zn(r);if(30===o)return n;Mr(Pr(n));const s=cn(r,o,t);return!1===s&&mt(!1,`Expected synchronous result, got: ${o}`),s}function cn(e,t,n){if(0===t)return null;if(29===t)return Promise.reject(un(e));if(28===t){const t=Vn(e);if(1===t)return Promise.resolve();Wn(e,t),n||(n=vn.get(t)),n||mt(!1,`Unknown sub_converter for type ${t}. ${Kr}`);const r=n(e);return Promise.resolve(r)}return!1}function ln(e){const{promise:t,promise_control:n}=lt.createPromiseController();return new rn(t,((t,r,o)=>{if(29===t){const e=un(o);n.reject(e)}else if(28===t){const t=zn(o);if(1===t)n.resolve(void 0);else{e||(e=vn.get(t)),e||mt(!1,`Unknown sub_converter for type ${t}. ${Kr}`);const r=e(o);n.resolve(r)}}else mt(!1,`Unexpected type ${t}`);Mr(r)}))}function pn(e){if(0==zn(e))return null;{const t=er(e);try{return Oe(t)}finally{t.release()}}}function un(e){const t=zn(e);if(0==t)return null;if(27==t)return Fr(Qn(e));const n=Zn(e);let r=qr(n);if(null==r){const t=pn(e);r=new ManagedError(t),zr(r,n)}return r}function dn(e){if(0==zn(e))return null;const t=Qn(e),n=Fr(t);return void 0===n&&mt(!1,`JS object JSHandle ${t} was not found`),n}function fn(e){const t=zn(e);if(0==t)return null;if(13==t)return Fr(Qn(e));if(21==t)return mn(e,Vn(e));if(14==t){const t=Zn(e);if(t===u)return null;let n=qr(t);return n||(n=new ManagedObject,zr(n,t)),n}const n=vn.get(t);return n||mt(!1,`Unknown converter for type ${t}. ${Kr}`),n(e)}function _n(e,t){return t||mt(!1,"Expected valid element_type parameter"),mn(e,t)}function mn(e,t){if(0==zn(e))return null;-1==rr(t)&&mt(!1,`Element type ${t} not supported`);const n=Hn(e),r=tr(e);let s=null;if(15==t){s=new Array(r);for(let e=0;e0?(t=fe.pop(),t._set_address(e)):t=new ge(e),t}(e)}function tr(e){return e||mt(!1,"Null arg"),V(e+8)}function nr(e,t){e||mt(!1,"Null arg"),T(e+8,t)}class ManagedObject{dispose(){Vr(this,u)}get isDisposed(){return this[Or]===u}toString(){return`CsObject(gc_handle: ${this[Or]})`}}class ManagedError extends Error{constructor(e){super(e),this.superStack=Object.getOwnPropertyDescriptor(this,"stack"),Object.defineProperty(this,"stack",{get:this.getManageStack})}getSuperStack(){if(this.superStack){if(void 0!==this.superStack.value)return this.superStack.value;if(void 0!==this.superStack.get)return this.superStack.get.call(this)}return super.stack}getManageStack(){if(this.managed_stack)return this.managed_stack;if(!lt.is_runtime_running())return this.managed_stack="... omitted managed stack trace.\n"+this.getSuperStack(),this.managed_stack;{const e=this[Or];if(e!==u){const t=function(e){lt.assert_runtime_running();const t=Ke.stackSave();try{const t=$n(3),n=Ln(t,2);return Wn(n,16),Kn(n,e),kn(yn.GetManagedStackTrace,t),pn(Ln(t,1))}finally{lt.is_runtime_running()&&Ke.stackRestore(t)}}(e);if(t)return this.managed_stack=t+"\n"+this.getSuperStack(),this.managed_stack}}return this.getSuperStack()}dispose(){Vr(this,u)}get isDisposed(){return this[Or]===u}}function rr(e){return 4==e?1:7==e?4:8==e||10==e?8:15==e||14==e||13==e?In:-1}class or{constructor(e,t,n){this._pointer=e,this._length=t,this._viewType=n}_unsafe_create_view(){const e=0==this._viewType?new Uint8Array(K().buffer,this._pointer,this._length):1==this._viewType?new Int32Array(Y().buffer,this._pointer,this._length):2==this._viewType?new Float64Array(re().buffer,this._pointer,this._length):null;if(!e)throw new Error("NotImplementedException");return e}set(e,t){if(this.isDisposed)throw new Error("Assert failed: ObjectDisposedException");const n=this._unsafe_create_view();if(!e||!n||e.constructor!==n.constructor)throw new Error(`Assert failed: Expected ${n.constructor}`);n.set(e,t)}copyTo(e,t){if(this.isDisposed)throw new Error("Assert failed: ObjectDisposedException");const n=this._unsafe_create_view();if(!e||!n||e.constructor!==n.constructor)throw new Error(`Assert failed: Expected ${n.constructor}`);const r=n.subarray(t);e.set(r)}slice(e,t){if(this.isDisposed)throw new Error("Assert failed: ObjectDisposedException");return this._unsafe_create_view().slice(e,t)}get length(){if(this.isDisposed)throw new Error("Assert failed: ObjectDisposedException");return this._length}get byteLength(){if(this.isDisposed)throw new Error("Assert failed: ObjectDisposedException");return 0==this._viewType?this._length:1==this._viewType?this._length<<2:2==this._viewType?this._length<<3:0}}class Span extends or{constructor(e,t,n){super(e,t,n),this.is_disposed=!1}dispose(){this.is_disposed=!0}get isDisposed(){return this.is_disposed}}class ArraySegment extends or{constructor(e,t,n){super(e,t,n)}dispose(){Vr(this,u)}get isDisposed(){return this[Or]===u}}const sr=[null];function ar(e){const t=e.args_count,r=e.arg_marshalers,o=e.res_converter,s=e.arg_cleanup,a=e.has_cleanup,i=e.fn,c=e.fqn;return e=null,function(l){const p=Ft();try{n&&e.isDisposed;const c=new Array(t);for(let e=0;e{const o=await n;return r&&(_r.set(e,o),lt.diagnosticTracing&&ze(`imported ES6 module '${e}' from '${t}'`)),o}))}function hr(){lt.assert_runtime_running(),ct.mono_wasm_bindings_is_ready||mt(!1,"The runtime must be initialized.")}function gr(e){e()}const br="function"==typeof globalThis.WeakRef;function yr(e){return br?new WeakRef(e):function(e){return{deref:()=>e,dispose:()=>{e=null}}}(e)}function wr(e,t,n,r,o,s,a){const i=`[${t}] ${n}.${r}:${o}`,c=Ft();lt.diagnosticTracing&&ze(`Binding [JSExport] ${n}.${r}:${o} from ${t} assembly`);const l=Mn(a);2!==l&&mt(!1,`Signature version ${l} mismatch.`);const p=Pn(a),u=new Array(p);for(let e=0;e0}function Nr(e){return e<-1}Ur&&(Tr=new globalThis.FinalizationRegistry(Hr));const Or=Symbol.for("wasm js_owned_gc_handle"),Cr=Symbol.for("wasm cs_owned_js_handle"),Dr=Symbol.for("wasm do_not_force_dispose");function Fr(e){return Br(e)?Er[e]:Rr(e)?xr[0-e]:null}function Pr(e){if(hr(),e[Cr])return e[Cr];const t=Ir.length?Ir.pop():Ar++;return Er[t]=e,Object.isExtensible(e)&&("function"==typeof e&&Object.prototype.hasOwnProperty.call(e,"prototype")||(e[Cr]=t)),t}function Mr(e){let t;Br(e)?(t=Er[e],Er[e]=void 0,Ir.push(e)):Rr(e)&&(t=xr[0-e],xr[0-e]=void 0),null==t&&mt(!1,"ObjectDisposedException"),void 0!==t[Cr]&&(t[Cr]=void 0)}function zr(e,t){hr(),e[Or]=t,Ur&&Tr.register(e,t,e);const n=yr(e);jr.set(t,n)}function Vr(e,t,r){var o;hr(),e&&(t=e[Or],e[Or]=u,Ur&&Tr.unregister(e)),t!==u&&jr.delete(t)&&!r&<.is_runtime_running()&&!Gr&&function(e){e||mt(!1,"Must be valid gc_handle"),lt.assert_runtime_running();const t=Ke.stackSave();try{const t=$n(3),r=Ln(t,2);Wn(r,14),Kn(r,e),n&&!Nr(e)&&bn.isUI||kn(yn.ReleaseJSOwnedObjectByGCHandle,t)}finally{lt.is_runtime_running()&&Ke.stackRestore(t)}}(t),Nr(t)&&(o=t,$r.push(o))}function Wr(e){const t=e[Or];if(t==u)throw new Error("Assert failed: ObjectDisposedException");return t}function Hr(e){lt.is_runtime_running()&&Vr(null,e)}function qr(e){if(!e)return null;const t=jr.get(e);return t?t.deref():null}let Gr=!1;function Jr(e,t){let n=!1,r=!1;Gr=!0;let o=0,s=0,a=0,i=0;const c=[...jr.keys()];for(const e of c){const r=jr.get(e),o=r&&r.deref();if(Ur&&o&&Tr.unregister(o),o){const s="boolean"==typeof o[Dr]&&o[Dr];if(t&&We(`Proxy of C# ${typeof o} with GCHandle ${e} was still alive. ${s?"keeping":"disposing"}.`),s)n=!0;else{const t=lt.getPromiseController(o);t&&t.reject(new Error("WebWorker which is origin of the Task is being terminated.")),"function"==typeof o.dispose&&o.dispose(),o[Or]===e&&(o[Or]=u),!br&&r&&r.dispose(),a++}}}n||(jr.clear(),Ur&&(Tr=new globalThis.FinalizationRegistry(Hr)));const l=(e,n)=>{const o=n[e],s=o&&"boolean"==typeof o[Dr]&&o[Dr];if(s||(n[e]=void 0),o)if(t&&We(`Proxy of JS ${typeof o} with JSHandle ${e} was still alive. ${s?"keeping":"disposing"}.`),s)r=!0;else{const t=lt.getPromiseController(o);t&&t.reject(new Error("WebWorker which is origin of the Task is being terminated.")),"function"==typeof o.dispose&&o.dispose(),o[Cr]===e&&(o[Cr]=void 0),i++}};for(let e=0;en.resolve(e))).catch((e=>n.reject(e))),t}const Yr=Symbol.for("wasm promise_holder");class Zr extends ManagedObject{constructor(e,t,n,r){super(),this.promise=e,this.gc_handle=t,this.promiseHolderPtr=n,this.res_converter=r,this.isResolved=!1,this.isPosted=!1,this.isPostponed=!1,this.data=null,this.reason=void 0}setIsResolving(){return!0}resolve(e){lt.is_runtime_running()?(this.isResolved&&mt(!1,"resolve could be called only once"),this.isDisposed&&mt(!1,"resolve is already disposed."),this.isResolved=!0,this.complete_task_wrapper(e,null)):lt.diagnosticTracing&&ze("This promise resolution can't be propagated to managed code, mono runtime already exited.")}reject(e){lt.is_runtime_running()?(e||(e=new Error),this.isResolved&&mt(!1,"reject could be called only once"),this.isDisposed&&mt(!1,"resolve is already disposed."),e[Yr],this.isResolved=!0,this.complete_task_wrapper(null,e)):lt.diagnosticTracing&&ze("This promise rejection can't be propagated to managed code, mono runtime already exited.")}cancel(){if(lt.is_runtime_running())if(this.isResolved&&mt(!1,"cancel could be called only once"),this.isDisposed&&mt(!1,"resolve is already disposed."),this.isPostponed)this.isResolved=!0,void 0!==this.reason?this.complete_task_wrapper(null,this.reason):this.complete_task_wrapper(this.data,null);else{const e=this.promise;lt.assertIsControllablePromise(e);const t=lt.getPromiseController(e),n=new Error("OperationCanceledException");n[Yr]=this,t.reject(n)}else lt.diagnosticTracing&&ze("This promise cancelation can't be propagated to managed code, mono runtime already exited.")}complete_task_wrapper(e,t){try{this.isPosted&&mt(!1,"Promise is already posted to managed."),this.isPosted=!0,Vr(this,this.gc_handle,!0),function(e,t,n,r){lt.assert_runtime_running();const o=Ke.stackSave();try{const o=$n(5),s=Ln(o,2);Wn(s,14),Kn(s,e);const a=Ln(o,3);if(t)wo(a,t);else{Wn(a,0);const e=Ln(o,4);r||mt(!1,"res_converter missing"),r(e,n)}wn(ct.ioThreadTID,yn.CompleteTask,o)}finally{lt.is_runtime_running()&&Ke.stackRestore(o)}}(this.gc_handle,t,e,this.res_converter||So)}catch(e){try{lt.mono_exit(1,e)}catch(e){}}}}const Kr="For more information see https://aka.ms/dotnet-wasm-jsinterop";function eo(e,t,n){if(0===t||1===t||2===t||26===t)return;let r,o,s,a;o=Vt(Cn(e)),s=Vt(Dn(e)),a=Vt(Fn(e));const i=On(e);r=to(i),19===t&&(t=i);const c=to(t),l=Cn(e),p=n*In;return(e,t)=>{c(e+p,t,l,r,o,s,a)}}function to(e){if(0===e||1===e)return;const t=Un.get(e);return t&&"function"==typeof t||mt(!1,`ERR30: Unknown converter for type ${e}`),t}function no(e,t){null==t?Wn(e,0):(Wn(e,3),qn(e,t))}function ro(e,t){null==t?Wn(e,0):(Wn(e,4),function(e,t){e||mt(!1,"Null arg"),w(e,t)}(e,t))}function oo(e,t){null==t?Wn(e,0):(Wn(e,5),function(e,t){e||mt(!1,"Null arg"),k(e,t)}(e,t))}function so(e,t){null==t?Wn(e,0):(Wn(e,6),function(e,t){e||mt(!1,"Null arg"),U(e,t)}(e,t))}function ao(e,t){null==t?Wn(e,0):(Wn(e,7),function(e,t){e||mt(!1,"Null arg"),T(e,t)}(e,t))}function io(e,t){null==t?Wn(e,0):(Wn(e,8),function(e,t){if(e||mt(!1,"Null arg"),!Number.isSafeInteger(t))throw new Error(`Assert failed: Value is not an integer: ${t} (${typeof t})`);$(e,t)}(e,t))}function co(e,t){null==t?Wn(e,0):(Wn(e,9),function(e,t){e||mt(!1,"Null arg"),A(e,t)}(e,t))}function lo(e,t){null==t?Wn(e,0):(Wn(e,10),Xn(e,t))}function po(e,t){null==t?Wn(e,0):(Wn(e,11),function(e,t){e||mt(!1,"Null arg"),j(e,t)}(e,t))}function uo(e,t){null==t?Wn(e,0):(Wn(e,12),Gn(e,t))}function fo(e,t){if(null==t)Wn(e,0);else{if(!(t instanceof Date))throw new Error("Assert failed: Value is not a Date");Wn(e,17),Jn(e,t)}}function _o(e,t){if(null==t)Wn(e,0);else{if(!(t instanceof Date))throw new Error("Assert failed: Value is not a Date");Wn(e,18),Jn(e,t)}}function mo(e,t){if(null==t)Wn(e,0);else{if(Wn(e,15),"string"!=typeof t)throw new Error("Assert failed: Value is not a String");ho(e,t)}}function ho(e,t){{const n=er(e);try{!function(e,t){if(t.clear(),null!==e)if("symbol"==typeof e)Ce(e,t);else{if("string"!=typeof e)throw new Error("Expected string argument, got "+typeof e);if(0===e.length)Ce(e,t);else{if(e.length<=256){const n=be.get(e);if(n)return void t.set(n)}De(e,t)}}}(t,n)}finally{n.release()}}}function go(e){Wn(e,0)}function bo(e,t,r,o,s,a,i){if(null==t)return void Wn(e,0);if(!(t&&t instanceof Function))throw new Error("Assert failed: Value is not a Function");const c=function(e){const r=Ln(e,0),l=Ln(e,1),p=Ln(e,2),u=Ln(e,3),d=Ln(e,4),f=ct.isPendingSynchronousCall;try{let e,r,f;n&&c.isDisposed,s&&(e=s(p)),a&&(r=a(u)),i&&(f=i(d)),ct.isPendingSynchronousCall=!0;const _=t(e,r,f);o&&o(l,_)}catch(e){wo(r,e)}finally{ct.isPendingSynchronousCall=f}};c[En]=!0,c.isDisposed=!1,c.dispose=()=>{c.isDisposed=!0},Yn(e,Pr(c)),Wn(e,25)}function yo(e,t,n,r){const o=30==zn(e);if(null==t)return void Wn(e,0);if(!Xr(t))throw new Error("Assert failed: Value is not a Promise");const s=o?Zn(e):$r.length?$r.pop():Lr--;o||(Kn(e,s),Wn(e,20));const a=new Zr(t,s,0,r);zr(a,s),t.then((e=>a.resolve(e)),(e=>a.reject(e)))}function wo(e,t){if(null==t)Wn(e,0);else if(t instanceof ManagedError)Wn(e,16),Kn(e,Wr(t));else{if("object"!=typeof t&&"string"!=typeof t)throw new Error("Assert failed: Value is not an Error "+typeof t);Wn(e,27),ho(e,t.toString());const n=t[Cr];Yn(e,n||Pr(t))}}function ko(e,t){if(null==t)Wn(e,0);else{if(void 0!==t[Or])throw new Error(`Assert failed: JSObject proxy of ManagedObject proxy is not supported. ${Kr}`);if("function"!=typeof t&&"object"!=typeof t)throw new Error(`Assert failed: JSObject proxy of ${typeof t} is not supported`);Wn(e,13),Yn(e,Pr(t))}}function So(e,t){if(null==t)Wn(e,0);else{const n=t[Or],r=typeof t;if(void 0===n)if("string"===r||"symbol"===r)Wn(e,15),ho(e,t);else if("number"===r)Wn(e,10),Xn(e,t);else{if("bigint"===r)throw new Error("NotImplementedException: bigint");if("boolean"===r)Wn(e,3),qn(e,t);else if(t instanceof Date)Wn(e,17),Jn(e,t);else if(t instanceof Error)wo(e,t);else if(t instanceof Uint8Array)Uo(e,t,4);else if(t instanceof Float64Array)Uo(e,t,10);else if(t instanceof Int32Array)Uo(e,t,7);else if(Array.isArray(t))Uo(e,t,14);else{if(t instanceof Int16Array||t instanceof Int8Array||t instanceof Uint8ClampedArray||t instanceof Uint16Array||t instanceof Uint32Array||t instanceof Float32Array)throw new Error("NotImplementedException: TypedArray");if(Xr(t))yo(e,t);else{if(t instanceof Span)throw new Error("NotImplementedException: Span");if("object"!=r)throw new Error(`JSObject proxy is not supported for ${r} ${t}`);{const n=Pr(t);Wn(e,13),Yn(e,n)}}}}else{if(Wr(t),t instanceof ArraySegment)throw new Error("NotImplementedException: ArraySegment. "+Kr);if(t instanceof ManagedError)Wn(e,16),Kn(e,n);else{if(!(t instanceof ManagedObject))throw new Error("NotImplementedException "+r+". "+Kr);Wn(e,14),Kn(e,n)}}}}function vo(e,t,n){n||mt(!1,"Expected valid element_type parameter"),Uo(e,t,n)}function Uo(e,t,n){if(null==t)Wn(e,0);else{const r=rr(n);-1==r&&mt(!1,`Element type ${n} not supported`);const s=t.length,a=r*s,i=_(a);if(15==n){if(!Array.isArray(t))throw new Error("Assert failed: Value is not an Array");g(i,a),o.mono_wasm_register_root(i,a,"marshal_array_to_cs");for(let e=0;e{e&&"AbortError"!==e&&"AbortError"!==e.name&&ze("http muted: "+e)}))}function No(e){try{e.isAborted||(e.streamWriter&&(Bo(e.streamWriter.abort()),e.isAborted=!0),e.streamReader&&(Bo(e.streamReader.cancel()),e.isAborted=!0)),e.isAborted||e.abortController.signal.aborted||e.abortController.abort("AbortError")}catch(e){}}function Oo(e,t,n){n>0||mt(!1,"expected bufferLength > 0");const r=new Span(t,n,0).slice();return Qr((async()=>{e.streamWriter||mt(!1,"expected streamWriter"),e.responsePromise||mt(!1,"expected fetch promise");try{await e.streamWriter.ready,await e.streamWriter.write(r)}catch(e){throw new Error("BrowserHttpWriteStream.Rejected")}}))}function Co(e){return e||mt(!1,"expected controller"),Qr((async()=>{e.streamWriter||mt(!1,"expected streamWriter"),e.responsePromise||mt(!1,"expected fetch promise");try{await e.streamWriter.ready,await e.streamWriter.close()}catch(e){throw new Error("BrowserHttpWriteStream.Rejected")}}))}function Do(e,t,n,r,o,s){const a=new TransformStream;return e.streamWriter=a.writable.getWriter(),Bo(e.streamWriter.closed),Bo(e.streamWriter.ready),Po(e,t,n,r,o,s,a.readable)}function Fo(e,t,n,r,o,s,a,i){return Po(e,t,n,r,o,s,new Span(a,i,0).slice())}function Po(e,t,n,r,o,s,a){jo(),hr(),t&&"string"==typeof t||mt(!1,"expected url string"),n&&r&&Array.isArray(n)&&Array.isArray(r)&&n.length===r.length||mt(!1,"expected headerNames and headerValues arrays"),o&&s&&Array.isArray(o)&&Array.isArray(s)&&o.length===s.length||mt(!1,"expected headerNames and headerValues arrays");const i=new Headers;for(let e=0;elt.fetch_like(t,c).then((t=>(e.response=t,null))))),e.responsePromise.then((()=>{if(e.response||mt(!1,"expected response"),e.responseHeaderNames=[],e.responseHeaderValues=[],e.response.headers&&e.response.headers.entries){const t=e.response.headers.entries();for(const n of t)e.responseHeaderNames.push(n[0]),e.responseHeaderValues.push(n[1])}})).catch((()=>{})),e.responsePromise}function Mo(e){var t;return null===(t=e.response)||void 0===t?void 0:t.type}function zo(e){var t,n;return null!==(n=null===(t=e.response)||void 0===t?void 0:t.status)&&void 0!==n?n:0}function Vo(e){return e.responseHeaderNames||mt(!1,"expected responseHeaderNames"),e.responseHeaderNames}function Wo(e){return e.responseHeaderValues||mt(!1,"expected responseHeaderValues"),e.responseHeaderValues}function Ho(e){return Qr((async()=>{const t=await e.response.arrayBuffer();return e.responseBuffer=t,e.currentBufferOffset=0,t.byteLength}))}function qo(e,t){if(e||mt(!1,"expected controller"),e.responseBuffer||mt(!1,"expected resoved arrayBuffer"),null==e.currentBufferOffset&&mt(!1,"expected currentBufferOffset"),e.currentBufferOffset==e.responseBuffer.byteLength)return 0;const n=new Uint8Array(e.responseBuffer,e.currentBufferOffset);t.set(n,0);const r=Math.min(t.byteLength,n.byteLength);return e.currentBufferOffset+=r,r}function Go(e,t,n){const r=new Span(t,n,0);return Qr((async()=>{if(await e.responsePromise,e.response||mt(!1,"expected response"),!e.response.body)return 0;if(e.streamReader||(e.streamReader=e.response.body.getReader(),Bo(e.streamReader.closed)),e.currentStreamReaderChunk&&void 0!==e.currentBufferOffset||(e.currentStreamReaderChunk=await e.streamReader.read(),e.currentBufferOffset=0),e.currentStreamReaderChunk.done){if(e.isAborted)throw new Error("OperationCanceledException");return 0}const t=e.currentStreamReaderChunk.value.byteLength-e.currentBufferOffset;t>0||mt(!1,"expected remaining_source to be greater than 0");const n=Math.min(t,r.byteLength),o=e.currentStreamReaderChunk.value.subarray(e.currentBufferOffset,e.currentBufferOffset+n);return r.set(o,0),e.currentBufferOffset+=n,t==n&&(e.currentStreamReaderChunk=void 0),n}))}let Jo,Xo,Qo=0;function Yo(){if(!lt.isChromium)return;const e=(new Date).valueOf(),t=e+36e4;for(let n=Math.max(e+1e3,Qo);n=this.queue.length&&(this.queue=this.queue.slice(this.offset),this.offset=0),e}peek(){return this.queue.length>0?this.queue[this.offset]:void 0}drain(e){for(;this.getLength();)e(this.dequeue())}}const ts=Symbol.for("wasm ws_pending_send_buffer"),ns=Symbol.for("wasm ws_pending_send_buffer_offset"),rs=Symbol.for("wasm ws_pending_send_buffer_type"),os=Symbol.for("wasm ws_pending_receive_event_queue"),ss=Symbol.for("wasm ws_pending_receive_promise_queue"),as=Symbol.for("wasm ws_pending_open_promise"),is=Symbol.for("wasm wasm_ws_pending_open_promise_used"),cs=Symbol.for("wasm wasm_ws_pending_error"),ls=Symbol.for("wasm ws_pending_close_promises"),ps=Symbol.for("wasm ws_pending_send_promises"),us=Symbol.for("wasm ws_is_aborted"),ds=Symbol.for("wasm wasm_ws_close_sent"),fs=Symbol.for("wasm wasm_ws_close_received"),_s=Symbol.for("wasm ws_receive_status_ptr"),ms=65536,hs=new Uint8Array;function gs(e){var t,n;return e.readyState!=WebSocket.CLOSED?null!==(t=e.readyState)&&void 0!==t?t:-1:0==e[os].getLength()?null!==(n=e.readyState)&&void 0!==n?n:-1:e[ds]?WebSocket.CLOSING:WebSocket.OPEN}function bs(e,t,n){let r;!function(){if(at)throw new Error("WebSockets are not supported in shell JS engine.");if("function"!=typeof globalThis.WebSocket)throw new Error(tt?"Please install `ws` npm package to enable networking support. See also https://aka.ms/dotnet-wasm-features":"This browser doesn't support WebSocket API. Please use a modern browser. See also https://aka.ms/dotnet-wasm-features")}(),hr(),e&&"string"==typeof e||mt(!1,"ERR12: Invalid uri "+typeof e);try{r=new globalThis.WebSocket(e,t||void 0)}catch(e){throw We("WebSocket error in ws_wasm_create: "+e.toString()),e}const{promise_control:o}=_t();r[os]=new es,r[ss]=new es,r[as]=o,r[ps]=[],r[ls]=[],r[_s]=n,r.binaryType="arraybuffer";const s=()=>{try{if(r[us])return;if(!lt.is_runtime_running())return;o.resolve(r),Yo()}catch(e){We("failed to propagate WebSocket open event: "+e.toString())}},a=e=>{try{if(r[us])return;if(!lt.is_runtime_running())return;!function(e,t){const n=e[os],r=e[ss];if("string"==typeof t.data)n.enqueue({type:0,data:je(t.data),offset:0});else{if("ArrayBuffer"!==t.data.constructor.name)throw new Error("ERR19: WebSocket receive expected ArrayBuffer");n.enqueue({type:1,data:new Uint8Array(t.data),offset:0})}if(r.getLength()&&n.getLength()>1)throw new Error("ERR21: Invalid WS state");for(;r.getLength()&&n.getLength();){const t=r.dequeue();Ts(e,n,t.buffer_ptr,t.buffer_length),t.resolve()}Yo()}(r,e),Yo()}catch(e){We("failed to propagate WebSocket message event: "+e.toString())}},i=e=>{try{if(r.removeEventListener("message",a),r[us])return;if(!lt.is_runtime_running())return;r[fs]=!0,r.close_status=e.code,r.close_status_description=e.reason,r[is]&&o.reject(new Error(e.reason));for(const e of r[ls])e.resolve();Ke.safeSetTimeout((()=>{r[ss].drain((e=>{T(n,0),T(n+4,2),T(n+8,1),e.resolve()}))}),0)}catch(e){We("failed to propagate WebSocket close event: "+e.toString())}},c=e=>{try{if(r[us])return;if(!lt.is_runtime_running())return;r.removeEventListener("message",a);const t=e.message?"WebSocket error: "+e.message:"WebSocket error";We(t),r[cs]=t,Us(r,new Error(t))}catch(e){We("failed to propagate WebSocket error event: "+e.toString())}};return r.addEventListener("message",a),r.addEventListener("open",s,{once:!0}),r.addEventListener("close",i,{once:!0}),r.addEventListener("error",c,{once:!0}),r.dispose=()=>{r.removeEventListener("message",a),r.removeEventListener("open",s),r.removeEventListener("close",i),r.removeEventListener("error",c),vs(r)},r}function ys(e){if(e||mt(!1,"ERR17: expected ws instance"),e[cs])return Es(e[cs]);const t=e[as];return e[is]=!0,t.promise}function ws(e,t,n,r,o){if(e||mt(!1,"ERR17: expected ws instance"),e[cs])return Es(e[cs]);if(e[us]||e[ds])return Es("InvalidState: The WebSocket is not connected.");if(e.readyState==WebSocket.CLOSED)return null;const s=function(e,t,n,r){let o=e[ts],s=0;const a=t.byteLength;if(o){if(s=e[ns],n=e[rs],0!==a){if(s+a>o.length){const n=new Uint8Array(1.5*(s+a+50));n.set(o,0),n.subarray(s).set(t),e[ts]=o=n}else o.subarray(s).set(t);s+=a,e[ns]=s}}else r?0!==a&&(o=t,s=a):(0!==a&&(o=t.slice(),s=a,e[ns]=s,e[ts]=o),e[rs]=n);return r?0==s||null==o?hs:0===n?function(e){return void 0===ve?Ke.UTF8ArrayToString(e,0,e.byteLength):ve.decode(e)}(Fe(o,0,s)):o.subarray(0,s):null}(e,new Uint8Array(K().buffer,t,n),r,o);return o&&s?function(e,t){if(e.send(t),e[ts]=null,e.bufferedAmount{try{if(0===e.bufferedAmount)r.resolve();else{const t=e.readyState;if(t!=WebSocket.OPEN&&t!=WebSocket.CLOSING)r.reject(new Error(`InvalidState: ${t} The WebSocket is not connected.`));else if(!r.isDone)return globalThis.setTimeout(a,s),void(s=Math.min(1.5*s,1e3))}const t=o.indexOf(r);t>-1&&o.splice(t,1)}catch(e){We("WebSocket error in web_socket_send_and_wait: "+e.toString()),r.reject(e)}};return globalThis.setTimeout(a,0),n}(e,s):null}function ks(e,t,n){if(e||mt(!1,"ERR18: expected ws instance"),e[cs])return Es(e[cs]);if(e[us]){const t=e[_s];return T(t,0),T(t+4,2),T(t+8,1),null}const r=e[os],o=e[ss];if(r.getLength())return 0!=o.getLength()&&mt(!1,"ERR20: Invalid WS state"),Ts(e,r,t,n),null;if(e[fs]){const t=e[_s];return T(t,0),T(t+4,2),T(t+8,1),null}const{promise:s,promise_control:a}=_t(),i=a;return i.buffer_ptr=t,i.buffer_length=n,o.enqueue(i),s}function Ss(e,t,n,r){if(e||mt(!1,"ERR19: expected ws instance"),e[us]||e[ds]||e.readyState==WebSocket.CLOSED)return null;if(e[cs])return Es(e[cs]);if(e[ds]=!0,r){const{promise:r,promise_control:o}=_t();return e[ls].push(o),"string"==typeof n?e.close(t,n):e.close(t),r}return"string"==typeof n?e.close(t,n):e.close(t),null}function vs(e){if(e||mt(!1,"ERR18: expected ws instance"),!e[us]&&!e[ds]){e[us]=!0,Us(e,new Error("OperationCanceledException"));try{e.close(1e3,"Connection was aborted.")}catch(e){We("WebSocket error in ws_wasm_abort: "+e.toString())}}}function Us(e,t){const n=e[as],r=e[is];n&&r&&n.reject(t);for(const n of e[ls])n.reject(t);for(const n of e[ps])n.reject(t);e[ss].drain((e=>{e.reject(t)}))}function Ts(e,t,n,r){const o=t.peek(),s=Math.min(r,o.data.length-o.offset);if(s>0){const e=o.data.subarray(o.offset,o.offset+s);new Uint8Array(K().buffer,n,r).set(e,0),o.offset+=s}const a=o.data.length===o.offset?1:0;a&&t.dequeue();const i=e[_s];T(i,s),T(i+4,o.type),T(i+8,a)}function Es(e){return function(e){const{promise:t,promise_control:n}=_t();return e.then((e=>n.resolve(e))).catch((e=>n.reject(e))),t}(Promise.reject(new Error(e)))}function xs(e,t,n){lt.diagnosticTracing&&ze(`Loaded:${e.name} as ${e.behavior} size ${n.length} from ${t}`);const r=Ft(),s="string"==typeof e.virtualPath?e.virtualPath:e.name;let a=null;switch(e.behavior){case"dotnetwasm":case"js-module-threads":case"js-module-diagnostics":case"symbols":break;case"resource":case"assembly":case"pdb":lt._loaded_files.push({url:t,file:s});case"heap":case"icu":a=function(e){const t=e.length+16;let n=Ke._sbrk(t);if(n<=0){if(n=Ke._sbrk(t),n<=0)throw He(`sbrk failed to allocate ${t} bytes, and failed upon retry.`),new Error("Out of memory");We(`sbrk failed to allocate ${t} bytes, but succeeded upon retry!`)}return new Uint8Array(K().buffer,n,e.length).set(e),n}(n);break;case"vfs":{const e=s.lastIndexOf("/");let t=e>0?s.substring(0,e):null,r=e>0?s.substring(e+1):s;r.startsWith("/")&&(r=r.substring(1)),t?(t.startsWith("/")||(t="/"+t),ze(`Creating directory '${t}'`),Ke.FS_createPath("/",t,!0,!0)):t="/",lt.diagnosticTracing&&ze(`Creating file '${r}' in directory '${t}'`),Ke.FS_createDataFile(t,r,n,!0,!0,!0);break}default:throw new Error(`Unrecognized asset behavior:${e.behavior}, for asset ${e.name}`)}if("assembly"===e.behavior){if(!o.mono_wasm_add_assembly(s,a,n.length)){const e=lt._loaded_files.findIndex((e=>e.file==s));lt._loaded_files.splice(e,1)}}else"pdb"===e.behavior?o.mono_wasm_add_assembly(s,a,n.length):"icu"===e.behavior?function(e){if(!o.mono_wasm_load_icu_data(e))throw new Error("Failed to load ICU data")}(a):"resource"===e.behavior&&o.mono_wasm_add_satellite_assembly(s,e.culture||"",a,n.length);Pt(r,"mono.instantiateAsset:",e.name),++lt.actual_instantiated_assets_count}async function Is(e){try{const n=await e.pendingDownloadInternal.response;t=await n.text(),Ge&&mt(!1,"Another symbol map was already loaded"),Ge=t,lt.diagnosticTracing&&ze(`Deferred loading of ${t.length}ch symbol map`)}catch(t){Ve(`Error loading symbol file ${e.name}: ${JSON.stringify(t)}`)}var t}function As(){return lt.loadedFiles}const js={};function $s(e){let t=js[e];if("string"!=typeof t){const n=o.mono_jiterp_get_opcode_info(e,0);js[e]=t=Le(n)}return t}const Ls=2,Rs=64,Bs=64,Ns=-2147483648,Os={};class Cs{constructor(e){this.locals=new Map,this.permanentFunctionTypeCount=0,this.permanentFunctionTypes={},this.permanentFunctionTypesByShape={},this.permanentFunctionTypesByIndex={},this.functionTypesByIndex={},this.permanentImportedFunctionCount=0,this.permanentImportedFunctions={},this.nextImportIndex=0,this.functions=[],this.estimatedExportBytes=0,this.frame=0,this.traceBuf=[],this.branchTargets=new Set,this.constantSlots=[],this.backBranchOffsets=[],this.callHandlerReturnAddresses=[],this.nextConstantSlot=0,this.backBranchTraceLevel=0,this.compressImportNames=!1,this.lockImports=!1,this._assignParameterIndices=e=>{let t=0;for(const n in e)this.locals.set(n,t),t++;return t},this.stack=[new Ds],this.clear(e),this.cfg=new Fs(this),this.defineType("__cpp_exception",{ptr:127},64,!0)}clear(e){if(this.options=fa(),this.options.maxModuleSize>=24576)throw new Error(`blobBuilderCapacity 24576 is not large enough for jiterpreter-max-module-size of ${this.options.maxModuleSize}`);this.stackSize=1,this.inSection=!1,this.inFunction=!1,this.lockImports=!1,this.locals.clear(),this.functionTypeCount=this.permanentFunctionTypeCount,this.functionTypes=Object.create(this.permanentFunctionTypes),this.functionTypesByShape=Object.create(this.permanentFunctionTypesByShape),this.functionTypesByIndex=Object.create(this.permanentFunctionTypesByIndex),this.nextImportIndex=0,this.importedFunctionCount=0,this.importedFunctions=Object.create(this.permanentImportedFunctions);for(const e in this.importedFunctions)this.importedFunctions[e].index=void 0;this.functions.length=0,this.estimatedExportBytes=0,this.argumentCount=0,this.current.clear(),this.traceBuf.length=0,this.branchTargets.clear(),this.activeBlocks=0,this.nextConstantSlot=0,this.constantSlots.length=this.options.useConstants?e:0;for(let e=0;e=this.stack.length&&this.stack.push(new Ds),this.current.clear()}_pop(e){if(this.stackSize<=1)throw new Error("Stack empty");const t=this.current;return this.stackSize--,e?(this.appendULeb(t.size),t.copyTo(this.current),null):t.getArrayView(!1).slice(0,t.size)}setImportFunction(e,t){const n=this.importedFunctions[e];if(!n)throw new Error("No import named "+e);n.func=t}getExceptionTag(){const e=Ke.wasmExports.__cpp_exception;return void 0!==e&&(e instanceof WebAssembly.Tag||mt(!1,`expected __cpp_exception export from dotnet.wasm to be WebAssembly.Tag but was ${e}`)),e}getWasmImports(){const e=ct.getMemory();e instanceof WebAssembly.Memory||mt(!1,`expected heap import to be WebAssembly.Memory but was ${e}`);const t=this.getExceptionTag(),n={c:this.getConstants(),m:{h:e}};t&&(n.x={e:t});const r=this.getImportsToEmit();for(let e=0;e>>0||e>255)throw new Error(`Byte out of range: ${e}`);return this.current.appendU8(e)}appendSimd(e,t){return this.current.appendU8(253),0|e||0===e&&!0===t||mt(!1,"Expected non-v128_load simd opcode or allowLoad==true"),this.current.appendULeb(e)}appendAtomic(e,t){return this.current.appendU8(254),0|e||0===e&&!0===t||mt(!1,"Expected non-notify atomic opcode or allowNotify==true"),this.current.appendU8(e)}appendU32(e){return this.current.appendU32(e)}appendF32(e){return this.current.appendF32(e)}appendF64(e){return this.current.appendF64(e)}appendBoundaryValue(e,t){return this.current.appendBoundaryValue(e,t)}appendULeb(e){return this.current.appendULeb(e)}appendLeb(e){return this.current.appendLeb(e)}appendLebRef(e,t){return this.current.appendLebRef(e,t)}appendBytes(e){return this.current.appendBytes(e)}appendName(e){return this.current.appendName(e)}ret(e){this.ip_const(e),this.appendU8(15)}i32_const(e){this.appendU8(65),this.appendLeb(e)}ptr_const(e){let t=this.options.useConstants?this.constantSlots.indexOf(e):-1;this.options.useConstants&&t<0&&this.nextConstantSlot=0?(this.appendU8(35),this.appendLeb(t)):this.i32_const(e)}ip_const(e){this.appendU8(65),this.appendLeb(e-this.base)}i52_const(e){this.appendU8(66),this.appendLeb(e)}v128_const(e){if(0===e)this.local("v128_zero");else{if("object"!=typeof e)throw new Error("Expected v128_const arg to be 0 or a Uint8Array");{16!==e.byteLength&&mt(!1,"Expected v128_const arg to be 16 bytes in size");let t=!0;for(let n=0;n<16;n++)0!==e[n]&&(t=!1);t?this.local("v128_zero"):(this.appendSimd(12),this.appendBytes(e))}}}defineType(e,t,n,r){if(this.functionTypes[e])throw new Error(`Function type ${e} already defined`);if(r&&this.functionTypeCount>this.permanentFunctionTypeCount)throw new Error("New permanent function types cannot be defined after non-permanent ones");let o="";for(const e in t)o+=t[e]+",";o+=n;let s=this.functionTypesByShape[o];"number"!=typeof s&&(s=this.functionTypeCount++,r?(this.permanentFunctionTypeCount++,this.permanentFunctionTypesByShape[o]=s,this.permanentFunctionTypesByIndex[s]=[t,Object.values(t).length,n]):(this.functionTypesByShape[o]=s,this.functionTypesByIndex[s]=[t,Object.values(t).length,n]));const a=[s,t,n,`(${JSON.stringify(t)}) -> ${n}`,r];return r?this.permanentFunctionTypes[e]=a:this.functionTypes[e]=a,s}generateTypeSection(){this.beginSection(1),this.appendULeb(this.functionTypeCount);for(let e=0;ee.index-t.index)),e}_generateImportSection(e){const t=this.getImportsToEmit();if(this.lockImports=!0,!1!==e)throw new Error("function table imports are disabled");const n=void 0!==this.getExceptionTag();this.beginSection(2),this.appendULeb(1+(n?1:0)+t.length+this.constantSlots.length+(!1!==e?1:0));for(let e=0;e0)throw new Error("New permanent imports cannot be defined after any indexes have been assigned");const s=this.functionTypes[n];if(!s)throw new Error("No function type named "+n);if(r&&!s[4])throw new Error("A permanent import must have a permanent function type");const a=s[0],i=r?this.permanentImportedFunctions:this.importedFunctions;if("number"==typeof o&&(o=qs().get(o)),"function"!=typeof o&&void 0!==o)throw new Error(`Value passed for imported function ${t} was not a function or valid function pointer or undefined`);return i[t]={index:void 0,typeIndex:a,module:e,name:t,func:o}}markImportAsUsed(e){const t=this.importedFunctions[e];if(!t)throw new Error("No imported function named "+e);"number"!=typeof t.index&&(t.index=this.importedFunctionCount++)}getTypeIndex(e){const t=this.functionTypes[e];if(!t)throw new Error("No type named "+e);return t[0]}defineFunction(e,t){const n={index:this.functions.length,name:e.name,typeName:e.type,typeIndex:this.getTypeIndex(e.type),export:e.export,locals:e.locals,generator:t,error:null,blob:null};return this.functions.push(n),n.export&&(this.estimatedExportBytes+=n.name.length+8),n}emitImportsAndFunctions(e){let t=0;for(let e=0;e0)throw new Error(`${this.activeBlocks} unclosed block(s) at end of function`);const t=this._pop(e);return this.inFunction=!1,t}block(e,t){const n=this.appendU8(t||2);return e?this.appendU8(e):this.appendU8(64),this.activeBlocks++,n}endBlock(){if(this.activeBlocks<=0)throw new Error("No blocks active");this.activeBlocks--,this.appendU8(11)}arg(e,t){const n="string"==typeof e?this.locals.has(e)?this.locals.get(e):void 0:e;if("number"!=typeof n)throw new Error("No local named "+e);t&&this.appendU8(t),this.appendULeb(n)}local(e,t){const n="string"==typeof e?this.locals.has(e)?this.locals.get(e):void 0:e+this.argumentCount;if("number"!=typeof n)throw new Error("No local named "+e);t?this.appendU8(t):this.appendU8(32),this.appendULeb(n)}appendMemarg(e,t){this.appendULeb(t),this.appendULeb(e)}lea(e,t){"string"==typeof e?this.local(e):this.i32_const(e),this.i32_const(t),this.appendU8(106)}getArrayView(e,t){if(!0!==t&&this.stackSize>1)throw new Error("Jiterpreter block stack not empty");return this.stack[0].getArrayView(e)}getConstants(){const e={};for(let t=0;t=this.capacity)throw new Error("Buffer full");const t=this.size;return K()[this.buffer+this.size++]=e,t}appendU32(e){const t=this.size;return o.mono_jiterp_write_number_unaligned(this.buffer+this.size,e,0),this.size+=4,t}appendI32(e){const t=this.size;return o.mono_jiterp_write_number_unaligned(this.buffer+this.size,e,1),this.size+=4,t}appendF32(e){const t=this.size;return o.mono_jiterp_write_number_unaligned(this.buffer+this.size,e,2),this.size+=4,t}appendF64(e){const t=this.size;return o.mono_jiterp_write_number_unaligned(this.buffer+this.size,e,3),this.size+=8,t}appendBoundaryValue(e,t){if(this.size+8>=this.capacity)throw new Error("Buffer full");const n=o.mono_jiterp_encode_leb_signed_boundary(this.buffer+this.size,e,t);if(n<1)throw new Error(`Failed to encode ${e} bit boundary value with sign ${t}`);return this.size+=n,n}appendULeb(e){if("number"!=typeof e&&mt(!1,`appendULeb expected number but got ${e}`),e>=0||mt(!1,"cannot pass negative value to appendULeb"),e<127){if(this.size+1>=this.capacity)throw new Error("Buffer full");return this.appendU8(e),1}if(this.size+8>=this.capacity)throw new Error("Buffer full");const t=o.mono_jiterp_encode_leb52(this.buffer+this.size,e,0);if(t<1)throw new Error(`Failed to encode value '${e}' as unsigned leb`);return this.size+=t,t}appendLeb(e){if("number"!=typeof e&&mt(!1,`appendLeb expected number but got ${e}`),this.size+8>=this.capacity)throw new Error("Buffer full");const t=o.mono_jiterp_encode_leb52(this.buffer+this.size,e,1);if(t<1)throw new Error(`Failed to encode value '${e}' as signed leb`);return this.size+=t,t}appendLebRef(e,t){if(this.size+8>=this.capacity)throw new Error("Buffer full");const n=o.mono_jiterp_encode_leb64_ref(this.buffer+this.size,e,t?1:0);if(n<1)throw new Error("Failed to encode value as leb");return this.size+=n,n}copyTo(e,t){if("number"!=typeof t&&(t=this.size),e.size+t>=e.capacity)throw new Error("Destination buffer full");K().copyWithin(e.buffer+e.size,this.buffer,this.buffer+t),e.size+=t}appendBytes(e,t){const n=this.size,r=K(),o="number"!=typeof t?e.length:t;if(this.size+o>=this.capacity)throw new Error("Buffer full");return e.buffer===r.buffer?(r.copyWithin(this.buffer+n,e.byteOffset,e.byteOffset+o),this.size+=o):("number"==typeof t&&(e=new Uint8Array(e.buffer,e.byteOffset,t)),this.getArrayView(!0).set(e,this.size),this.size+=e.length),n}appendName(e){let t=e.length,n=1===e.length?e.charCodeAt(0):-1;if(n>127&&(n=-1),t&&n<0)if(this.encoder)t=this.encoder.encodeInto(e,this.textBuf).written||0;else for(let n=0;n127)throw new Error("Out of range character and no TextEncoder available");this.textBuf[n]=t}this.appendULeb(t),n>=0?this.appendU8(n):t>1&&this.appendBytes(this.textBuf,t)}getArrayView(e){return new Uint8Array(K().buffer,this.buffer,e?this.capacity:this.size)}}class Fs{constructor(e){this.segments=[],this.backBranchTargets=null,this.lastSegmentEnd=0,this.overheadBytes=0,this.blockStack=[],this.backDispatchOffsets=[],this.dispatchTable=new Map,this.observedBackBranchTargets=new Set,this.trace=0,this.builder=e}initialize(e,t,n){this.segments.length=0,this.blockStack.length=0,this.startOfBody=e,this.backBranchTargets=t,this.base=this.builder.base,this.ip=this.lastSegmentStartIp=this.firstOpcodeIp=this.builder.base,this.lastSegmentEnd=0,this.overheadBytes=10,this.dispatchTable.clear(),this.observedBackBranchTargets.clear(),this.trace=n,this.backDispatchOffsets.length=0}entry(e){this.entryIp=e;const t=o.mono_jiterp_get_opcode_info(676,1);return this.firstOpcodeIp=e+2*t,this.appendBlob(),1!==this.segments.length&&mt(!1,"expected 1 segment"),"blob"!==this.segments[0].type&&mt(!1,"expected blob"),this.entryBlob=this.segments[0],this.segments.length=0,this.overheadBytes+=9,this.backBranchTargets&&(this.overheadBytes+=20,this.overheadBytes+=this.backBranchTargets.length),this.firstOpcodeIp}appendBlob(){this.builder.current.size!==this.lastSegmentEnd&&(this.segments.push({type:"blob",ip:this.lastSegmentStartIp,start:this.lastSegmentEnd,length:this.builder.current.size-this.lastSegmentEnd}),this.lastSegmentStartIp=this.ip,this.lastSegmentEnd=this.builder.current.size,this.overheadBytes+=2)}startBranchBlock(e,t){this.appendBlob(),this.segments.push({type:"branch-block-header",ip:e,isBackBranchTarget:t}),this.overheadBytes+=1}branch(e,t,n){t&&this.observedBackBranchTargets.add(e),this.appendBlob(),this.segments.push({type:"branch",from:this.ip,target:e,isBackward:t,branchType:n}),this.overheadBytes+=4,t&&(this.overheadBytes+=4)}jumpTable(e,t){this.appendBlob(),this.segments.push({type:"jump-table",from:this.ip,targets:e,fallthrough:t}),this.overheadBytes+=4,this.overheadBytes+=e.length,this.overheadBytes+=24}emitBlob(e,t){const n=t.subarray(e.start,e.start+e.length);this.builder.appendBytes(n)}generate(){this.appendBlob();const e=this.builder.endFunction(!1);this.builder._push(),this.builder.base=this.base,this.emitBlob(this.entryBlob,e),this.backBranchTargets&&this.builder.block(64,3);for(let e=0;ee-t));for(let e=0;e0&&Ve("No back branch targets were reachable after filtering");else if(1===this.backDispatchOffsets.length)this.trace>0&&(this.backDispatchOffsets[0]===this.entryIp?Ve(`Exactly one back dispatch offset and it was the entry point 0x${this.entryIp.toString(16)}`):Ve(`Exactly one back dispatch offset and it was 0x${this.backDispatchOffsets[0].toString(16)}`)),this.builder.local("disp"),this.builder.appendU8(13),this.builder.appendULeb(this.blockStack.indexOf(this.backDispatchOffsets[0]));else{this.trace>0&&Ve(`${this.backDispatchOffsets.length} back branch offsets after filtering.`),this.builder.block(64),this.builder.block(64),this.builder.local("disp"),this.builder.appendU8(14),this.builder.appendULeb(this.backDispatchOffsets.length+1),this.builder.appendULeb(1);for(let e=0;e0&&this.blockStack.push(0)}this.trace>1&&Ve(`blockStack=${this.blockStack}`);for(let t=0;t=0?(da(13,1),this.builder.appendULeb(n+e)):(da(14,1),this.trace>0&&Ve(`Switch target ${t} not found in block stack ${this.blockStack}`),this.builder.appendULeb(0))}const t=this.blockStack.indexOf(n.fallthrough);t>=0?(da(13,1),this.builder.appendULeb(t+e)):(da(14,1),this.trace>0&&Ve(`Switch fallthrough ${n.fallthrough} not found in block stack ${this.blockStack}`),this.builder.appendULeb(0)),this.builder.appendU8(0);break}case"branch":{const e=n.isBackward?0:n.target;let t,r=this.blockStack.indexOf(e),o=!1;if(n.isBackward&&(this.dispatchTable.has(n.target)?(t=this.dispatchTable.get(n.target),this.trace>1&&Ve(`backward br from ${n.from.toString(16)} to ${n.target.toString(16)}: disp=${t}`),o=!0):(this.trace>0&&Ve(`br from ${n.from.toString(16)} to ${n.target.toString(16)} failed: back branch target not in dispatch table`),r=-1)),r>=0||o){let e=0;switch(n.branchType){case 2:this.builder,n.from,void 0!==t&&(this.builder.i32_const(t),this.builder.local("disp",33)),this.builder.appendU8(12);break;case 3:this.builder.block(64,4),this.builder,n.from,void 0!==t&&(this.builder.i32_const(t),this.builder.local("disp",33)),this.builder.appendU8(12),e=1;break;case 0:void 0!==t&&(this.builder.i32_const(t),this.builder.local("disp",33)),this.builder.appendU8(12);break;case 1:void 0!==t?(this.builder.block(64,4),this.builder.i32_const(t),this.builder.local("disp",33),e=1,this.builder.appendU8(12)):this.builder.appendU8(13);break;default:throw new Error("Unimplemented branch type")}this.builder.appendULeb(e+r),e&&this.builder.endBlock(),this.trace>1&&Ve(`br from ${n.from.toString(16)} to ${n.target.toString(16)} breaking out ${e+r+1} level(s)`)}else{if(this.trace>0){const e=this.base;n.target>=e&&n.target1&&Ve(`br from ${n.from.toString(16)} to ${n.target.toString(16)} failed (outside of trace 0x${e.toString(16)} - 0x${this.exitIp.toString(16)})`)}const e=1===n.branchType||3===n.branchType;e&&this.builder.block(64,4),Ws(this.builder,n.target,4),e&&this.builder.endBlock()}break}default:throw new Error("unreachable")}}return this.backBranchTargets&&(this.blockStack.length<=1||mt(!1,"expected one or zero entries in the block stack at the end"),this.blockStack.length&&this.blockStack.shift(),this.builder.endBlock()),0!==this.blockStack.length&&mt(!1,`expected block stack to be empty at end of function but it was ${this.blockStack}`),this.builder.ip_const(this.exitIp),this.builder.appendU8(15),this.builder.appendU8(11),this.builder._pop(!1)}}let Ps;const Ms={},zs=globalThis.performance&&globalThis.performance.now?globalThis.performance.now.bind(globalThis.performance):Date.now;function Vs(e,t,n){let r;switch(n){case 633:r="prof_enter";break;case 634:r="prof_samplepoint";break;case 635:case 636:r="prof_leave";break;default:throw new Error(`Unimplemented profiler event ${n}`)}e.local("frame"),e.i32_const(t),e.callImport(r)}function Ws(e,t,n){e.ip_const(t),e.options.countBailouts&&(e.i32_const(e.traceIndex),e.i32_const(n),e.callImport("bailout")),e.appendU8(15)}function Hs(e,t,n,r){e.local("cinfo"),e.block(64,4),e.local("cinfo"),e.local("disp"),e.appendU8(54),e.appendMemarg(ea(19),0),n<=e.options.monitoringLongDistance+2&&(e.local("cinfo"),e.i32_const(n),e.appendU8(54),e.appendMemarg(ea(20),0)),e.endBlock(),e.ip_const(t),e.options.countBailouts&&(e.i32_const(e.traceIndex),e.i32_const(r),e.callImport("bailout")),e.appendU8(15)}function qs(){if(Ps||(Ps=ct.getWasmIndirectFunctionTable()),!Ps)throw new Error("Module did not export the indirect function table");return Ps}function Gs(e,t){t||mt(!1,"Attempting to set null function into table");const n=o.mono_jiterp_allocate_table_entry(e);return n>0&&qs().set(n,t),n}function Js(e,t,n,r,o){if(r<=0)return o&&e.appendU8(26),!0;if(r>=Rs)return!1;const s=o?"memop_dest":"pLocals";o&&e.local(s,33);let a=o?0:t;if(e.options.enableSimd){const t=16;for(;r>=t;)e.local(s),e.v128_const(0),e.appendSimd(11),e.appendMemarg(a,0),a+=t,r-=t}for(;r>=8;)e.local(s),e.i52_const(0),e.appendU8(55),e.appendMemarg(a,0),a+=8,r-=8;for(;r>=1;){e.local(s),e.i32_const(0);let t=r%4;switch(t){case 0:t=4,e.appendU8(54);break;case 1:e.appendU8(58);break;case 3:case 2:t=2,e.appendU8(59)}e.appendMemarg(a,0),a+=t,r-=t}return!0}function Xs(e,t,n){Js(e,0,0,n,!0)||(e.i32_const(t),e.i32_const(n),e.appendU8(252),e.appendU8(11),e.appendU8(0))}function Qs(e,t,n,r,o,s,a){if(r<=0)return o&&(e.appendU8(26),e.appendU8(26)),!0;if(r>=Bs)return!1;o?(s=s||"memop_dest",a=a||"memop_src",e.local(a,33),e.local(s,33)):s&&a||(s=a="pLocals");let i=o?0:t,c=o?0:n;if(e.options.enableSimd){const t=16;for(;r>=t;)e.local(s),e.local(a),e.appendSimd(0,!0),e.appendMemarg(c,0),e.appendSimd(11),e.appendMemarg(i,0),i+=t,c+=t,r-=t}for(;r>=8;)e.local(s),e.local(a),e.appendU8(41),e.appendMemarg(c,0),e.appendU8(55),e.appendMemarg(i,0),i+=8,c+=8,r-=8;for(;r>=1;){let t,n,o=r%4;switch(o){case 0:o=4,t=40,n=54;break;default:case 1:o=1,t=44,n=58;break;case 3:case 2:o=2,t=46,n=59}e.local(s),e.local(a),e.appendU8(t),e.appendMemarg(c,0),e.appendU8(n),e.appendMemarg(i,0),c+=o,i+=o,r-=o}return!0}function Ys(e,t){return Qs(e,0,0,t,!0)||(e.i32_const(t),e.appendU8(252),e.appendU8(10),e.appendU8(0),e.appendU8(0)),!0}function Zs(){const e=da(5,1);e>=Ls&&(Ve(`Disabling jiterpreter after ${e} failures`),pa({enableTraces:!1,enableInterpEntry:!1,enableJitCall:!1}))}const Ks={};function ea(e){const t=Ks[e];return void 0===t?Ks[e]=o.mono_jiterp_get_member_offset(e):t}function ta(e){const t=Ke.wasmExports[e];if("function"!=typeof t)throw new Error(`raw cwrap ${e} not found`);return t}const na={};function ra(e){let t=na[e];return"number"!=typeof t&&(t=na[e]=o.mono_jiterp_get_opcode_value_table_entry(e)),t}function oa(e,t){return[e,e,t]}let sa;function aa(){if(!o.mono_wasm_is_zero_page_reserved())return!1;if(!0===sa)return!1;const e=te();for(let t=0;t<8;t++)if(0!==e[t])return!1===sa&&He(`Zero page optimizations are enabled but garbage appeared in memory at address ${4*t}: ${e[t]}`),sa=!0,!1;return sa=!1,!0}const ia={enableTraces:"jiterpreter-traces-enabled",enableInterpEntry:"jiterpreter-interp-entry-enabled",enableJitCall:"jiterpreter-jit-call-enabled",enableBackwardBranches:"jiterpreter-backward-branch-entries-enabled",enableCallResume:"jiterpreter-call-resume-enabled",enableWasmEh:"jiterpreter-wasm-eh-enabled",enableSimd:"jiterpreter-simd-enabled",enableAtomics:"jiterpreter-atomics-enabled",zeroPageOptimization:"jiterpreter-zero-page-optimization",cprop:"jiterpreter-constant-propagation",enableStats:"jiterpreter-stats-enabled",disableHeuristic:"jiterpreter-disable-heuristic",estimateHeat:"jiterpreter-estimate-heat",countBailouts:"jiterpreter-count-bailouts",dumpTraces:"jiterpreter-dump-traces",useConstants:"jiterpreter-use-constants",eliminateNullChecks:"jiterpreter-eliminate-null-checks",noExitBackwardBranches:"jiterpreter-backward-branches-enabled",directJitCalls:"jiterpreter-direct-jit-calls",minimumTraceValue:"jiterpreter-minimum-trace-value",minimumTraceHitCount:"jiterpreter-minimum-trace-hit-count",monitoringPeriod:"jiterpreter-trace-monitoring-period",monitoringShortDistance:"jiterpreter-trace-monitoring-short-distance",monitoringLongDistance:"jiterpreter-trace-monitoring-long-distance",monitoringMaxAveragePenalty:"jiterpreter-trace-monitoring-max-average-penalty",backBranchBoost:"jiterpreter-back-branch-boost",jitCallHitCount:"jiterpreter-jit-call-hit-count",jitCallFlushThreshold:"jiterpreter-jit-call-queue-flush-threshold",interpEntryHitCount:"jiterpreter-interp-entry-hit-count",interpEntryFlushThreshold:"jiterpreter-interp-entry-queue-flush-threshold",wasmBytesLimit:"jiterpreter-wasm-bytes-limit",tableSize:"jiterpreter-table-size",aotTableSize:"jiterpreter-aot-table-size",maxModuleSize:"jiterpreter-max-module-size",maxSwitchSize:"jiterpreter-max-switch-size"};let ca=-1,la={};function pa(e){for(const t in e){const n=ia[t];if(!n){He(`Unrecognized jiterpreter option: ${t}`);continue}const r=e[t];"boolean"==typeof r?o.mono_jiterp_parse_option((r?"--":"--no-")+n):"number"==typeof r?o.mono_jiterp_parse_option(`--${n}=${r}`):He(`Jiterpreter option must be a boolean or a number but was ${typeof r} '${r}'`)}}function ua(e){return o.mono_jiterp_get_counter(e)}function da(e,t){return o.mono_jiterp_modify_counter(e,t)}function fa(){const e=o.mono_jiterp_get_options_version();return e!==ca&&(function(){la={};for(const e in ia){const t=o.mono_jiterp_get_option_as_int(ia[e]);t!==Ns?la[e]=t:Ve(`Failed to retrieve value of option ${ia[e]}`)}}(),ca=e),la}function _a(e,t,n,r){const s=qs(),a=t,i=a+n-1;return i= ${s.length}`),s.set(a,r),o.mono_jiterp_initialize_table(e,a,i),t+n}let ma=!1;const ha=["Unknown","InterpreterTiering","NullCheck","VtableNotInitialized","Branch","BackwardBranch","ConditionalBranch","ConditionalBackwardBranch","ComplexBranch","ArrayLoadFailed","ArrayStoreFailed","StringOperationFailed","DivideByZero","Overflow","Return","Call","Throw","AllocFailed","SpanOperationFailed","CastFailed","SafepointBranchTaken","UnboxFailed","CallDelegate","Debugging","Icall","UnexpectedRetIp","LeaveCheck","SwitchSize","SwitchTarget"],ga={2:["V128_I1_NEGATION","V128_I2_NEGATION","V128_I4_NEGATION","V128_ONES_COMPLEMENT","V128_U2_WIDEN_LOWER","V128_U2_WIDEN_UPPER","V128_I1_CREATE_SCALAR","V128_I2_CREATE_SCALAR","V128_I4_CREATE_SCALAR","V128_I8_CREATE_SCALAR","V128_I1_EXTRACT_MSB","V128_I2_EXTRACT_MSB","V128_I4_EXTRACT_MSB","V128_I8_EXTRACT_MSB","V128_I1_CREATE","V128_I2_CREATE","V128_I4_CREATE","V128_I8_CREATE","SplatX1","SplatX2","SplatX4","SplatX8","NegateD1","NegateD2","NegateD4","NegateD8","NegateR4","NegateR8","SqrtR4","SqrtR8","CeilingR4","CeilingR8","FloorR4","FloorR8","TruncateR4","TruncateR8","RoundToNearestR4","RoundToNearestR8","NotANY","AnyTrueANY","AllTrueD1","AllTrueD2","AllTrueD4","AllTrueD8","PopCountU1","BitmaskD1","BitmaskD2","BitmaskD4","BitmaskD8","AddPairwiseWideningI1","AddPairwiseWideningU1","AddPairwiseWideningI2","AddPairwiseWideningU2","AbsI1","AbsI2","AbsI4","AbsI8","AbsR4","AbsR8","ConvertToSingleI4","ConvertToSingleU4","ConvertToSingleR8","ConvertToDoubleLowerI4","ConvertToDoubleLowerU4","ConvertToDoubleLowerR4","ConvertToInt32SaturateR4","ConvertToUInt32SaturateR4","ConvertToInt32SaturateR8","ConvertToUInt32SaturateR8","SignExtendWideningLowerD1","SignExtendWideningLowerD2","SignExtendWideningLowerD4","SignExtendWideningUpperD1","SignExtendWideningUpperD2","SignExtendWideningUpperD4","ZeroExtendWideningLowerD1","ZeroExtendWideningLowerD2","ZeroExtendWideningLowerD4","ZeroExtendWideningUpperD1","ZeroExtendWideningUpperD2","ZeroExtendWideningUpperD4","LoadVector128ANY","LoadScalarVector128X4","LoadScalarVector128X8","LoadScalarAndSplatVector128X1","LoadScalarAndSplatVector128X2","LoadScalarAndSplatVector128X4","LoadScalarAndSplatVector128X8","LoadWideningVector128I1","LoadWideningVector128U1","LoadWideningVector128I2","LoadWideningVector128U2","LoadWideningVector128I4","LoadWideningVector128U4"],3:["V128_I1_ADD","V128_I2_ADD","V128_I4_ADD","V128_R4_ADD","V128_I1_SUB","V128_I2_SUB","V128_I4_SUB","V128_R4_SUB","V128_BITWISE_AND","V128_BITWISE_OR","V128_BITWISE_EQUALITY","V128_BITWISE_INEQUALITY","V128_R4_FLOAT_EQUALITY","V128_R8_FLOAT_EQUALITY","V128_EXCLUSIVE_OR","V128_I1_MULTIPLY","V128_I2_MULTIPLY","V128_I4_MULTIPLY","V128_R4_MULTIPLY","V128_R4_DIVISION","V128_I1_LEFT_SHIFT","V128_I2_LEFT_SHIFT","V128_I4_LEFT_SHIFT","V128_I8_LEFT_SHIFT","V128_I1_RIGHT_SHIFT","V128_I2_RIGHT_SHIFT","V128_I4_RIGHT_SHIFT","V128_I1_URIGHT_SHIFT","V128_I2_URIGHT_SHIFT","V128_I4_URIGHT_SHIFT","V128_I8_URIGHT_SHIFT","V128_U1_NARROW","V128_U1_GREATER_THAN","V128_I1_LESS_THAN","V128_U1_LESS_THAN","V128_I2_LESS_THAN","V128_I1_EQUALS","V128_I2_EQUALS","V128_I4_EQUALS","V128_R4_EQUALS","V128_I8_EQUALS","V128_I1_EQUALS_ANY","V128_I2_EQUALS_ANY","V128_I4_EQUALS_ANY","V128_I8_EQUALS_ANY","V128_AND_NOT","V128_U2_LESS_THAN_EQUAL","V128_I1_SHUFFLE","V128_I2_SHUFFLE","V128_I4_SHUFFLE","V128_I8_SHUFFLE","ExtractScalarI1","ExtractScalarU1","ExtractScalarI2","ExtractScalarU2","ExtractScalarD4","ExtractScalarD8","ExtractScalarR4","ExtractScalarR8","SwizzleD1","AddD1","AddD2","AddD4","AddD8","AddR4","AddR8","SubtractD1","SubtractD2","SubtractD4","SubtractD8","SubtractR4","SubtractR8","MultiplyD2","MultiplyD4","MultiplyD8","MultiplyR4","MultiplyR8","DivideR4","DivideR8","DotI2","ShiftLeftD1","ShiftLeftD2","ShiftLeftD4","ShiftLeftD8","ShiftRightArithmeticD1","ShiftRightArithmeticD2","ShiftRightArithmeticD4","ShiftRightArithmeticD8","ShiftRightLogicalD1","ShiftRightLogicalD2","ShiftRightLogicalD4","ShiftRightLogicalD8","AndANY","AndNotANY","OrANY","XorANY","CompareEqualD1","CompareEqualD2","CompareEqualD4","CompareEqualD8","CompareEqualR4","CompareEqualR8","CompareNotEqualD1","CompareNotEqualD2","CompareNotEqualD4","CompareNotEqualD8","CompareNotEqualR4","CompareNotEqualR8","CompareLessThanI1","CompareLessThanU1","CompareLessThanI2","CompareLessThanU2","CompareLessThanI4","CompareLessThanU4","CompareLessThanI8","CompareLessThanR4","CompareLessThanR8","CompareLessThanOrEqualI1","CompareLessThanOrEqualU1","CompareLessThanOrEqualI2","CompareLessThanOrEqualU2","CompareLessThanOrEqualI4","CompareLessThanOrEqualU4","CompareLessThanOrEqualI8","CompareLessThanOrEqualR4","CompareLessThanOrEqualR8","CompareGreaterThanI1","CompareGreaterThanU1","CompareGreaterThanI2","CompareGreaterThanU2","CompareGreaterThanI4","CompareGreaterThanU4","CompareGreaterThanI8","CompareGreaterThanR4","CompareGreaterThanR8","CompareGreaterThanOrEqualI1","CompareGreaterThanOrEqualU1","CompareGreaterThanOrEqualI2","CompareGreaterThanOrEqualU2","CompareGreaterThanOrEqualI4","CompareGreaterThanOrEqualU4","CompareGreaterThanOrEqualI8","CompareGreaterThanOrEqualR4","CompareGreaterThanOrEqualR8","ConvertNarrowingSaturateSignedI2","ConvertNarrowingSaturateSignedI4","ConvertNarrowingSaturateUnsignedI2","ConvertNarrowingSaturateUnsignedI4","MultiplyWideningLowerI1","MultiplyWideningLowerI2","MultiplyWideningLowerI4","MultiplyWideningLowerU1","MultiplyWideningLowerU2","MultiplyWideningLowerU4","MultiplyWideningUpperI1","MultiplyWideningUpperI2","MultiplyWideningUpperI4","MultiplyWideningUpperU1","MultiplyWideningUpperU2","MultiplyWideningUpperU4","AddSaturateI1","AddSaturateU1","AddSaturateI2","AddSaturateU2","SubtractSaturateI1","SubtractSaturateU1","SubtractSaturateI2","SubtractSaturateU2","MultiplyRoundedSaturateQ15I2","MinI1","MinI2","MinI4","MinU1","MinU2","MinU4","MaxI1","MaxI2","MaxI4","MaxU1","MaxU2","MaxU4","AverageRoundedU1","AverageRoundedU2","MinR4","MinR8","MaxR4","MaxR8","PseudoMinR4","PseudoMinR8","PseudoMaxR4","PseudoMaxR8","StoreANY"],4:["V128_CONDITIONAL_SELECT","ReplaceScalarD1","ReplaceScalarD2","ReplaceScalarD4","ReplaceScalarD8","ReplaceScalarR4","ReplaceScalarR8","ShuffleD1","BitwiseSelectANY","LoadScalarAndInsertX1","LoadScalarAndInsertX2","LoadScalarAndInsertX4","LoadScalarAndInsertX8","StoreSelectedScalarX1","StoreSelectedScalarX2","StoreSelectedScalarX4","StoreSelectedScalarX8"]},ba={13:[65,0],14:[65,1]},ya={456:168,462:174,457:170,463:176},wa={508:[69,40,54],428:[106,40,54],430:[107,40,54],432:[107,40,54],436:[115,40,54],429:[124,41,55],431:[125,41,55],433:[125,41,55],437:[133,41,55],511:[106,40,54],515:[108,40,54],513:[124,41,55],517:[126,41,55],434:[140,42,56],435:[154,43,57],464:[178,40,56],467:[183,40,57],438:[184,40,57],465:[180,41,56],468:[185,41,57],439:[186,41,57],469:[187,42,57],466:[182,43,56],460:[1,52,55],461:[1,53,55],444:[113,40,54],452:[113,40,54],440:[117,40,54],448:[117,40,54],445:[113,41,54],453:[113,41,54],441:[117,41,54],449:[117,41,54],525:[116,40,54],526:[134,41,55],527:[117,40,54],528:[135,41,55],523:[118,40,54],524:[136,41,55],640:[119,40,54],641:[137,41,55],642:[120,40,54],643:[138,41,55],644:[103,40,54],646:[104,40,54],648:[105,40,54],645:[121,41,55],647:[122,41,55],649:[123,41,55],512:[106,40,54],516:[108,40,54],514:[124,41,55],518:[126,41,55],519:[113,40,54],520:[113,40,54],521:[114,40,54],522:[114,40,54]},ka={394:187,395:1,398:187,399:1,402:187,403:1,406:187,407:1,412:187,413:1,416:187,417:1,426:187,427:1,420:187,421:1,65536:187,65537:187,65535:187,65539:1,65540:1,65538:1},Sa={344:[106,40,54],362:[106,40,54],364:[106,40,54],348:[107,40,54],352:[108,40,54],366:[108,40,54],368:[108,40,54],356:[109,40,54],360:[110,40,54],380:[111,40,54],384:[112,40,54],374:[113,40,54],376:[114,40,54],378:[115,40,54],388:[116,40,54],390:[117,40,54],386:[118,40,54],345:[124,41,55],349:[125,41,55],353:[126,41,55],357:[127,41,55],381:[129,41,55],361:[128,41,55],385:[130,41,55],375:[131,41,55],377:[132,41,55],379:[133,41,55],389:[134,41,55],391:[135,41,55],387:[136,41,55],346:[146,42,56],350:[147,42,56],354:[148,42,56],358:[149,42,56],347:[160,43,57],351:[161,43,57],355:[162,43,57],359:[163,43,57],392:[70,40,54],396:[71,40,54],414:[72,40,54],400:[74,40,54],418:[76,40,54],404:[78,40,54],424:[73,40,54],410:[75,40,54],422:[77,40,54],408:[79,40,54],393:[81,41,54],397:[82,41,54],415:[83,41,54],401:[85,41,54],419:[87,41,54],405:[89,41,54],425:[84,41,54],411:[86,41,54],423:[88,41,54],409:[90,41,54]},va={187:392,207:396,195:400,215:410,199:414,223:424,191:404,211:408,203:418,219:422,231:[392,!1,!0],241:[396,!1,!0],235:[400,!1,!0],245:[410,!1,!0],237:[414,!1,!0],249:[424,!1,!0],233:[404,!1,!0],243:[408,!1,!0],239:[418,!1,!0],247:[422,!1,!0],251:[392,65,!0],261:[396,65,!0],255:[400,65,!0],265:[410,65,!0],257:[414,65,!0],269:[424,65,!0],253:[404,65,!0],263:[408,65,!0],259:[418,65,!0],267:[422,65,!0],188:393,208:397,196:401,216:411,200:415,224:425,192:405,212:409,204:419,220:423,252:[393,66,!0],256:[401,66,!0],266:[411,66,!0],258:[415,66,!0],270:[425,66,!0],254:[405,66,!0],264:[409,66,!0],260:[419,66,!0],268:[423,66,!0],189:394,209:65535,197:402,217:412,201:416,225:426,193:406,213:65536,205:420,221:65537,190:395,210:65538,198:403,218:413,202:417,226:427,194:407,214:65539,206:421,222:65540},Ua={599:[!0,!1,159],626:[!0,!0,145],586:[!0,!1,155],613:[!0,!0,141],592:[!0,!1,156],619:[!0,!0,142],603:[!0,!1,153],630:[!0,!0,139],581:[!0,!1,"acos"],608:[!0,!0,"acosf"],582:[!0,!1,"acosh"],609:[!0,!0,"acoshf"],587:[!0,!1,"cos"],614:[!0,!0,"cosf"],579:[!0,!1,"asin"],606:[!0,!0,"asinf"],580:[!0,!1,"asinh"],607:[!0,!0,"asinhf"],598:[!0,!1,"sin"],625:[!0,!0,"sinf"],583:[!0,!1,"atan"],610:[!0,!0,"atanf"],584:[!0,!1,"atanh"],611:[!0,!0,"atanhf"],601:[!0,!1,"tan"],628:[!0,!0,"tanf"],588:[!0,!1,"cbrt"],615:[!0,!0,"cbrtf"],590:[!0,!1,"exp"],617:[!0,!0,"expf"],593:[!0,!1,"log"],620:[!0,!0,"logf"],594:[!0,!1,"log2"],621:[!0,!0,"log2f"],595:[!0,!1,"log10"],622:[!0,!0,"log10f"],604:[!1,!1,164],631:[!1,!0,150],605:[!1,!1,165],632:[!1,!0,151],585:[!1,!1,"atan2"],612:[!1,!0,"atan2f"],596:[!1,!1,"pow"],623:[!1,!0,"powf"],383:[!1,!1,"fmod"],382:[!1,!0,"fmodf"]},Ta={560:[67,0,0],561:[67,192,0],562:[68,0,1],563:[68,193,1],564:[65,0,2],565:[66,0,3]},Ea={566:[74,0,0],567:[74,192,0],568:[75,0,1],569:[75,193,1],570:[72,0,2],571:[73,0,3]},xa={653:1,654:2,655:4,656:8},Ia={653:44,654:46,655:40,656:41},Aa={653:58,654:59,655:54,656:55},ja=new Set([20,21,22,23,24,25,26,27,28,29,30,80,81,82,83,84,85,86,87,88,89,90,91]),$a={51:[16,54],52:[16,54],53:[8,54],54:[8,54],55:[4,54],57:[4,56],56:[2,55],58:[2,57]},La={1:[16,40],2:[8,40],3:[4,40],5:[4,42],4:[2,41],6:[2,43]},Ra=new Set([81,84,85,86,87,82,83,88,89,90,91,92,93]),Ba={13:[16],14:[8],15:[4],16:[2]},Na={10:100,11:132,12:164,13:196,45:100,46:132,47:164,48:196},Oa={6:[44,23],7:[46,26],8:[40,28],9:[41,30]};function Ca(e,t){return O(e+2*t)}function Da(e,t){return z(e+2*t)}function Fa(e,t){return P(e+2*t)}function Pa(e,t){return F(e+2*t)}function Ma(e){return P(e+ea(4))}function za(e,t){const n=P(Ma(e)+ea(5));return P(n+t*gc)}function Va(e,t){const n=P(Ma(e)+ea(12));return P(n+t*gc)}function Wa(e,t,n){if(!n)return!1;for(let r=0;r=40||mt(!1,`Expected load opcode but got ${n}`),e.appendU8(n),void 0!==r)e.appendULeb(r);else if(253===n)throw new Error("PREFIX_simd ldloc without a simdOpcode");const o=ti(t,n,r);e.appendMemarg(t,o)}function oi(e,t,n,r){n>=54||mt(!1,`Expected store opcode but got ${n}`),e.appendU8(n),void 0!==r&&e.appendULeb(r);const o=ti(t,n,r);e.appendMemarg(t,o),Za(t),void 0!==r&&Za(t+8)}function si(e,t,n){n>0&&Ka(t,n),e.lea("pLocals",t)}function ai(e,t,n,r){Ka(t,r),Js(e,t,0,r,!1)||(si(e,t,r),Xs(e,n,r))}function ii(e,t,n,r){if(Ka(t,r),Qs(e,t,n,r,!1))return!0;si(e,t,r),si(e,n,0),Ys(e,r)}function ci(e,t){return 0!==o.mono_jiterp_is_imethod_var_address_taken(Ma(e.frame),t)}function li(e,t,n,r){if(e.allowNullCheckOptimization&&Xa.has(t)&&!ci(e,t))return da(7,1),void(Qa===t?r&&e.local("cknull_ptr"):(ri(e,t,40),e.local("cknull_ptr",r?34:33),Qa=t));ri(e,t,40),e.local("cknull_ptr",34),e.appendU8(69),e.block(64,4),Ws(e,n,2),e.endBlock(),r&&e.local("cknull_ptr"),e.allowNullCheckOptimization&&!ci(e,t)?(Xa.set(t,n),Qa=t):Qa=-1}function pi(e,t,n){let r,s=54;const a=ba[n];if(a)e.local("pLocals"),e.appendU8(a[0]),r=a[1],e.appendLeb(r);else switch(n){case 15:e.local("pLocals"),r=Da(t,2),e.i32_const(r);break;case 16:e.local("pLocals"),r=Pa(t,2),e.i32_const(r);break;case 17:e.local("pLocals"),e.i52_const(0),s=55;break;case 19:e.local("pLocals"),e.appendU8(66),e.appendLebRef(t+4,!0),s=55;break;case 18:e.local("pLocals"),e.i52_const(Da(t,2)),s=55;break;case 20:e.local("pLocals"),e.appendU8(67),e.appendF32(function(e,t){return n=e+2*t,o.mono_wasm_get_f32_unaligned(n);var n}(t,2)),s=56;break;case 21:e.local("pLocals"),e.appendU8(68),e.appendF64(function(e,t){return n=e+2*t,o.mono_wasm_get_f64_unaligned(n);var n}(t,2)),s=57;break;default:return!1}e.appendU8(s);const i=Ca(t,1);return e.appendMemarg(i,2),Za(i),"number"==typeof r?Ha.set(i,{type:"i32",value:r}):Ha.delete(i),!0}function ui(e,t,n){let r=40,o=54;switch(n){case 74:r=44;break;case 75:r=45;break;case 76:r=46;break;case 77:r=47;break;case 78:r=45,o=58;break;case 79:r=47,o=59;break;case 80:break;case 81:r=41,o=55;break;case 82:{const n=Ca(t,3);return ii(e,Ca(t,1),Ca(t,2),n),!0}case 83:return ii(e,Ca(t,1),Ca(t,2),8),ii(e,Ca(t,3),Ca(t,4),8),!0;case 84:return ii(e,Ca(t,1),Ca(t,2),8),ii(e,Ca(t,3),Ca(t,4),8),ii(e,Ca(t,5),Ca(t,6),8),!0;case 85:return ii(e,Ca(t,1),Ca(t,2),8),ii(e,Ca(t,3),Ca(t,4),8),ii(e,Ca(t,5),Ca(t,6),8),ii(e,Ca(t,7),Ca(t,8),8),!0;default:return!1}return e.local("pLocals"),ri(e,Ca(t,2),r),oi(e,Ca(t,1),o),!0}function di(e,t,n,r){const o=r>=23&&r<=36||r>=50&&r<=60,s=Ca(n,o?2:1),a=Ca(n,3),i=Ca(n,o?1:2),c=e.allowNullCheckOptimization&&Xa.has(s)&&!ci(e,s);36!==r&&45!==r&&li(e,s,n,!1);let l=54,p=40;switch(r){case 23:p=44;break;case 24:p=45;break;case 25:p=46;break;case 26:p=47;break;case 31:case 41:case 27:break;case 43:case 29:p=42,l=56;break;case 44:case 30:p=43,l=57;break;case 37:case 38:l=58;break;case 39:case 40:l=59;break;case 28:case 42:p=41,l=55;break;case 45:return c||e.block(),e.local("pLocals"),e.i32_const(a),e.i32_const(s),e.i32_const(i),e.callImport("stfld_o"),c?(e.appendU8(26),da(7,1)):(e.appendU8(13),e.appendULeb(0),Ws(e,n,2),e.endBlock()),!0;case 32:{const t=Ca(n,4);return si(e,i,t),e.local("cknull_ptr"),0!==a&&(e.i32_const(a),e.appendU8(106)),Ys(e,t),!0}case 46:{const r=za(t,Ca(n,4));return e.local("cknull_ptr"),0!==a&&(e.i32_const(a),e.appendU8(106)),si(e,i,0),e.ptr_const(r),e.callImport("value_copy"),!0}case 47:{const t=Ca(n,4);return e.local("cknull_ptr"),0!==a&&(e.i32_const(a),e.appendU8(106)),si(e,i,0),Ys(e,t),!0}case 36:case 35:return e.local("pLocals"),ri(e,s,40),0!==a&&(e.i32_const(a),e.appendU8(106)),oi(e,i,l),!0;default:return!1}return o&&e.local("pLocals"),e.local("cknull_ptr"),o?(e.appendU8(p),e.appendMemarg(a,0),oi(e,i,l),!0):(ri(e,i,p),e.appendU8(l),e.appendMemarg(a,0),!0)}function fi(e,t,n,r){const o=r>=23&&r<=36||r>=50&&r<=60,s=Ca(n,1),a=za(t,Ca(n,2)),i=za(t,Ca(n,3));!function(e,t,n){e.block(),e.ptr_const(t),e.appendU8(45),e.appendMemarg(ea(0),0),e.appendU8(13),e.appendULeb(0),Ws(e,n,3),e.endBlock()}(e,a,n);let c=54,l=40;switch(r){case 50:l=44;break;case 51:l=45;break;case 52:l=46;break;case 53:l=47;break;case 58:case 65:case 54:break;case 67:case 56:l=42,c=56;break;case 68:case 57:l=43,c=57;break;case 61:case 62:c=58;break;case 63:case 64:c=59;break;case 55:case 66:l=41,c=55;break;case 69:return e.ptr_const(i),si(e,s,0),e.callImport("copy_ptr"),!0;case 59:{const t=Ca(n,4);return si(e,s,t),e.ptr_const(i),Ys(e,t),!0}case 72:return e.local("pLocals"),e.ptr_const(i),oi(e,s,c),!0;default:return!1}return o?(e.local("pLocals"),e.ptr_const(i),e.appendU8(l),e.appendMemarg(0,0),oi(e,s,c),!0):(e.ptr_const(i),ri(e,s,l),e.appendU8(c),e.appendMemarg(0,0),!0)}function _i(e,t,n){let r,o,s,a,i="math_lhs32",c="math_rhs32",l=!1;const p=ka[n];if(p){e.local("pLocals");const r=1==p;return ri(e,Ca(t,2),r?43:42),r||e.appendU8(p),ri(e,Ca(t,3),r?43:42),r||e.appendU8(p),e.i32_const(n),e.callImport("relop_fp"),oi(e,Ca(t,1),54),!0}switch(n){case 382:case 383:return wi(e,t,n);default:if(a=Sa[n],!a)return!1;a.length>3?(r=a[1],o=a[2],s=a[3]):(r=o=a[1],s=a[2])}switch(n){case 356:case 357:case 360:case 361:case 380:case 381:case 384:case 385:{const s=361===n||385===n||357===n||381===n;i=s?"math_lhs64":"math_lhs32",c=s?"math_rhs64":"math_rhs32",e.block(),ri(e,Ca(t,2),r),e.local(i,33),ri(e,Ca(t,3),o),e.local(c,34),l=!0,s&&(e.appendU8(80),e.appendU8(69)),e.appendU8(13),e.appendULeb(0),Ws(e,t,12),e.endBlock(),356!==n&&380!==n&&357!==n&&381!==n||(e.block(),e.local(c),s?e.i52_const(-1):e.i32_const(-1),e.appendU8(s?82:71),e.appendU8(13),e.appendULeb(0),e.local(i),e.appendU8(s?66:65),e.appendBoundaryValue(s?64:32,-1),e.appendU8(s?82:71),e.appendU8(13),e.appendULeb(0),Ws(e,t,13),e.endBlock());break}case 362:case 364:case 366:case 368:ri(e,Ca(t,2),r),e.local(i,34),ri(e,Ca(t,3),o),e.local(c,34),e.i32_const(n),e.callImport(364===n||368===n?"ckovr_u4":"ckovr_i4"),e.block(64,4),Ws(e,t,13),e.endBlock(),l=!0}return e.local("pLocals"),l?(e.local(i),e.local(c)):(ri(e,Ca(t,2),r),ri(e,Ca(t,3),o)),e.appendU8(a[0]),oi(e,Ca(t,1),s),!0}function mi(e,t,n){const r=wa[n];if(!r)return!1;const o=r[1],s=r[2];switch((n<472||n>507)&&e.local("pLocals"),n){case 428:case 430:ri(e,Ca(t,2),o),e.i32_const(1);break;case 432:e.i32_const(0),ri(e,Ca(t,2),o);break;case 436:ri(e,Ca(t,2),o),e.i32_const(-1);break;case 444:case 445:ri(e,Ca(t,2),o),41===o&&e.appendU8(167),e.i32_const(255);break;case 452:case 453:ri(e,Ca(t,2),o),41===o&&e.appendU8(167),e.i32_const(65535);break;case 440:case 441:ri(e,Ca(t,2),o),41===o&&e.appendU8(167),e.i32_const(24),e.appendU8(116),e.i32_const(24);break;case 448:case 449:ri(e,Ca(t,2),o),41===o&&e.appendU8(167),e.i32_const(16),e.appendU8(116),e.i32_const(16);break;case 429:case 431:ri(e,Ca(t,2),o),e.i52_const(1);break;case 433:e.i52_const(0),ri(e,Ca(t,2),o);break;case 437:ri(e,Ca(t,2),o),e.i52_const(-1);break;case 511:case 515:case 519:case 521:case 525:case 527:case 523:case 640:case 642:ri(e,Ca(t,2),o),e.i32_const(Da(t,3));break;case 512:case 516:case 520:case 522:ri(e,Ca(t,2),o),e.i32_const(Pa(t,3));break;case 513:case 517:case 526:case 528:case 524:case 641:case 643:ri(e,Ca(t,2),o),e.i52_const(Da(t,3));break;case 514:case 518:ri(e,Ca(t,2),o),e.i52_const(Pa(t,3));break;default:ri(e,Ca(t,2),o)}return 1!==r[0]&&e.appendU8(r[0]),oi(e,Ca(t,1),s),!0}function hi(e,t,n,r){const o=133===r?t+6:t+8,s=Va(n,O(o-2));e.local("pLocals"),e.ptr_const(o),e.appendU8(54),e.appendMemarg(s,0),e.callHandlerReturnAddresses.push(o)}function gi(e,t){const n=o.mono_jiterp_get_opcode_info(t,4),r=e+2+2*o.mono_jiterp_get_opcode_info(t,2);let s;switch(n){case 7:s=F(r);break;case 8:s=z(r);break;case 17:s=z(r+2);break;default:return}return s}function bi(e,t,n,r){const s=r>=227&&r<=270,a=gi(t,r);if("number"!=typeof a)return!1;switch(r){case 132:case 133:case 128:case 129:{const s=132===r||133===r,i=t+2*a;return a<=0?e.backBranchOffsets.indexOf(i)>=0?(e.backBranchTraceLevel>1&&Ve(`0x${t.toString(16)} performing backward branch to 0x${i.toString(16)}`),s&&hi(e,t,n,r),e.cfg.branch(i,!0,0),da(9,1),!0):(i1||e.cfg.trace>1)&&Ve(`0x${t.toString(16)} ${$s(r)} target 0x${i.toString(16)} before start of trace`):(e.backBranchTraceLevel>0||e.cfg.trace>0)&&Ve(`0x${t.toString(16)} ${$s(r)} target 0x${i.toString(16)} not found in list `+e.backBranchOffsets.map((e=>"0x"+e.toString(16))).join(", ")),o.mono_jiterp_boost_back_branch_target(i),Ws(e,i,5),da(10,1),!0):(e.branchTargets.add(i),s&&hi(e,t,n,r),e.cfg.branch(i,!1,0),!0)}case 145:case 143:case 229:case 227:case 146:case 144:{const n=146===r||144===r;ri(e,Ca(t,1),n?41:40),143===r||227===r?e.appendU8(69):144===r?e.appendU8(80):146===r&&(e.appendU8(80),e.appendU8(69));break}default:if(void 0===va[r])throw new Error(`Unsupported relop branch opcode: ${$s(r)}`);if(4!==o.mono_jiterp_get_opcode_info(r,1))throw new Error(`Unsupported long branch opcode: ${$s(r)}`)}const i=t+2*a;return a<0?e.backBranchOffsets.indexOf(i)>=0?(e.backBranchTraceLevel>1&&Ve(`0x${t.toString(16)} performing conditional backward branch to 0x${i.toString(16)}`),e.cfg.branch(i,!0,s?3:1),da(9,1)):(i1||e.cfg.trace>1)&&Ve(`0x${t.toString(16)} ${$s(r)} target 0x${i.toString(16)} before start of trace`):(e.backBranchTraceLevel>0||e.cfg.trace>0)&&Ve(`0x${t.toString(16)} ${$s(r)} target 0x${i.toString(16)} not found in list `+e.backBranchOffsets.map((e=>"0x"+e.toString(16))).join(", ")),o.mono_jiterp_boost_back_branch_target(i),e.block(64,4),Ws(e,i,5),e.endBlock(),da(10,1)):(e.branchTargets.add(i),e.cfg.branch(i,!1,s?3:1)),!0}function yi(e,t,n,r){const o=va[r];if(!o)return!1;const s=Array.isArray(o)?o[0]:o,a=Sa[s],i=ka[s];if(!a&&!i)return!1;const c=a?a[1]:1===i?43:42;return ri(e,Ca(t,1),c),a||1===i||e.appendU8(i),Array.isArray(o)&&o[1]?(e.appendU8(o[1]),e.appendLeb(Da(t,2))):ri(e,Ca(t,2),c),a||1==i||e.appendU8(i),a?e.appendU8(a[0]):(e.i32_const(s),e.callImport("relop_fp")),bi(e,t,n,r)}function wi(e,t,n){let r,o,s,a;const i=Ca(t,1),c=Ca(t,2),l=Ca(t,3),p=Ua[n];if(!p)return!1;if(r=p[0],o=p[1],"string"==typeof p[2]?s=p[2]:a=p[2],e.local("pLocals"),r){if(ri(e,c,o?42:43),a)e.appendU8(a);else{if(!s)throw new Error("internal error");e.callImport(s)}return oi(e,i,o?56:57),!0}if(ri(e,c,o?42:43),ri(e,l,o?42:43),a)e.appendU8(a);else{if(!s)throw new Error("internal error");e.callImport(s)}return oi(e,i,o?56:57),!0}function ki(e,t,n){const r=n>=87&&n<=112,o=n>=107&&n<=112,s=n>=95&&n<=106||n>=120&&n<=127||o,a=n>=101&&n<=106||n>=124&&n<=127||o;let i,c,l=-1,p=0,u=1;o?(i=Ca(t,1),c=Ca(t,2),l=Ca(t,3),p=Da(t,4),u=Da(t,5)):s?a?r?(i=Ca(t,1),c=Ca(t,2),p=Da(t,3)):(i=Ca(t,2),c=Ca(t,1),p=Da(t,3)):r?(i=Ca(t,1),c=Ca(t,2),l=Ca(t,3)):(i=Ca(t,3),c=Ca(t,1),l=Ca(t,2)):r?(c=Ca(t,2),i=Ca(t,1)):(c=Ca(t,1),i=Ca(t,2));let d,f=54;switch(n){case 87:case 95:case 101:case 107:d=44;break;case 88:case 96:case 102:case 108:d=45;break;case 89:case 97:case 103:case 109:d=46;break;case 90:case 98:case 104:case 110:d=47;break;case 113:case 120:case 124:d=40,f=58;break;case 114:case 121:case 125:d=40,f=59;break;case 91:case 99:case 105:case 111:case 115:case 122:case 126:case 119:d=40;break;case 93:case 117:d=42,f=56;break;case 94:case 118:d=43,f=57;break;case 92:case 100:case 106:case 112:case 116:case 123:case 127:d=41,f=55;break;default:return!1}const _=ni(e,c,40,!0,!0);return _||li(e,c,t,!1),r?(e.local("pLocals"),_?mt(ni(e,c,40,!1,!0),"Unknown jiterpreter cprop failure"):e.local("cknull_ptr"),o?(ri(e,l,40),0!==p&&(e.i32_const(p),e.appendU8(106),p=0),1!==u&&(e.i32_const(u),e.appendU8(108)),e.appendU8(106)):s&&l>=0?(ri(e,l,40),e.appendU8(106)):p<0&&(e.i32_const(p),e.appendU8(106),p=0),e.appendU8(d),e.appendMemarg(p,0),oi(e,i,f)):119===n?(_?mt(ni(e,c,40,!1,!0),"Unknown jiterpreter cprop failure"):e.local("cknull_ptr"),si(e,i,0),e.callImport("copy_ptr")):(_?mt(ni(e,c,40,!1,!0),"Unknown jiterpreter cprop failure"):e.local("cknull_ptr"),s&&l>=0?(ri(e,l,40),e.appendU8(106)):p<0&&(e.i32_const(p),e.appendU8(106),p=0),ri(e,i,d),e.appendU8(f),e.appendMemarg(p,0)),!0}function Si(e,t,n,r,o){e.block(),ri(e,r,40),e.local("index",34);let s="cknull_ptr";e.options.zeroPageOptimization&&aa()?(da(8,1),ri(e,n,40),s="src_ptr",e.local(s,34)):li(e,n,t,!0),e.appendU8(40),e.appendMemarg(ea(9),2),e.appendU8(73),e.appendU8(13),e.appendULeb(0),Ws(e,t,9),e.endBlock(),e.local(s),e.i32_const(ea(1)),e.appendU8(106),e.local("index"),1!=o&&(e.i32_const(o),e.appendU8(108)),e.appendU8(106)}function vi(e,t,n,r){const o=r<=328&&r>=315||341===r,s=Ca(n,o?2:1),a=Ca(n,o?1:3),i=Ca(n,o?3:2);let c,l,p=54;switch(r){case 341:return e.local("pLocals"),li(e,s,n,!0),e.appendU8(40),e.appendMemarg(ea(9),2),oi(e,a,54),!0;case 326:return e.local("pLocals"),l=Ca(n,4),Si(e,n,s,i,l),oi(e,a,54),!0;case 337:return e.block(),ri(e,Ca(n,1),40),ri(e,Ca(n,2),40),ri(e,Ca(n,3),40),e.callImport("stelemr_tc"),e.appendU8(13),e.appendULeb(0),Ws(e,n,10),e.endBlock(),!0;case 340:return Si(e,n,s,i,4),si(e,a,0),e.callImport("copy_ptr"),!0;case 324:case 320:case 319:case 333:l=4,c=40;break;case 315:l=1,c=44;break;case 316:l=1,c=45;break;case 330:case 329:l=1,c=40,p=58;break;case 317:l=2,c=46;break;case 318:l=2,c=47;break;case 332:case 331:l=2,c=40,p=59;break;case 322:case 335:l=4,c=42,p=56;break;case 321:case 334:l=8,c=41,p=55;break;case 323:case 336:l=8,c=43,p=57;break;case 325:{const t=Ca(n,4);return e.local("pLocals"),e.i32_const(Ca(n,1)),e.appendU8(106),Si(e,n,s,i,t),Ys(e,t),Ka(Ca(n,1),t),!0}case 338:{const r=Ca(n,5),o=za(t,Ca(n,4));return Si(e,n,s,i,r),si(e,a,0),e.ptr_const(o),e.callImport("value_copy"),!0}case 339:{const t=Ca(n,5);return Si(e,n,s,i,t),si(e,a,0),Ys(e,t),!0}default:return!1}return o?(e.local("pLocals"),Si(e,n,s,i,l),e.appendU8(c),e.appendMemarg(0,0),oi(e,a,p)):(Si(e,n,s,i,l),ri(e,a,c),e.appendU8(p),e.appendMemarg(0,0)),!0}function Ui(e,t,n){const r=`${t}_${n.toString(16)}`;return"object"!=typeof e.importedFunctions[r]&&e.defineImportedFunction("s",r,t,!1,n),r}function Ti(e,t,n,r,s,a){if(e.options.enableSimd&&ct.featureWasmSimd)switch(s){case 2:if(function(e,t,n){const r=o.mono_jiterp_get_simd_opcode(1,n),s=Na[n];if(s)return xi(e,t),e.appendSimd(s),oi(e,Ca(t,1),54),!0;if(r>=0)return Ra.has(n)?(e.local("pLocals"),ri(e,Ca(t,2),40),e.appendSimd(r,!0),e.appendMemarg(0,0),Ei(e,t)):(xi(e,t),e.appendSimd(r),Ei(e,t)),!0;switch(n){case 6:case 7:case 8:case 9:{const r=Oa[n];return e.local("pLocals"),e.v128_const(0),ri(e,Ca(t,2),r[0]),e.appendSimd(r[1]),e.appendU8(0),oi(e,Ca(t,1),253,11),!0}case 14:return xi(e,t,7),Ei(e,t),!0;case 15:return xi(e,t,8),Ei(e,t),!0;case 16:return xi(e,t,9),Ei(e,t),!0;case 17:return xi(e,t,10),Ei(e,t),!0;default:return!1}}(e,t,a))return!0;break;case 3:if(function(e,t,n){const r=o.mono_jiterp_get_simd_opcode(2,n);if(r>=0){const o=ja.has(n),s=$a[n];if(o)e.local("pLocals"),ri(e,Ca(t,2),253,0),ri(e,Ca(t,3),40),e.appendSimd(r),Ei(e,t);else if(Array.isArray(s)){const n=Ga(e,Ca(t,3)),o=s[0];if("number"!=typeof n)return He(`${e.functions[0].name}: Non-constant lane index passed to ExtractScalar`),!1;if(n>=o||n<0)return He(`${e.functions[0].name}: ExtractScalar index ${n} out of range (0 - ${o-1})`),!1;e.local("pLocals"),ri(e,Ca(t,2),253,0),e.appendSimd(r),e.appendU8(n),oi(e,Ca(t,1),s[1])}else Ii(e,t),e.appendSimd(r),Ei(e,t);return!0}switch(n){case 191:return ri(e,Ca(t,2),40),ri(e,Ca(t,3),253,0),e.appendSimd(11),e.appendMemarg(0,0),!0;case 10:case 11:return Ii(e,t),e.appendSimd(214),e.appendSimd(195),11===n&&e.appendU8(69),oi(e,Ca(t,1),54),!0;case 12:case 13:{const r=13===n,o=r?71:65;return e.local("pLocals"),ri(e,Ca(t,2),253,0),e.local("math_lhs128",34),ri(e,Ca(t,3),253,0),e.local("math_rhs128",34),e.appendSimd(o),e.local("math_lhs128"),e.local("math_lhs128"),e.appendSimd(o),e.local("math_rhs128"),e.local("math_rhs128"),e.appendSimd(o),e.appendSimd(80),e.appendSimd(77),e.appendSimd(80),e.appendSimd(r?195:163),oi(e,Ca(t,1),54),!0}case 47:{const n=Ca(t,3),r=Ga(e,n);return e.local("pLocals"),ri(e,Ca(t,2),253,0),"object"==typeof r?(e.appendSimd(12),e.appendBytes(r)):ri(e,n,253,0),e.appendSimd(14),Ei(e,t),!0}case 48:case 49:return function(e,t,n){const r=16/n,o=Ca(t,3),s=Ga(e,o);if(2!==r&&4!==r&&mt(!1,"Unsupported shuffle element size"),e.local("pLocals"),ri(e,Ca(t,2),253,0),"object"==typeof s){const t=new Uint8Array(bc),o=2===r?new Uint16Array(s.buffer,s.byteOffset,n):new Uint32Array(s.buffer,s.byteOffset,n);for(let e=0,s=0;e=0){const o=La[n],s=Ba[n];if(Array.isArray(o)){const n=o[0],s=Ga(e,Ca(t,3));if("number"!=typeof s)return He(`${e.functions[0].name}: Non-constant lane index passed to ReplaceScalar`),!1;if(s>=n||s<0)return He(`${e.functions[0].name}: ReplaceScalar index ${s} out of range (0 - ${n-1})`),!1;e.local("pLocals"),ri(e,Ca(t,2),253,0),ri(e,Ca(t,4),o[1]),e.appendSimd(r),e.appendU8(s),Ei(e,t)}else if(Array.isArray(s)){const n=s[0],o=Ga(e,Ca(t,4));if("number"!=typeof o)return He(`${e.functions[0].name}: Non-constant lane index passed to store method`),!1;if(o>=n||o<0)return He(`${e.functions[0].name}: Store lane ${o} out of range (0 - ${n-1})`),!1;ri(e,Ca(t,2),40),ri(e,Ca(t,3),253,0),e.appendSimd(r),e.appendMemarg(0,0),e.appendU8(o)}else!function(e,t){e.local("pLocals"),ri(e,Ca(t,2),253,0),ri(e,Ca(t,3),253,0),ri(e,Ca(t,4),253,0)}(e,t),e.appendSimd(r),Ei(e,t);return!0}switch(n){case 0:return e.local("pLocals"),ri(e,Ca(t,3),253,0),ri(e,Ca(t,4),253,0),ri(e,Ca(t,2),253,0),e.appendSimd(82),Ei(e,t),!0;case 7:{const n=Ga(e,Ca(t,4));if("object"!=typeof n)return He(`${e.functions[0].name}: Non-constant indices passed to PackedSimd.Shuffle`),!1;for(let t=0;t<32;t++){const r=n[t];if(r<0||r>31)return He(`${e.functions[0].name}: Shuffle lane index #${t} (${r}) out of range (0 - 31)`),!1}return e.local("pLocals"),ri(e,Ca(t,2),253,0),ri(e,Ca(t,3),253,0),e.appendSimd(13),e.appendBytes(n),Ei(e,t),!0}default:return!1}}(e,t,a))return!0}switch(n){case 652:if(e.options.enableSimd&&ct.featureWasmSimd){e.local("pLocals");const n=K().slice(t+4,t+4+bc);e.v128_const(n),Ei(e,t),Ha.set(Ca(t,1),{type:"v128",value:n})}else si(e,Ca(t,1),bc),e.ptr_const(t+4),Ys(e,bc);return!0;case 653:case 654:case 655:case 656:{const r=xa[n],o=bc/r,s=Ca(t,1),a=Ca(t,2),i=Ia[n],c=Aa[n];for(let t=0;t2;return e.local("pLocals"),li(e,Ca(t,2),t,!0),ri(e,Ca(t,3),n?41:40),e.appendAtomic(r[0],!1),e.appendMemarg(0,r[2]),0!==r[1]&&e.appendU8(r[1]),oi(e,Ca(t,1),n?55:54),!0}const o=Ea[n];if(o){const n=o[2]>2;return e.local("pLocals"),li(e,Ca(t,2),t,!0),ri(e,Ca(t,4),n?41:40),ri(e,Ca(t,3),n?41:40),e.appendAtomic(o[0],!1),e.appendMemarg(0,o[2]),0!==o[1]&&e.appendU8(o[1]),oi(e,Ca(t,1),n?55:54),!0}return!1}function ji(e,t,n){const r=Ja(t,271),o=function(e){271!==O(e)&&mt(!1,"decodeSwitch called on a non-switch");const t=Fa(e,2),n=[];for(let r=0;re.options.maxSwitchSize)s=!0;else for(const n of o)n>t&&e.branchTargets.add(n);if(s)return da(14,o.length),Ws(e,t,27),!0;const a=t+2*r;return e.branchTargets.add(a),e.block(),ri(e,Ca(t,1),40),e.cfg.jumpTable(o,a),e.endBlock(),Hs(e,t,n,28),!0}const $i=64;let Li,Ri,Bi,Ni=0;const Oi={};function Ci(){return Ri||(Ri=[oa("interp_entry_prologue",ta("mono_jiterp_interp_entry_prologue")),oa("interp_entry",ta("mono_jiterp_interp_entry")),oa("unbox",ta("mono_jiterp_object_unbox")),oa("stackval_from_data",ta("mono_jiterp_stackval_from_data"))],Ri)}let Di,Fi=class{constructor(e,t,n,r,o,s,a,i){this.imethod=e,this.method=t,this.argumentCount=n,this.unbox=o,this.hasThisReference=s,this.hasReturnValue=a,this.paramTypes=new Array(n);for(let e=0;ee&&(n=n.substring(n.length-e,n.length)),n=`${this.imethod.toString(16)}_${n}`}else n=`${this.imethod.toString(16)}_${this.hasThisReference?"i":"s"}${this.hasReturnValue?"_r":""}_${this.argumentCount}`;this.traceName=n}finally{e&&m(e)}}getTraceName(){return this.traceName||this.generateName(),this.traceName||"unknown"}getName(){return this.name||this.generateName(),this.name||"unknown"}};function Pi(){const e=[];let t=0;for(;0!=(t=o.mono_jiterp_tlqueue_next(1));){const n=Oi[t];n?e.push(n):Ve(`Failed to find corresponding info for method ptr ${t} from jit queue!`)}if(!e.length)return;const n=4*e.length+1;let r=Li;if(r?r.clear(n):(Li=r=new Cs(n),r.defineType("unbox",{pMonoObject:127},127,!0),r.defineType("interp_entry_prologue",{pData:127,this_arg:127},127,!0),r.defineType("interp_entry",{pData:127,res:127},64,!0),r.defineType("stackval_from_data",{type:127,result:127,value:127},64,!0)),r.options.wasmBytesLimit<=ua(6))return;const s=zs();let a=0,i=!0,c=!1;try{r.appendU32(1836278016),r.appendU32(1);for(let t=0;tec[o.mono_jiterp_type_to_ldind(e)])),this.enableDirect=fa().directJitCalls&&!this.noWrapper&&this.wasmNativeReturnType&&(0===this.wasmNativeSignature.length||this.wasmNativeSignature.every((e=>e))),this.enableDirect&&(this.target=this.addr);let c=this.target.toString(16);const l=Gi++;this.name=`${this.enableDirect?"jcp":"jcw"}_${c}_${l.toString(16)}`}}function Zi(e){let t=Ji[e];return t||(e>=Ji.length&&(Ji.length=e+1),qi||(qi=qs()),Ji[e]=t=qi.get(e)),t}function Ki(){const e=[];let t=0;for(;0!=(t=o.mono_jiterp_tlqueue_next(0));){const n=Qi[t];if(n)for(let t=0;t0){o.mono_jiterp_register_jit_call_thunk(n.cinfo,r);for(let e=0;e0&&(kc.push(["trace_eip","trace_eip",Ic]),kc.push(["trace_args","trace_eip",Ac])),(ct.emscriptenBuildOptions.enableEventPipe||ct.emscriptenBuildOptions.enableDevToolsProfiler)&&(kc.push(oa("prof_enter",ta("mono_jiterp_prof_enter"))),kc.push(oa("prof_samplepoint",ta("mono_jiterp_prof_samplepoint"))),kc.push(oa("prof_leave",ta("mono_jiterp_prof_leave"))));const e=(e,t)=>{for(let n=0;n>>0,ac.operand2=t>>>0}function jc(e,t,n,r){if("number"==typeof r)o.mono_jiterp_adjust_abort_count(r,1),r=$s(r);else{let e=mc[r];"number"!=typeof e?e=1:e++,mc[r]=e}hc[e].abortReason=r}function $c(e){if(!ct.runtimeReady)return;if(ic||(ic=fa()),!ic.enableStats)return;const t=ua(9),n=ua(10),r=ua(7),s=ua(8),a=ua(3),i=ua(4),c=ua(2),l=ua(1),p=ua(0),u=ua(6),d=ua(11),f=ua(12),_=ua(13),m=ua(14),h=t/(t+n)*100,g=o.mono_jiterp_get_rejected_trace_count(),b=ic.eliminateNullChecks?r.toString():"off",y=ic.zeroPageOptimization?s.toString()+(aa()?"":" (disabled)"):"off",w=ic.enableBackwardBranches?`emitted: ${t}, failed: ${n} (${h.toFixed(1)}%)`:": off",k=a?ic.directJitCalls?`direct jit calls: ${i} (${(i/a*100).toFixed(1)}%)`:"direct jit calls: off":"";if(Ve(`// jitted ${u}b; ${l} traces (${(l/p*100).toFixed(1)}%) (${g} rejected); ${a} jit_calls; ${c} interp_entries`),Ve(`// cknulls pruned: ${b}, fused: ${y}; back-brs ${w}; switch tgts ${_}/${m+_}; ${k}`),Ve(`// time: ${0|d}ms generating, ${0|f}ms compiling wasm.`),!e){if(ic.countBailouts){const e=Object.values(hc);e.sort(((e,t)=>(t.bailoutCount||0)-(e.bailoutCount||0)));for(let e=0;et.hitCount-e.hitCount)),Ve("// hottest failed traces:");for(let e=0,n=0;e=0)){if(t[e].abortReason){if(t[e].abortReason.startsWith("mono_icall_")||t[e].abortReason.startsWith("ret."))continue;switch(t[e].abortReason){case"trace-too-small":case"trace-too-big":case"call":case"callvirt.fast":case"calli.nat.fast":case"calli.nat":case"call.delegate":case"newobj":case"newobj_vt":case"newobj_slow":case"switch":case"rethrow":case"end-of-body":case"ret":case"intrins_marvin_block":case"intrins_ascii_chars_to_uppercase":continue}}n++,Ve(`${t[e].name} @${t[e].ip} (${t[e].hitCount} hits) ${t[e].abortReason}`)}const n=[];for(const t in e)n.push([t,e[t]]);n.sort(((e,t)=>t[1]-e[1])),Ve("// heat:");for(let e=0;e0?mc[t]=n:delete mc[t]}const e=Object.keys(mc);e.sort(((e,t)=>mc[t]-mc[e]));for(let t=0;te.toString(16).padStart(2,"0"))).join("")}`}async function Cc(e){const t=lt.config.resources.lazyAssembly;if(!t)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.");let n=e;e.endsWith(".dll")?n=e.substring(0,e.length-4):e.endsWith(".wasm")&&(n=e.substring(0,e.length-5));const r=n+".dll",o=n+".wasm";let s=null;for(let e=0;eObject.prototype.hasOwnProperty.call(t,e))).map((e=>{const n=[];for(let r=0;re.concat(t)),new Array).map((async e=>{const t=await e;!function(e){lt.assert_runtime_running();const t=Ke.stackSave();try{const t=$n(3),n=Ln(t,2);Wn(n,21),vo(n,e,4),kn(yn.LoadSatelliteAssembly,t)}finally{lt.is_runtime_running()&&Ke.stackRestore(t)}}(new Uint8Array(t))})))}function Fc(e){if(e===l)return null;const t=o.mono_wasm_read_as_bool_or_null_unsafe(e);return 0!==t&&(1===t||null)}function Pc(e){if(e)try{(e=e.toLocaleLowerCase().replace("_","-")).startsWith("zh-")&&(e=e.replace("-chs","-Hans").replace("-cht","-Hant"));const t=Intl.getCanonicalLocales(e);return t.length>0?t[0]:void 0}catch(e){return}}const Mc=[function(e){Xo&&(globalThis.clearTimeout(Xo),Xo=void 0),Xo=Ke.safeSetTimeout(mono_wasm_schedule_timer_tick,e)},function(e,t,n,r,o){if(!0!==ct.mono_wasm_runtime_is_ready)return;const s=K(),a=0!==e?Le(e).concat(".dll"):"",i=ht(new Uint8Array(s.buffer,t,n));let c;r&&(c=ht(new Uint8Array(s.buffer,r,o))),Lt({eventName:"AssemblyLoaded",assembly_name:a,assembly_b64:i,pdb_b64:c})},function(e,t){const n=Le(t);et.logging&&"function"==typeof et.logging.debugger&&et.logging.debugger(e,n)},function(e,t,n,r){const o={res_ok:e,res:{id:t,value:ht(new Uint8Array(K().buffer,n,r))}};bt.has(t)&&We(`Adding an id (${t}) that already exists in commands_received`),bt.set(t,o)},function mono_wasm_fire_debugger_agent_message_with_data(e,t){mono_wasm_fire_debugger_agent_message_with_data_to_pause(ht(new Uint8Array(K().buffer,e,t)))},mono_wasm_fire_debugger_agent_message_with_data_to_pause,function(){Jo||(Jo=Ke.safeSetTimeout(Ko,0))},function(e,t,n,r,s,a,i,c){if(n||mt(!1,"expected instruction pointer"),ic||(ic=fa()),!ic.enableTraces)return 1;if(ic.wasmBytesLimit<=ua(6))return 1;if(cc)return 1;let l,p=hc[r];if(p||(hc[r]=p=new dc(n,r,i)),da(0,1),ic.estimateHeat||pc.length>0||p.isVerbose){const e=o.mono_wasm_method_get_full_name(t);l=Le(e),m(e)}const u=Le(o.mono_wasm_method_get_name(t));p.name=l||u;let d=ic.noExitBackwardBranches?function(e,t,n){const r=t+n,o=[],s=(e-t)/2;for(;e=s&&o.push(r)}switch(r){case 132:case 133:o.push(n+a)}}e+=2*a}return o.length<=0?null:new Uint16Array(o)}(n,s,a):null;if(d&&n!==s){const e=(n-s)/2;let t=!1;for(let n=0;n=e){t=!0;break}t||(d=null)}const f=function(e,t,n,r,s,a,i,c,l){let p=wc;p?p.clear(8):(wc=p=new Cs(8),function(e){e.defineType("trace",{frame:127,pLocals:127,cinfo:127,ip:127},127,!0),e.defineType("bailout",{retval:127,base:127,reason:127},127,!0),e.defineType("copy_ptr",{dest:127,src:127},64,!0),e.defineType("value_copy",{dest:127,src:127,klass:127},64,!0),e.defineType("entry",{imethod:127},127,!0),e.defineType("strlen",{ppString:127,pResult:127},127,!0),e.defineType("getchr",{ppString:127,pIndex:127,pResult:127},127,!0),e.defineType("getspan",{destination:127,span:127,index:127,element_size:127},127,!0),e.defineType("overflow_check_i4",{lhs:127,rhs:127,opcode:127},127,!0),e.defineType("mathop_d_d",{value:124},124,!0),e.defineType("mathop_dd_d",{lhs:124,rhs:124},124,!0),e.defineType("mathop_f_f",{value:125},125,!0),e.defineType("mathop_ff_f",{lhs:125,rhs:125},125,!0),e.defineType("fmaf",{x:125,y:125,z:125},125,!0),e.defineType("fma",{x:124,y:124,z:124},124,!0),e.defineType("trace_eip",{traceId:127,eip:127},64,!0),e.defineType("newobj_i",{ppDestination:127,vtable:127},127,!0),e.defineType("newstr",{ppDestination:127,length:127},127,!0),e.defineType("newarr",{ppDestination:127,vtable:127,length:127},127,!0),e.defineType("localloc",{destination:127,len:127,frame:127},64,!0),e.defineType("ld_del_ptr",{ppDestination:127,ppSource:127},64,!0),e.defineType("ldtsflda",{ppDestination:127,offset:127},64,!0),e.defineType("gettype",{destination:127,source:127},127,!0),e.defineType("castv2",{destination:127,source:127,klass:127,opcode:127},127,!0),e.defineType("hasparent",{klass:127,parent:127},127,!0),e.defineType("imp_iface",{vtable:127,klass:127},127,!0),e.defineType("imp_iface_s",{obj:127,vtable:127,klass:127},127,!0),e.defineType("box",{vtable:127,destination:127,source:127,vt:127},64,!0),e.defineType("conv",{destination:127,source:127,opcode:127},127,!0),e.defineType("relop_fp",{lhs:124,rhs:124,opcode:127},127,!0),e.defineType("safepoint",{frame:127,ip:127},64,!0),e.defineType("prof_enter",{frame:127,ip:127},64,!0),e.defineType("prof_samplepoint",{frame:127,ip:127},64,!0),e.defineType("prof_leave",{frame:127,ip:127},64,!0),e.defineType("hashcode",{ppObj:127},127,!0),e.defineType("try_hash",{ppObj:127},127,!0),e.defineType("hascsize",{ppObj:127},127,!0),e.defineType("hasflag",{klass:127,dest:127,sp1:127,sp2:127},64,!0),e.defineType("array_rank",{destination:127,source:127},127,!0),e.defineType("stfld_o",{locals:127,fieldOffsetBytes:127,targetLocalOffsetBytes:127,sourceLocalOffsetBytes:127},127,!0),e.defineType("notnull",{ptr:127,expected:127,traceIp:127,ip:127},64,!0),e.defineType("stelemr",{o:127,aindex:127,ref:127},127,!0),e.defineType("simd_p_p",{arg0:127,arg1:127},64,!0),e.defineType("simd_p_pp",{arg0:127,arg1:127,arg2:127},64,!0),e.defineType("simd_p_ppp",{arg0:127,arg1:127,arg2:127,arg3:127},64,!0);const t=xc();for(let n=0;ni.indexOf(e)>=0))>=0;b&&!i&&mt(!1,"Expected methodFullName if trace is instrumented");const y=b?_c++:0;b&&(Ve(`instrumenting: ${i}`),fc[y]=new uc(i)),p.compressImportNames=!b;try{p.appendU32(1836278016),p.appendU32(1),p.generateTypeSection();const t={disp:127,cknull_ptr:127,dest_ptr:127,src_ptr:127,memop_dest:127,memop_src:127,index:127,count:127,math_lhs32:127,math_rhs32:127,math_lhs64:126,math_rhs64:126,temp_f32:125,temp_f64:124};p.options.enableSimd&&(t.v128_zero=123,t.math_lhs128=123,t.math_rhs128=123);let s=!0,i=0;if(p.defineFunction({type:"trace",name:d,export:!0,locals:t},(()=>{switch(p.base=n,p.traceIndex=a,p.frame=e,O(n)){case 674:case 675:case 677:case 676:break;default:throw new Error(`Expected *ip to be a jiterpreter opcode but it was ${O(n)}`)}return p.cfg.initialize(r,c,b?1:0),i=function(e,t,n,r,s,a,i,c){let l=!0,p=!1,u=!1,d=!1,f=0,_=0,m=0;Ya(),a.backBranchTraceLevel=i?2:0;let h=a.cfg.entry(n);for(;n&&n;){if(a.cfg.ip=n,n>=s){jc(a.traceIndex,0,0,"end-of-body"),i&&Ve(`instrumented trace ${t} exited at end of body @${n.toString(16)}`);break}const g=a.options.maxModuleSize-300-a.bytesGeneratedSoFar-a.cfg.overheadBytes;if(a.size>=g){jc(a.traceIndex,0,0,"trace-too-big"),i&&Ve(`instrumented trace ${t} exited because of size limit at @${n.toString(16)} (spaceLeft=${g}b)`);break}let b=O(n);const y=o.mono_jiterp_get_opcode_info(b,2),w=o.mono_jiterp_get_opcode_info(b,3),k=Ja(n,b),S=b>=657&&b<=659,v=S?b-657+2:0,U=S?Ca(n,1+v):0;b>=0&&b<691||mt(!1,`invalid opcode ${b}`);const T=S?ga[v][U]:$s(b),E=n,x=a.options.noExitBackwardBranches&&Wa(n,r,c),I=a.branchTargets.has(n),A=x||I||l&&c,j=m+_+a.branchTargets.size;let $=!1,L=ra(b);switch(x&&(a.backBranchTraceLevel>1&&Ve(`${t} recording back branch target 0x${n.toString(16)}`),a.backBranchOffsets.push(n)),A&&(u=!1,d=!1,ei(a,n,x),p=!0,Ya(),m=0),L<-1&&p&&(L=-2===L?2:0),l=!1,271===b||(lc.indexOf(b)>=0?(Ws(a,n,23),b=678):u&&(b=678)),b){case 271:ji(a,n,j)||(n=0);break;case 678:u&&(d||a.appendU8(0),d=!0);break;case 313:case 314:ai(a,Ca(n,1),0,Ca(n,2));break;case 312:si(a,Ca(n,1),0),ri(a,Ca(n,2),40),a.local("frame"),a.callImport("localloc");break;case 285:ri(a,Ca(n,1),40),a.i32_const(0),ri(a,Ca(n,2),40),a.appendU8(252),a.appendU8(11),a.appendU8(0);break;case 286:ri(a,Ca(n,1),40),Xs(a,0,Ca(n,2));break;case 310:{const e=Ca(n,3),t=Ca(n,2),r=Ca(n,1),o=Ga(a,e);0!==o&&("number"!=typeof o?(ri(a,e,40),a.local("count",34),a.block(64,4)):(a.i32_const(o),a.local("count",33)),ri(a,r,40),a.local("dest_ptr",34),a.appendU8(69),ri(a,t,40),a.local("src_ptr",34),a.appendU8(69),a.appendU8(114),a.block(64,4),Ws(a,n,2),a.endBlock(),"number"==typeof o&&Qs(a,0,0,o,!1,"dest_ptr","src_ptr")||(a.local("dest_ptr"),a.local("src_ptr"),a.local("count"),a.appendU8(252),a.appendU8(10),a.appendU8(0),a.appendU8(0)),"number"!=typeof o&&a.endBlock());break}case 311:{const e=Ca(n,3),t=Ca(n,2);li(a,Ca(n,1),n,!0),ri(a,t,40),ri(a,e,40),a.appendU8(252),a.appendU8(11),a.appendU8(0);break}case 143:case 145:case 227:case 229:case 144:case 146:case 129:case 132:case 133:bi(a,n,e,b)?p=!0:n=0;break;case 538:{const e=Ca(n,2),t=Ca(n,1);e!==t?(a.local("pLocals"),li(a,e,n,!0),oi(a,t,54)):li(a,e,n,!1),a.allowNullCheckOptimization&&Xa.set(t,n),$=!0;break}case 638:case 639:{const t=P(e+ea(4));a.ptr_const(t),a.callImport("entry"),a.block(64,4),Ws(a,n,1),a.endBlock();break}case 676:L=0;break;case 138:break;case 86:{a.local("pLocals");const e=Ca(n,2),r=ci(a,e),o=Ca(n,1),s=Ca(n,3);r||He(`${t}: Expected local ${e} to have address taken flag`),si(a,e,s),oi(a,o,54),Ha.set(o,{type:"ldloca",offset:e}),$=!0;break}case 272:case 300:case 301:case 556:{a.local("pLocals");let t=za(e,Ca(n,2));300===b&&(t=o.mono_jiterp_imethod_to_ftnptr(t)),a.ptr_const(t),oi(a,Ca(n,1),54);break}case 305:{const t=za(e,Ca(n,3));ri(a,Ca(n,1),40),ri(a,Ca(n,2),40),a.ptr_const(t),a.callImport("value_copy");break}case 306:{const e=Ca(n,3);ri(a,Ca(n,1),40),ri(a,Ca(n,2),40),Ys(a,e);break}case 307:{const e=Ca(n,3);si(a,Ca(n,1),e),li(a,Ca(n,2),n,!0),Ys(a,e);break}case 308:{const t=za(e,Ca(n,3));ri(a,Ca(n,1),40),si(a,Ca(n,2),0),a.ptr_const(t),a.callImport("value_copy");break}case 309:{const e=Ca(n,3);ri(a,Ca(n,1),40),si(a,Ca(n,2),0),Ys(a,e);break}case 540:a.local("pLocals"),li(a,Ca(n,2),n,!0),a.appendU8(40),a.appendMemarg(ea(2),2),oi(a,Ca(n,1),54);break;case 539:{a.block(),ri(a,Ca(n,3),40),a.local("index",34);let e="cknull_ptr";a.options.zeroPageOptimization&&aa()?(da(8,1),ri(a,Ca(n,2),40),e="src_ptr",a.local(e,34)):li(a,Ca(n,2),n,!0),a.appendU8(40),a.appendMemarg(ea(2),2),a.appendU8(72),a.local("index"),a.i32_const(0),a.appendU8(78),a.appendU8(113),a.appendU8(13),a.appendULeb(0),Ws(a,n,11),a.endBlock(),a.local("pLocals"),a.local("index"),a.i32_const(2),a.appendU8(108),a.local(e),a.appendU8(106),a.appendU8(47),a.appendMemarg(ea(3),1),oi(a,Ca(n,1),54);break}case 342:case 343:{const e=Da(n,4);a.block(),ri(a,Ca(n,3),40),a.local("index",34);let t="cknull_ptr";342===b?li(a,Ca(n,2),n,!0):(si(a,Ca(n,2),0),t="src_ptr",a.local(t,34)),a.appendU8(40),a.appendMemarg(ea(7),2),a.appendU8(73),a.local("index"),a.i32_const(0),a.appendU8(78),a.appendU8(113),a.appendU8(13),a.appendULeb(0),Ws(a,n,18),a.endBlock(),a.local("pLocals"),a.local(t),a.appendU8(40),a.appendMemarg(ea(8),2),a.local("index"),a.i32_const(e),a.appendU8(108),a.appendU8(106),oi(a,Ca(n,1),54);break}case 664:a.block(),ri(a,Ca(n,3),40),a.local("count",34),a.i32_const(0),a.appendU8(78),a.appendU8(13),a.appendULeb(0),Ws(a,n,18),a.endBlock(),si(a,Ca(n,1),16),a.local("dest_ptr",34),ri(a,Ca(n,2),40),a.appendU8(54),a.appendMemarg(0,0),a.local("dest_ptr"),a.local("count"),a.appendU8(54),a.appendMemarg(4,0);break;case 577:si(a,Ca(n,1),4),si(a,Ca(n,2),4),a.callImport("ld_del_ptr");break;case 73:si(a,Ca(n,1),4),a.ptr_const(Pa(n,2)),a.callImport("ldtsflda");break;case 663:a.block(),si(a,Ca(n,1),4),si(a,Ca(n,2),0),a.callImport("gettype"),a.appendU8(13),a.appendULeb(0),Ws(a,n,2),a.endBlock();break;case 660:{const t=za(e,Ca(n,4));a.ptr_const(t),si(a,Ca(n,1),4),si(a,Ca(n,2),0),si(a,Ca(n,3),0),a.callImport("hasflag");break}case 669:{const e=ea(1);a.local("pLocals"),li(a,Ca(n,2),n,!0),a.i32_const(e),a.appendU8(106),oi(a,Ca(n,1),54);break}case 661:a.local("pLocals"),si(a,Ca(n,2),0),a.callImport("hashcode"),oi(a,Ca(n,1),54);break;case 662:a.local("pLocals"),si(a,Ca(n,2),0),a.callImport("try_hash"),oi(a,Ca(n,1),54);break;case 665:a.local("pLocals"),si(a,Ca(n,2),0),a.callImport("hascsize"),oi(a,Ca(n,1),54);break;case 670:a.local("pLocals"),ri(a,Ca(n,2),40),a.local("math_lhs32",34),ri(a,Ca(n,3),40),a.appendU8(115),a.i32_const(2),a.appendU8(116),a.local("math_rhs32",33),a.local("math_lhs32"),a.i32_const(327685),a.appendU8(106),a.i32_const(10485920),a.appendU8(114),a.i32_const(1703962),a.appendU8(106),a.i32_const(-8388737),a.appendU8(114),a.local("math_rhs32"),a.appendU8(113),a.appendU8(69),oi(a,Ca(n,1),54);break;case 541:case 542:a.block(),si(a,Ca(n,1),4),si(a,Ca(n,2),0),a.callImport(541===b?"array_rank":"a_elesize"),a.appendU8(13),a.appendULeb(0),Ws(a,n,2),a.endBlock();break;case 289:case 290:{const t=za(e,Ca(n,3)),r=o.mono_jiterp_is_special_interface(t),s=289===b,i=Ca(n,1);if(!t){jc(a.traceIndex,0,0,"null-klass"),n=0;continue}a.block(),a.options.zeroPageOptimization&&aa()?(ri(a,Ca(n,2),40),a.local("dest_ptr",34),da(8,1)):(a.block(),ri(a,Ca(n,2),40),a.local("dest_ptr",34),a.appendU8(13),a.appendULeb(0),a.local("pLocals"),a.i32_const(0),oi(a,i,54),a.appendU8(12),a.appendULeb(1),a.endBlock(),a.local("dest_ptr")),r&&a.local("dest_ptr"),a.appendU8(40),a.appendMemarg(ea(14),0),a.ptr_const(t),a.callImport(r?"imp_iface_s":"imp_iface"),s&&(a.local("dest_ptr"),a.appendU8(69),a.appendU8(114)),a.block(64,4),a.local("pLocals"),a.local("dest_ptr"),oi(a,i,54),a.appendU8(5),s?Ws(a,n,19):(a.local("pLocals"),a.i32_const(0),oi(a,i,54)),a.endBlock(),a.endBlock();break}case 291:case 292:case 287:case 288:{const t=za(e,Ca(n,3)),r=291===b||292===b,o=287===b||291===b,s=Ca(n,1);if(!t){jc(a.traceIndex,0,0,"null-klass"),n=0;continue}a.block(),a.options.zeroPageOptimization&&aa()?(ri(a,Ca(n,2),40),a.local("dest_ptr",34),da(8,1)):(a.block(),ri(a,Ca(n,2),40),a.local("dest_ptr",34),a.appendU8(13),a.appendULeb(0),a.local("pLocals"),a.i32_const(0),oi(a,s,54),a.appendU8(12),a.appendULeb(1),a.endBlock(),a.local("dest_ptr")),a.appendU8(40),a.appendMemarg(ea(14),0),a.appendU8(40),a.appendMemarg(ea(15),0),r&&a.local("src_ptr",34),a.i32_const(t),a.appendU8(70),a.block(64,4),a.local("pLocals"),a.local("dest_ptr"),oi(a,s,54),a.appendU8(5),r?(a.local("src_ptr"),a.ptr_const(t),a.callImport("hasparent"),o&&(a.local("dest_ptr"),a.appendU8(69),a.appendU8(114)),a.block(64,4),a.local("pLocals"),a.local("dest_ptr"),oi(a,s,54),a.appendU8(5),o?Ws(a,n,19):(a.local("pLocals"),a.i32_const(0),oi(a,s,54)),a.endBlock()):(si(a,Ca(n,1),4),a.local("dest_ptr"),a.ptr_const(t),a.i32_const(b),a.callImport("castv2"),a.appendU8(69),a.block(64,4),Ws(a,n,19),a.endBlock()),a.endBlock(),a.endBlock();break}case 295:case 296:a.ptr_const(za(e,Ca(n,3))),si(a,Ca(n,1),4),si(a,Ca(n,2),0),a.i32_const(296===b?1:0),a.callImport("box");break;case 299:{const t=za(e,Ca(n,3)),r=ea(17),o=Ca(n,1),s=P(t+r);if(!t||!s){jc(a.traceIndex,0,0,"null-klass"),n=0;continue}a.options.zeroPageOptimization&&aa()?(ri(a,Ca(n,2),40),a.local("dest_ptr",34),da(8,1)):(li(a,Ca(n,2),n,!0),a.local("dest_ptr",34)),a.appendU8(40),a.appendMemarg(ea(14),0),a.appendU8(40),a.appendMemarg(ea(15),0),a.local("src_ptr",34),a.appendU8(40),a.appendMemarg(r,0),a.i32_const(s),a.appendU8(70),a.local("src_ptr"),a.appendU8(45),a.appendMemarg(ea(16),0),a.appendU8(69),a.appendU8(113),a.block(64,4),a.local("pLocals"),a.local("dest_ptr"),a.i32_const(ea(18)),a.appendU8(106),oi(a,o,54),a.appendU8(5),Ws(a,n,21),a.endBlock();break}case 294:a.block(),si(a,Ca(n,1),4),ri(a,Ca(n,2),40),a.callImport("newstr"),a.appendU8(13),a.appendULeb(0),Ws(a,n,17),a.endBlock();break;case 293:{a.block(),si(a,Ca(n,1),4);const t=za(e,Ca(n,3));a.i32_const(t),ri(a,Ca(n,2),40),a.callImport("newarr"),a.appendU8(13),a.appendULeb(0),Ws(a,n,17),a.endBlock();break}case 283:a.block(),si(a,Ca(n,1),4),a.ptr_const(za(e,Ca(n,2))),a.callImport("newobj_i"),a.appendU8(13),a.appendULeb(0),Ws(a,n,17),a.endBlock();break;case 282:case 284:case 544:case 543:p?(Hs(a,n,j,15),u=!0,L=0):n=0;break;case 546:case 547:case 548:case 549:case 545:p?(Hs(a,n,j,545==b?22:15),u=!0):n=0;break;case 137:case 134:Ws(a,n,16),u=!0;break;case 130:case 131:Ws(a,n,26),u=!0;break;case 136:if(a.callHandlerReturnAddresses.length>0&&a.callHandlerReturnAddresses.length<=3){const t=Va(e,Ca(n,1));a.local("pLocals"),a.appendU8(40),a.appendMemarg(t,0),a.local("index",33);for(let e=0;e=3&&b<=12||b>=509&&b<=510?p||a.options.countBailouts?(Ws(a,n,14),u=!0):n=0:b>=13&&b<=21?pi(a,n,b)?$=!0:n=0:b>=74&&b<=85?ui(a,n,b)||(n=0):b>=344&&b<=427?_i(a,n,b)||(n=0):wa[b]?mi(a,n,b)||(n=0):va[b]?yi(a,n,e,b)?p=!0:n=0:b>=23&&b<=49?di(a,e,n,b)||(n=0):b>=50&&b<=73?fi(a,e,n,b)||(n=0):b>=87&&b<=127?ki(a,n,b)||(n=0):b>=579&&b<=632?wi(a,n,b)||(n=0):b>=315&&b<=341?vi(a,e,n,b)||(n=0):b>=227&&b<=270?a.branchTargets.size>0?(Hs(a,n,j,8),u=!0):n=0:b>=652&&b<=659?(a.containsSimd=!0,Ti(a,n,b,T,v,U)?$=!0:n=0):b>=559&&b<=571?(a.containsAtomics=!0,Ai(a,n,b)||(n=0)):0===L||(n=0)}if(n){if(!$){const e=n+2;for(let t=0;t0&&(e+=" -> ");for(let n=0;n0&&(p?m++:_++,f+=L),(n+=2*k)<=s&&(h=n)}else i&&Ve(`instrumented trace ${t} aborted for opcode ${T} @${E.toString(16)}`),jc(a.traceIndex,0,0,b)}for(;a.activeBlocks>0;)a.endBlock();return a.cfg.exitIp=h,a.containsSimd&&(f+=10240),f}(e,d,n,r,u,p,y,c),s=i>=ic.minimumTraceValue,p.cfg.generate()})),p.emitImportsAndFunctions(!1),!s)return g&&"end-of-body"===g.abortReason&&(g.abortReason="trace-too-small"),0;_=zs();const f=p.getArrayView();if(da(6,f.length),f.length>=p.options.maxModuleSize)return We(`Jiterpreter generated too much code (${f.length} bytes) for trace ${d}. Please report this issue.`),0;const h=new WebAssembly.Module(f),w=p.getWasmImports(),k=new WebAssembly.Instance(h,w).exports[d];let S;m=!1,l?(qs().set(l,k),S=l):(S=Gs(0,k),0===S&&(cc=!0));const v=ua(1);return p.options.enableStats&&v&&v%500==0&&$c(!0),S}catch(e){h=!0,m=!1;let t=p.containsSimd?" (simd)":"";return p.containsAtomics&&(t+=" (atomics)"),He(`${i||d}${t} code generation failed: ${e} ${e.stack}`),Zs(),0}finally{const e=zs();if(_?(da(11,_-f),da(12,e-_)):da(11,e-f),h||!m&&ic.dumpTraces||b){if(h||ic.dumpTraces||b)for(let e=0;e0;)p.endBlock();p.inSection&&p.endSection()}catch(e){}const n=p.getArrayView(!1,!0);for(let r=0;r=4?Pi():Ni>0||"function"==typeof globalThis.setTimeout&&(Ni=globalThis.setTimeout((()=>{Ni=0,Pi()}),10))}},function(e,t,n,r,o,s,a,i){if(n>16)return 0;const c=new Fi(e,t,n,r,o,s,a,i);Bi||(Bi=qs());const l=Bi.get(i),p=(s?a?29:20:a?11:2)+n;return c.result=Gs(p,l),Oi[e]=c,c.result},function(e,t,n,r,s){const a=P(n+0),i=Xi[a];if(i)return void(i.result>0?o.mono_jiterp_register_jit_call_thunk(n,i.result):(i.queue.push(n),i.queue.length>12&&Ki()));const c=new Yi(e,t,n,r,0!==s);Xi[a]=c;const l=o.mono_jiterp_tlqueue_add(0,e);let p=Qi[e];p||(p=Qi[e]=[]),p.push(c),l>=6&&Ki()},function(e,t,n,r,s){const a=Zi(e);try{a(t,n,r,s)}catch(e){const t=Ke.wasmExports.__cpp_exception,n=t instanceof WebAssembly.Tag;if(n&&!(e instanceof WebAssembly.Exception&&e.is(t)))throw e;if(i=s,Ke.HEAPU32[i>>>2]=1,n){const n=e.getArg(t,0);o.mono_jiterp_begin_catch(n),o.mono_jiterp_end_catch()}else{if("number"!=typeof e)throw e;o.mono_jiterp_begin_catch(e),o.mono_jiterp_end_catch()}}var i},Ki,function(e,t,n){ct.emscriptenBuildOptions.enableDevToolsProfiler&&function(e){Mt.delete(e)}(e),delete hc[n],function(e){delete Oi[e]}(t),function(e){const t=Qi[e];if(t){for(let e=0;e",a=!!r,i=e?Le(e):"",c=o,l=t?Le(t):"",p=`[MONO] ${s}`;if(et.logging&&"function"==typeof et.logging.trace)et.logging.trace(i,l,p,a,c);else switch(l){case"critical":case"error":{const e=p+"\n"+(new Error).stack;lt.exitReason||(lt.exitReason=e),console.error(Qe(e))}break;case"warning":console.warn(p);break;case"message":default:console.log(p);break;case"info":console.info(p);break;case"debug":console.debug(p)}},function(e){wt=lt.config.mainAssemblyName+".dll",kt=e,console.assert(!0,`Adding an entrypoint breakpoint ${wt} at method token ${kt}`);debugger},function(e,t){if(!globalThis.crypto||!globalThis.crypto.getRandomValues)return-1;const n=K(),r=n.subarray(e,e+t),o=(n.buffer,!1),s=o?new Uint8Array(t):r;for(let e=0;e{e&&e.dispose()},u=!0)}const d=Bn(e,1),f=Nn(d),_=eo(d,f,1),m=26==f,h=20==f||30==f,g={fn:i,fqn:s+":"+o,args_count:c,arg_marshalers:l,res_converter:_,has_cleanup:u,arg_cleanup:p,is_discard_no_wait:m,is_async:h,isDisposed:!1};let b;b=h||m||u?ar(g):0!=c||_?1!=c||_?1==c&&_?function(e){const t=e.fn,r=e.arg_marshalers[0],o=e.res_converter,s=e.fqn;return e=null,function(a){const i=Ft();try{n&&e.isDisposed;const s=r(a),i=t(s);o(a,i)}catch(e){wo(a,e)}finally{Pt(i,"mono.callCsFunction:",s)}}}(g):2==c&&_?function(e){const t=e.fn,r=e.arg_marshalers[0],o=e.arg_marshalers[1],s=e.res_converter,a=e.fqn;return e=null,function(i){const c=Ft();try{n&&e.isDisposed;const a=r(i),c=o(i),l=t(a,c);s(i,l)}catch(e){wo(i,e)}finally{Pt(c,"mono.callCsFunction:",a)}}}(g):ar(g):function(e){const t=e.fn,r=e.arg_marshalers[0],o=e.fqn;return e=null,function(s){const a=Ft();try{n&&e.isDisposed;const o=r(s);t(o)}catch(e){wo(s,e)}finally{Pt(a,"mono.callCsFunction:",o)}}}(g):function(e){const t=e.fn,r=e.fqn;return e=null,function(o){const s=Ft();try{n&&e.isDisposed,t()}catch(e){wo(o,e)}finally{Pt(s,"mono.callCsFunction:",r)}}}(g);let y=b;y[xn]=g,sr[a]=y,Pt(t,"mono.bindJsFunction:",o)}(e),0}catch(e){return Ne(function(e){let t="unknown exception";if(e){t=e.toString();const n=e.stack;n&&(n.startsWith(t)?t=n:t+="\n"+n),t=Xe(t)}return t}(e))}},function(e,t){!function(e,t){lt.assert_runtime_running();const n=Fr(e);n&&"function"==typeof n&&n[En]||mt(!1,`Bound function handle expected ${e}`),n(t=oe(t,0))}(e,t)},function(e,t){lt.assert_runtime_running(),t=oe(t,0);const n=sr[e];n||mt(!1,`Imported function handle expected ${e}`),n(t)},function(e){gr((()=>function(e){if(!lt.is_runtime_running())return void(lt.diagnosticTracing&&ze("This promise resolution/rejection can't be propagated to managed code, mono runtime already exited."));const t=Ln(e=oe(e,0),0),r=n;try{lt.assert_runtime_running();const n=Ln(e,1),o=Ln(e,2),s=Ln(e,3),a=zn(o),i=Qn(o),c=Fr(i);c||mt(!1,`Cannot find Promise for JSHandle ${i}`),c.resolve_or_reject(a,i,s),r||(Wn(n,1),Wn(t,0))}catch(e){wo(t,e)}}(e)))},function(e){gr((()=>function(e){if(!lt.is_runtime_running())return void(lt.diagnosticTracing&&ze("This promise can't be canceled, mono runtime already exited."));const t=qr(e);t||mt(!1,`Expected Promise for GCHandle ${e}`),t.cancel()}(e)))},function(e,t,n,r,o,s,a){try{const i=Re(n,n+2*r),c=Pc(i);if(!c&&i)return Be(o,o+2*i.length,i),T(a,i.length),0;const l=Pc(Re(e,e+2*t));if(!c||!l)throw new Error(`Locale or culture name is null or empty. localeName=${c}, cultureName=${l}`);const p=c.split("-");let u,d;try{const e=p.length>1?p.pop():void 0;d=e?new Intl.DisplayNames([l],{type:"region"}).of(e):void 0;const t=p.join("-");u=new Intl.DisplayNames([l],{type:"language"}).of(t)}catch(e){if(!(e instanceof RangeError))throw e;try{u=new Intl.DisplayNames([l],{type:"language"}).of(c)}catch(e){if(e instanceof RangeError&&i)return Be(o,o+2*i.length,i),T(a,i.length),0;throw e}}const f={LanguageName:u,RegionName:d},_=Object.values(f).join("##");if(!_)throw new Error(`Locale info for locale=${c} is null or empty.`);if(_.length>s)throw new Error(`Locale info for locale=${c} exceeds length of ${s}.`);return Be(o,o+2*_.length,_),T(a,_.length),0}catch(e){return T(a,-1),Ne(e.toString())}},function(e){return pt.ds_rt_websocket_create(e)},function(e,t,n){return pt.ds_rt_websocket_send(e,t,n)},function(e){return pt.ds_rt_websocket_poll(e)},function(e,t,n){return pt.ds_rt_websocket_recv(e,t,n)},function(e){return pt.ds_rt_websocket_close(e)}];async function zc(e,t){try{const n=await Vc(e,t);return lt.mono_exit(n),n}catch(e){try{lt.mono_exit(1,e)}catch(e){}return e&&"number"==typeof e.status?e.status:1}}async function Vc(e,t){null!=e&&""!==e||(e=lt.config.mainAssemblyName)||mt(!1,"Null or empty config.mainAssemblyName"),null==t&&(t=ct.config.applicationArguments),null==t&&(t=tt?(await import(/*! webpackIgnore: true */"process")).argv.slice(2):[]),function(e,t){const n=t.length+1,r=_(4*n);let s=0;Ke.setValue(r+4*s,o.mono_wasm_strdup(e),"i32"),s+=1;for(let e=0;e{const t=setInterval((()=>{1==ct.waitForDebugger&&(clearInterval(t),e())}),100)})));try{return Ke.runtimeKeepalivePush(),await new Promise((e=>globalThis.setTimeout(e,0))),await function(e,t,n){lt.assert_runtime_running();const r=Ke.stackSave();try{const r=$n(5),o=Ln(r,1),s=Ln(r,2),a=Ln(r,3),i=Ln(r,4);uo(s,$e(e)),Uo(a,t&&!t.length?void 0:t,15),no(i,n);let c=sn(o,0,Jt);return wn(ct.managedThreadTID,yn.CallEntrypoint,r),c=an(r,Jt,c),null==c&&(c=Promise.resolve(0)),c[Dr]=!0,c}finally{lt.is_runtime_running()&&Ke.stackRestore(r)}}(e,t,1==ct.waitForDebugger)}finally{Ke.runtimeKeepalivePop()}}function Wc(e){ct.runtimeReady&&(ct.runtimeReady=!1,o.mono_wasm_exit(e))}function Hc(e){if(lt.exitReason=e,ct.runtimeReady){ct.runtimeReady=!1;const t=Qe(e);Ke.abort(t)}throw e}var qc,Gc;const Jc=2147483647&(null!==(Gc=null===(qc=globalThis.performance)||void 0===qc?void 0:qc.timeOrigin)&&void 0!==Gc?Gc:Date.now());function Xc(){return Jc}async function Qc(e){e.out||(e.out=console.log.bind(console)),e.err||(e.err=console.error.bind(console)),e.print||(e.print=e.out),e.printErr||(e.printErr=e.err),lt.out=e.print,lt.err=e.printErr,await async function(){var e;if(tt){if(globalThis.performance===Io){const{performance:e}=et.require("perf_hooks");globalThis.performance=e}if(et.process=await import(/*! webpackIgnore: true */"process"),globalThis.crypto||(globalThis.crypto={}),!globalThis.crypto.getRandomValues){let e;try{e=et.require("node:crypto")}catch(e){}e?e.webcrypto?globalThis.crypto=e.webcrypto:e.randomBytes&&(globalThis.crypto.getRandomValues=t=>{t&&t.set(e.randomBytes(t.length))}):globalThis.crypto.getRandomValues=()=>{throw new Error("Using node without crypto support. To enable current operation, either provide polyfill for 'globalThis.crypto.getRandomValues' or enable 'node:crypto' module.")}}}ct.subtle=null===(e=globalThis.crypto)||void 0===e?void 0:e.subtle}()}function Yc(e){const t=Ft();e.locateFile||(e.locateFile=e.__locateFile=e=>lt.scriptDirectory+e),e.mainScriptUrlOrBlob=lt.scriptUrl;const s=e.instantiateWasm,i=e.preInit?"function"==typeof e.preInit?[e.preInit]:e.preInit:[],l=e.preRun?"function"==typeof e.preRun?[e.preRun]:e.preRun:[],p=e.postRun?"function"==typeof e.postRun?[e.postRun]:e.postRun:[],u=e.onRuntimeInitialized?e.onRuntimeInitialized:()=>{};e.instantiateWasm=(e,t)=>function(e,t,n){const r=Ft();if(n){const o=n(e,((e,n)=>{Pt(r,"mono.instantiateWasm"),ct.afterInstantiateWasm.promise_control.resolve(),t(e,n)}));return o}return async function(e,t){try{await lt.afterConfigLoaded,lt.diagnosticTracing&&ze("instantiate_wasm_module"),await ct.beforePreInit.promise,Ke.addRunDependency("instantiate_wasm_module"),await async function(){const e=lt.simd(),t=lt.relaxedSimd(),n=lt.exceptions();ct.featureWasmSimd=await e,ct.featureWasmRelaxedSimd=await t,ct.featureWasmEh=await n,ct.emscriptenBuildOptions.wasmEnableSIMD&&(ct.featureWasmSimd||mt(!1,"This browser/engine doesn't support WASM SIMD. Please use a modern version. See also https://aka.ms/dotnet-wasm-features")),ct.emscriptenBuildOptions.wasmEnableEH&&(ct.featureWasmEh||mt(!1,"This browser/engine doesn't support WASM exception handling. Please use a modern version. See also https://aka.ms/dotnet-wasm-features"))}(),function(e){const t=e.env||e.a;if(!t)return void We("WARNING: Neither imports.env or imports.a were present when instantiating the wasm module. This likely indicates an emscripten configuration issue.");const n=new Array(Mc.length);for(const e in t){const r=t[e];if("function"==typeof r&&-1!==r.toString().indexOf("runtime_idx"))try{const{runtime_idx:t}=r();if(void 0!==n[t])throw new Error(`Duplicate runtime_idx ${t}`);n[t]=e}catch(e){}}for(const[e,r]of Mc.entries()){const o=n[e];if(void 0!==o){if("function"!=typeof t[o])throw new Error(`Expected ${o} to be a function`);t[o]=r}}}(e);const n=await lt.wasmCompilePromise.promise;t(await WebAssembly.instantiate(n,e),n),lt.diagnosticTracing&&ze("instantiate_wasm_module done"),ct.afterInstantiateWasm.promise_control.resolve()}catch(e){throw He("instantiate_wasm_module() failed",e),lt.mono_exit(1,e),e}Ke.removeRunDependency("instantiate_wasm_module")}(e,t),[]}(e,t,s),e.preInit=[()=>function(e){Ke.addRunDependency("mono_pre_init");const t=Ft();try{Ke.addRunDependency("mono_wasm_pre_init_essential"),lt.diagnosticTracing&&ze("mono_wasm_pre_init_essential"),lt.gitHash!==ct.gitHash&&We(`The version of dotnet.runtime.js ${ct.gitHash} is different from the version of dotnet.js ${lt.gitHash}!`),lt.gitHash!==ct.emscriptenBuildOptions.gitHash&&We(`The version of dotnet.native.js ${ct.emscriptenBuildOptions.gitHash} is different from the version of dotnet.js ${lt.gitHash}!`),n!==ct.emscriptenBuildOptions.wasmEnableThreads&&We(`The threads of dotnet.native.js ${ct.emscriptenBuildOptions.wasmEnableThreads} is different from the version of dotnet.runtime.js ${n}!`),function(){const e=[...r];for(const t of e){const e=o,[n,r,s,a,i]=t,l="function"==typeof n;if(!0===n||l)e[r]=function(...t){!l||!n()||mt(!1,`cwrap ${r} should not be called when binding was skipped`);const o=c(r,s,a,i);return e[r]=o,o(...t)};else{const t=c(r,s,a,i);e[r]=t}}}(),s=et,Object.assign(s,{mono_wasm_exit:o.mono_wasm_exit,mono_wasm_profiler_init_aot:a.mono_wasm_profiler_init_aot,mono_wasm_profiler_init_browser_devtools:a.mono_wasm_profiler_init_browser_devtools,mono_wasm_exec_regression:o.mono_wasm_exec_regression,mono_wasm_print_thread_dump:void 0}),Ke.removeRunDependency("mono_wasm_pre_init_essential"),lt.diagnosticTracing&&ze("preInit"),ct.beforePreInit.promise_control.resolve(),e.forEach((e=>e(Ke)))}catch(e){throw He("user preInint() failed",e),lt.mono_exit(1,e),e}var s;(async()=>{try{await async function(){lt.diagnosticTracing&&ze("mono_wasm_pre_init_essential_async"),Ke.addRunDependency("mono_wasm_pre_init_essential_async"),Ke.removeRunDependency("mono_wasm_pre_init_essential_async")}(),Pt(t,"mono.preInit")}catch(e){throw lt.mono_exit(1,e),e}ct.afterPreInit.promise_control.resolve(),Ke.removeRunDependency("mono_pre_init")})()}(i)],e.preRun=[()=>async function(e){Ke.addRunDependency("mono_pre_run_async");try{await ct.afterInstantiateWasm.promise,await ct.afterPreInit.promise,lt.diagnosticTracing&&ze("preRunAsync");const t=Ft();e.map((e=>e(Ke))),Pt(t,"mono.preRun")}catch(e){throw He("preRunAsync() failed",e),lt.mono_exit(1,e),e}ct.afterPreRun.promise_control.resolve(),Ke.removeRunDependency("mono_pre_run_async")}(l)],e.onRuntimeInitialized=()=>async function(e){try{await ct.afterPreRun.promise,lt.diagnosticTracing&&ze("onRuntimeInitialized"),ct.nativeExit=Wc,ct.nativeAbort=Hc;const t=Ft();if(ct.beforeOnRuntimeInitialized.promise_control.resolve(),await ct.coreAssetsInMemory.promise,ct.config.virtualWorkingDirectory){const e=Ke.FS,t=ct.config.virtualWorkingDirectory;try{const n=e.stat(t);n?n&&e.isDir(n.mode)||mt(!1,`FS.chdir: ${t} is not a directory`):Ke.FS_createPath("/",t,!0,!0)}catch(e){Ke.FS_createPath("/",t,!0,!0)}e.chdir(t)}ct.config.interpreterPgo&&setTimeout(Kc,1e3*(ct.config.interpreterPgoSaveDelay||15)),Ke.runtimeKeepalivePush(),n||await async function(){try{const t=Ft(),n=ct.config.environmentVariables||{};lt.diagnosticTracing&&ze("Initializing mono runtime");for(const e in n){const t=n[e];if("string"!=typeof t)throw new Error(`Expected environment variable '${e}' to be a string but it was ${typeof t}: '${t}'`);Zc(e,t)}if(ct.config.runtimeOptions&&function(e){if(!Array.isArray(e))throw new Error("Expected runtimeOptions to be an array of strings");const t=_(4*e.length);let n=0;for(let r=0;raot; in your project file."),null==e&&(e={}),"writeAt"in e||(e.writeAt="System.Runtime.InteropServices.JavaScript.JavaScriptExports::StopProfile"),"sendTo"in e||(e.sendTo="Interop/Runtime::DumpAotProfileData");const t="aot:write-at-method="+e.writeAt+",send-to-method="+e.sendTo;a.mono_wasm_profiler_init_aot(t)}(ct.config.aotProfilerOptions||{}):ct.emscriptenBuildOptions.enableDevToolsProfiler?function(){ct.emscriptenBuildOptions.enableDevToolsProfiler||mt(!1,"DevTools profiler is not enabled, please use browser:callspec=N:Sample in your project file."),Dt=globalThis.performance&&"function"==typeof globalThis.performance.measure;const e=`${ct.config.environmentVariables.DOTNET_WasmPerformanceInstrumentation||"callspec=all"}`;a.mono_wasm_profiler_init_browser_devtools(e)}():ct.emscriptenBuildOptions.enableLogProfiler&&(e=ct.config.logProfilerOptions||{},ct.emscriptenBuildOptions.enableLogProfiler||mt(!1,"Log profiler is not enabled, please use log; in your project file."),e.takeHeapshot||mt(!1,"Log profiler is not enabled, the takeHeapshot method must be defined in LogProfilerOptions.takeHeapshot"),e.configuration||(e.configuration="log:alloc,output=output.mlpd"),e.takeHeapshot?a.mono_wasm_profiler_init_log(`${e.configuration},take-heapshot-method=${e.takeHeapshot}`):a.mono_wasm_profiler_init_log(e.configuration));!function(){var e,t,n,r;lt.diagnosticTracing&&ze("mono_wasm_load_runtime");try{const s=Ft();let a=ct.config.debugLevel;null==a&&(a=0,ct.config.debugLevel&&(a=0+a)),lt.isDebuggingSupported()&&(ct.config.resources.corePdb||ct.config.resources.pdb)||(a=0);const i=new Map;if(null===(t=null===(e=ct.config.runtimeConfig)||void 0===e?void 0:e.runtimeOptions)||void 0===t?void 0:t.configProperties)for(const[e,t]of Object.entries(null===(r=null===(n=ct.config.runtimeConfig)||void 0===n?void 0:n.runtimeOptions)||void 0===r?void 0:r.configProperties))i.set(e,""+t);i.set("APP_CONTEXT_BASE_DIRECTORY","/"),i.set("RUNTIME_IDENTIFIER","browser-wasm");const c=i.size,l=[],p=_(4*i.size),u=_(4*i.size);l.push(p),l.push(u);let d=0;for(const[e,t]of i.entries()){const n=$e(e),r=$e(t);S(p+4*d,n),S(u+4*d,r),d++,l.push(n),l.push(r)}o.mono_wasm_load_runtime(a,c,p,u);for(const e of l)Ke._free(e);Pt(s,"mono.loadRuntime")}catch(e){throw He("mono_wasm_load_runtime () failed",e),lt.mono_exit(1,e),e}}(),function(){if(ma)return;ma=!0;const e=fa(),t=e.tableSize,n=ct.emscriptenBuildOptions.runAOTCompilation?e.tableSize:1,r=ct.emscriptenBuildOptions.runAOTCompilation?e.aotTableSize:1,s=t+n+36*r+1,a=qs();let i=a.length;const c=performance.now();a.grow(s);const l=performance.now();e.enableStats&&Ve(`Allocated ${s} function table entries for jiterpreter, bringing total table size to ${a.length}`),i=_a(0,i,t,ta("mono_jiterp_placeholder_trace")),i=_a(1,i,n,ta("mono_jiterp_placeholder_jit_call"));for(let e=2;e<=37;e++)i=_a(e,i,r,a.get(o.mono_jiterp_get_interp_entry_func(e)));const p=performance.now();e.enableStats&&Ve(`Growing wasm function table took ${l-c}. Filling table took ${p-l}.`)}(),function(){if(!ct.mono_wasm_bindings_is_ready){lt.diagnosticTracing&&ze("bindings_init"),ct.mono_wasm_bindings_is_ready=!0;try{const e=Ft();we||("undefined"!=typeof TextDecoder&&(Se=new TextDecoder("utf-16le"),ve=new TextDecoder("utf-8",{fatal:!1}),Ue=new TextDecoder("utf-8"),Te=new TextEncoder),we=_(12)),Ee||(Ee=function(e){let t;if(de.length>0)t=de.pop();else{const e=function(){if(null==le||!pe){le=_e(ce,"js roots"),pe=new Int32Array(ce),ue=ce;for(let e=0;elt.loadedFiles.push(e.url))),lt.diagnosticTracing&&ze("all assets are loaded in wasm memory"))}(),tl.registerRuntime(it),ct.mono_wasm_runtime_is_ready||function mono_wasm_runtime_ready(){if(et.mono_wasm_runtime_is_ready=ct.mono_wasm_runtime_is_ready=!0,vt=0,St={},Ut=-1,globalThis.dotnetDebugger)debugger}();try{e(Ke)}catch(e){throw He("user callback onRuntimeInitialized() failed",e),e}await async function(){lt.diagnosticTracing&&ze("mono_wasm_after_user_runtime_initialized");try{if(Ke.onDotnetReady)try{await Ke.onDotnetReady()}catch(e){throw He("onDotnetReady () failed",e),e}}catch(e){throw He("mono_wasm_after_user_runtime_initialized () failed",e),e}}(),Pt(t,"mono.onRuntimeInitialized")}catch(e){throw Ke.runtimeKeepalivePop(),He("onRuntimeInitializedAsync() failed",e),lt.mono_exit(1,e),e}ct.afterOnRuntimeInitialized.promise_control.resolve()}(u),e.postRun=[()=>async function(e){try{await ct.afterOnRuntimeInitialized.promise,lt.diagnosticTracing&&ze("postRunAsync");const t=Ft();Ke.FS_createPath("/","usr",!0,!0),Ke.FS_createPath("/","usr/share",!0,!0),e.map((e=>e(Ke))),Pt(t,"mono.postRun")}catch(e){throw He("postRunAsync() failed",e),lt.mono_exit(1,e),e}ct.afterPostRun.promise_control.resolve()}(p)],e.ready.then((async()=>{await ct.afterPostRun.promise,Pt(t,"mono.emscriptenStartup"),ct.dotnetReady.promise_control.resolve(it)})).catch((e=>{ct.dotnetReady.promise_control.reject(e)})),e.ready=ct.dotnetReady.promise}function Zc(e,t){o.mono_wasm_setenv(e,t)}async function Kc(){void 0!==lt.exitCode&&0!==lt.exitCode||await Rc()}async function el(e){}let tl;function nl(r){const o=Ke,a=r,i=globalThis;Object.assign(a.internal,{mono_wasm_exit:e=>{Ke.err("early exit "+e)},forceDisposeProxies:Jr,mono_wasm_dump_threads:void 0,logging:void 0,mono_wasm_stringify_as_error_with_stack:Qe,mono_wasm_get_loaded_files:As,mono_wasm_send_dbg_command_with_parms:Et,mono_wasm_send_dbg_command:xt,mono_wasm_get_dbg_command_info:It,mono_wasm_get_details:Nt,mono_wasm_release_object:Ct,mono_wasm_call_function_on:Bt,mono_wasm_debugger_resume:At,mono_wasm_detach_debugger:jt,mono_wasm_raise_debug_event:Lt,mono_wasm_change_debugger_log_level:$t,mono_wasm_debugger_attached:Rt,mono_wasm_runtime_is_ready:ct.mono_wasm_runtime_is_ready,mono_wasm_get_func_id_to_name_mappings:Ze,get_property:lr,set_property:cr,has_property:pr,get_typeof_property:ur,get_global_this:dr,get_dotnet_instance:()=>it,dynamic_import:mr,mono_wasm_bind_cs_function:wr,ws_wasm_create:bs,ws_wasm_open:ys,ws_wasm_send:ws,ws_wasm_receive:ks,ws_wasm_close:Ss,ws_wasm_abort:vs,ws_get_state:gs,http_wasm_supports_streaming_request:$o,http_wasm_supports_streaming_response:Lo,http_wasm_create_controller:Ro,http_wasm_get_response_type:Mo,http_wasm_get_response_status:zo,http_wasm_abort:No,http_wasm_transform_stream_write:Oo,http_wasm_transform_stream_close:Co,http_wasm_fetch:Po,http_wasm_fetch_stream:Do,http_wasm_fetch_bytes:Fo,http_wasm_get_response_header_names:Vo,http_wasm_get_response_header_values:Wo,http_wasm_get_response_bytes:qo,http_wasm_get_response_length:Ho,http_wasm_get_streamed_response_bytes:Go,jiterpreter_dump_stats:$c,jiterpreter_apply_options:pa,jiterpreter_get_options:fa,interp_pgo_load_data:Bc,interp_pgo_save_data:Rc,mono_wasm_gc_lock:ae,mono_wasm_gc_unlock:ie,monoObjectAsBoolOrNullUnsafe:Fc,monoStringToStringUnsafe:Pe,loadLazyAssembly:Cc,loadSatelliteAssemblies:Dc});const c={stringify_as_error_with_stack:Qe,instantiate_symbols_asset:Is,instantiate_asset:xs,jiterpreter_dump_stats:$c,forceDisposeProxies:Jr,utf8ToString:Le,mono_wasm_process_current_pid:Xc,mono_background_exec:()=>s.mono_background_exec(),mono_wasm_ds_exec:()=>s.mono_wasm_ds_exec()};Object.assign(ct,c);const l={runMain:Vc,runMainAndExit:zc,exit:lt.mono_exit,setEnvironmentVariable:Zc,getAssemblyExports:vr,setModuleImports:ir,getConfig:()=>ct.config,invokeLibraryInitializers:lt.invokeLibraryInitializers,setHeapB32:b,setHeapB8:y,setHeapU8:w,setHeapU16:k,setHeapU32:S,setHeapI8:v,setHeapI16:U,setHeapI32:T,setHeapI52:x,setHeapU52:I,setHeapI64Big:A,setHeapF32:j,setHeapF64:$,getHeapB32:R,getHeapB8:B,getHeapU8:N,getHeapU16:O,getHeapU32:C,getHeapI8:M,getHeapI16:z,getHeapI32:V,getHeapI52:W,getHeapU52:H,getHeapI64Big:q,getHeapF32:G,getHeapF64:J,localHeapViewU8:K,localHeapViewU16:ee,localHeapViewU32:te,localHeapViewI8:X,localHeapViewI16:Q,localHeapViewI32:Y,localHeapViewI64Big:Z,localHeapViewF32:ne,localHeapViewF64:re,collectCpuSamples:null,collectMetrics:null,collectGcDump:null,connectDSRouter:null};return Object.assign(it,{INTERNAL:a.internal,Module:o,runtimeBuildInfo:{productVersion:e,gitHash:ct.gitHash,buildConfiguration:t,wasmEnableThreads:n,wasmEnableSIMD:!0,wasmEnableExceptionHandling:!0},...l}),i.getDotnetRuntime?tl=i.getDotnetRuntime.__list:(i.getDotnetRuntime=e=>i.getDotnetRuntime.__list.getRuntime(e),i.getDotnetRuntime.__list=tl=new rl),it}class rl{constructor(){this.list={}}registerRuntime(e){return void 0===e.runtimeId&&(e.runtimeId=Object.keys(this.list).length),this.list[e.runtimeId]=yr(e),lt.config.runtimeId=e.runtimeId,e.runtimeId}getRuntime(e){const t=this.list[e];return t?t.deref():void 0}}export{Yc as configureEmscriptenStartup,Qc as configureRuntimeStartup,el as configureWorkerStartup,nl as initializeExports,Ao as initializeReplacements,dt as passEmscriptenInternals,tl as runtimeList,ft as setRuntimeGlobals}; +//# sourceMappingURL=dotnet.runtime.js.map diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/dotnet.runtime.peu2mfb29t.js.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/dotnet.runtime.peu2mfb29t.js.gz new file mode 100644 index 0000000..6b3f091 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/dotnet.runtime.peu2mfb29t.js.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/icudt_CJK.tjcz0u77k5.dat b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/icudt_CJK.tjcz0u77k5.dat new file mode 100644 index 0000000..118a60d Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/icudt_CJK.tjcz0u77k5.dat differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/icudt_CJK.tjcz0u77k5.dat.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/icudt_CJK.tjcz0u77k5.dat.gz new file mode 100644 index 0000000..f0921af Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/icudt_CJK.tjcz0u77k5.dat.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/icudt_EFIGS.tptq2av103.dat b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/icudt_EFIGS.tptq2av103.dat new file mode 100644 index 0000000..e4c1c91 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/icudt_EFIGS.tptq2av103.dat differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/icudt_EFIGS.tptq2av103.dat.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/icudt_EFIGS.tptq2av103.dat.gz new file mode 100644 index 0000000..d0f6a8a Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/icudt_EFIGS.tptq2av103.dat.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/icudt_no_CJK.lfu7j35m59.dat b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/icudt_no_CJK.lfu7j35m59.dat new file mode 100644 index 0000000..87b08e0 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/icudt_no_CJK.lfu7j35m59.dat differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/icudt_no_CJK.lfu7j35m59.dat.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/icudt_no_CJK.lfu7j35m59.dat.gz new file mode 100644 index 0000000..78330d1 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/icudt_no_CJK.lfu7j35m59.dat.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/mscorlib.555t1ekkz8.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/mscorlib.555t1ekkz8.wasm new file mode 100644 index 0000000..28ad612 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/mscorlib.555t1ekkz8.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/mscorlib.555t1ekkz8.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/mscorlib.555t1ekkz8.wasm.gz new file mode 100644 index 0000000..e3d94ad Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/mscorlib.555t1ekkz8.wasm.gz differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/netstandard.0e3bjkca9m.wasm b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/netstandard.0e3bjkca9m.wasm new file mode 100644 index 0000000..3208ee5 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/netstandard.0e3bjkca9m.wasm differ diff --git a/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/netstandard.0e3bjkca9m.wasm.gz b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/netstandard.0e3bjkca9m.wasm.gz new file mode 100644 index 0000000..a45a2e6 Binary files /dev/null and b/OnProfNext.Client/bin/Debug/net10.0/wwwroot/_framework/netstandard.0e3bjkca9m.wasm.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/OnProfNext.Client/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/OnProfNext.Client/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/OnProfNext.Client/obj/Debug/net10.0/EmbeddedAttribute.cs b/OnProfNext.Client/obj/Debug/net10.0/EmbeddedAttribute.cs new file mode 100644 index 0000000..1931537 --- /dev/null +++ b/OnProfNext.Client/obj/Debug/net10.0/EmbeddedAttribute.cs @@ -0,0 +1,7 @@ +// +namespace Microsoft.CodeAnalysis +{ +internal sealed partial class EmbeddedAttribute : global::System.Attribute +{ +} +} diff --git a/OnProfNext.Client/obj/Debug/net10.0/OnProfNe.E877B38C.Up2Date b/OnProfNext.Client/obj/Debug/net10.0/OnProfNe.E877B38C.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/OnProfNext.Client/obj/Debug/net10.0/OnProfNext.Client.AssemblyInfo.cs b/OnProfNext.Client/obj/Debug/net10.0/OnProfNext.Client.AssemblyInfo.cs new file mode 100644 index 0000000..4481317 --- /dev/null +++ b/OnProfNext.Client/obj/Debug/net10.0/OnProfNext.Client.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("OnProfNext.Client")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("OnProfNext.Client")] +[assembly: System.Reflection.AssemblyTitleAttribute("OnProfNext.Client")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Von der MSBuild WriteCodeFragment-Klasse generiert. + diff --git a/OnProfNext.Client/obj/Debug/net10.0/OnProfNext.Client.AssemblyInfoInputs.cache b/OnProfNext.Client/obj/Debug/net10.0/OnProfNext.Client.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fd049fe --- /dev/null +++ b/OnProfNext.Client/obj/Debug/net10.0/OnProfNext.Client.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +8370fe484f4a9b2c229d487fe438bca1f83b7786dd6959e2e0fbd52f484a18db diff --git a/OnProfNext.Client/obj/Debug/net10.0/OnProfNext.Client.GeneratedMSBuildEditorConfig.editorconfig b/OnProfNext.Client/obj/Debug/net10.0/OnProfNext.Client.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d01a311 --- /dev/null +++ b/OnProfNext.Client/obj/Debug/net10.0/OnProfNext.Client.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,68 @@ +is_global = true +build_property.EnableAotAnalyzer = +build_property.EnableSingleFileAnalyzer = +build_property.EnableTrimAnalyzer = false +build_property.IncludeAllContentForSelfExtract = +build_property.VerifyReferenceTrimCompatibility = +build_property.VerifyReferenceAotCompatibility = +build_property.MudDebugAnalyzer = +build_property.MudAllowedAttributePattern = +build_property.MudAllowedAttributeList = +build_property.TargetFramework = net10.0 +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v10.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = false +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = browser +build_property.RootNamespace = OnProfNext.Client +build_property.RootNamespace = OnProfNext.Client +build_property.ProjectDir = D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = false +build_property.RazorLangVersion = 9.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = + +[D:/Dev/Tut/OnProfNext/OnProfNext/OnProfNext.Client/Layout/MainLayout.razor] +build_metadata.AdditionalFiles.TargetPath = TGF5b3V0XE1haW5MYXlvdXQucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[D:/Dev/Tut/OnProfNext/OnProfNext/OnProfNext.Client/Layout/NavMenu.razor] +build_metadata.AdditionalFiles.TargetPath = TGF5b3V0XE5hdk1lbnUucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[D:/Dev/Tut/OnProfNext/OnProfNext/OnProfNext.Client/Pages/Counter.razor] +build_metadata.AdditionalFiles.TargetPath = UGFnZXNcQ291bnRlci5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[D:/Dev/Tut/OnProfNext/OnProfNext/OnProfNext.Client/Pages/Home.razor] +build_metadata.AdditionalFiles.TargetPath = UGFnZXNcSG9tZS5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[D:/Dev/Tut/OnProfNext/OnProfNext/OnProfNext.Client/Pages/NotFound.razor] +build_metadata.AdditionalFiles.TargetPath = UGFnZXNcTm90Rm91bmQucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[D:/Dev/Tut/OnProfNext/OnProfNext/OnProfNext.Client/Pages/Weather.razor] +build_metadata.AdditionalFiles.TargetPath = UGFnZXNcV2VhdGhlci5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[D:/Dev/Tut/OnProfNext/OnProfNext/OnProfNext.Client/Routes.razor] +build_metadata.AdditionalFiles.TargetPath = Um91dGVzLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[D:/Dev/Tut/OnProfNext/OnProfNext/OnProfNext.Client/_Imports.razor] +build_metadata.AdditionalFiles.TargetPath = X0ltcG9ydHMucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[D:/Dev/Tut/OnProfNext/OnProfNext/OnProfNext.Client/Layout/ReconnectModal.razor] +build_metadata.AdditionalFiles.TargetPath = TGF5b3V0XFJlY29ubmVjdE1vZGFsLnJhem9y +build_metadata.AdditionalFiles.CssScope = b-4v5fhrpsm8 diff --git a/OnProfNext.Client/obj/Debug/net10.0/OnProfNext.Client.GlobalUsings.g.cs b/OnProfNext.Client/obj/Debug/net10.0/OnProfNext.Client.GlobalUsings.g.cs new file mode 100644 index 0000000..5fa52db --- /dev/null +++ b/OnProfNext.Client/obj/Debug/net10.0/OnProfNext.Client.GlobalUsings.g.cs @@ -0,0 +1,12 @@ +// +global using Microsoft.Extensions.Configuration; +global using Microsoft.Extensions.DependencyInjection; +global using Microsoft.Extensions.Logging; +global using Microsoft.Extensions.Validation.Embedded; +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/OnProfNext.Client/obj/Debug/net10.0/OnProfNext.Client.MvcApplicationPartsAssemblyInfo.cache b/OnProfNext.Client/obj/Debug/net10.0/OnProfNext.Client.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/OnProfNext.Client/obj/Debug/net10.0/OnProfNext.Client.assets.cache b/OnProfNext.Client/obj/Debug/net10.0/OnProfNext.Client.assets.cache new file mode 100644 index 0000000..25c69bb Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/OnProfNext.Client.assets.cache differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/OnProfNext.Client.csproj.AssemblyReference.cache b/OnProfNext.Client/obj/Debug/net10.0/OnProfNext.Client.csproj.AssemblyReference.cache new file mode 100644 index 0000000..6585132 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/OnProfNext.Client.csproj.AssemblyReference.cache differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/OnProfNext.Client.csproj.BuildWithSkipAnalyzers b/OnProfNext.Client/obj/Debug/net10.0/OnProfNext.Client.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/OnProfNext.Client/obj/Debug/net10.0/OnProfNext.Client.csproj.CoreCompileInputs.cache b/OnProfNext.Client/obj/Debug/net10.0/OnProfNext.Client.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..9ee3c78 --- /dev/null +++ b/OnProfNext.Client/obj/Debug/net10.0/OnProfNext.Client.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +e6439eb07ff8423b0bc6d34d762494186261fcad412dba3f830650849752ed44 diff --git a/OnProfNext.Client/obj/Debug/net10.0/OnProfNext.Client.csproj.FileListAbsolute.txt b/OnProfNext.Client/obj/Debug/net10.0/OnProfNext.Client.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..d9e3387 --- /dev/null +++ b/OnProfNext.Client/obj/Debug/net10.0/OnProfNext.Client.csproj.FileListAbsolute.txt @@ -0,0 +1,1095 @@ +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\OnProfNext.Client.runtimeconfig.json +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\blazor.webassembly.js +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.AspNetCore.Components.uddsvpv1sv.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.Localization.xcslyy3nju.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.Logging.y4ydx3rk2c.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.Options.2rz5zbidnd.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.Primitives.bd164v6l3f.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.Validation.r1sv3m5lsf.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.JSInterop.1r0ampr2q1.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\MudBlazor.k6079czmkm.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.CSharp.452y5fjxmv.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.VisualBasic.Core.re3geseai5.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.VisualBasic.91iw3j3d9p.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Win32.Primitives.2mjytoh92q.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Win32.Registry.yz8nt3ycsq.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.AppContext.uwq3fpef1w.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Buffers.m4yhcvz2y2.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Collections.Concurrent.1zv6wuzklu.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Collections.Immutable.6uzpuv4o5d.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Collections.NonGeneric.k5rgagff9o.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Collections.Specialized.84wojkejb4.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Collections.63jrcion39.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.ComponentModel.Annotations.cjsvkufomv.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.ComponentModel.Primitives.u0y5oi3qdg.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.ComponentModel.TypeConverter.e2hbv9lola.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.ComponentModel.m11rh1qn2x.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Configuration.j8qjkqg593.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Console.x9at0eh4vs.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Core.ickp29885z.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Data.Common.4wisaz8pj4.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Data.DataSetExtensions.904tnen1ot.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Data.0h75nr7qqd.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Diagnostics.Contracts.z1eotzj35n.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Diagnostics.Debug.aeh9b1tcuc.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Diagnostics.Process.lqtqkmw274.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Diagnostics.StackTrace.wvlboxd9cz.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Diagnostics.Tools.862j1ozg5o.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Diagnostics.TraceSource.j08okd90mo.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Diagnostics.Tracing.bnz7jo4op8.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Drawing.Primitives.k3z431p3v7.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Drawing.v0usa2s224.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Dynamic.Runtime.iktlm0yhdx.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Formats.Asn1.9iyl1hnh76.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Formats.Tar.9ikmelhi7g.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Globalization.Calendars.e8yl47y6cv.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Globalization.Extensions.fvxkfs32tv.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Globalization.4ulc930few.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.IO.Compression.Brotli.ibxx4kh8c6.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.IO.Compression.FileSystem.bselp9vv9w.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.IO.Compression.ZipFile.b0ha8vyo8i.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.IO.Compression.sgbc42zrd8.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.IO.FileSystem.Primitives.6j2ed42ac7.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.IO.FileSystem.Watcher.v9i07bnq2k.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.IO.FileSystem.fktu0k4b93.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.IO.IsolatedStorage.8ll4gxwfs1.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.IO.MemoryMappedFiles.6do4olk7ib.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.IO.Pipelines.21z0t9w6sq.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.IO.Pipes.AccessControl.5lvzz4lks7.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.IO.Pipes.xosph8vk4a.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.IO.i9g92fmb9y.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Linq.AsyncEnumerable.4m1mh525k0.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Linq.Expressions.4nat0rber0.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Linq.Parallel.qf7zemz9aw.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Linq.Queryable.vwinf8twbn.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Linq.rp2jklkmsi.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Memory.3r0soomurg.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.Http.Json.t9gqpmtbpb.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.Http.9rl4gopayw.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.HttpListener.zg37o92yol.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.Mail.qk214miut2.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.NameResolution.50dzekuu9x.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.NetworkInformation.k8343mqust.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.Ping.00vh2kvsiz.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.Primitives.whs5oed1wm.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.Quic.grloe2ix5j.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.Requests.r8ar2pd94c.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.Security.yn3zcskz4j.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.ServerSentEvents.37wbq4jfsy.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.ServicePoint.j436yqvrg9.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.Sockets.utzdm9sw2p.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.WebClient.e5a4gx4ylt.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.WebHeaderCollection.rbzkmij005.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.WebProxy.38jcv8jeeu.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.WebSockets.Client.nv5izr3rt6.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.WebSockets.hdzn84g6uh.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.zku96ychk7.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Numerics.Vectors.1l8xruz8uh.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Numerics.on9qk50okp.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.ObjectModel.4omhtq90sd.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Private.DataContractSerialization.zlwtcvnuqv.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Private.Uri.clehp4avpy.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Private.Xml.Linq.ga3n3gh9b6.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Private.Xml.g9rvjereoe.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Reflection.DispatchProxy.b7qn4zpc0q.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Reflection.Emit.Lightweight.3tzjd7znni.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Reflection.Emit.3t7flfwg7o.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Reflection.Extensions.ymwga5opgl.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Reflection.Metadata.9lgg9wjd2a.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Reflection.Primitives.n2ngq6as7g.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Reflection.TypeExtensions.ivmzcfvrc6.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Reflection.v4mfyzbte8.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Resources.Reader.c9z9nieytf.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Resources.ResourceManager.f3fiwdwb50.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Resources.Writer.tx9namivq6.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Runtime.Extensions.f4fqaba1oz.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Runtime.Handles.kpe61fymig.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Runtime.InteropServices.02r2ubft18.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Runtime.Intrinsics.j8lrpban8m.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Runtime.Loader.bm8d2pac0a.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Runtime.Numerics.e3fl2oogjk.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Runtime.Serialization.Formatters.a0v88kqnif.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Runtime.Serialization.Json.pez04wd9mo.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Runtime.Serialization.Xml.mmwsbcsgly.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Runtime.Serialization.qfpmfujegm.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Runtime.k6ze2203p2.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Security.AccessControl.4mxo8hy5cn.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Security.Claims.9n1yusa5e5.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Security.Cryptography.Cng.dyaxkkx3lb.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Security.Cryptography.Csp.20t5iw27a6.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Security.Cryptography.Primitives.7bcdd4uolu.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Security.Cryptography.5rp84ijz8t.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Security.Principal.Windows.7ssqvw2wfy.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Security.Principal.j5dp7k8x6u.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Security.SecureString.7weoywtuje.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Security.snpv53zusk.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.ServiceModel.Web.3f1khl8k32.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.ServiceProcess.a95c1olw0i.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Text.Encoding.CodePages.8bhn50uz8f.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Text.Encoding.Extensions.tqz9dyg6j7.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Text.Encoding.s9ic8sulfi.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Text.Encodings.Web.07hq35kp92.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Text.Json.2alhj4y3bm.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Text.RegularExpressions.h1qtkesphd.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Threading.AccessControl.ruehy0ud5k.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Threading.Channels.s3i62rxr2p.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Threading.Overlapped.lzl7igry1t.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Threading.Tasks.Extensions.unp0hcfijn.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Threading.Tasks.Parallel.hyku0ejwye.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Threading.Tasks.t0sjw89o0i.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Threading.Thread.nfbg9v9bn0.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Threading.ThreadPool.jrzo6stg1k.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Threading.Timer.y8l1kxazi5.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Threading.47ucbn1gg1.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Transactions.Local.cig01jt23c.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Transactions.pl50n6qbg7.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.ValueTuple.mj3r9p0pcw.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Web.HttpUtility.3jfxpyq4in.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Web.2a6wq9gv6d.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Windows.bw79ix589z.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Xml.Linq.nvnhbwdsg6.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Xml.ReaderWriter.szsdminork.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Xml.Serialization.b9imguls9w.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Xml.XDocument.8hg6c0at0c.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Xml.XPath.XDocument.g7i5gd64yo.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Xml.XPath.11wk1hhnfk.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Xml.XmlDocument.isetn6xlxa.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Xml.XmlSerializer.okgnp5v9bw.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Xml.zjgi7nrlno.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.7rk3uansaa.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\WindowsBase.wz82kkc1p3.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\mscorlib.555t1ekkz8.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\netstandard.0e3bjkca9m.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Private.CoreLib.koxlwnosh6.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\dotnet.js.map +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\dotnet.native.ykrnppwhq2.js +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\dotnet.native.53ez3dx5uy.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\dotnet.runtime.peu2mfb29t.js +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\dotnet.runtime.js.map +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\icudt_CJK.tjcz0u77k5.dat +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\icudt_EFIGS.tptq2av103.dat +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\icudt_no_CJK.lfu7j35m59.dat +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\OnProfNext.Client.xhq6acanj0.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\OnProfNext.Client.lplk7v275j.pdb +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\dotnet.js +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\blazor.webassembly.js.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.AspNetCore.Components.uddsvpv1sv.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.Localization.xcslyy3nju.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.Logging.y4ydx3rk2c.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.Options.2rz5zbidnd.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.Primitives.bd164v6l3f.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Extensions.Validation.r1sv3m5lsf.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.JSInterop.1r0ampr2q1.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\MudBlazor.k6079czmkm.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.CSharp.452y5fjxmv.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.VisualBasic.Core.re3geseai5.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.VisualBasic.91iw3j3d9p.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Win32.Primitives.2mjytoh92q.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\Microsoft.Win32.Registry.yz8nt3ycsq.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.AppContext.uwq3fpef1w.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Buffers.m4yhcvz2y2.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Collections.Concurrent.1zv6wuzklu.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Collections.Immutable.6uzpuv4o5d.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Collections.NonGeneric.k5rgagff9o.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Collections.Specialized.84wojkejb4.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Collections.63jrcion39.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.ComponentModel.Annotations.cjsvkufomv.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.ComponentModel.Primitives.u0y5oi3qdg.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.ComponentModel.TypeConverter.e2hbv9lola.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.ComponentModel.m11rh1qn2x.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Configuration.j8qjkqg593.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Console.x9at0eh4vs.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Core.ickp29885z.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Data.Common.4wisaz8pj4.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Data.DataSetExtensions.904tnen1ot.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Data.0h75nr7qqd.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Diagnostics.Contracts.z1eotzj35n.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Diagnostics.Debug.aeh9b1tcuc.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Diagnostics.Process.lqtqkmw274.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Diagnostics.StackTrace.wvlboxd9cz.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Diagnostics.Tools.862j1ozg5o.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Diagnostics.TraceSource.j08okd90mo.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Diagnostics.Tracing.bnz7jo4op8.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Drawing.Primitives.k3z431p3v7.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Drawing.v0usa2s224.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Dynamic.Runtime.iktlm0yhdx.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Formats.Asn1.9iyl1hnh76.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Formats.Tar.9ikmelhi7g.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Globalization.Calendars.e8yl47y6cv.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Globalization.Extensions.fvxkfs32tv.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Globalization.4ulc930few.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.IO.Compression.Brotli.ibxx4kh8c6.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.IO.Compression.FileSystem.bselp9vv9w.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.IO.Compression.ZipFile.b0ha8vyo8i.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.IO.Compression.sgbc42zrd8.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.IO.FileSystem.Primitives.6j2ed42ac7.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.IO.FileSystem.Watcher.v9i07bnq2k.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.IO.FileSystem.fktu0k4b93.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.IO.IsolatedStorage.8ll4gxwfs1.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.IO.MemoryMappedFiles.6do4olk7ib.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.IO.Pipelines.21z0t9w6sq.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.IO.Pipes.AccessControl.5lvzz4lks7.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.IO.Pipes.xosph8vk4a.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.IO.i9g92fmb9y.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Linq.AsyncEnumerable.4m1mh525k0.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Linq.Expressions.4nat0rber0.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Linq.Parallel.qf7zemz9aw.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Linq.Queryable.vwinf8twbn.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Linq.rp2jklkmsi.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Memory.3r0soomurg.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.Http.Json.t9gqpmtbpb.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.Http.9rl4gopayw.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.HttpListener.zg37o92yol.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.Mail.qk214miut2.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.NameResolution.50dzekuu9x.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.NetworkInformation.k8343mqust.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.Ping.00vh2kvsiz.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.Primitives.whs5oed1wm.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.Quic.grloe2ix5j.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.Requests.r8ar2pd94c.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.Security.yn3zcskz4j.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.ServerSentEvents.37wbq4jfsy.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.ServicePoint.j436yqvrg9.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.Sockets.utzdm9sw2p.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.WebClient.e5a4gx4ylt.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.WebHeaderCollection.rbzkmij005.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.WebProxy.38jcv8jeeu.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.WebSockets.Client.nv5izr3rt6.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.WebSockets.hdzn84g6uh.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Net.zku96ychk7.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Numerics.Vectors.1l8xruz8uh.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Numerics.on9qk50okp.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.ObjectModel.4omhtq90sd.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Private.DataContractSerialization.zlwtcvnuqv.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Private.Uri.clehp4avpy.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Private.Xml.Linq.ga3n3gh9b6.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Private.Xml.g9rvjereoe.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Reflection.DispatchProxy.b7qn4zpc0q.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Reflection.Emit.Lightweight.3tzjd7znni.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Reflection.Emit.3t7flfwg7o.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Reflection.Extensions.ymwga5opgl.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Reflection.Metadata.9lgg9wjd2a.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Reflection.Primitives.n2ngq6as7g.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Reflection.TypeExtensions.ivmzcfvrc6.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Reflection.v4mfyzbte8.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Resources.Reader.c9z9nieytf.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Resources.ResourceManager.f3fiwdwb50.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Resources.Writer.tx9namivq6.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Runtime.Extensions.f4fqaba1oz.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Runtime.Handles.kpe61fymig.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Runtime.InteropServices.02r2ubft18.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Runtime.Intrinsics.j8lrpban8m.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Runtime.Loader.bm8d2pac0a.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Runtime.Numerics.e3fl2oogjk.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Runtime.Serialization.Formatters.a0v88kqnif.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Runtime.Serialization.Json.pez04wd9mo.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Runtime.Serialization.Xml.mmwsbcsgly.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Runtime.Serialization.qfpmfujegm.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Runtime.k6ze2203p2.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Security.AccessControl.4mxo8hy5cn.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Security.Claims.9n1yusa5e5.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Security.Cryptography.Cng.dyaxkkx3lb.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Security.Cryptography.Csp.20t5iw27a6.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Security.Cryptography.Primitives.7bcdd4uolu.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Security.Cryptography.5rp84ijz8t.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Security.Principal.Windows.7ssqvw2wfy.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Security.Principal.j5dp7k8x6u.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Security.SecureString.7weoywtuje.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Security.snpv53zusk.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.ServiceModel.Web.3f1khl8k32.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.ServiceProcess.a95c1olw0i.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Text.Encoding.CodePages.8bhn50uz8f.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Text.Encoding.Extensions.tqz9dyg6j7.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Text.Encoding.s9ic8sulfi.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Text.Encodings.Web.07hq35kp92.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Text.Json.2alhj4y3bm.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Text.RegularExpressions.h1qtkesphd.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Threading.AccessControl.ruehy0ud5k.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Threading.Channels.s3i62rxr2p.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Threading.Overlapped.lzl7igry1t.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Threading.Tasks.Extensions.unp0hcfijn.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Threading.Tasks.Parallel.hyku0ejwye.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Threading.Tasks.t0sjw89o0i.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Threading.Thread.nfbg9v9bn0.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Threading.ThreadPool.jrzo6stg1k.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Threading.Timer.y8l1kxazi5.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Threading.47ucbn1gg1.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Transactions.Local.cig01jt23c.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Transactions.pl50n6qbg7.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.ValueTuple.mj3r9p0pcw.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Web.HttpUtility.3jfxpyq4in.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Web.2a6wq9gv6d.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Windows.bw79ix589z.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Xml.Linq.nvnhbwdsg6.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Xml.ReaderWriter.szsdminork.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Xml.Serialization.b9imguls9w.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Xml.XDocument.8hg6c0at0c.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Xml.XPath.XDocument.g7i5gd64yo.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Xml.XPath.11wk1hhnfk.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Xml.XmlDocument.isetn6xlxa.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Xml.XmlSerializer.okgnp5v9bw.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Xml.zjgi7nrlno.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.7rk3uansaa.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\WindowsBase.wz82kkc1p3.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\mscorlib.555t1ekkz8.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\netstandard.0e3bjkca9m.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\System.Private.CoreLib.koxlwnosh6.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\dotnet.js.map.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\dotnet.native.ykrnppwhq2.js.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\dotnet.native.53ez3dx5uy.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\dotnet.runtime.peu2mfb29t.js.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\dotnet.runtime.js.map.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\icudt_CJK.tjcz0u77k5.dat.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\icudt_EFIGS.tptq2av103.dat.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\icudt_no_CJK.lfu7j35m59.dat.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\OnProfNext.Client.xhq6acanj0.wasm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\OnProfNext.Client.lplk7v275j.pdb.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\wwwroot\_framework\dotnet.js.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\OnProfNext.Client.staticwebassets.runtime.json +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\OnProfNext.Client.staticwebassets.endpoints.json +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\OnProfNext.Client.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\OnProfNext.Client.pdb +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\Microsoft.AspNetCore.Authorization.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\Microsoft.AspNetCore.Components.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\Microsoft.AspNetCore.Components.Forms.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\Microsoft.AspNetCore.Components.Web.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\Microsoft.AspNetCore.Components.WebAssembly.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\Microsoft.AspNetCore.Metadata.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\Microsoft.DotNet.HotReload.WebAssembly.Browser.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\Microsoft.Extensions.Configuration.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\Microsoft.Extensions.Configuration.Abstractions.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\Microsoft.Extensions.Configuration.Binder.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\Microsoft.Extensions.Configuration.FileExtensions.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\Microsoft.Extensions.Configuration.Json.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\Microsoft.Extensions.DependencyInjection.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\Microsoft.Extensions.Diagnostics.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\Microsoft.Extensions.Diagnostics.Abstractions.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\Microsoft.Extensions.FileProviders.Abstractions.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\Microsoft.Extensions.FileProviders.Physical.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\Microsoft.Extensions.FileSystemGlobbing.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\Microsoft.Extensions.Localization.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\Microsoft.Extensions.Localization.Abstractions.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\Microsoft.Extensions.Logging.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\Microsoft.Extensions.Logging.Abstractions.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\Microsoft.Extensions.Options.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\Microsoft.Extensions.Options.ConfigurationExtensions.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\Microsoft.Extensions.Primitives.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\Microsoft.Extensions.Validation.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\Microsoft.JSInterop.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\Microsoft.JSInterop.WebAssembly.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\MudBlazor.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\Microsoft.CSharp.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\Microsoft.VisualBasic.Core.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\Microsoft.VisualBasic.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\Microsoft.Win32.Primitives.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\Microsoft.Win32.Registry.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.AppContext.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Buffers.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Collections.Concurrent.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Collections.Immutable.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Collections.NonGeneric.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Collections.Specialized.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Collections.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.ComponentModel.Annotations.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.ComponentModel.DataAnnotations.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.ComponentModel.EventBasedAsync.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.ComponentModel.Primitives.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.ComponentModel.TypeConverter.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.ComponentModel.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Configuration.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Console.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Core.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Data.Common.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Data.DataSetExtensions.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Data.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Diagnostics.Contracts.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Diagnostics.Debug.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Diagnostics.DiagnosticSource.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Diagnostics.FileVersionInfo.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Diagnostics.Process.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Diagnostics.StackTrace.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Diagnostics.TextWriterTraceListener.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Diagnostics.Tools.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Diagnostics.TraceSource.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Diagnostics.Tracing.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Drawing.Primitives.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Drawing.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Dynamic.Runtime.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Formats.Asn1.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Formats.Tar.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Globalization.Calendars.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Globalization.Extensions.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Globalization.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.IO.Compression.Brotli.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.IO.Compression.FileSystem.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.IO.Compression.ZipFile.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.IO.Compression.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.IO.FileSystem.AccessControl.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.IO.FileSystem.DriveInfo.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.IO.FileSystem.Primitives.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.IO.FileSystem.Watcher.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.IO.FileSystem.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.IO.IsolatedStorage.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.IO.MemoryMappedFiles.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.IO.Pipelines.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.IO.Pipes.AccessControl.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.IO.Pipes.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.IO.UnmanagedMemoryStream.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.IO.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Linq.AsyncEnumerable.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Linq.Expressions.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Linq.Parallel.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Linq.Queryable.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Linq.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Memory.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Net.Http.Json.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Net.Http.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Net.HttpListener.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Net.Mail.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Net.NameResolution.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Net.NetworkInformation.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Net.Ping.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Net.Primitives.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Net.Quic.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Net.Requests.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Net.Security.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Net.ServerSentEvents.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Net.ServicePoint.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Net.Sockets.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Net.WebClient.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Net.WebHeaderCollection.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Net.WebProxy.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Net.WebSockets.Client.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Net.WebSockets.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Net.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Numerics.Vectors.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Numerics.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.ObjectModel.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Private.DataContractSerialization.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Private.Uri.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Private.Xml.Linq.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Private.Xml.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Reflection.DispatchProxy.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Reflection.Emit.ILGeneration.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Reflection.Emit.Lightweight.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Reflection.Emit.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Reflection.Extensions.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Reflection.Metadata.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Reflection.Primitives.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Reflection.TypeExtensions.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Reflection.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Resources.Reader.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Resources.ResourceManager.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Resources.Writer.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Runtime.CompilerServices.Unsafe.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Runtime.CompilerServices.VisualC.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Runtime.Extensions.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Runtime.Handles.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Runtime.InteropServices.JavaScript.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Runtime.InteropServices.RuntimeInformation.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Runtime.InteropServices.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Runtime.Intrinsics.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Runtime.Loader.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Runtime.Numerics.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Runtime.Serialization.Formatters.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Runtime.Serialization.Json.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Runtime.Serialization.Primitives.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Runtime.Serialization.Xml.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Runtime.Serialization.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Runtime.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Security.AccessControl.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Security.Claims.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Security.Cryptography.Algorithms.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Security.Cryptography.Cng.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Security.Cryptography.Csp.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Security.Cryptography.Encoding.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Security.Cryptography.OpenSsl.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Security.Cryptography.Primitives.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Security.Cryptography.X509Certificates.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Security.Cryptography.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Security.Principal.Windows.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Security.Principal.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Security.SecureString.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Security.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.ServiceModel.Web.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.ServiceProcess.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Text.Encoding.CodePages.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Text.Encoding.Extensions.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Text.Encoding.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Text.Encodings.Web.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Text.Json.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Text.RegularExpressions.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Threading.AccessControl.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Threading.Channels.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Threading.Overlapped.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Threading.Tasks.Dataflow.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Threading.Tasks.Extensions.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Threading.Tasks.Parallel.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Threading.Tasks.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Threading.Thread.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Threading.ThreadPool.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Threading.Timer.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Threading.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Transactions.Local.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Transactions.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.ValueTuple.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Web.HttpUtility.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Web.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Windows.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Xml.Linq.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Xml.ReaderWriter.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Xml.Serialization.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Xml.XDocument.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Xml.XPath.XDocument.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Xml.XPath.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Xml.XmlDocument.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Xml.XmlSerializer.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Xml.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\WindowsBase.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\mscorlib.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\netstandard.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\System.Private.CoreLib.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\dotnet.js +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\dotnet.js.map +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\dotnet.native.js +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\dotnet.native.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\dotnet.runtime.js +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\dotnet.runtime.js.map +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\icudt_CJK.dat +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\icudt_EFIGS.dat +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\bin\Debug\net10.0\icudt_no_CJK.dat +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\EmbeddedAttribute.cs +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\ValidatableTypeAttribute.cs +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\OnProfNext.Client.csproj.AssemblyReference.cache +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\rpswa.dswa.cache.json +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\OnProfNext.Client.GeneratedMSBuildEditorConfig.editorconfig +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\OnProfNext.Client.AssemblyInfoInputs.cache +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\OnProfNext.Client.AssemblyInfo.cs +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\OnProfNext.Client.csproj.CoreCompileInputs.cache +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\OnProfNext.Client.MvcApplicationPartsAssemblyInfo.cache +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\Microsoft.AspNetCore.Authorization.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\Microsoft.AspNetCore.Components.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\Microsoft.AspNetCore.Components.Forms.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\Microsoft.AspNetCore.Components.Web.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\Microsoft.AspNetCore.Components.WebAssembly.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\Microsoft.AspNetCore.Metadata.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\Microsoft.Extensions.Configuration.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\Microsoft.Extensions.Configuration.Abstractions.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\Microsoft.Extensions.Configuration.Binder.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\Microsoft.Extensions.Configuration.FileExtensions.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\Microsoft.Extensions.Configuration.Json.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\Microsoft.Extensions.DependencyInjection.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\Microsoft.Extensions.DependencyInjection.Abstractions.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\Microsoft.Extensions.Diagnostics.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\Microsoft.Extensions.Diagnostics.Abstractions.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\Microsoft.Extensions.FileProviders.Abstractions.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\Microsoft.Extensions.FileProviders.Physical.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\Microsoft.Extensions.FileSystemGlobbing.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\Microsoft.Extensions.Localization.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\Microsoft.Extensions.Localization.Abstractions.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\Microsoft.Extensions.Logging.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\Microsoft.Extensions.Logging.Abstractions.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\Microsoft.Extensions.Options.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\Microsoft.Extensions.Options.ConfigurationExtensions.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\Microsoft.Extensions.Primitives.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\Microsoft.Extensions.Validation.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\Microsoft.JSInterop.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\Microsoft.JSInterop.WebAssembly.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\MudBlazor.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\Microsoft.CSharp.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\Microsoft.VisualBasic.Core.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\Microsoft.VisualBasic.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\Microsoft.Win32.Primitives.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\Microsoft.Win32.Registry.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.AppContext.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Buffers.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Collections.Concurrent.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Collections.Immutable.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Collections.NonGeneric.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Collections.Specialized.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Collections.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.ComponentModel.Annotations.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.ComponentModel.DataAnnotations.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.ComponentModel.EventBasedAsync.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.ComponentModel.Primitives.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.ComponentModel.TypeConverter.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.ComponentModel.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Configuration.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Console.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Core.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Data.Common.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Data.DataSetExtensions.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Data.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Diagnostics.Contracts.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Diagnostics.Debug.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Diagnostics.DiagnosticSource.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Diagnostics.FileVersionInfo.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Diagnostics.Process.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Diagnostics.StackTrace.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Diagnostics.TextWriterTraceListener.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Diagnostics.Tools.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Diagnostics.TraceSource.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Diagnostics.Tracing.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Drawing.Primitives.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Drawing.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Dynamic.Runtime.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Formats.Asn1.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Formats.Tar.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Globalization.Calendars.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Globalization.Extensions.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Globalization.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.IO.Compression.Brotli.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.IO.Compression.FileSystem.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.IO.Compression.ZipFile.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.IO.Compression.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.IO.FileSystem.AccessControl.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.IO.FileSystem.DriveInfo.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.IO.FileSystem.Primitives.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.IO.FileSystem.Watcher.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.IO.FileSystem.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.IO.IsolatedStorage.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.IO.MemoryMappedFiles.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.IO.Pipelines.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.IO.Pipes.AccessControl.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.IO.Pipes.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.IO.UnmanagedMemoryStream.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.IO.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Linq.AsyncEnumerable.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Linq.Expressions.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Linq.Parallel.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Linq.Queryable.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Linq.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Memory.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Net.Http.Json.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Net.Http.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Net.HttpListener.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Net.Mail.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Net.NameResolution.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Net.NetworkInformation.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Net.Ping.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Net.Primitives.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Net.Quic.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Net.Requests.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Net.Security.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Net.ServerSentEvents.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Net.ServicePoint.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Net.Sockets.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Net.WebClient.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Net.WebHeaderCollection.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Net.WebProxy.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Net.WebSockets.Client.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Net.WebSockets.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Net.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Numerics.Vectors.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Numerics.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.ObjectModel.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Private.DataContractSerialization.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Private.Uri.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Private.Xml.Linq.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Private.Xml.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Reflection.DispatchProxy.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Reflection.Emit.ILGeneration.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Reflection.Emit.Lightweight.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Reflection.Emit.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Reflection.Extensions.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Reflection.Metadata.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Reflection.Primitives.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Reflection.TypeExtensions.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Reflection.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Resources.Reader.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Resources.ResourceManager.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Resources.Writer.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Runtime.CompilerServices.Unsafe.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Runtime.CompilerServices.VisualC.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Runtime.Extensions.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Runtime.Handles.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Runtime.InteropServices.JavaScript.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Runtime.InteropServices.RuntimeInformation.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Runtime.InteropServices.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Runtime.Intrinsics.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Runtime.Loader.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Runtime.Numerics.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Runtime.Serialization.Formatters.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Runtime.Serialization.Json.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Runtime.Serialization.Primitives.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Runtime.Serialization.Xml.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Runtime.Serialization.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Runtime.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Security.AccessControl.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Security.Claims.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Security.Cryptography.Algorithms.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Security.Cryptography.Cng.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Security.Cryptography.Csp.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Security.Cryptography.Encoding.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Security.Cryptography.OpenSsl.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Security.Cryptography.Primitives.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Security.Cryptography.X509Certificates.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Security.Cryptography.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Security.Principal.Windows.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Security.Principal.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Security.SecureString.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Security.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.ServiceModel.Web.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.ServiceProcess.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Text.Encoding.CodePages.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Text.Encoding.Extensions.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Text.Encoding.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Text.Encodings.Web.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Text.Json.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Text.RegularExpressions.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Threading.AccessControl.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Threading.Channels.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Threading.Overlapped.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Threading.Tasks.Dataflow.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Threading.Tasks.Extensions.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Threading.Tasks.Parallel.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Threading.Tasks.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Threading.Thread.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Threading.ThreadPool.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Threading.Timer.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Threading.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Transactions.Local.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Transactions.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.ValueTuple.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Web.HttpUtility.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Web.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Windows.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Xml.Linq.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Xml.ReaderWriter.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Xml.Serialization.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Xml.XDocument.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Xml.XPath.XDocument.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Xml.XPath.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Xml.XmlDocument.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Xml.XmlSerializer.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Xml.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\WindowsBase.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\mscorlib.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\netstandard.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\System.Private.CoreLib.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\webcil\OnProfNext.Client.wasm +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\rjimswa.dswa.cache.json +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\rjsmrazor.dswa.cache.json +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\rjsmcshtml.dswa.cache.json +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\scopedcss\Layout\ReconnectModal.razor.rz.scp.css +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\scopedcss\bundle\OnProfNext.Client.styles.css +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\scopedcss\projectbundle\OnProfNext.Client.bundle.scp.css +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\OnProfNext.Client.genruntimeconfig.cache +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\blazor.build.boot-extension.json +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\dotnet.js +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\bfkt9xtjsh-{0}-x0ueugt8gp-x0ueugt8gp.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\3hvscw4lq4-{0}-x0ueugt8gp-x0ueugt8gp.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\ug9ge1behf-{0}-ycbzh0sbjd-ycbzh0sbjd.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\vbwtfewq79-{0}-66stpp682q-66stpp682q.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\hd2b1ihltm-{0}-uzl7ca9j9c-uzl7ca9j9c.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\808kb9dz89-{0}-uzl7ca9j9c-uzl7ca9j9c.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\5g3srlr8jx-{0}-roqc1km2rj-roqc1km2rj.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\fs9spivh8g-{0}-uddsvpv1sv-uddsvpv1sv.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\qlfvznror3-{0}-zrueb40r85-zrueb40r85.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\gx4y3aoczp-{0}-g5qdp1mxha-g5qdp1mxha.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\mx4r46cpu7-{0}-9mjwvs1qyp-9mjwvs1qyp.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\zpx4nb1yyz-{0}-m3mxap0jif-m3mxap0jif.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\3of7h5c6n8-{0}-hrhwg3a64c-hrhwg3a64c.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\dnrp0xl7wy-{0}-fgwnqtu7qk-fgwnqtu7qk.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\s4opith0ak-{0}-thew1o6jcx-thew1o6jcx.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\11oooy7jd2-{0}-7o70008j8o-7o70008j8o.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\vhumncwy1p-{0}-ouivavlhyy-ouivavlhyy.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\69vphje66t-{0}-giv4t23za9-giv4t23za9.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\epsgnejg6l-{0}-vs620n44bv-vs620n44bv.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\kstk0dzyw1-{0}-ud13mwbta3-ud13mwbta3.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\3rwukvhyra-{0}-jnogfbng3i-jnogfbng3i.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\0o3yap4xcv-{0}-v59ymogeuz-v59ymogeuz.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\ezxlu8d1x1-{0}-ssv83rveyv-ssv83rveyv.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\keeokmerp8-{0}-8gz29xpyh3-8gz29xpyh3.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\l2v44xhbzj-{0}-ozuva4e3vv-ozuva4e3vv.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\84jx0dmgdc-{0}-xcslyy3nju-xcslyy3nju.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\tezhiquus4-{0}-6jkolue1ka-6jkolue1ka.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\oix89w3uk2-{0}-y4ydx3rk2c-y4ydx3rk2c.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\sn0mpm6uvc-{0}-1q3x7vre4l-1q3x7vre4l.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\u4abyqnekj-{0}-2rz5zbidnd-2rz5zbidnd.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\ozc2mb3rdz-{0}-zmb03w0weu-zmb03w0weu.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\co27dkpaxa-{0}-bd164v6l3f-bd164v6l3f.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\fappprmifz-{0}-r1sv3m5lsf-r1sv3m5lsf.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\pro4ajsvfg-{0}-1r0ampr2q1-1r0ampr2q1.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\6mv5cent6u-{0}-oz8fkrrrd6-oz8fkrrrd6.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\w2iaa8sc3u-{0}-k6079czmkm-k6079czmkm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\yva5srnvsu-{0}-452y5fjxmv-452y5fjxmv.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\du4skpg5oq-{0}-re3geseai5-re3geseai5.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\akapjt0sxo-{0}-91iw3j3d9p-91iw3j3d9p.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\i7n8kqec4e-{0}-2mjytoh92q-2mjytoh92q.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\553rwsqb4a-{0}-yz8nt3ycsq-yz8nt3ycsq.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\jcwxb5s78i-{0}-uwq3fpef1w-uwq3fpef1w.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\8u2rup9szd-{0}-m4yhcvz2y2-m4yhcvz2y2.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\niv8zsbxhl-{0}-1zv6wuzklu-1zv6wuzklu.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\3k0w0ci5df-{0}-6uzpuv4o5d-6uzpuv4o5d.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\r1c02csw1u-{0}-k5rgagff9o-k5rgagff9o.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\q6am3o85wz-{0}-84wojkejb4-84wojkejb4.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\3zhncs8zdy-{0}-63jrcion39-63jrcion39.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\wj9cgpvw17-{0}-cjsvkufomv-cjsvkufomv.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\jimv6lw5j5-{0}-vpng0qt4u6-vpng0qt4u6.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\ixx2bqnfah-{0}-en4q13ibd5-en4q13ibd5.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\nu73pdet4t-{0}-u0y5oi3qdg-u0y5oi3qdg.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\gpzobq46fp-{0}-e2hbv9lola-e2hbv9lola.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\ffumllgt4m-{0}-m11rh1qn2x-m11rh1qn2x.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\o9xpqh7wzb-{0}-j8qjkqg593-j8qjkqg593.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\ea8uo6cwb8-{0}-x9at0eh4vs-x9at0eh4vs.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\edgswerp4g-{0}-ickp29885z-ickp29885z.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\68hq2gv5cb-{0}-4wisaz8pj4-4wisaz8pj4.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\sm8o0gwk5g-{0}-904tnen1ot-904tnen1ot.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\y20kxtztgi-{0}-0h75nr7qqd-0h75nr7qqd.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\wgdliulfxe-{0}-z1eotzj35n-z1eotzj35n.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\i9mn6d27vy-{0}-aeh9b1tcuc-aeh9b1tcuc.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\lgx6p69ons-{0}-ou2dt7nfo2-ou2dt7nfo2.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\i7dsezujyr-{0}-kv9gl8mgag-kv9gl8mgag.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\67s0zux9y9-{0}-lqtqkmw274-lqtqkmw274.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\ae1qv5wfu3-{0}-wvlboxd9cz-wvlboxd9cz.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\5psn88uayv-{0}-mx5w1z1p6w-mx5w1z1p6w.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\6yvil548ai-{0}-862j1ozg5o-862j1ozg5o.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\w9uuhprkgr-{0}-j08okd90mo-j08okd90mo.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\ymz6pz7ujf-{0}-bnz7jo4op8-bnz7jo4op8.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\beyjjw9nw7-{0}-k3z431p3v7-k3z431p3v7.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\bm4t56k5pn-{0}-v0usa2s224-v0usa2s224.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\95o3q4uwxv-{0}-iktlm0yhdx-iktlm0yhdx.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\2eqyybz3l2-{0}-9iyl1hnh76-9iyl1hnh76.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\aawrgxq7b9-{0}-9ikmelhi7g-9ikmelhi7g.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\g4w42juzkx-{0}-e8yl47y6cv-e8yl47y6cv.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\g3b5a282rj-{0}-fvxkfs32tv-fvxkfs32tv.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\nvjr9jta08-{0}-4ulc930few-4ulc930few.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\flmzbagm0p-{0}-ibxx4kh8c6-ibxx4kh8c6.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\ffagyufl1o-{0}-bselp9vv9w-bselp9vv9w.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\a99cqvh69a-{0}-b0ha8vyo8i-b0ha8vyo8i.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\mk5261bq2v-{0}-sgbc42zrd8-sgbc42zrd8.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\m3i6jtsneo-{0}-oi9xn5s0h3-oi9xn5s0h3.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\8i8whn9pm1-{0}-fi1uhp9255-fi1uhp9255.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\kzc385ysv6-{0}-6j2ed42ac7-6j2ed42ac7.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\m428rlfc87-{0}-v9i07bnq2k-v9i07bnq2k.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\vnqjd4ny0q-{0}-fktu0k4b93-fktu0k4b93.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\na7pgc18jv-{0}-8ll4gxwfs1-8ll4gxwfs1.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\rsffl3vumf-{0}-6do4olk7ib-6do4olk7ib.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\pxy8xfz0ow-{0}-21z0t9w6sq-21z0t9w6sq.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\lvyasyre47-{0}-5lvzz4lks7-5lvzz4lks7.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\vjl93wt59v-{0}-xosph8vk4a-xosph8vk4a.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\dzqyarawy9-{0}-d1pja42pyi-d1pja42pyi.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\kukm29h8dt-{0}-i9g92fmb9y-i9g92fmb9y.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\1u9lol5zjk-{0}-4m1mh525k0-4m1mh525k0.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\r0xa1dsvvu-{0}-4nat0rber0-4nat0rber0.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\35llacexwm-{0}-qf7zemz9aw-qf7zemz9aw.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\hylqczc46z-{0}-vwinf8twbn-vwinf8twbn.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\p0pe0blimm-{0}-rp2jklkmsi-rp2jklkmsi.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\zip5atfnk1-{0}-3r0soomurg-3r0soomurg.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\zxgtro8yo7-{0}-t9gqpmtbpb-t9gqpmtbpb.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\hz1tpel2o0-{0}-9rl4gopayw-9rl4gopayw.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\mkyh3erkm9-{0}-zg37o92yol-zg37o92yol.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\019ldzgpk2-{0}-qk214miut2-qk214miut2.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\ui1ul8tpby-{0}-50dzekuu9x-50dzekuu9x.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\luuq2ppq8r-{0}-k8343mqust-k8343mqust.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\yswenxxy60-{0}-00vh2kvsiz-00vh2kvsiz.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\e2kh1woy2q-{0}-whs5oed1wm-whs5oed1wm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\t7lpa3lwov-{0}-grloe2ix5j-grloe2ix5j.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\zy4nys0fbm-{0}-r8ar2pd94c-r8ar2pd94c.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\iem13k4n35-{0}-yn3zcskz4j-yn3zcskz4j.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\t2mopjsgs5-{0}-37wbq4jfsy-37wbq4jfsy.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\sz4qmwa0cz-{0}-j436yqvrg9-j436yqvrg9.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\ozd9l95cy8-{0}-utzdm9sw2p-utzdm9sw2p.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\0qximx7h6w-{0}-e5a4gx4ylt-e5a4gx4ylt.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\xfyu8pi705-{0}-rbzkmij005-rbzkmij005.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\kwztau0oyy-{0}-38jcv8jeeu-38jcv8jeeu.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\zc08r46902-{0}-nv5izr3rt6-nv5izr3rt6.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\ttu14uxg7m-{0}-hdzn84g6uh-hdzn84g6uh.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\mwxs9jgpi5-{0}-zku96ychk7-zku96ychk7.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\tmgotixosa-{0}-1l8xruz8uh-1l8xruz8uh.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\fmcag5xdn2-{0}-on9qk50okp-on9qk50okp.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\f62yejuwjc-{0}-4omhtq90sd-4omhtq90sd.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\g0qzdert85-{0}-zlwtcvnuqv-zlwtcvnuqv.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\e67ma35du3-{0}-clehp4avpy-clehp4avpy.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\93opzeh57b-{0}-ga3n3gh9b6-ga3n3gh9b6.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\byxake4xdz-{0}-g9rvjereoe-g9rvjereoe.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\jjcxq3ejac-{0}-b7qn4zpc0q-b7qn4zpc0q.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\i8msa0z88m-{0}-x0vkqyycss-x0vkqyycss.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\gremm5qhcr-{0}-3tzjd7znni-3tzjd7znni.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\p1p1dduoka-{0}-3t7flfwg7o-3t7flfwg7o.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\vtgrfa0p11-{0}-ymwga5opgl-ymwga5opgl.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\k6k7jlyl2f-{0}-9lgg9wjd2a-9lgg9wjd2a.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\tdpp3qw974-{0}-n2ngq6as7g-n2ngq6as7g.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\hoalsbog2o-{0}-ivmzcfvrc6-ivmzcfvrc6.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\m0i5wjywsx-{0}-v4mfyzbte8-v4mfyzbte8.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\xtefui8dpc-{0}-c9z9nieytf-c9z9nieytf.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\qrheoix2ig-{0}-f3fiwdwb50-f3fiwdwb50.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\szit2ufpnx-{0}-tx9namivq6-tx9namivq6.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\3txc49hfsy-{0}-5yw8jyjkyt-5yw8jyjkyt.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\me1or200pv-{0}-ddbsai2xh9-ddbsai2xh9.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\4syo1xqmc8-{0}-f4fqaba1oz-f4fqaba1oz.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\fz4pecsmjf-{0}-kpe61fymig-kpe61fymig.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\h9925thw3k-{0}-ythr5w8c2e-ythr5w8c2e.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\zx6kj3xmnr-{0}-esodb2rpbi-esodb2rpbi.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\0st0knthx5-{0}-02r2ubft18-02r2ubft18.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\7yd9j54hd0-{0}-j8lrpban8m-j8lrpban8m.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\06jmrwgemt-{0}-bm8d2pac0a-bm8d2pac0a.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\b1pqie8d42-{0}-e3fl2oogjk-e3fl2oogjk.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\4k92vl8md2-{0}-a0v88kqnif-a0v88kqnif.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\wxwyng4xk0-{0}-pez04wd9mo-pez04wd9mo.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\j81tt1y6rj-{0}-xy5d3j3dn1-xy5d3j3dn1.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\8pmauzinw9-{0}-mmwsbcsgly-mmwsbcsgly.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\mkj61d469a-{0}-qfpmfujegm-qfpmfujegm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\9ru0gm9zti-{0}-k6ze2203p2-k6ze2203p2.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\9n1qe841ua-{0}-4mxo8hy5cn-4mxo8hy5cn.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\awwlmj7zy5-{0}-9n1yusa5e5-9n1yusa5e5.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\m02xm5ue7p-{0}-4dnz7b15a9-4dnz7b15a9.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\jhjpqkptaq-{0}-dyaxkkx3lb-dyaxkkx3lb.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\v9jar86jna-{0}-20t5iw27a6-20t5iw27a6.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\uu7wfp4do2-{0}-0lu5m0tfx2-0lu5m0tfx2.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\12m83h5a1i-{0}-4m4pzjxi3g-4m4pzjxi3g.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\ly70359tb6-{0}-7bcdd4uolu-7bcdd4uolu.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\rz1qtq0z6d-{0}-dmew7c9amv-dmew7c9amv.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\gqmneoqstx-{0}-5rp84ijz8t-5rp84ijz8t.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\sl0sft7bkv-{0}-7ssqvw2wfy-7ssqvw2wfy.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\8ynwqwcefg-{0}-j5dp7k8x6u-j5dp7k8x6u.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\ogcs9ucvrf-{0}-7weoywtuje-7weoywtuje.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\8srr1acehr-{0}-snpv53zusk-snpv53zusk.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\i30lqfoca8-{0}-3f1khl8k32-3f1khl8k32.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\zlxnfbxifc-{0}-a95c1olw0i-a95c1olw0i.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\d2kqqmb0bv-{0}-8bhn50uz8f-8bhn50uz8f.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\m10se0yx1g-{0}-tqz9dyg6j7-tqz9dyg6j7.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\w4xw0gq3pj-{0}-s9ic8sulfi-s9ic8sulfi.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\wqsee81gb1-{0}-07hq35kp92-07hq35kp92.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\0064fe6uur-{0}-2alhj4y3bm-2alhj4y3bm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\7d15z782y2-{0}-h1qtkesphd-h1qtkesphd.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\lbcric48ji-{0}-ruehy0ud5k-ruehy0ud5k.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\rma0vjtbld-{0}-s3i62rxr2p-s3i62rxr2p.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\ywpa2qpg55-{0}-lzl7igry1t-lzl7igry1t.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\to8tkrj8cc-{0}-p9bjzp5pyo-p9bjzp5pyo.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\7o4w0lfocu-{0}-unp0hcfijn-unp0hcfijn.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\ohlfbgu01g-{0}-hyku0ejwye-hyku0ejwye.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\8rrnar5gtv-{0}-t0sjw89o0i-t0sjw89o0i.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\wi7nbv7im4-{0}-nfbg9v9bn0-nfbg9v9bn0.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\5g4i44bi6s-{0}-jrzo6stg1k-jrzo6stg1k.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\hq538hfxem-{0}-y8l1kxazi5-y8l1kxazi5.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\e2ypaal8k2-{0}-47ucbn1gg1-47ucbn1gg1.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\uz6wr238mp-{0}-cig01jt23c-cig01jt23c.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\kmdzqqqt27-{0}-pl50n6qbg7-pl50n6qbg7.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\dy6tcjmb9q-{0}-mj3r9p0pcw-mj3r9p0pcw.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\pfi56k79hn-{0}-3jfxpyq4in-3jfxpyq4in.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\iok845swr0-{0}-2a6wq9gv6d-2a6wq9gv6d.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\tvvpa50077-{0}-bw79ix589z-bw79ix589z.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\79deazooef-{0}-nvnhbwdsg6-nvnhbwdsg6.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\kmp1cwjk7f-{0}-szsdminork-szsdminork.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\cagt9idkdm-{0}-b9imguls9w-b9imguls9w.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\blwck2749u-{0}-8hg6c0at0c-8hg6c0at0c.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\gsr2zhdiud-{0}-g7i5gd64yo-g7i5gd64yo.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\xo45czuveq-{0}-11wk1hhnfk-11wk1hhnfk.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\ww3wnv8b6s-{0}-isetn6xlxa-isetn6xlxa.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\qt3o35adbl-{0}-okgnp5v9bw-okgnp5v9bw.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\ra6e7v46m5-{0}-zjgi7nrlno-zjgi7nrlno.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\5onvg4v1ie-{0}-7rk3uansaa-7rk3uansaa.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\10vfj5e8p2-{0}-wz82kkc1p3-wz82kkc1p3.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\6ixuumt5h1-{0}-555t1ekkz8-555t1ekkz8.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\8dl34ipw8j-{0}-0e3bjkca9m-0e3bjkca9m.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\3zyfvkhmnk-{0}-koxlwnosh6-koxlwnosh6.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\jg5bcwzjkb-{0}-clndu25lif-clndu25lif.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\4131vl2c0u-{0}-ykrnppwhq2-ykrnppwhq2.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\4gmvxkcg2g-{0}-53ez3dx5uy-53ez3dx5uy.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\arn1xqjw1x-{0}-peu2mfb29t-peu2mfb29t.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\6fczie0f1k-{0}-y1cse46x0j-y1cse46x0j.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\2noakrdf2j-{0}-tjcz0u77k5-tjcz0u77k5.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\yee81ivl95-{0}-tptq2av103-tptq2av103.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\gnkv5k3g9v-{0}-lfu7j35m59-lfu7j35m59.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\f6u1msztxb-{0}-xhq6acanj0-xhq6acanj0.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\cycczivqx5-{0}-lplk7v275j-lplk7v275j.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\compressed\qz9h56e7z8-{0}-kx7meqmil2-kx7meqmil2.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\staticwebassets.build.json +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\staticwebassets.build.json.cache +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\staticwebassets.development.json +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\staticwebassets.build.endpoints.json +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\swae.build.ex.cache +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\staticwebassets.upToDateCheck.txt +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\OnProfNe.E877B38C.Up2Date +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\OnProfNext.Client.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\refint\OnProfNext.Client.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\OnProfNext.Client.pdb +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\ref\OnProfNext.Client.dll diff --git a/OnProfNext.Client/obj/Debug/net10.0/OnProfNext.Client.dll b/OnProfNext.Client/obj/Debug/net10.0/OnProfNext.Client.dll new file mode 100644 index 0000000..2e3741b Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/OnProfNext.Client.dll differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/OnProfNext.Client.genruntimeconfig.cache b/OnProfNext.Client/obj/Debug/net10.0/OnProfNext.Client.genruntimeconfig.cache new file mode 100644 index 0000000..1abb0a9 --- /dev/null +++ b/OnProfNext.Client/obj/Debug/net10.0/OnProfNext.Client.genruntimeconfig.cache @@ -0,0 +1 @@ +31c0b48f42c76fa5c6761d70dc2682e0047e0207b573e2ad02d48e3b0d2ac973 diff --git a/OnProfNext.Client/obj/Debug/net10.0/OnProfNext.Client.pdb b/OnProfNext.Client/obj/Debug/net10.0/OnProfNext.Client.pdb new file mode 100644 index 0000000..f0c1e41 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/OnProfNext.Client.pdb differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/ValidatableTypeAttribute.cs b/OnProfNext.Client/obj/Debug/net10.0/ValidatableTypeAttribute.cs new file mode 100644 index 0000000..26eb880 --- /dev/null +++ b/OnProfNext.Client/obj/Debug/net10.0/ValidatableTypeAttribute.cs @@ -0,0 +1,9 @@ +// +namespace Microsoft.Extensions.Validation.Embedded +{ +[global::Microsoft.CodeAnalysis.EmbeddedAttribute] +[global::System.AttributeUsage(global::System.AttributeTargets.Class)] +internal sealed class ValidatableTypeAttribute : global::System.Attribute +{ +} +} diff --git a/OnProfNext.Client/obj/Debug/net10.0/blazor.build.boot-extension.json b/OnProfNext.Client/obj/Debug/net10.0/blazor.build.boot-extension.json new file mode 100644 index 0000000..6f31cf5 --- /dev/null +++ b/OnProfNext.Client/obj/Debug/net10.0/blazor.build.boot-extension.json @@ -0,0 +1 @@ +{ } \ No newline at end of file diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/0064fe6uur-{0}-2alhj4y3bm-2alhj4y3bm.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/0064fe6uur-{0}-2alhj4y3bm-2alhj4y3bm.gz new file mode 100644 index 0000000..025466d Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/0064fe6uur-{0}-2alhj4y3bm-2alhj4y3bm.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/019ldzgpk2-{0}-qk214miut2-qk214miut2.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/019ldzgpk2-{0}-qk214miut2-qk214miut2.gz new file mode 100644 index 0000000..c4cf628 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/019ldzgpk2-{0}-qk214miut2-qk214miut2.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/06jmrwgemt-{0}-bm8d2pac0a-bm8d2pac0a.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/06jmrwgemt-{0}-bm8d2pac0a-bm8d2pac0a.gz new file mode 100644 index 0000000..e8de5e6 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/06jmrwgemt-{0}-bm8d2pac0a-bm8d2pac0a.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/0o3yap4xcv-{0}-v59ymogeuz-v59ymogeuz.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/0o3yap4xcv-{0}-v59ymogeuz-v59ymogeuz.gz new file mode 100644 index 0000000..9ab2339 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/0o3yap4xcv-{0}-v59ymogeuz-v59ymogeuz.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/0qximx7h6w-{0}-e5a4gx4ylt-e5a4gx4ylt.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/0qximx7h6w-{0}-e5a4gx4ylt-e5a4gx4ylt.gz new file mode 100644 index 0000000..1b67aa9 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/0qximx7h6w-{0}-e5a4gx4ylt-e5a4gx4ylt.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/0st0knthx5-{0}-02r2ubft18-02r2ubft18.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/0st0knthx5-{0}-02r2ubft18-02r2ubft18.gz new file mode 100644 index 0000000..c091991 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/0st0knthx5-{0}-02r2ubft18-02r2ubft18.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/10vfj5e8p2-{0}-wz82kkc1p3-wz82kkc1p3.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/10vfj5e8p2-{0}-wz82kkc1p3-wz82kkc1p3.gz new file mode 100644 index 0000000..9d2f550 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/10vfj5e8p2-{0}-wz82kkc1p3-wz82kkc1p3.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/11oooy7jd2-{0}-7o70008j8o-7o70008j8o.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/11oooy7jd2-{0}-7o70008j8o-7o70008j8o.gz new file mode 100644 index 0000000..7cf472e Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/11oooy7jd2-{0}-7o70008j8o-7o70008j8o.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/12m83h5a1i-{0}-4m4pzjxi3g-4m4pzjxi3g.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/12m83h5a1i-{0}-4m4pzjxi3g-4m4pzjxi3g.gz new file mode 100644 index 0000000..43e9a58 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/12m83h5a1i-{0}-4m4pzjxi3g-4m4pzjxi3g.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/1u9lol5zjk-{0}-4m1mh525k0-4m1mh525k0.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/1u9lol5zjk-{0}-4m1mh525k0-4m1mh525k0.gz new file mode 100644 index 0000000..bee9fb3 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/1u9lol5zjk-{0}-4m1mh525k0-4m1mh525k0.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/2eqyybz3l2-{0}-9iyl1hnh76-9iyl1hnh76.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/2eqyybz3l2-{0}-9iyl1hnh76-9iyl1hnh76.gz new file mode 100644 index 0000000..3bd5d51 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/2eqyybz3l2-{0}-9iyl1hnh76-9iyl1hnh76.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/2noakrdf2j-{0}-tjcz0u77k5-tjcz0u77k5.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/2noakrdf2j-{0}-tjcz0u77k5-tjcz0u77k5.gz new file mode 100644 index 0000000..f0921af Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/2noakrdf2j-{0}-tjcz0u77k5-tjcz0u77k5.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/35llacexwm-{0}-qf7zemz9aw-qf7zemz9aw.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/35llacexwm-{0}-qf7zemz9aw-qf7zemz9aw.gz new file mode 100644 index 0000000..013dedd Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/35llacexwm-{0}-qf7zemz9aw-qf7zemz9aw.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/3hvscw4lq4-{0}-x0ueugt8gp-x0ueugt8gp.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/3hvscw4lq4-{0}-x0ueugt8gp-x0ueugt8gp.gz new file mode 100644 index 0000000..67bb0b6 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/3hvscw4lq4-{0}-x0ueugt8gp-x0ueugt8gp.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/3k0w0ci5df-{0}-6uzpuv4o5d-6uzpuv4o5d.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/3k0w0ci5df-{0}-6uzpuv4o5d-6uzpuv4o5d.gz new file mode 100644 index 0000000..89e452e Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/3k0w0ci5df-{0}-6uzpuv4o5d-6uzpuv4o5d.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/3of7h5c6n8-{0}-hrhwg3a64c-hrhwg3a64c.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/3of7h5c6n8-{0}-hrhwg3a64c-hrhwg3a64c.gz new file mode 100644 index 0000000..ea92f23 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/3of7h5c6n8-{0}-hrhwg3a64c-hrhwg3a64c.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/3rwukvhyra-{0}-jnogfbng3i-jnogfbng3i.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/3rwukvhyra-{0}-jnogfbng3i-jnogfbng3i.gz new file mode 100644 index 0000000..ce563f3 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/3rwukvhyra-{0}-jnogfbng3i-jnogfbng3i.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/3txc49hfsy-{0}-5yw8jyjkyt-5yw8jyjkyt.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/3txc49hfsy-{0}-5yw8jyjkyt-5yw8jyjkyt.gz new file mode 100644 index 0000000..3b9fc39 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/3txc49hfsy-{0}-5yw8jyjkyt-5yw8jyjkyt.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/3zhncs8zdy-{0}-63jrcion39-63jrcion39.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/3zhncs8zdy-{0}-63jrcion39-63jrcion39.gz new file mode 100644 index 0000000..75d0f60 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/3zhncs8zdy-{0}-63jrcion39-63jrcion39.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/3zyfvkhmnk-{0}-koxlwnosh6-koxlwnosh6.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/3zyfvkhmnk-{0}-koxlwnosh6-koxlwnosh6.gz new file mode 100644 index 0000000..8646287 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/3zyfvkhmnk-{0}-koxlwnosh6-koxlwnosh6.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/4131vl2c0u-{0}-ykrnppwhq2-ykrnppwhq2.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/4131vl2c0u-{0}-ykrnppwhq2-ykrnppwhq2.gz new file mode 100644 index 0000000..45a72b3 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/4131vl2c0u-{0}-ykrnppwhq2-ykrnppwhq2.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/4gmvxkcg2g-{0}-53ez3dx5uy-53ez3dx5uy.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/4gmvxkcg2g-{0}-53ez3dx5uy-53ez3dx5uy.gz new file mode 100644 index 0000000..115712e Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/4gmvxkcg2g-{0}-53ez3dx5uy-53ez3dx5uy.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/4k92vl8md2-{0}-a0v88kqnif-a0v88kqnif.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/4k92vl8md2-{0}-a0v88kqnif-a0v88kqnif.gz new file mode 100644 index 0000000..8ca3586 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/4k92vl8md2-{0}-a0v88kqnif-a0v88kqnif.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/4syo1xqmc8-{0}-f4fqaba1oz-f4fqaba1oz.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/4syo1xqmc8-{0}-f4fqaba1oz-f4fqaba1oz.gz new file mode 100644 index 0000000..058f76f Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/4syo1xqmc8-{0}-f4fqaba1oz-f4fqaba1oz.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/553rwsqb4a-{0}-yz8nt3ycsq-yz8nt3ycsq.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/553rwsqb4a-{0}-yz8nt3ycsq-yz8nt3ycsq.gz new file mode 100644 index 0000000..375caf3 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/553rwsqb4a-{0}-yz8nt3ycsq-yz8nt3ycsq.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/5g3srlr8jx-{0}-roqc1km2rj-roqc1km2rj.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/5g3srlr8jx-{0}-roqc1km2rj-roqc1km2rj.gz new file mode 100644 index 0000000..2be2cbb Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/5g3srlr8jx-{0}-roqc1km2rj-roqc1km2rj.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/5g4i44bi6s-{0}-jrzo6stg1k-jrzo6stg1k.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/5g4i44bi6s-{0}-jrzo6stg1k-jrzo6stg1k.gz new file mode 100644 index 0000000..c2016d7 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/5g4i44bi6s-{0}-jrzo6stg1k-jrzo6stg1k.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/5onvg4v1ie-{0}-7rk3uansaa-7rk3uansaa.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/5onvg4v1ie-{0}-7rk3uansaa-7rk3uansaa.gz new file mode 100644 index 0000000..6321f6d Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/5onvg4v1ie-{0}-7rk3uansaa-7rk3uansaa.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/5psn88uayv-{0}-mx5w1z1p6w-mx5w1z1p6w.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/5psn88uayv-{0}-mx5w1z1p6w-mx5w1z1p6w.gz new file mode 100644 index 0000000..0c86cdf Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/5psn88uayv-{0}-mx5w1z1p6w-mx5w1z1p6w.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/67s0zux9y9-{0}-lqtqkmw274-lqtqkmw274.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/67s0zux9y9-{0}-lqtqkmw274-lqtqkmw274.gz new file mode 100644 index 0000000..cd3206b Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/67s0zux9y9-{0}-lqtqkmw274-lqtqkmw274.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/68hq2gv5cb-{0}-4wisaz8pj4-4wisaz8pj4.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/68hq2gv5cb-{0}-4wisaz8pj4-4wisaz8pj4.gz new file mode 100644 index 0000000..59e61d7 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/68hq2gv5cb-{0}-4wisaz8pj4-4wisaz8pj4.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/69vphje66t-{0}-giv4t23za9-giv4t23za9.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/69vphje66t-{0}-giv4t23za9-giv4t23za9.gz new file mode 100644 index 0000000..842d82e Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/69vphje66t-{0}-giv4t23za9-giv4t23za9.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/6fczie0f1k-{0}-y1cse46x0j-y1cse46x0j.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/6fczie0f1k-{0}-y1cse46x0j-y1cse46x0j.gz new file mode 100644 index 0000000..152f5df Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/6fczie0f1k-{0}-y1cse46x0j-y1cse46x0j.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/6ixuumt5h1-{0}-555t1ekkz8-555t1ekkz8.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/6ixuumt5h1-{0}-555t1ekkz8-555t1ekkz8.gz new file mode 100644 index 0000000..e3d94ad Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/6ixuumt5h1-{0}-555t1ekkz8-555t1ekkz8.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/6mv5cent6u-{0}-oz8fkrrrd6-oz8fkrrrd6.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/6mv5cent6u-{0}-oz8fkrrrd6-oz8fkrrrd6.gz new file mode 100644 index 0000000..c3e2278 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/6mv5cent6u-{0}-oz8fkrrrd6-oz8fkrrrd6.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/6yvil548ai-{0}-862j1ozg5o-862j1ozg5o.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/6yvil548ai-{0}-862j1ozg5o-862j1ozg5o.gz new file mode 100644 index 0000000..f6c0e14 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/6yvil548ai-{0}-862j1ozg5o-862j1ozg5o.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/79deazooef-{0}-nvnhbwdsg6-nvnhbwdsg6.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/79deazooef-{0}-nvnhbwdsg6-nvnhbwdsg6.gz new file mode 100644 index 0000000..84e7b47 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/79deazooef-{0}-nvnhbwdsg6-nvnhbwdsg6.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/7d15z782y2-{0}-h1qtkesphd-h1qtkesphd.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/7d15z782y2-{0}-h1qtkesphd-h1qtkesphd.gz new file mode 100644 index 0000000..5ae43d9 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/7d15z782y2-{0}-h1qtkesphd-h1qtkesphd.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/7o4w0lfocu-{0}-unp0hcfijn-unp0hcfijn.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/7o4w0lfocu-{0}-unp0hcfijn-unp0hcfijn.gz new file mode 100644 index 0000000..df08bf6 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/7o4w0lfocu-{0}-unp0hcfijn-unp0hcfijn.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/7yd9j54hd0-{0}-j8lrpban8m-j8lrpban8m.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/7yd9j54hd0-{0}-j8lrpban8m-j8lrpban8m.gz new file mode 100644 index 0000000..8b56211 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/7yd9j54hd0-{0}-j8lrpban8m-j8lrpban8m.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/808kb9dz89-{0}-uzl7ca9j9c-uzl7ca9j9c.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/808kb9dz89-{0}-uzl7ca9j9c-uzl7ca9j9c.gz new file mode 100644 index 0000000..620c7f0 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/808kb9dz89-{0}-uzl7ca9j9c-uzl7ca9j9c.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/84jx0dmgdc-{0}-xcslyy3nju-xcslyy3nju.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/84jx0dmgdc-{0}-xcslyy3nju-xcslyy3nju.gz new file mode 100644 index 0000000..ff89538 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/84jx0dmgdc-{0}-xcslyy3nju-xcslyy3nju.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/8dl34ipw8j-{0}-0e3bjkca9m-0e3bjkca9m.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/8dl34ipw8j-{0}-0e3bjkca9m-0e3bjkca9m.gz new file mode 100644 index 0000000..a45a2e6 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/8dl34ipw8j-{0}-0e3bjkca9m-0e3bjkca9m.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/8i8whn9pm1-{0}-fi1uhp9255-fi1uhp9255.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/8i8whn9pm1-{0}-fi1uhp9255-fi1uhp9255.gz new file mode 100644 index 0000000..ed058e6 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/8i8whn9pm1-{0}-fi1uhp9255-fi1uhp9255.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/8pmauzinw9-{0}-mmwsbcsgly-mmwsbcsgly.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/8pmauzinw9-{0}-mmwsbcsgly-mmwsbcsgly.gz new file mode 100644 index 0000000..750de4d Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/8pmauzinw9-{0}-mmwsbcsgly-mmwsbcsgly.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/8rrnar5gtv-{0}-t0sjw89o0i-t0sjw89o0i.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/8rrnar5gtv-{0}-t0sjw89o0i-t0sjw89o0i.gz new file mode 100644 index 0000000..a0bbc08 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/8rrnar5gtv-{0}-t0sjw89o0i-t0sjw89o0i.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/8srr1acehr-{0}-snpv53zusk-snpv53zusk.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/8srr1acehr-{0}-snpv53zusk-snpv53zusk.gz new file mode 100644 index 0000000..a549bbd Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/8srr1acehr-{0}-snpv53zusk-snpv53zusk.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/8u2rup9szd-{0}-m4yhcvz2y2-m4yhcvz2y2.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/8u2rup9szd-{0}-m4yhcvz2y2-m4yhcvz2y2.gz new file mode 100644 index 0000000..2da7db7 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/8u2rup9szd-{0}-m4yhcvz2y2-m4yhcvz2y2.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/8ynwqwcefg-{0}-j5dp7k8x6u-j5dp7k8x6u.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/8ynwqwcefg-{0}-j5dp7k8x6u-j5dp7k8x6u.gz new file mode 100644 index 0000000..92991a6 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/8ynwqwcefg-{0}-j5dp7k8x6u-j5dp7k8x6u.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/93opzeh57b-{0}-ga3n3gh9b6-ga3n3gh9b6.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/93opzeh57b-{0}-ga3n3gh9b6-ga3n3gh9b6.gz new file mode 100644 index 0000000..11a3a48 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/93opzeh57b-{0}-ga3n3gh9b6-ga3n3gh9b6.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/95o3q4uwxv-{0}-iktlm0yhdx-iktlm0yhdx.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/95o3q4uwxv-{0}-iktlm0yhdx-iktlm0yhdx.gz new file mode 100644 index 0000000..e1236c4 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/95o3q4uwxv-{0}-iktlm0yhdx-iktlm0yhdx.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/9n1qe841ua-{0}-4mxo8hy5cn-4mxo8hy5cn.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/9n1qe841ua-{0}-4mxo8hy5cn-4mxo8hy5cn.gz new file mode 100644 index 0000000..df3cd22 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/9n1qe841ua-{0}-4mxo8hy5cn-4mxo8hy5cn.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/9ru0gm9zti-{0}-k6ze2203p2-k6ze2203p2.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/9ru0gm9zti-{0}-k6ze2203p2-k6ze2203p2.gz new file mode 100644 index 0000000..d1c4992 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/9ru0gm9zti-{0}-k6ze2203p2-k6ze2203p2.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/a99cqvh69a-{0}-b0ha8vyo8i-b0ha8vyo8i.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/a99cqvh69a-{0}-b0ha8vyo8i-b0ha8vyo8i.gz new file mode 100644 index 0000000..4a9e832 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/a99cqvh69a-{0}-b0ha8vyo8i-b0ha8vyo8i.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/aawrgxq7b9-{0}-9ikmelhi7g-9ikmelhi7g.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/aawrgxq7b9-{0}-9ikmelhi7g-9ikmelhi7g.gz new file mode 100644 index 0000000..8375bff Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/aawrgxq7b9-{0}-9ikmelhi7g-9ikmelhi7g.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/ae1qv5wfu3-{0}-wvlboxd9cz-wvlboxd9cz.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/ae1qv5wfu3-{0}-wvlboxd9cz-wvlboxd9cz.gz new file mode 100644 index 0000000..1eb4a1f Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/ae1qv5wfu3-{0}-wvlboxd9cz-wvlboxd9cz.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/akapjt0sxo-{0}-91iw3j3d9p-91iw3j3d9p.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/akapjt0sxo-{0}-91iw3j3d9p-91iw3j3d9p.gz new file mode 100644 index 0000000..a3aaa60 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/akapjt0sxo-{0}-91iw3j3d9p-91iw3j3d9p.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/arn1xqjw1x-{0}-peu2mfb29t-peu2mfb29t.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/arn1xqjw1x-{0}-peu2mfb29t-peu2mfb29t.gz new file mode 100644 index 0000000..6b3f091 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/arn1xqjw1x-{0}-peu2mfb29t-peu2mfb29t.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/awwlmj7zy5-{0}-9n1yusa5e5-9n1yusa5e5.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/awwlmj7zy5-{0}-9n1yusa5e5-9n1yusa5e5.gz new file mode 100644 index 0000000..7d073f3 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/awwlmj7zy5-{0}-9n1yusa5e5-9n1yusa5e5.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/b1pqie8d42-{0}-e3fl2oogjk-e3fl2oogjk.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/b1pqie8d42-{0}-e3fl2oogjk-e3fl2oogjk.gz new file mode 100644 index 0000000..c35fa90 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/b1pqie8d42-{0}-e3fl2oogjk-e3fl2oogjk.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/beyjjw9nw7-{0}-k3z431p3v7-k3z431p3v7.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/beyjjw9nw7-{0}-k3z431p3v7-k3z431p3v7.gz new file mode 100644 index 0000000..d1ca0a6 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/beyjjw9nw7-{0}-k3z431p3v7-k3z431p3v7.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/bfkt9xtjsh-{0}-x0ueugt8gp-x0ueugt8gp.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/bfkt9xtjsh-{0}-x0ueugt8gp-x0ueugt8gp.gz new file mode 100644 index 0000000..67bb0b6 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/bfkt9xtjsh-{0}-x0ueugt8gp-x0ueugt8gp.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/blwck2749u-{0}-8hg6c0at0c-8hg6c0at0c.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/blwck2749u-{0}-8hg6c0at0c-8hg6c0at0c.gz new file mode 100644 index 0000000..9f202bf Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/blwck2749u-{0}-8hg6c0at0c-8hg6c0at0c.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/bm4t56k5pn-{0}-v0usa2s224-v0usa2s224.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/bm4t56k5pn-{0}-v0usa2s224-v0usa2s224.gz new file mode 100644 index 0000000..3350f97 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/bm4t56k5pn-{0}-v0usa2s224-v0usa2s224.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/byxake4xdz-{0}-g9rvjereoe-g9rvjereoe.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/byxake4xdz-{0}-g9rvjereoe-g9rvjereoe.gz new file mode 100644 index 0000000..1d13d93 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/byxake4xdz-{0}-g9rvjereoe-g9rvjereoe.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/cagt9idkdm-{0}-b9imguls9w-b9imguls9w.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/cagt9idkdm-{0}-b9imguls9w-b9imguls9w.gz new file mode 100644 index 0000000..5bf8b84 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/cagt9idkdm-{0}-b9imguls9w-b9imguls9w.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/co27dkpaxa-{0}-bd164v6l3f-bd164v6l3f.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/co27dkpaxa-{0}-bd164v6l3f-bd164v6l3f.gz new file mode 100644 index 0000000..e014ad5 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/co27dkpaxa-{0}-bd164v6l3f-bd164v6l3f.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/cycczivqx5-{0}-lplk7v275j-lplk7v275j.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/cycczivqx5-{0}-lplk7v275j-lplk7v275j.gz new file mode 100644 index 0000000..f3b6cc1 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/cycczivqx5-{0}-lplk7v275j-lplk7v275j.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/d2kqqmb0bv-{0}-8bhn50uz8f-8bhn50uz8f.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/d2kqqmb0bv-{0}-8bhn50uz8f-8bhn50uz8f.gz new file mode 100644 index 0000000..4506e62 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/d2kqqmb0bv-{0}-8bhn50uz8f-8bhn50uz8f.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/dnrp0xl7wy-{0}-fgwnqtu7qk-fgwnqtu7qk.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/dnrp0xl7wy-{0}-fgwnqtu7qk-fgwnqtu7qk.gz new file mode 100644 index 0000000..52df5bf Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/dnrp0xl7wy-{0}-fgwnqtu7qk-fgwnqtu7qk.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/du4skpg5oq-{0}-re3geseai5-re3geseai5.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/du4skpg5oq-{0}-re3geseai5-re3geseai5.gz new file mode 100644 index 0000000..d210009 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/du4skpg5oq-{0}-re3geseai5-re3geseai5.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/dy6tcjmb9q-{0}-mj3r9p0pcw-mj3r9p0pcw.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/dy6tcjmb9q-{0}-mj3r9p0pcw-mj3r9p0pcw.gz new file mode 100644 index 0000000..e66b9e0 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/dy6tcjmb9q-{0}-mj3r9p0pcw-mj3r9p0pcw.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/dzqyarawy9-{0}-d1pja42pyi-d1pja42pyi.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/dzqyarawy9-{0}-d1pja42pyi-d1pja42pyi.gz new file mode 100644 index 0000000..448951b Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/dzqyarawy9-{0}-d1pja42pyi-d1pja42pyi.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/e2kh1woy2q-{0}-whs5oed1wm-whs5oed1wm.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/e2kh1woy2q-{0}-whs5oed1wm-whs5oed1wm.gz new file mode 100644 index 0000000..cefacf1 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/e2kh1woy2q-{0}-whs5oed1wm-whs5oed1wm.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/e2ypaal8k2-{0}-47ucbn1gg1-47ucbn1gg1.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/e2ypaal8k2-{0}-47ucbn1gg1-47ucbn1gg1.gz new file mode 100644 index 0000000..140268d Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/e2ypaal8k2-{0}-47ucbn1gg1-47ucbn1gg1.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/e67ma35du3-{0}-clehp4avpy-clehp4avpy.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/e67ma35du3-{0}-clehp4avpy-clehp4avpy.gz new file mode 100644 index 0000000..525d5ea Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/e67ma35du3-{0}-clehp4avpy-clehp4avpy.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/ea8uo6cwb8-{0}-x9at0eh4vs-x9at0eh4vs.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/ea8uo6cwb8-{0}-x9at0eh4vs-x9at0eh4vs.gz new file mode 100644 index 0000000..9d0efb3 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/ea8uo6cwb8-{0}-x9at0eh4vs-x9at0eh4vs.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/edgswerp4g-{0}-ickp29885z-ickp29885z.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/edgswerp4g-{0}-ickp29885z-ickp29885z.gz new file mode 100644 index 0000000..233edf9 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/edgswerp4g-{0}-ickp29885z-ickp29885z.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/epsgnejg6l-{0}-vs620n44bv-vs620n44bv.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/epsgnejg6l-{0}-vs620n44bv-vs620n44bv.gz new file mode 100644 index 0000000..12ee258 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/epsgnejg6l-{0}-vs620n44bv-vs620n44bv.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/ezxlu8d1x1-{0}-ssv83rveyv-ssv83rveyv.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/ezxlu8d1x1-{0}-ssv83rveyv-ssv83rveyv.gz new file mode 100644 index 0000000..485fffe Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/ezxlu8d1x1-{0}-ssv83rveyv-ssv83rveyv.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/f62yejuwjc-{0}-4omhtq90sd-4omhtq90sd.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/f62yejuwjc-{0}-4omhtq90sd-4omhtq90sd.gz new file mode 100644 index 0000000..8651dd2 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/f62yejuwjc-{0}-4omhtq90sd-4omhtq90sd.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/f6u1msztxb-{0}-xhq6acanj0-xhq6acanj0.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/f6u1msztxb-{0}-xhq6acanj0-xhq6acanj0.gz new file mode 100644 index 0000000..05dd2eb Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/f6u1msztxb-{0}-xhq6acanj0-xhq6acanj0.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/fappprmifz-{0}-r1sv3m5lsf-r1sv3m5lsf.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/fappprmifz-{0}-r1sv3m5lsf-r1sv3m5lsf.gz new file mode 100644 index 0000000..16439a3 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/fappprmifz-{0}-r1sv3m5lsf-r1sv3m5lsf.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/ffagyufl1o-{0}-bselp9vv9w-bselp9vv9w.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/ffagyufl1o-{0}-bselp9vv9w-bselp9vv9w.gz new file mode 100644 index 0000000..4ef38fe Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/ffagyufl1o-{0}-bselp9vv9w-bselp9vv9w.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/ffumllgt4m-{0}-m11rh1qn2x-m11rh1qn2x.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/ffumllgt4m-{0}-m11rh1qn2x-m11rh1qn2x.gz new file mode 100644 index 0000000..4b6e3b7 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/ffumllgt4m-{0}-m11rh1qn2x-m11rh1qn2x.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/flmzbagm0p-{0}-ibxx4kh8c6-ibxx4kh8c6.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/flmzbagm0p-{0}-ibxx4kh8c6-ibxx4kh8c6.gz new file mode 100644 index 0000000..ca629d9 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/flmzbagm0p-{0}-ibxx4kh8c6-ibxx4kh8c6.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/fmcag5xdn2-{0}-on9qk50okp-on9qk50okp.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/fmcag5xdn2-{0}-on9qk50okp-on9qk50okp.gz new file mode 100644 index 0000000..7cb8038 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/fmcag5xdn2-{0}-on9qk50okp-on9qk50okp.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/fs9spivh8g-{0}-uddsvpv1sv-uddsvpv1sv.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/fs9spivh8g-{0}-uddsvpv1sv-uddsvpv1sv.gz new file mode 100644 index 0000000..2e4f844 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/fs9spivh8g-{0}-uddsvpv1sv-uddsvpv1sv.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/fz4pecsmjf-{0}-kpe61fymig-kpe61fymig.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/fz4pecsmjf-{0}-kpe61fymig-kpe61fymig.gz new file mode 100644 index 0000000..fcd0162 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/fz4pecsmjf-{0}-kpe61fymig-kpe61fymig.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/g0qzdert85-{0}-zlwtcvnuqv-zlwtcvnuqv.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/g0qzdert85-{0}-zlwtcvnuqv-zlwtcvnuqv.gz new file mode 100644 index 0000000..b5895cf Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/g0qzdert85-{0}-zlwtcvnuqv-zlwtcvnuqv.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/g3b5a282rj-{0}-fvxkfs32tv-fvxkfs32tv.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/g3b5a282rj-{0}-fvxkfs32tv-fvxkfs32tv.gz new file mode 100644 index 0000000..e295701 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/g3b5a282rj-{0}-fvxkfs32tv-fvxkfs32tv.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/g4w42juzkx-{0}-e8yl47y6cv-e8yl47y6cv.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/g4w42juzkx-{0}-e8yl47y6cv-e8yl47y6cv.gz new file mode 100644 index 0000000..bba906f Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/g4w42juzkx-{0}-e8yl47y6cv-e8yl47y6cv.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/gnkv5k3g9v-{0}-lfu7j35m59-lfu7j35m59.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/gnkv5k3g9v-{0}-lfu7j35m59-lfu7j35m59.gz new file mode 100644 index 0000000..78330d1 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/gnkv5k3g9v-{0}-lfu7j35m59-lfu7j35m59.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/gpzobq46fp-{0}-e2hbv9lola-e2hbv9lola.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/gpzobq46fp-{0}-e2hbv9lola-e2hbv9lola.gz new file mode 100644 index 0000000..80f8ec5 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/gpzobq46fp-{0}-e2hbv9lola-e2hbv9lola.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/gqmneoqstx-{0}-5rp84ijz8t-5rp84ijz8t.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/gqmneoqstx-{0}-5rp84ijz8t-5rp84ijz8t.gz new file mode 100644 index 0000000..405c21e Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/gqmneoqstx-{0}-5rp84ijz8t-5rp84ijz8t.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/gremm5qhcr-{0}-3tzjd7znni-3tzjd7znni.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/gremm5qhcr-{0}-3tzjd7znni-3tzjd7znni.gz new file mode 100644 index 0000000..c4c8442 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/gremm5qhcr-{0}-3tzjd7znni-3tzjd7znni.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/gsr2zhdiud-{0}-g7i5gd64yo-g7i5gd64yo.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/gsr2zhdiud-{0}-g7i5gd64yo-g7i5gd64yo.gz new file mode 100644 index 0000000..28a0a9b Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/gsr2zhdiud-{0}-g7i5gd64yo-g7i5gd64yo.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/gx4y3aoczp-{0}-g5qdp1mxha-g5qdp1mxha.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/gx4y3aoczp-{0}-g5qdp1mxha-g5qdp1mxha.gz new file mode 100644 index 0000000..0741f3c Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/gx4y3aoczp-{0}-g5qdp1mxha-g5qdp1mxha.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/h9925thw3k-{0}-ythr5w8c2e-ythr5w8c2e.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/h9925thw3k-{0}-ythr5w8c2e-ythr5w8c2e.gz new file mode 100644 index 0000000..935af10 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/h9925thw3k-{0}-ythr5w8c2e-ythr5w8c2e.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/hd2b1ihltm-{0}-uzl7ca9j9c-uzl7ca9j9c.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/hd2b1ihltm-{0}-uzl7ca9j9c-uzl7ca9j9c.gz new file mode 100644 index 0000000..620c7f0 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/hd2b1ihltm-{0}-uzl7ca9j9c-uzl7ca9j9c.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/hoalsbog2o-{0}-ivmzcfvrc6-ivmzcfvrc6.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/hoalsbog2o-{0}-ivmzcfvrc6-ivmzcfvrc6.gz new file mode 100644 index 0000000..c760af1 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/hoalsbog2o-{0}-ivmzcfvrc6-ivmzcfvrc6.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/hq538hfxem-{0}-y8l1kxazi5-y8l1kxazi5.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/hq538hfxem-{0}-y8l1kxazi5-y8l1kxazi5.gz new file mode 100644 index 0000000..3008430 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/hq538hfxem-{0}-y8l1kxazi5-y8l1kxazi5.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/hylqczc46z-{0}-vwinf8twbn-vwinf8twbn.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/hylqczc46z-{0}-vwinf8twbn-vwinf8twbn.gz new file mode 100644 index 0000000..65d7ae6 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/hylqczc46z-{0}-vwinf8twbn-vwinf8twbn.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/hz1tpel2o0-{0}-9rl4gopayw-9rl4gopayw.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/hz1tpel2o0-{0}-9rl4gopayw-9rl4gopayw.gz new file mode 100644 index 0000000..36e92a3 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/hz1tpel2o0-{0}-9rl4gopayw-9rl4gopayw.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/i30lqfoca8-{0}-3f1khl8k32-3f1khl8k32.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/i30lqfoca8-{0}-3f1khl8k32-3f1khl8k32.gz new file mode 100644 index 0000000..bec714d Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/i30lqfoca8-{0}-3f1khl8k32-3f1khl8k32.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/i7dsezujyr-{0}-kv9gl8mgag-kv9gl8mgag.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/i7dsezujyr-{0}-kv9gl8mgag-kv9gl8mgag.gz new file mode 100644 index 0000000..b1252a9 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/i7dsezujyr-{0}-kv9gl8mgag-kv9gl8mgag.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/i7n8kqec4e-{0}-2mjytoh92q-2mjytoh92q.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/i7n8kqec4e-{0}-2mjytoh92q-2mjytoh92q.gz new file mode 100644 index 0000000..db4ef63 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/i7n8kqec4e-{0}-2mjytoh92q-2mjytoh92q.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/i8msa0z88m-{0}-x0vkqyycss-x0vkqyycss.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/i8msa0z88m-{0}-x0vkqyycss-x0vkqyycss.gz new file mode 100644 index 0000000..9554ed2 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/i8msa0z88m-{0}-x0vkqyycss-x0vkqyycss.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/i9mn6d27vy-{0}-aeh9b1tcuc-aeh9b1tcuc.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/i9mn6d27vy-{0}-aeh9b1tcuc-aeh9b1tcuc.gz new file mode 100644 index 0000000..aaafb9b Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/i9mn6d27vy-{0}-aeh9b1tcuc-aeh9b1tcuc.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/iem13k4n35-{0}-yn3zcskz4j-yn3zcskz4j.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/iem13k4n35-{0}-yn3zcskz4j-yn3zcskz4j.gz new file mode 100644 index 0000000..04efbae Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/iem13k4n35-{0}-yn3zcskz4j-yn3zcskz4j.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/iok845swr0-{0}-2a6wq9gv6d-2a6wq9gv6d.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/iok845swr0-{0}-2a6wq9gv6d-2a6wq9gv6d.gz new file mode 100644 index 0000000..bfed46a Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/iok845swr0-{0}-2a6wq9gv6d-2a6wq9gv6d.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/ixx2bqnfah-{0}-en4q13ibd5-en4q13ibd5.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/ixx2bqnfah-{0}-en4q13ibd5-en4q13ibd5.gz new file mode 100644 index 0000000..719765a Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/ixx2bqnfah-{0}-en4q13ibd5-en4q13ibd5.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/j81tt1y6rj-{0}-xy5d3j3dn1-xy5d3j3dn1.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/j81tt1y6rj-{0}-xy5d3j3dn1-xy5d3j3dn1.gz new file mode 100644 index 0000000..f965591 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/j81tt1y6rj-{0}-xy5d3j3dn1-xy5d3j3dn1.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/jcwxb5s78i-{0}-uwq3fpef1w-uwq3fpef1w.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/jcwxb5s78i-{0}-uwq3fpef1w-uwq3fpef1w.gz new file mode 100644 index 0000000..f4e546c Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/jcwxb5s78i-{0}-uwq3fpef1w-uwq3fpef1w.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/jg5bcwzjkb-{0}-clndu25lif-clndu25lif.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/jg5bcwzjkb-{0}-clndu25lif-clndu25lif.gz new file mode 100644 index 0000000..5327a1e Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/jg5bcwzjkb-{0}-clndu25lif-clndu25lif.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/jhjpqkptaq-{0}-dyaxkkx3lb-dyaxkkx3lb.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/jhjpqkptaq-{0}-dyaxkkx3lb-dyaxkkx3lb.gz new file mode 100644 index 0000000..261ba9c Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/jhjpqkptaq-{0}-dyaxkkx3lb-dyaxkkx3lb.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/jimv6lw5j5-{0}-vpng0qt4u6-vpng0qt4u6.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/jimv6lw5j5-{0}-vpng0qt4u6-vpng0qt4u6.gz new file mode 100644 index 0000000..a1451ca Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/jimv6lw5j5-{0}-vpng0qt4u6-vpng0qt4u6.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/jjcxq3ejac-{0}-b7qn4zpc0q-b7qn4zpc0q.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/jjcxq3ejac-{0}-b7qn4zpc0q-b7qn4zpc0q.gz new file mode 100644 index 0000000..8fa30cf Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/jjcxq3ejac-{0}-b7qn4zpc0q-b7qn4zpc0q.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/k6k7jlyl2f-{0}-9lgg9wjd2a-9lgg9wjd2a.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/k6k7jlyl2f-{0}-9lgg9wjd2a-9lgg9wjd2a.gz new file mode 100644 index 0000000..ed8e644 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/k6k7jlyl2f-{0}-9lgg9wjd2a-9lgg9wjd2a.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/keeokmerp8-{0}-8gz29xpyh3-8gz29xpyh3.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/keeokmerp8-{0}-8gz29xpyh3-8gz29xpyh3.gz new file mode 100644 index 0000000..87838d9 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/keeokmerp8-{0}-8gz29xpyh3-8gz29xpyh3.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/kmdzqqqt27-{0}-pl50n6qbg7-pl50n6qbg7.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/kmdzqqqt27-{0}-pl50n6qbg7-pl50n6qbg7.gz new file mode 100644 index 0000000..38649ce Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/kmdzqqqt27-{0}-pl50n6qbg7-pl50n6qbg7.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/kmp1cwjk7f-{0}-szsdminork-szsdminork.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/kmp1cwjk7f-{0}-szsdminork-szsdminork.gz new file mode 100644 index 0000000..4d0dd9e Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/kmp1cwjk7f-{0}-szsdminork-szsdminork.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/kstk0dzyw1-{0}-ud13mwbta3-ud13mwbta3.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/kstk0dzyw1-{0}-ud13mwbta3-ud13mwbta3.gz new file mode 100644 index 0000000..694a3f0 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/kstk0dzyw1-{0}-ud13mwbta3-ud13mwbta3.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/kukm29h8dt-{0}-i9g92fmb9y-i9g92fmb9y.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/kukm29h8dt-{0}-i9g92fmb9y-i9g92fmb9y.gz new file mode 100644 index 0000000..3b4de69 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/kukm29h8dt-{0}-i9g92fmb9y-i9g92fmb9y.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/kwztau0oyy-{0}-38jcv8jeeu-38jcv8jeeu.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/kwztau0oyy-{0}-38jcv8jeeu-38jcv8jeeu.gz new file mode 100644 index 0000000..af67081 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/kwztau0oyy-{0}-38jcv8jeeu-38jcv8jeeu.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/kzc385ysv6-{0}-6j2ed42ac7-6j2ed42ac7.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/kzc385ysv6-{0}-6j2ed42ac7-6j2ed42ac7.gz new file mode 100644 index 0000000..b67c991 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/kzc385ysv6-{0}-6j2ed42ac7-6j2ed42ac7.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/l2v44xhbzj-{0}-ozuva4e3vv-ozuva4e3vv.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/l2v44xhbzj-{0}-ozuva4e3vv-ozuva4e3vv.gz new file mode 100644 index 0000000..9881ee0 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/l2v44xhbzj-{0}-ozuva4e3vv-ozuva4e3vv.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/lbcric48ji-{0}-ruehy0ud5k-ruehy0ud5k.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/lbcric48ji-{0}-ruehy0ud5k-ruehy0ud5k.gz new file mode 100644 index 0000000..bc9154d Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/lbcric48ji-{0}-ruehy0ud5k-ruehy0ud5k.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/lgx6p69ons-{0}-ou2dt7nfo2-ou2dt7nfo2.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/lgx6p69ons-{0}-ou2dt7nfo2-ou2dt7nfo2.gz new file mode 100644 index 0000000..c21f18b Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/lgx6p69ons-{0}-ou2dt7nfo2-ou2dt7nfo2.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/luuq2ppq8r-{0}-k8343mqust-k8343mqust.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/luuq2ppq8r-{0}-k8343mqust-k8343mqust.gz new file mode 100644 index 0000000..52e5a8d Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/luuq2ppq8r-{0}-k8343mqust-k8343mqust.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/lvyasyre47-{0}-5lvzz4lks7-5lvzz4lks7.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/lvyasyre47-{0}-5lvzz4lks7-5lvzz4lks7.gz new file mode 100644 index 0000000..38cbcce Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/lvyasyre47-{0}-5lvzz4lks7-5lvzz4lks7.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/ly70359tb6-{0}-7bcdd4uolu-7bcdd4uolu.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/ly70359tb6-{0}-7bcdd4uolu-7bcdd4uolu.gz new file mode 100644 index 0000000..0c11114 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/ly70359tb6-{0}-7bcdd4uolu-7bcdd4uolu.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/m02xm5ue7p-{0}-4dnz7b15a9-4dnz7b15a9.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/m02xm5ue7p-{0}-4dnz7b15a9-4dnz7b15a9.gz new file mode 100644 index 0000000..1c367cc Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/m02xm5ue7p-{0}-4dnz7b15a9-4dnz7b15a9.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/m0i5wjywsx-{0}-v4mfyzbte8-v4mfyzbte8.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/m0i5wjywsx-{0}-v4mfyzbte8-v4mfyzbte8.gz new file mode 100644 index 0000000..fce73a7 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/m0i5wjywsx-{0}-v4mfyzbte8-v4mfyzbte8.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/m10se0yx1g-{0}-tqz9dyg6j7-tqz9dyg6j7.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/m10se0yx1g-{0}-tqz9dyg6j7-tqz9dyg6j7.gz new file mode 100644 index 0000000..2eb6e42 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/m10se0yx1g-{0}-tqz9dyg6j7-tqz9dyg6j7.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/m3i6jtsneo-{0}-oi9xn5s0h3-oi9xn5s0h3.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/m3i6jtsneo-{0}-oi9xn5s0h3-oi9xn5s0h3.gz new file mode 100644 index 0000000..88c52a4 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/m3i6jtsneo-{0}-oi9xn5s0h3-oi9xn5s0h3.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/m428rlfc87-{0}-v9i07bnq2k-v9i07bnq2k.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/m428rlfc87-{0}-v9i07bnq2k-v9i07bnq2k.gz new file mode 100644 index 0000000..6d20a5c Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/m428rlfc87-{0}-v9i07bnq2k-v9i07bnq2k.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/me1or200pv-{0}-ddbsai2xh9-ddbsai2xh9.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/me1or200pv-{0}-ddbsai2xh9-ddbsai2xh9.gz new file mode 100644 index 0000000..054e370 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/me1or200pv-{0}-ddbsai2xh9-ddbsai2xh9.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/mk5261bq2v-{0}-sgbc42zrd8-sgbc42zrd8.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/mk5261bq2v-{0}-sgbc42zrd8-sgbc42zrd8.gz new file mode 100644 index 0000000..4022d94 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/mk5261bq2v-{0}-sgbc42zrd8-sgbc42zrd8.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/mkj61d469a-{0}-qfpmfujegm-qfpmfujegm.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/mkj61d469a-{0}-qfpmfujegm-qfpmfujegm.gz new file mode 100644 index 0000000..3935fd5 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/mkj61d469a-{0}-qfpmfujegm-qfpmfujegm.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/mkyh3erkm9-{0}-zg37o92yol-zg37o92yol.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/mkyh3erkm9-{0}-zg37o92yol-zg37o92yol.gz new file mode 100644 index 0000000..aab62f2 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/mkyh3erkm9-{0}-zg37o92yol-zg37o92yol.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/mwxs9jgpi5-{0}-zku96ychk7-zku96ychk7.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/mwxs9jgpi5-{0}-zku96ychk7-zku96ychk7.gz new file mode 100644 index 0000000..29e9f77 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/mwxs9jgpi5-{0}-zku96ychk7-zku96ychk7.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/mx4r46cpu7-{0}-9mjwvs1qyp-9mjwvs1qyp.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/mx4r46cpu7-{0}-9mjwvs1qyp-9mjwvs1qyp.gz new file mode 100644 index 0000000..dfbf376 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/mx4r46cpu7-{0}-9mjwvs1qyp-9mjwvs1qyp.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/na7pgc18jv-{0}-8ll4gxwfs1-8ll4gxwfs1.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/na7pgc18jv-{0}-8ll4gxwfs1-8ll4gxwfs1.gz new file mode 100644 index 0000000..0b6e954 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/na7pgc18jv-{0}-8ll4gxwfs1-8ll4gxwfs1.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/niv8zsbxhl-{0}-1zv6wuzklu-1zv6wuzklu.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/niv8zsbxhl-{0}-1zv6wuzklu-1zv6wuzklu.gz new file mode 100644 index 0000000..3fe605e Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/niv8zsbxhl-{0}-1zv6wuzklu-1zv6wuzklu.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/nu73pdet4t-{0}-u0y5oi3qdg-u0y5oi3qdg.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/nu73pdet4t-{0}-u0y5oi3qdg-u0y5oi3qdg.gz new file mode 100644 index 0000000..f62a320 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/nu73pdet4t-{0}-u0y5oi3qdg-u0y5oi3qdg.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/nvjr9jta08-{0}-4ulc930few-4ulc930few.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/nvjr9jta08-{0}-4ulc930few-4ulc930few.gz new file mode 100644 index 0000000..a7a3812 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/nvjr9jta08-{0}-4ulc930few-4ulc930few.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/o9xpqh7wzb-{0}-j8qjkqg593-j8qjkqg593.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/o9xpqh7wzb-{0}-j8qjkqg593-j8qjkqg593.gz new file mode 100644 index 0000000..20b220e Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/o9xpqh7wzb-{0}-j8qjkqg593-j8qjkqg593.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/ogcs9ucvrf-{0}-7weoywtuje-7weoywtuje.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/ogcs9ucvrf-{0}-7weoywtuje-7weoywtuje.gz new file mode 100644 index 0000000..cb4e4fd Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/ogcs9ucvrf-{0}-7weoywtuje-7weoywtuje.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/ohlfbgu01g-{0}-hyku0ejwye-hyku0ejwye.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/ohlfbgu01g-{0}-hyku0ejwye-hyku0ejwye.gz new file mode 100644 index 0000000..2978a6e Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/ohlfbgu01g-{0}-hyku0ejwye-hyku0ejwye.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/oix89w3uk2-{0}-y4ydx3rk2c-y4ydx3rk2c.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/oix89w3uk2-{0}-y4ydx3rk2c-y4ydx3rk2c.gz new file mode 100644 index 0000000..6141e9b Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/oix89w3uk2-{0}-y4ydx3rk2c-y4ydx3rk2c.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/ozc2mb3rdz-{0}-zmb03w0weu-zmb03w0weu.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/ozc2mb3rdz-{0}-zmb03w0weu-zmb03w0weu.gz new file mode 100644 index 0000000..6eb9685 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/ozc2mb3rdz-{0}-zmb03w0weu-zmb03w0weu.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/ozd9l95cy8-{0}-utzdm9sw2p-utzdm9sw2p.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/ozd9l95cy8-{0}-utzdm9sw2p-utzdm9sw2p.gz new file mode 100644 index 0000000..f729139 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/ozd9l95cy8-{0}-utzdm9sw2p-utzdm9sw2p.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/p0pe0blimm-{0}-rp2jklkmsi-rp2jklkmsi.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/p0pe0blimm-{0}-rp2jklkmsi-rp2jklkmsi.gz new file mode 100644 index 0000000..ecc04b8 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/p0pe0blimm-{0}-rp2jklkmsi-rp2jklkmsi.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/p1p1dduoka-{0}-3t7flfwg7o-3t7flfwg7o.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/p1p1dduoka-{0}-3t7flfwg7o-3t7flfwg7o.gz new file mode 100644 index 0000000..59285a8 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/p1p1dduoka-{0}-3t7flfwg7o-3t7flfwg7o.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/pfi56k79hn-{0}-3jfxpyq4in-3jfxpyq4in.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/pfi56k79hn-{0}-3jfxpyq4in-3jfxpyq4in.gz new file mode 100644 index 0000000..a89a26c Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/pfi56k79hn-{0}-3jfxpyq4in-3jfxpyq4in.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/pro4ajsvfg-{0}-1r0ampr2q1-1r0ampr2q1.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/pro4ajsvfg-{0}-1r0ampr2q1-1r0ampr2q1.gz new file mode 100644 index 0000000..9bee87b Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/pro4ajsvfg-{0}-1r0ampr2q1-1r0ampr2q1.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/pxy8xfz0ow-{0}-21z0t9w6sq-21z0t9w6sq.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/pxy8xfz0ow-{0}-21z0t9w6sq-21z0t9w6sq.gz new file mode 100644 index 0000000..3c9764d Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/pxy8xfz0ow-{0}-21z0t9w6sq-21z0t9w6sq.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/q6am3o85wz-{0}-84wojkejb4-84wojkejb4.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/q6am3o85wz-{0}-84wojkejb4-84wojkejb4.gz new file mode 100644 index 0000000..96501d9 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/q6am3o85wz-{0}-84wojkejb4-84wojkejb4.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/qlfvznror3-{0}-zrueb40r85-zrueb40r85.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/qlfvznror3-{0}-zrueb40r85-zrueb40r85.gz new file mode 100644 index 0000000..27fc48f Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/qlfvznror3-{0}-zrueb40r85-zrueb40r85.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/qrheoix2ig-{0}-f3fiwdwb50-f3fiwdwb50.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/qrheoix2ig-{0}-f3fiwdwb50-f3fiwdwb50.gz new file mode 100644 index 0000000..1c70796 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/qrheoix2ig-{0}-f3fiwdwb50-f3fiwdwb50.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/qt3o35adbl-{0}-okgnp5v9bw-okgnp5v9bw.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/qt3o35adbl-{0}-okgnp5v9bw-okgnp5v9bw.gz new file mode 100644 index 0000000..08d9294 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/qt3o35adbl-{0}-okgnp5v9bw-okgnp5v9bw.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/qz9h56e7z8-{0}-kx7meqmil2-kx7meqmil2.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/qz9h56e7z8-{0}-kx7meqmil2-kx7meqmil2.gz new file mode 100644 index 0000000..68d7b7c Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/qz9h56e7z8-{0}-kx7meqmil2-kx7meqmil2.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/r0xa1dsvvu-{0}-4nat0rber0-4nat0rber0.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/r0xa1dsvvu-{0}-4nat0rber0-4nat0rber0.gz new file mode 100644 index 0000000..e88f85a Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/r0xa1dsvvu-{0}-4nat0rber0-4nat0rber0.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/r1c02csw1u-{0}-k5rgagff9o-k5rgagff9o.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/r1c02csw1u-{0}-k5rgagff9o-k5rgagff9o.gz new file mode 100644 index 0000000..b703581 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/r1c02csw1u-{0}-k5rgagff9o-k5rgagff9o.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/ra6e7v46m5-{0}-zjgi7nrlno-zjgi7nrlno.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/ra6e7v46m5-{0}-zjgi7nrlno-zjgi7nrlno.gz new file mode 100644 index 0000000..1f27b7d Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/ra6e7v46m5-{0}-zjgi7nrlno-zjgi7nrlno.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/rma0vjtbld-{0}-s3i62rxr2p-s3i62rxr2p.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/rma0vjtbld-{0}-s3i62rxr2p-s3i62rxr2p.gz new file mode 100644 index 0000000..20e3c83 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/rma0vjtbld-{0}-s3i62rxr2p-s3i62rxr2p.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/rsffl3vumf-{0}-6do4olk7ib-6do4olk7ib.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/rsffl3vumf-{0}-6do4olk7ib-6do4olk7ib.gz new file mode 100644 index 0000000..daa580f Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/rsffl3vumf-{0}-6do4olk7ib-6do4olk7ib.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/rz1qtq0z6d-{0}-dmew7c9amv-dmew7c9amv.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/rz1qtq0z6d-{0}-dmew7c9amv-dmew7c9amv.gz new file mode 100644 index 0000000..f0bad69 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/rz1qtq0z6d-{0}-dmew7c9amv-dmew7c9amv.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/s4opith0ak-{0}-thew1o6jcx-thew1o6jcx.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/s4opith0ak-{0}-thew1o6jcx-thew1o6jcx.gz new file mode 100644 index 0000000..3e03763 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/s4opith0ak-{0}-thew1o6jcx-thew1o6jcx.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/sl0sft7bkv-{0}-7ssqvw2wfy-7ssqvw2wfy.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/sl0sft7bkv-{0}-7ssqvw2wfy-7ssqvw2wfy.gz new file mode 100644 index 0000000..41052ea Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/sl0sft7bkv-{0}-7ssqvw2wfy-7ssqvw2wfy.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/sm8o0gwk5g-{0}-904tnen1ot-904tnen1ot.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/sm8o0gwk5g-{0}-904tnen1ot-904tnen1ot.gz new file mode 100644 index 0000000..b1c95b9 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/sm8o0gwk5g-{0}-904tnen1ot-904tnen1ot.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/sn0mpm6uvc-{0}-1q3x7vre4l-1q3x7vre4l.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/sn0mpm6uvc-{0}-1q3x7vre4l-1q3x7vre4l.gz new file mode 100644 index 0000000..3152705 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/sn0mpm6uvc-{0}-1q3x7vre4l-1q3x7vre4l.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/sz4qmwa0cz-{0}-j436yqvrg9-j436yqvrg9.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/sz4qmwa0cz-{0}-j436yqvrg9-j436yqvrg9.gz new file mode 100644 index 0000000..3037a6e Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/sz4qmwa0cz-{0}-j436yqvrg9-j436yqvrg9.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/szit2ufpnx-{0}-tx9namivq6-tx9namivq6.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/szit2ufpnx-{0}-tx9namivq6-tx9namivq6.gz new file mode 100644 index 0000000..5b78471 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/szit2ufpnx-{0}-tx9namivq6-tx9namivq6.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/t2mopjsgs5-{0}-37wbq4jfsy-37wbq4jfsy.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/t2mopjsgs5-{0}-37wbq4jfsy-37wbq4jfsy.gz new file mode 100644 index 0000000..19b3ddf Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/t2mopjsgs5-{0}-37wbq4jfsy-37wbq4jfsy.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/t7lpa3lwov-{0}-grloe2ix5j-grloe2ix5j.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/t7lpa3lwov-{0}-grloe2ix5j-grloe2ix5j.gz new file mode 100644 index 0000000..abf44de Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/t7lpa3lwov-{0}-grloe2ix5j-grloe2ix5j.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/tdpp3qw974-{0}-n2ngq6as7g-n2ngq6as7g.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/tdpp3qw974-{0}-n2ngq6as7g-n2ngq6as7g.gz new file mode 100644 index 0000000..6464d9d Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/tdpp3qw974-{0}-n2ngq6as7g-n2ngq6as7g.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/tezhiquus4-{0}-6jkolue1ka-6jkolue1ka.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/tezhiquus4-{0}-6jkolue1ka-6jkolue1ka.gz new file mode 100644 index 0000000..8d00179 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/tezhiquus4-{0}-6jkolue1ka-6jkolue1ka.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/tmgotixosa-{0}-1l8xruz8uh-1l8xruz8uh.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/tmgotixosa-{0}-1l8xruz8uh-1l8xruz8uh.gz new file mode 100644 index 0000000..5b474a3 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/tmgotixosa-{0}-1l8xruz8uh-1l8xruz8uh.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/to8tkrj8cc-{0}-p9bjzp5pyo-p9bjzp5pyo.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/to8tkrj8cc-{0}-p9bjzp5pyo-p9bjzp5pyo.gz new file mode 100644 index 0000000..15c446d Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/to8tkrj8cc-{0}-p9bjzp5pyo-p9bjzp5pyo.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/ttu14uxg7m-{0}-hdzn84g6uh-hdzn84g6uh.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/ttu14uxg7m-{0}-hdzn84g6uh-hdzn84g6uh.gz new file mode 100644 index 0000000..0d592b3 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/ttu14uxg7m-{0}-hdzn84g6uh-hdzn84g6uh.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/tvvpa50077-{0}-bw79ix589z-bw79ix589z.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/tvvpa50077-{0}-bw79ix589z-bw79ix589z.gz new file mode 100644 index 0000000..fefe862 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/tvvpa50077-{0}-bw79ix589z-bw79ix589z.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/u4abyqnekj-{0}-2rz5zbidnd-2rz5zbidnd.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/u4abyqnekj-{0}-2rz5zbidnd-2rz5zbidnd.gz new file mode 100644 index 0000000..a3b41ca Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/u4abyqnekj-{0}-2rz5zbidnd-2rz5zbidnd.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/ug9ge1behf-{0}-ycbzh0sbjd-ycbzh0sbjd.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/ug9ge1behf-{0}-ycbzh0sbjd-ycbzh0sbjd.gz new file mode 100644 index 0000000..24ea9e1 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/ug9ge1behf-{0}-ycbzh0sbjd-ycbzh0sbjd.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/ui1ul8tpby-{0}-50dzekuu9x-50dzekuu9x.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/ui1ul8tpby-{0}-50dzekuu9x-50dzekuu9x.gz new file mode 100644 index 0000000..e83a48d Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/ui1ul8tpby-{0}-50dzekuu9x-50dzekuu9x.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/uu7wfp4do2-{0}-0lu5m0tfx2-0lu5m0tfx2.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/uu7wfp4do2-{0}-0lu5m0tfx2-0lu5m0tfx2.gz new file mode 100644 index 0000000..497e30c Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/uu7wfp4do2-{0}-0lu5m0tfx2-0lu5m0tfx2.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/uz6wr238mp-{0}-cig01jt23c-cig01jt23c.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/uz6wr238mp-{0}-cig01jt23c-cig01jt23c.gz new file mode 100644 index 0000000..7a306cd Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/uz6wr238mp-{0}-cig01jt23c-cig01jt23c.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/v9jar86jna-{0}-20t5iw27a6-20t5iw27a6.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/v9jar86jna-{0}-20t5iw27a6-20t5iw27a6.gz new file mode 100644 index 0000000..4a731be Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/v9jar86jna-{0}-20t5iw27a6-20t5iw27a6.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/vbwtfewq79-{0}-66stpp682q-66stpp682q.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/vbwtfewq79-{0}-66stpp682q-66stpp682q.gz new file mode 100644 index 0000000..7b90153 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/vbwtfewq79-{0}-66stpp682q-66stpp682q.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/vhumncwy1p-{0}-ouivavlhyy-ouivavlhyy.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/vhumncwy1p-{0}-ouivavlhyy-ouivavlhyy.gz new file mode 100644 index 0000000..4ac89e0 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/vhumncwy1p-{0}-ouivavlhyy-ouivavlhyy.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/vjl93wt59v-{0}-xosph8vk4a-xosph8vk4a.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/vjl93wt59v-{0}-xosph8vk4a-xosph8vk4a.gz new file mode 100644 index 0000000..8308e4f Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/vjl93wt59v-{0}-xosph8vk4a-xosph8vk4a.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/vnqjd4ny0q-{0}-fktu0k4b93-fktu0k4b93.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/vnqjd4ny0q-{0}-fktu0k4b93-fktu0k4b93.gz new file mode 100644 index 0000000..5c20e6f Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/vnqjd4ny0q-{0}-fktu0k4b93-fktu0k4b93.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/vtgrfa0p11-{0}-ymwga5opgl-ymwga5opgl.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/vtgrfa0p11-{0}-ymwga5opgl-ymwga5opgl.gz new file mode 100644 index 0000000..5be3534 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/vtgrfa0p11-{0}-ymwga5opgl-ymwga5opgl.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/w2iaa8sc3u-{0}-k6079czmkm-k6079czmkm.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/w2iaa8sc3u-{0}-k6079czmkm-k6079czmkm.gz new file mode 100644 index 0000000..10beda7 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/w2iaa8sc3u-{0}-k6079czmkm-k6079czmkm.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/w4xw0gq3pj-{0}-s9ic8sulfi-s9ic8sulfi.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/w4xw0gq3pj-{0}-s9ic8sulfi-s9ic8sulfi.gz new file mode 100644 index 0000000..c8a5050 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/w4xw0gq3pj-{0}-s9ic8sulfi-s9ic8sulfi.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/w9uuhprkgr-{0}-j08okd90mo-j08okd90mo.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/w9uuhprkgr-{0}-j08okd90mo-j08okd90mo.gz new file mode 100644 index 0000000..2aed64f Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/w9uuhprkgr-{0}-j08okd90mo-j08okd90mo.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/wgdliulfxe-{0}-z1eotzj35n-z1eotzj35n.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/wgdliulfxe-{0}-z1eotzj35n-z1eotzj35n.gz new file mode 100644 index 0000000..36f42c1 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/wgdliulfxe-{0}-z1eotzj35n-z1eotzj35n.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/wi7nbv7im4-{0}-nfbg9v9bn0-nfbg9v9bn0.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/wi7nbv7im4-{0}-nfbg9v9bn0-nfbg9v9bn0.gz new file mode 100644 index 0000000..c8ea10c Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/wi7nbv7im4-{0}-nfbg9v9bn0-nfbg9v9bn0.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/wj9cgpvw17-{0}-cjsvkufomv-cjsvkufomv.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/wj9cgpvw17-{0}-cjsvkufomv-cjsvkufomv.gz new file mode 100644 index 0000000..de47089 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/wj9cgpvw17-{0}-cjsvkufomv-cjsvkufomv.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/wqsee81gb1-{0}-07hq35kp92-07hq35kp92.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/wqsee81gb1-{0}-07hq35kp92-07hq35kp92.gz new file mode 100644 index 0000000..f687415 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/wqsee81gb1-{0}-07hq35kp92-07hq35kp92.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/ww3wnv8b6s-{0}-isetn6xlxa-isetn6xlxa.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/ww3wnv8b6s-{0}-isetn6xlxa-isetn6xlxa.gz new file mode 100644 index 0000000..76374a6 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/ww3wnv8b6s-{0}-isetn6xlxa-isetn6xlxa.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/wxwyng4xk0-{0}-pez04wd9mo-pez04wd9mo.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/wxwyng4xk0-{0}-pez04wd9mo-pez04wd9mo.gz new file mode 100644 index 0000000..5439c27 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/wxwyng4xk0-{0}-pez04wd9mo-pez04wd9mo.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/xfyu8pi705-{0}-rbzkmij005-rbzkmij005.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/xfyu8pi705-{0}-rbzkmij005-rbzkmij005.gz new file mode 100644 index 0000000..e82024b Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/xfyu8pi705-{0}-rbzkmij005-rbzkmij005.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/xo45czuveq-{0}-11wk1hhnfk-11wk1hhnfk.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/xo45czuveq-{0}-11wk1hhnfk-11wk1hhnfk.gz new file mode 100644 index 0000000..1b1a4d0 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/xo45czuveq-{0}-11wk1hhnfk-11wk1hhnfk.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/xtefui8dpc-{0}-c9z9nieytf-c9z9nieytf.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/xtefui8dpc-{0}-c9z9nieytf-c9z9nieytf.gz new file mode 100644 index 0000000..d1ab32f Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/xtefui8dpc-{0}-c9z9nieytf-c9z9nieytf.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/y20kxtztgi-{0}-0h75nr7qqd-0h75nr7qqd.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/y20kxtztgi-{0}-0h75nr7qqd-0h75nr7qqd.gz new file mode 100644 index 0000000..4965d8a Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/y20kxtztgi-{0}-0h75nr7qqd-0h75nr7qqd.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/yee81ivl95-{0}-tptq2av103-tptq2av103.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/yee81ivl95-{0}-tptq2av103-tptq2av103.gz new file mode 100644 index 0000000..d0f6a8a Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/yee81ivl95-{0}-tptq2av103-tptq2av103.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/ymz6pz7ujf-{0}-bnz7jo4op8-bnz7jo4op8.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/ymz6pz7ujf-{0}-bnz7jo4op8-bnz7jo4op8.gz new file mode 100644 index 0000000..6a97479 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/ymz6pz7ujf-{0}-bnz7jo4op8-bnz7jo4op8.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/yswenxxy60-{0}-00vh2kvsiz-00vh2kvsiz.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/yswenxxy60-{0}-00vh2kvsiz-00vh2kvsiz.gz new file mode 100644 index 0000000..1073b47 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/yswenxxy60-{0}-00vh2kvsiz-00vh2kvsiz.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/yva5srnvsu-{0}-452y5fjxmv-452y5fjxmv.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/yva5srnvsu-{0}-452y5fjxmv-452y5fjxmv.gz new file mode 100644 index 0000000..d979b3e Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/yva5srnvsu-{0}-452y5fjxmv-452y5fjxmv.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/ywpa2qpg55-{0}-lzl7igry1t-lzl7igry1t.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/ywpa2qpg55-{0}-lzl7igry1t-lzl7igry1t.gz new file mode 100644 index 0000000..abb504b Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/ywpa2qpg55-{0}-lzl7igry1t-lzl7igry1t.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/zc08r46902-{0}-nv5izr3rt6-nv5izr3rt6.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/zc08r46902-{0}-nv5izr3rt6-nv5izr3rt6.gz new file mode 100644 index 0000000..c686926 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/zc08r46902-{0}-nv5izr3rt6-nv5izr3rt6.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/zip5atfnk1-{0}-3r0soomurg-3r0soomurg.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/zip5atfnk1-{0}-3r0soomurg-3r0soomurg.gz new file mode 100644 index 0000000..a21ba1b Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/zip5atfnk1-{0}-3r0soomurg-3r0soomurg.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/zlxnfbxifc-{0}-a95c1olw0i-a95c1olw0i.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/zlxnfbxifc-{0}-a95c1olw0i-a95c1olw0i.gz new file mode 100644 index 0000000..6d0be69 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/zlxnfbxifc-{0}-a95c1olw0i-a95c1olw0i.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/zpx4nb1yyz-{0}-m3mxap0jif-m3mxap0jif.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/zpx4nb1yyz-{0}-m3mxap0jif-m3mxap0jif.gz new file mode 100644 index 0000000..4d290ac Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/zpx4nb1yyz-{0}-m3mxap0jif-m3mxap0jif.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/zx6kj3xmnr-{0}-esodb2rpbi-esodb2rpbi.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/zx6kj3xmnr-{0}-esodb2rpbi-esodb2rpbi.gz new file mode 100644 index 0000000..f7f387a Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/zx6kj3xmnr-{0}-esodb2rpbi-esodb2rpbi.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/zxgtro8yo7-{0}-t9gqpmtbpb-t9gqpmtbpb.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/zxgtro8yo7-{0}-t9gqpmtbpb-t9gqpmtbpb.gz new file mode 100644 index 0000000..333afe8 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/zxgtro8yo7-{0}-t9gqpmtbpb-t9gqpmtbpb.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/compressed/zy4nys0fbm-{0}-r8ar2pd94c-r8ar2pd94c.gz b/OnProfNext.Client/obj/Debug/net10.0/compressed/zy4nys0fbm-{0}-r8ar2pd94c-r8ar2pd94c.gz new file mode 100644 index 0000000..17d2332 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/compressed/zy4nys0fbm-{0}-r8ar2pd94c-r8ar2pd94c.gz differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/dotnet.js b/OnProfNext.Client/obj/Debug/net10.0/dotnet.js new file mode 100644 index 0000000..34695d4 --- /dev/null +++ b/OnProfNext.Client/obj/Debug/net10.0/dotnet.js @@ -0,0 +1,1332 @@ +//! Licensed to the .NET Foundation under one or more agreements. +//! The .NET Foundation licenses this file to you under the MIT license. + +var e=!1;const t=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,4,1,96,0,0,3,2,1,0,10,8,1,6,0,6,64,25,11,11])),o=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,5,1,96,0,1,123,3,2,1,0,10,15,1,13,0,65,1,253,15,65,2,253,15,253,128,2,11])),n=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,5,1,96,0,1,123,3,2,1,0,10,10,1,8,0,65,0,253,15,253,98,11])),r=Symbol.for("wasm promise_control");function i(e,t){let o=null;const n=new Promise((function(n,r){o={isDone:!1,promise:null,resolve:t=>{o.isDone||(o.isDone=!0,n(t),e&&e())},reject:e=>{o.isDone||(o.isDone=!0,r(e),t&&t())}}}));o.promise=n;const i=n;return i[r]=o,{promise:i,promise_control:o}}function s(e){return e[r]}function a(e){e&&function(e){return void 0!==e[r]}(e)||Be(!1,"Promise is not controllable")}const l="__mono_message__",c=["debug","log","trace","warn","info","error"],d="MONO_WASM: ";let u,f,m,g,p,h;function w(e){g=e}function b(e){if(Pe.diagnosticTracing){const t="function"==typeof e?e():e;console.debug(d+t)}}function y(e,...t){console.info(d+e,...t)}function v(e,...t){console.info(e,...t)}function E(e,...t){console.warn(d+e,...t)}function _(e,...t){if(t&&t.length>0&&t[0]&&"object"==typeof t[0]){if(t[0].silent)return;if(t[0].toString)return void console.error(d+e,t[0].toString())}console.error(d+e,...t)}function x(e,t,o){return function(...n){try{let r=n[0];if(void 0===r)r="undefined";else if(null===r)r="null";else if("function"==typeof r)r=r.toString();else if("string"!=typeof r)try{r=JSON.stringify(r)}catch(e){r=r.toString()}t(o?JSON.stringify({method:e,payload:r,arguments:n.slice(1)}):[e+r,...n.slice(1)])}catch(e){m.error(`proxyConsole failed: ${e}`)}}}function j(e,t,o){f=t,g=e,m={...t};const n=`${o}/console`.replace("https://","wss://").replace("http://","ws://");u=new WebSocket(n),u.addEventListener("error",A),u.addEventListener("close",S),function(){for(const e of c)f[e]=x(`console.${e}`,T,!0)}()}function R(e){let t=30;const o=()=>{u?0==u.bufferedAmount||0==t?(e&&v(e),function(){for(const e of c)f[e]=x(`console.${e}`,m.log,!1)}(),u.removeEventListener("error",A),u.removeEventListener("close",S),u.close(1e3,e),u=void 0):(t--,globalThis.setTimeout(o,100)):e&&m&&m.log(e)};o()}function T(e){u&&u.readyState===WebSocket.OPEN?u.send(e):m.log(e)}function A(e){m.error(`[${g}] proxy console websocket error: ${e}`,e)}function S(e){m.debug(`[${g}] proxy console websocket closed: ${e}`,e)}function D(){Pe.preferredIcuAsset=O(Pe.config);let e="invariant"==Pe.config.globalizationMode;if(!e)if(Pe.preferredIcuAsset)Pe.diagnosticTracing&&b("ICU data archive(s) available, disabling invariant mode");else{if("custom"===Pe.config.globalizationMode||"all"===Pe.config.globalizationMode||"sharded"===Pe.config.globalizationMode){const e="invariant globalization mode is inactive and no ICU data archives are available";throw _(`ERROR: ${e}`),new Error(e)}Pe.diagnosticTracing&&b("ICU data archive(s) not available, using invariant globalization mode"),e=!0,Pe.preferredIcuAsset=null}const t="DOTNET_SYSTEM_GLOBALIZATION_INVARIANT",o=Pe.config.environmentVariables;if(void 0===o[t]&&e&&(o[t]="1"),void 0===o.TZ)try{const e=Intl.DateTimeFormat().resolvedOptions().timeZone||null;e&&(o.TZ=e)}catch(e){y("failed to detect timezone, will fallback to UTC")}}function O(e){var t;if((null===(t=e.resources)||void 0===t?void 0:t.icu)&&"invariant"!=e.globalizationMode){const t=e.applicationCulture||(ke?globalThis.navigator&&globalThis.navigator.languages&&globalThis.navigator.languages[0]:Intl.DateTimeFormat().resolvedOptions().locale),o=e.resources.icu;let n=null;if("custom"===e.globalizationMode){if(o.length>=1)return o[0].name}else t&&"all"!==e.globalizationMode?"sharded"===e.globalizationMode&&(n=function(e){const t=e.split("-")[0];return"en"===t||["fr","fr-FR","it","it-IT","de","de-DE","es","es-ES"].includes(e)?"icudt_EFIGS.dat":["zh","ko","ja"].includes(t)?"icudt_CJK.dat":"icudt_no_CJK.dat"}(t)):n="icudt.dat";if(n)for(let e=0;enull},url:e,arrayBuffer:()=>r,json:()=>JSON.parse(r),text:()=>{throw new Error("NotImplementedException")}}}if(o)return globalThis.fetch(e,t||{credentials:"same-origin"});if("function"==typeof read)return{ok:!0,url:e,headers:{length:0,get:()=>null},arrayBuffer:()=>new Uint8Array(read(e,"binary")),json:()=>JSON.parse(read(e,"utf8")),text:()=>read(e,"utf8")}}catch(t){return{ok:!1,url:e,status:500,headers:{length:0,get:()=>null},statusText:"ERR28: "+t,arrayBuffer:()=>{throw t},json:()=>{throw t},text:()=>{throw t}}}throw new Error("No fetch implementation available")}function I(e){return"string"!=typeof e&&Be(!1,"url must be a string"),!M(e)&&0!==e.indexOf("./")&&0!==e.indexOf("../")&&globalThis.URL&&globalThis.document&&globalThis.document.baseURI&&(e=new URL(e,globalThis.document.baseURI).toString()),e}const U=/^[a-zA-Z][a-zA-Z\d+\-.]*?:\/\//,P=/[a-zA-Z]:[\\/]/;function M(e){return Se||Ie?e.startsWith("/")||e.startsWith("\\")||-1!==e.indexOf("///")||P.test(e):U.test(e)}let L,N=0;const $=[],z=[],W=new Map,F={"js-module-threads":!0,"js-module-runtime":!0,"js-module-dotnet":!0,"js-module-native":!0,"js-module-diagnostics":!0},B={...F,"js-module-library-initializer":!0},V={...F,dotnetwasm:!0,heap:!0,manifest:!0},q={...B,manifest:!0},H={...B,dotnetwasm:!0},J={dotnetwasm:!0,symbols:!0},Z={...B,dotnetwasm:!0,symbols:!0},Q={symbols:!0};function G(e){return!("icu"==e.behavior&&e.name!=Pe.preferredIcuAsset)}function K(e,t,o){null!=t||(t=[]),Be(1==t.length,`Expect to have one ${o} asset in resources`);const n=t[0];return n.behavior=o,X(n),e.push(n),n}function X(e){V[e.behavior]&&W.set(e.behavior,e)}function Y(e){Be(V[e],`Unknown single asset behavior ${e}`);const t=W.get(e);if(t&&!t.resolvedUrl)if(t.resolvedUrl=Pe.locateFile(t.name),F[t.behavior]){const e=ge(t);e?("string"!=typeof e&&Be(!1,"loadBootResource response for 'dotnetjs' type should be a URL string"),t.resolvedUrl=e):t.resolvedUrl=ce(t.resolvedUrl,t.behavior)}else if("dotnetwasm"!==t.behavior)throw new Error(`Unknown single asset behavior ${e}`);return t}function ee(e){const t=Y(e);return Be(t,`Single asset for ${e} not found`),t}let te=!1;async function oe(){if(!te){te=!0,Pe.diagnosticTracing&&b("mono_download_assets");try{const e=[],t=[],o=(e,t)=>{!Z[e.behavior]&&G(e)&&Pe.expected_instantiated_assets_count++,!H[e.behavior]&&G(e)&&(Pe.expected_downloaded_assets_count++,t.push(se(e)))};for(const t of $)o(t,e);for(const e of z)o(e,t);Pe.allDownloadsQueued.promise_control.resolve(),Promise.all([...e,...t]).then((()=>{Pe.allDownloadsFinished.promise_control.resolve()})).catch((e=>{throw Pe.err("Error in mono_download_assets: "+e),Xe(1,e),e})),await Pe.runtimeModuleLoaded.promise;const n=async e=>{const t=await e;if(t.buffer){if(!Z[t.behavior]){t.buffer&&"object"==typeof t.buffer||Be(!1,"asset buffer must be array-like or buffer-like or promise of these"),"string"!=typeof t.resolvedUrl&&Be(!1,"resolvedUrl must be string");const e=t.resolvedUrl,o=await t.buffer,n=new Uint8Array(o);pe(t),await Ue.beforeOnRuntimeInitialized.promise,Ue.instantiate_asset(t,e,n)}}else J[t.behavior]?("symbols"===t.behavior&&(await Ue.instantiate_symbols_asset(t),pe(t)),J[t.behavior]&&++Pe.actual_downloaded_assets_count):(t.isOptional||Be(!1,"Expected asset to have the downloaded buffer"),!H[t.behavior]&&G(t)&&Pe.expected_downloaded_assets_count--,!Z[t.behavior]&&G(t)&&Pe.expected_instantiated_assets_count--)},r=[],i=[];for(const t of e)r.push(n(t));for(const e of t)i.push(n(e));Promise.all(r).then((()=>{Ce||Ue.coreAssetsInMemory.promise_control.resolve()})).catch((e=>{throw Pe.err("Error in mono_download_assets: "+e),Xe(1,e),e})),Promise.all(i).then((async()=>{Ce||(await Ue.coreAssetsInMemory.promise,Ue.allAssetsInMemory.promise_control.resolve())})).catch((e=>{throw Pe.err("Error in mono_download_assets: "+e),Xe(1,e),e}))}catch(e){throw Pe.err("Error in mono_download_assets: "+e),e}}}let ne=!1;function re(){if(ne)return;ne=!0;const e=Pe.config,t=[];if(e.assets)for(const t of e.assets)"object"!=typeof t&&Be(!1,`asset must be object, it was ${typeof t} : ${t}`),"string"!=typeof t.behavior&&Be(!1,"asset behavior must be known string"),"string"!=typeof t.name&&Be(!1,"asset name must be string"),t.resolvedUrl&&"string"!=typeof t.resolvedUrl&&Be(!1,"asset resolvedUrl could be string"),t.hash&&"string"!=typeof t.hash&&Be(!1,"asset resolvedUrl could be string"),t.pendingDownload&&"object"!=typeof t.pendingDownload&&Be(!1,"asset pendingDownload could be object"),t.isCore?$.push(t):z.push(t),X(t);else if(e.resources){const o=e.resources;o.wasmNative||Be(!1,"resources.wasmNative must be defined"),o.jsModuleNative||Be(!1,"resources.jsModuleNative must be defined"),o.jsModuleRuntime||Be(!1,"resources.jsModuleRuntime must be defined"),K(z,o.wasmNative,"dotnetwasm"),K(t,o.jsModuleNative,"js-module-native"),K(t,o.jsModuleRuntime,"js-module-runtime"),o.jsModuleDiagnostics&&K(t,o.jsModuleDiagnostics,"js-module-diagnostics");const n=(e,t,o)=>{const n=e;n.behavior=t,o?(n.isCore=!0,$.push(n)):z.push(n)};if(o.coreAssembly)for(let e=0;eglobalThis.setTimeout(e,100))),Pe.diagnosticTracing&&b(`Retrying download (2) '${e.name}' after delay`),await ae(e)}}}async function ae(e){for(;L;)await L.promise;try{++N,N==Pe.maxParallelDownloads&&(Pe.diagnosticTracing&&b("Throttling further parallel downloads"),L=i());const t=await async function(e){if(e.pendingDownload&&(e.pendingDownloadInternal=e.pendingDownload),e.pendingDownloadInternal&&e.pendingDownloadInternal.response)return e.pendingDownloadInternal.response;if(e.buffer){const t=await e.buffer;return e.resolvedUrl||(e.resolvedUrl="undefined://"+e.name),e.pendingDownloadInternal={url:e.resolvedUrl,name:e.name,response:Promise.resolve({ok:!0,arrayBuffer:()=>t,json:()=>JSON.parse(new TextDecoder("utf-8").decode(t)),text:()=>{throw new Error("NotImplementedException")},headers:{get:()=>{}}})},e.pendingDownloadInternal.response}const t=e.loadRemote&&Pe.config.remoteSources?Pe.config.remoteSources:[""];let o;for(let n of t){n=n.trim(),"./"===n&&(n="");const t=le(e,n);e.name===t?Pe.diagnosticTracing&&b(`Attempting to download '${t}'`):Pe.diagnosticTracing&&b(`Attempting to download '${t}' for ${e.name}`);try{e.resolvedUrl=t;const n=fe(e);if(e.pendingDownloadInternal=n,o=await n.response,!o||!o.ok)continue;return o}catch(e){o||(o={ok:!1,url:t,status:0,statusText:""+e});continue}}const n=e.isOptional||e.name.match(/\.pdb$/)&&Pe.config.ignorePdbLoadErrors;if(o||Be(!1,`Response undefined ${e.name}`),!n){const t=new Error(`download '${o.url}' for ${e.name} failed ${o.status} ${o.statusText}`);throw t.status=o.status,t}y(`optional download '${o.url}' for ${e.name} failed ${o.status} ${o.statusText}`)}(e);return t?(J[e.behavior]||(e.buffer=await t.arrayBuffer(),++Pe.actual_downloaded_assets_count),e):e}finally{if(--N,L&&N==Pe.maxParallelDownloads-1){Pe.diagnosticTracing&&b("Resuming more parallel downloads");const e=L;L=void 0,e.promise_control.resolve()}}}function le(e,t){let o;return null==t&&Be(!1,`sourcePrefix must be provided for ${e.name}`),e.resolvedUrl?o=e.resolvedUrl:(o=""===t?"assembly"===e.behavior||"pdb"===e.behavior?e.name:"resource"===e.behavior&&e.culture&&""!==e.culture?`${e.culture}/${e.name}`:e.name:t+e.name,o=ce(Pe.locateFile(o),e.behavior)),o&&"string"==typeof o||Be(!1,"attemptUrl need to be path or url string"),o}function ce(e,t){return Pe.modulesUniqueQuery&&q[t]&&(e+=Pe.modulesUniqueQuery),e}let de=0;const ue=new Set;function fe(e){try{e.resolvedUrl||Be(!1,"Request's resolvedUrl must be set");const t=function(e){let t=e.resolvedUrl;if(Pe.loadBootResource){const o=ge(e);if(o instanceof Promise)return o;"string"==typeof o&&(t=o)}const o={};return e.cache?o.cache=e.cache:Pe.config.disableNoCacheFetch||(o.cache="no-cache"),e.useCredentials?o.credentials="include":!Pe.config.disableIntegrityCheck&&e.hash&&(o.integrity=e.hash),Pe.fetch_like(t,o)}(e),o={name:e.name,url:e.resolvedUrl,response:t};return ue.add(e.name),o.response.then((()=>{"assembly"==e.behavior&&Pe.loadedAssemblies.push(e.name),de++,Pe.onDownloadResourceProgress&&Pe.onDownloadResourceProgress(de,ue.size)})),o}catch(t){const o={ok:!1,url:e.resolvedUrl,status:500,statusText:"ERR29: "+t,arrayBuffer:()=>{throw t},json:()=>{throw t}};return{name:e.name,url:e.resolvedUrl,response:Promise.resolve(o)}}}const me={resource:"assembly",assembly:"assembly",pdb:"pdb",icu:"globalization",vfs:"configuration",manifest:"manifest",dotnetwasm:"dotnetwasm","js-module-dotnet":"dotnetjs","js-module-native":"dotnetjs","js-module-runtime":"dotnetjs","js-module-threads":"dotnetjs"};function ge(e){var t;if(Pe.loadBootResource){const o=null!==(t=e.hash)&&void 0!==t?t:"",n=e.resolvedUrl,r=me[e.behavior];if(r){const t=Pe.loadBootResource(r,e.name,n,o,e.behavior);return"string"==typeof t?I(t):t}}}function pe(e){e.pendingDownloadInternal=null,e.pendingDownload=null,e.buffer=null,e.moduleExports=null}function he(e){let t=e.lastIndexOf("/");return t>=0&&t++,e.substring(t)}async function we(e){e&&await Promise.all((null!=e?e:[]).map((e=>async function(e){try{const t=e.name;if(!e.moduleExports){const o=ce(Pe.locateFile(t),"js-module-library-initializer");Pe.diagnosticTracing&&b(`Attempting to import '${o}' for ${e}`),e.moduleExports=await import(/*! webpackIgnore: true */o)}Pe.libraryInitializers.push({scriptName:t,exports:e.moduleExports})}catch(t){E(`Failed to import library initializer '${e}': ${t}`)}}(e))))}async function be(e,t){if(!Pe.libraryInitializers)return;const o=[];for(let n=0;nr.exports[e](...t))))}await Promise.all(o)}async function ye(e,t,o){try{await o()}catch(o){throw E(`Failed to invoke '${t}' on library initializer '${e}': ${o}`),Xe(1,o),o}}function ve(e,t){if(e===t)return e;const o={...t};return void 0!==o.assets&&o.assets!==e.assets&&(o.assets=[...e.assets||[],...o.assets||[]]),void 0!==o.resources&&(o.resources=_e(e.resources||{assembly:[],jsModuleNative:[],jsModuleRuntime:[],wasmNative:[]},o.resources)),void 0!==o.environmentVariables&&(o.environmentVariables={...e.environmentVariables||{},...o.environmentVariables||{}}),void 0!==o.runtimeOptions&&o.runtimeOptions!==e.runtimeOptions&&(o.runtimeOptions=[...e.runtimeOptions||[],...o.runtimeOptions||[]]),Object.assign(e,o)}function Ee(e,t){if(e===t)return e;const o={...t};return o.config&&(e.config||(e.config={}),o.config=ve(e.config,o.config)),Object.assign(e,o)}function _e(e,t){if(e===t)return e;const o={...t};return void 0!==o.coreAssembly&&(o.coreAssembly=[...e.coreAssembly||[],...o.coreAssembly||[]]),void 0!==o.assembly&&(o.assembly=[...e.assembly||[],...o.assembly||[]]),void 0!==o.lazyAssembly&&(o.lazyAssembly=[...e.lazyAssembly||[],...o.lazyAssembly||[]]),void 0!==o.corePdb&&(o.corePdb=[...e.corePdb||[],...o.corePdb||[]]),void 0!==o.pdb&&(o.pdb=[...e.pdb||[],...o.pdb||[]]),void 0!==o.jsModuleWorker&&(o.jsModuleWorker=[...e.jsModuleWorker||[],...o.jsModuleWorker||[]]),void 0!==o.jsModuleNative&&(o.jsModuleNative=[...e.jsModuleNative||[],...o.jsModuleNative||[]]),void 0!==o.jsModuleDiagnostics&&(o.jsModuleDiagnostics=[...e.jsModuleDiagnostics||[],...o.jsModuleDiagnostics||[]]),void 0!==o.jsModuleRuntime&&(o.jsModuleRuntime=[...e.jsModuleRuntime||[],...o.jsModuleRuntime||[]]),void 0!==o.wasmSymbols&&(o.wasmSymbols=[...e.wasmSymbols||[],...o.wasmSymbols||[]]),void 0!==o.wasmNative&&(o.wasmNative=[...e.wasmNative||[],...o.wasmNative||[]]),void 0!==o.icu&&(o.icu=[...e.icu||[],...o.icu||[]]),void 0!==o.satelliteResources&&(o.satelliteResources=function(e,t){if(e===t)return e;for(const o in t)e[o]=[...e[o]||[],...t[o]||[]];return e}(e.satelliteResources||{},o.satelliteResources||{})),void 0!==o.modulesAfterConfigLoaded&&(o.modulesAfterConfigLoaded=[...e.modulesAfterConfigLoaded||[],...o.modulesAfterConfigLoaded||[]]),void 0!==o.modulesAfterRuntimeReady&&(o.modulesAfterRuntimeReady=[...e.modulesAfterRuntimeReady||[],...o.modulesAfterRuntimeReady||[]]),void 0!==o.extensions&&(o.extensions={...e.extensions||{},...o.extensions||{}}),void 0!==o.vfs&&(o.vfs=[...e.vfs||[],...o.vfs||[]]),Object.assign(e,o)}function xe(){const e=Pe.config;if(e.environmentVariables=e.environmentVariables||{},e.runtimeOptions=e.runtimeOptions||[],e.resources=e.resources||{assembly:[],jsModuleNative:[],jsModuleWorker:[],jsModuleRuntime:[],wasmNative:[],vfs:[],satelliteResources:{}},e.assets){Pe.diagnosticTracing&&b("config.assets is deprecated, use config.resources instead");for(const t of e.assets){const o={};switch(t.behavior){case"assembly":o.assembly=[t];break;case"pdb":o.pdb=[t];break;case"resource":o.satelliteResources={},o.satelliteResources[t.culture]=[t];break;case"icu":o.icu=[t];break;case"symbols":o.wasmSymbols=[t];break;case"vfs":o.vfs=[t];break;case"dotnetwasm":o.wasmNative=[t];break;case"js-module-threads":o.jsModuleWorker=[t];break;case"js-module-runtime":o.jsModuleRuntime=[t];break;case"js-module-native":o.jsModuleNative=[t];break;case"js-module-diagnostics":o.jsModuleDiagnostics=[t];break;case"js-module-dotnet":break;default:throw new Error(`Unexpected behavior ${t.behavior} of asset ${t.name}`)}_e(e.resources,o)}}e.debugLevel,e.applicationEnvironment||(e.applicationEnvironment="Production"),e.applicationCulture&&(e.environmentVariables.LANG=`${e.applicationCulture}.UTF-8`),Ue.diagnosticTracing=Pe.diagnosticTracing=!!e.diagnosticTracing,Ue.waitForDebugger=e.waitForDebugger,Pe.maxParallelDownloads=e.maxParallelDownloads||Pe.maxParallelDownloads,Pe.enableDownloadRetry=void 0!==e.enableDownloadRetry?e.enableDownloadRetry:Pe.enableDownloadRetry}let je=!1;async function Re(e){var t;if(je)return void await Pe.afterConfigLoaded.promise;let o;try{if(e.configSrc||Pe.config&&0!==Object.keys(Pe.config).length&&(Pe.config.assets||Pe.config.resources)||(e.configSrc="dotnet.boot.js"),o=e.configSrc,je=!0,o&&(Pe.diagnosticTracing&&b("mono_wasm_load_config"),await async function(e){const t=e.configSrc,o=Pe.locateFile(t);let n=null;void 0!==Pe.loadBootResource&&(n=Pe.loadBootResource("manifest",t,o,"","manifest"));let r,i=null;if(n)if("string"==typeof n)n.includes(".json")?(i=await s(I(n)),r=await Ae(i)):r=(await import(I(n))).config;else{const e=await n;"function"==typeof e.json?(i=e,r=await Ae(i)):r=e.config}else o.includes(".json")?(i=await s(ce(o,"manifest")),r=await Ae(i)):r=(await import(ce(o,"manifest"))).config;function s(e){return Pe.fetch_like(e,{method:"GET",credentials:"include",cache:"no-cache"})}Pe.config.applicationEnvironment&&(r.applicationEnvironment=Pe.config.applicationEnvironment),ve(Pe.config,r)}(e)),xe(),await we(null===(t=Pe.config.resources)||void 0===t?void 0:t.modulesAfterConfigLoaded),await be("onRuntimeConfigLoaded",[Pe.config]),e.onConfigLoaded)try{await e.onConfigLoaded(Pe.config,Le),xe()}catch(e){throw _("onConfigLoaded() failed",e),e}xe(),Pe.afterConfigLoaded.promise_control.resolve(Pe.config)}catch(t){const n=`Failed to load config file ${o} ${t} ${null==t?void 0:t.stack}`;throw Pe.config=e.config=Object.assign(Pe.config,{message:n,error:t,isError:!0}),Xe(1,new Error(n)),t}}function Te(){return!!globalThis.navigator&&(Pe.isChromium||Pe.isFirefox)}async function Ae(e){const t=Pe.config,o=await e.json();t.applicationEnvironment||o.applicationEnvironment||(o.applicationEnvironment=e.headers.get("Blazor-Environment")||e.headers.get("DotNet-Environment")||void 0),o.environmentVariables||(o.environmentVariables={});const n=e.headers.get("DOTNET-MODIFIABLE-ASSEMBLIES");n&&(o.environmentVariables.DOTNET_MODIFIABLE_ASSEMBLIES=n);const r=e.headers.get("ASPNETCORE-BROWSER-TOOLS");return r&&(o.environmentVariables.__ASPNETCORE_BROWSER_TOOLS=r),o}"function"!=typeof importScripts||globalThis.onmessage||(globalThis.dotnetSidecar=!0);const Se="object"==typeof process&&"object"==typeof process.versions&&"string"==typeof process.versions.node,De="function"==typeof importScripts,Oe=De&&"undefined"!=typeof dotnetSidecar,Ce=De&&!Oe,ke="object"==typeof window||De&&!Se,Ie=!ke&&!Se;let Ue={},Pe={},Me={},Le={},Ne={},$e=!1;const ze={},We={config:ze},Fe={mono:{},binding:{},internal:Ne,module:We,loaderHelpers:Pe,runtimeHelpers:Ue,diagnosticHelpers:Me,api:Le};function Be(e,t){if(e)return;const o="Assert failed: "+("function"==typeof t?t():t),n=new Error(o);_(o,n),Ue.nativeAbort(n)}function Ve(){return void 0!==Pe.exitCode}function qe(){return Ue.runtimeReady&&!Ve()}function He(){Ve()&&Be(!1,`.NET runtime already exited with ${Pe.exitCode} ${Pe.exitReason}. You can use runtime.runMain() which doesn't exit the runtime.`),Ue.runtimeReady||Be(!1,".NET runtime didn't start yet. Please call dotnet.create() first.")}function Je(){ke&&(globalThis.addEventListener("unhandledrejection",et),globalThis.addEventListener("error",tt))}let Ze,Qe;function Ge(e){Qe&&Qe(e),Xe(e,Pe.exitReason)}function Ke(e){Ze&&Ze(e||Pe.exitReason),Xe(1,e||Pe.exitReason)}function Xe(t,o){var n,r;const i=o&&"object"==typeof o;t=i&&"number"==typeof o.status?o.status:void 0===t?-1:t;const s=i&&"string"==typeof o.message?o.message:""+o;(o=i?o:Ue.ExitStatus?function(e,t){const o=new Ue.ExitStatus(e);return o.message=t,o.toString=()=>t,o}(t,s):new Error("Exit with code "+t+" "+s)).status=t,o.message||(o.message=s);const a=""+(o.stack||(new Error).stack);try{Object.defineProperty(o,"stack",{get:()=>a})}catch(e){}const l=!!o.silent;if(o.silent=!0,Ve())Pe.diagnosticTracing&&b("mono_exit called after exit");else{try{We.onAbort==Ke&&(We.onAbort=Ze),We.onExit==Ge&&(We.onExit=Qe),ke&&(globalThis.removeEventListener("unhandledrejection",et),globalThis.removeEventListener("error",tt)),Ue.runtimeReady?(Ue.jiterpreter_dump_stats&&Ue.jiterpreter_dump_stats(!1),0===t&&(null===(n=Pe.config)||void 0===n?void 0:n.interopCleanupOnExit)&&Ue.forceDisposeProxies(!0,!0),e&&0!==t&&(null===(r=Pe.config)||void 0===r||r.dumpThreadsOnNonZeroExit)):(Pe.diagnosticTracing&&b(`abort_startup, reason: ${o}`),function(e){Pe.allDownloadsQueued.promise_control.reject(e),Pe.allDownloadsFinished.promise_control.reject(e),Pe.afterConfigLoaded.promise_control.reject(e),Pe.wasmCompilePromise.promise_control.reject(e),Pe.runtimeModuleLoaded.promise_control.reject(e),Ue.dotnetReady&&(Ue.dotnetReady.promise_control.reject(e),Ue.afterInstantiateWasm.promise_control.reject(e),Ue.beforePreInit.promise_control.reject(e),Ue.afterPreInit.promise_control.reject(e),Ue.afterPreRun.promise_control.reject(e),Ue.beforeOnRuntimeInitialized.promise_control.reject(e),Ue.afterOnRuntimeInitialized.promise_control.reject(e),Ue.afterPostRun.promise_control.reject(e))}(o))}catch(e){E("mono_exit A failed",e)}try{l||(function(e,t){if(0!==e&&t){const e=Ue.ExitStatus&&t instanceof Ue.ExitStatus?b:_;"string"==typeof t?e(t):(void 0===t.stack&&(t.stack=(new Error).stack+""),t.message?e(Ue.stringify_as_error_with_stack?Ue.stringify_as_error_with_stack(t.message+"\n"+t.stack):t.message+"\n"+t.stack):e(JSON.stringify(t)))}!Ce&&Pe.config&&(Pe.config.logExitCode?Pe.config.forwardConsoleLogsToWS?R("WASM EXIT "+e):v("WASM EXIT "+e):Pe.config.forwardConsoleLogsToWS&&R())}(t,o),function(e){if(ke&&!Ce&&Pe.config&&Pe.config.appendElementOnExit&&document){const t=document.createElement("label");t.id="tests_done",0!==e&&(t.style.background="red"),t.innerHTML=""+e,document.body.appendChild(t)}}(t))}catch(e){E("mono_exit B failed",e)}Pe.exitCode=t,Pe.exitReason||(Pe.exitReason=o),!Ce&&Ue.runtimeReady&&We.runtimeKeepalivePop()}if(Pe.config&&Pe.config.asyncFlushOnExit&&0===t)throw(async()=>{try{await async function(){try{const e=await import(/*! webpackIgnore: true */"process"),t=e=>new Promise(((t,o)=>{e.on("error",o),e.end("","utf8",t)})),o=t(e.stderr),n=t(e.stdout);let r;const i=new Promise((e=>{r=setTimeout((()=>e("timeout")),1e3)}));await Promise.race([Promise.all([n,o]),i]),clearTimeout(r)}catch(e){_(`flushing std* streams failed: ${e}`)}}()}finally{Ye(t,o)}})(),o;Ye(t,o)}function Ye(e,t){if(Ue.runtimeReady&&Ue.nativeExit)try{Ue.nativeExit(e)}catch(e){!Ue.ExitStatus||e instanceof Ue.ExitStatus||E("set_exit_code_and_quit_now failed: "+e.toString())}if(0!==e||!ke)throw Se&&Ne.process?Ne.process.exit(e):Ue.quit&&Ue.quit(e,t),t}function et(e){ot(e,e.reason,"rejection")}function tt(e){ot(e,e.error,"error")}function ot(e,t,o){e.preventDefault();try{t||(t=new Error("Unhandled "+o)),void 0===t.stack&&(t.stack=(new Error).stack),t.stack=t.stack+"",t.silent||(_("Unhandled error:",t),Xe(1,t))}catch(e){}}!function(e){if($e)throw new Error("Loader module already loaded");$e=!0,Ue=e.runtimeHelpers,Pe=e.loaderHelpers,Me=e.diagnosticHelpers,Le=e.api,Ne=e.internal,Object.assign(Le,{INTERNAL:Ne,invokeLibraryInitializers:be}),Object.assign(e.module,{config:ve(ze,{environmentVariables:{}})});const r={mono_wasm_bindings_is_ready:!1,config:e.module.config,diagnosticTracing:!1,nativeAbort:e=>{throw e||new Error("abort")},nativeExit:e=>{throw new Error("exit:"+e)}},l={gitHash:"a612c2a1056fe3265387ae3ff7c94eba1505caf9",config:e.module.config,diagnosticTracing:!1,maxParallelDownloads:16,enableDownloadRetry:!0,_loaded_files:[],loadedFiles:[],loadedAssemblies:[],libraryInitializers:[],workerNextNumber:1,actual_downloaded_assets_count:0,actual_instantiated_assets_count:0,expected_downloaded_assets_count:0,expected_instantiated_assets_count:0,afterConfigLoaded:i(),allDownloadsQueued:i(),allDownloadsFinished:i(),wasmCompilePromise:i(),runtimeModuleLoaded:i(),loadingWorkers:i(),is_exited:Ve,is_runtime_running:qe,assert_runtime_running:He,mono_exit:Xe,createPromiseController:i,getPromiseController:s,assertIsControllablePromise:a,mono_download_assets:oe,resolve_single_asset_path:ee,setup_proxy_console:j,set_thread_prefix:w,installUnhandledErrorHandler:Je,retrieve_asset_download:ie,invokeLibraryInitializers:be,isDebuggingSupported:Te,exceptions:t,simd:n,relaxedSimd:o};Object.assign(Ue,r),Object.assign(Pe,l)}(Fe);let nt,rt,it,st=!1,at=!1;async function lt(e){if(!at){if(at=!0,ke&&Pe.config.forwardConsoleLogsToWS&&void 0!==globalThis.WebSocket&&j("main",globalThis.console,globalThis.location.origin),We||Be(!1,"Null moduleConfig"),Pe.config||Be(!1,"Null moduleConfig.config"),"function"==typeof e){const t=e(Fe.api);if(t.ready)throw new Error("Module.ready couldn't be redefined.");Object.assign(We,t),Ee(We,t)}else{if("object"!=typeof e)throw new Error("Can't use moduleFactory callback of createDotnetRuntime function.");Ee(We,e)}await async function(e){if(Se){const e=await import(/*! webpackIgnore: true */"process"),t=14;if(e.versions.node.split(".")[0]0&&(Pe.modulesUniqueQuery=t.substring(o)),Pe.scriptUrl=t.replace(/\\/g,"/").replace(/[?#].*/,""),Pe.scriptDirectory=(n=Pe.scriptUrl).slice(0,n.lastIndexOf("/"))+"/",Pe.locateFile=e=>"URL"in globalThis&&globalThis.URL!==C?new URL(e,Pe.scriptDirectory).toString():M(e)?e:Pe.scriptDirectory+e,Pe.fetch_like=k,Pe.out=console.log,Pe.err=console.error,Pe.onDownloadResourceProgress=e.onDownloadResourceProgress,ke&&globalThis.navigator){const e=globalThis.navigator,t=e.userAgentData&&e.userAgentData.brands;t&&t.length>0?Pe.isChromium=t.some((e=>"Google Chrome"===e.brand||"Microsoft Edge"===e.brand||"Chromium"===e.brand)):e.userAgent&&(Pe.isChromium=e.userAgent.includes("Chrome"),Pe.isFirefox=e.userAgent.includes("Firefox"))}Ne.require=Se?await import(/*! webpackIgnore: true */"module").then((e=>e.createRequire(/*! webpackIgnore: true */import.meta.url))):Promise.resolve((()=>{throw new Error("require not supported")})),void 0===globalThis.URL&&(globalThis.URL=C)}(We)}}async function ct(e){return await lt(e),Ze=We.onAbort,Qe=We.onExit,We.onAbort=Ke,We.onExit=Ge,We.ENVIRONMENT_IS_PTHREAD?async function(){(function(){const e=new MessageChannel,t=e.port1,o=e.port2;t.addEventListener("message",(e=>{var n,r;n=JSON.parse(e.data.config),r=JSON.parse(e.data.monoThreadInfo),st?Pe.diagnosticTracing&&b("mono config already received"):(ve(Pe.config,n),Ue.monoThreadInfo=r,xe(),Pe.diagnosticTracing&&b("mono config received"),st=!0,Pe.afterConfigLoaded.promise_control.resolve(Pe.config),ke&&n.forwardConsoleLogsToWS&&void 0!==globalThis.WebSocket&&Pe.setup_proxy_console("worker-idle",console,globalThis.location.origin)),t.close(),o.close()}),{once:!0}),t.start(),self.postMessage({[l]:{monoCmd:"preload",port:o}},[o])})(),await Pe.afterConfigLoaded.promise,function(){const e=Pe.config;e.assets||Be(!1,"config.assets must be defined");for(const t of e.assets)X(t),Q[t.behavior]&&z.push(t)}(),setTimeout((async()=>{try{await oe()}catch(e){Xe(1,e)}}),0);const e=dt(),t=await Promise.all(e);return await ut(t),We}():async function(){var e;await Re(We),re();const t=dt();(async function(){try{const e=ee("dotnetwasm");await se(e),e&&e.pendingDownloadInternal&&e.pendingDownloadInternal.response||Be(!1,"Can't load dotnet.native.wasm");const t=await e.pendingDownloadInternal.response,o=t.headers&&t.headers.get?t.headers.get("Content-Type"):void 0;let n;if("function"==typeof WebAssembly.compileStreaming&&"application/wasm"===o)n=await WebAssembly.compileStreaming(t);else{ke&&"application/wasm"!==o&&E('WebAssembly resource does not have the expected content type "application/wasm", so falling back to slower ArrayBuffer instantiation.');const e=await t.arrayBuffer();Pe.diagnosticTracing&&b("instantiate_wasm_module buffered"),n=Ie?await Promise.resolve(new WebAssembly.Module(e)):await WebAssembly.compile(e)}e.pendingDownloadInternal=null,e.pendingDownload=null,e.buffer=null,e.moduleExports=null,Pe.wasmCompilePromise.promise_control.resolve(n)}catch(e){Pe.wasmCompilePromise.promise_control.reject(e)}})(),setTimeout((async()=>{try{D(),await oe()}catch(e){Xe(1,e)}}),0);const o=await Promise.all(t);return await ut(o),await Ue.dotnetReady.promise,await we(null===(e=Pe.config.resources)||void 0===e?void 0:e.modulesAfterRuntimeReady),await be("onRuntimeReady",[Fe.api]),Le}()}function dt(){const e=ee("js-module-runtime"),t=ee("js-module-native");if(nt&&rt)return[nt,rt,it];"object"==typeof e.moduleExports?nt=e.moduleExports:(Pe.diagnosticTracing&&b(`Attempting to import '${e.resolvedUrl}' for ${e.name}`),nt=import(/*! webpackIgnore: true */e.resolvedUrl)),"object"==typeof t.moduleExports?rt=t.moduleExports:(Pe.diagnosticTracing&&b(`Attempting to import '${t.resolvedUrl}' for ${t.name}`),rt=import(/*! webpackIgnore: true */t.resolvedUrl));const o=Y("js-module-diagnostics");return o&&("object"==typeof o.moduleExports?it=o.moduleExports:(Pe.diagnosticTracing&&b(`Attempting to import '${o.resolvedUrl}' for ${o.name}`),it=import(/*! webpackIgnore: true */o.resolvedUrl))),[nt,rt,it]}async function ut(e){const{initializeExports:t,initializeReplacements:o,configureRuntimeStartup:n,configureEmscriptenStartup:r,configureWorkerStartup:i,setRuntimeGlobals:s,passEmscriptenInternals:a}=e[0],{default:l}=e[1],c=e[2];s(Fe),t(Fe),c&&c.setRuntimeGlobals(Fe),await n(We),Pe.runtimeModuleLoaded.promise_control.resolve(),l((e=>(Object.assign(We,{ready:e.ready,__dotnet_runtime:{initializeReplacements:o,configureEmscriptenStartup:r,configureWorkerStartup:i,passEmscriptenInternals:a}}),We))).catch((e=>{if(e.message&&e.message.toLowerCase().includes("out of memory"))throw new Error(".NET runtime has failed to start, because too much memory was requested. Please decrease the memory by adjusting EmccMaximumHeapSize. See also https://aka.ms/dotnet-wasm-features");throw e}))}const ft=new class{withModuleConfig(e){try{return Ee(We,e),this}catch(e){throw Xe(1,e),e}}withOnConfigLoaded(e){try{return Ee(We,{onConfigLoaded:e}),this}catch(e){throw Xe(1,e),e}}withConsoleForwarding(){try{return ve(ze,{forwardConsoleLogsToWS:!0}),this}catch(e){throw Xe(1,e),e}}withExitOnUnhandledError(){try{return ve(ze,{exitOnUnhandledError:!0}),Je(),this}catch(e){throw Xe(1,e),e}}withAsyncFlushOnExit(){try{return ve(ze,{asyncFlushOnExit:!0}),this}catch(e){throw Xe(1,e),e}}withExitCodeLogging(){try{return ve(ze,{logExitCode:!0}),this}catch(e){throw Xe(1,e),e}}withElementOnExit(){try{return ve(ze,{appendElementOnExit:!0}),this}catch(e){throw Xe(1,e),e}}withInteropCleanupOnExit(){try{return ve(ze,{interopCleanupOnExit:!0}),this}catch(e){throw Xe(1,e),e}}withDumpThreadsOnNonZeroExit(){try{return ve(ze,{dumpThreadsOnNonZeroExit:!0}),this}catch(e){throw Xe(1,e),e}}withWaitingForDebugger(e){try{return ve(ze,{waitForDebugger:e}),this}catch(e){throw Xe(1,e),e}}withInterpreterPgo(e,t){try{return ve(ze,{interpreterPgo:e,interpreterPgoSaveDelay:t}),ze.runtimeOptions?ze.runtimeOptions.push("--interp-pgo-recording"):ze.runtimeOptions=["--interp-pgo-recording"],this}catch(e){throw Xe(1,e),e}}withConfig(e){try{return ve(ze,e),this}catch(e){throw Xe(1,e),e}}withConfigSrc(e){try{return e&&"string"==typeof e||Be(!1,"must be file path or URL"),Ee(We,{configSrc:e}),this}catch(e){throw Xe(1,e),e}}withVirtualWorkingDirectory(e){try{return e&&"string"==typeof e||Be(!1,"must be directory path"),ve(ze,{virtualWorkingDirectory:e}),this}catch(e){throw Xe(1,e),e}}withEnvironmentVariable(e,t){try{const o={};return o[e]=t,ve(ze,{environmentVariables:o}),this}catch(e){throw Xe(1,e),e}}withEnvironmentVariables(e){try{return e&&"object"==typeof e||Be(!1,"must be dictionary object"),ve(ze,{environmentVariables:e}),this}catch(e){throw Xe(1,e),e}}withDiagnosticTracing(e){try{return"boolean"!=typeof e&&Be(!1,"must be boolean"),ve(ze,{diagnosticTracing:e}),this}catch(e){throw Xe(1,e),e}}withDebugging(e){try{return null!=e&&"number"==typeof e||Be(!1,"must be number"),ve(ze,{debugLevel:e}),this}catch(e){throw Xe(1,e),e}}withApplicationArguments(...e){try{return e&&Array.isArray(e)||Be(!1,"must be array of strings"),ve(ze,{applicationArguments:e}),this}catch(e){throw Xe(1,e),e}}withRuntimeOptions(e){try{return e&&Array.isArray(e)||Be(!1,"must be array of strings"),ze.runtimeOptions?ze.runtimeOptions.push(...e):ze.runtimeOptions=e,this}catch(e){throw Xe(1,e),e}}withMainAssembly(e){try{return ve(ze,{mainAssemblyName:e}),this}catch(e){throw Xe(1,e),e}}withApplicationArgumentsFromQuery(){try{if(!globalThis.window)throw new Error("Missing window to the query parameters from");if(void 0===globalThis.URLSearchParams)throw new Error("URLSearchParams is supported");const e=new URLSearchParams(globalThis.window.location.search).getAll("arg");return this.withApplicationArguments(...e)}catch(e){throw Xe(1,e),e}}withApplicationEnvironment(e){try{return ve(ze,{applicationEnvironment:e}),this}catch(e){throw Xe(1,e),e}}withApplicationCulture(e){try{return ve(ze,{applicationCulture:e}),this}catch(e){throw Xe(1,e),e}}withResourceLoader(e){try{return Pe.loadBootResource=e,this}catch(e){throw Xe(1,e),e}}async download(){try{await async function(){lt(We),await Re(We),re(),D(),oe(),await Pe.allDownloadsFinished.promise}()}catch(e){throw Xe(1,e),e}}async create(){try{return this.instance||(this.instance=await async function(){return await ct(We),Fe.api}()),this.instance}catch(e){throw Xe(1,e),e}}async run(){try{return We.config||Be(!1,"Null moduleConfig.config"),this.instance||await this.create(),this.instance.runMainAndExit()}catch(e){throw Xe(1,e),e}}},mt=Xe,gt=ct;Ie||"function"==typeof globalThis.URL||Be(!1,"This browser/engine doesn't support URL API. Please use a modern version. See also https://aka.ms/dotnet-wasm-features"),"function"!=typeof globalThis.BigInt64Array&&Be(!1,"This browser/engine doesn't support BigInt64Array API. Please use a modern version. See also https://aka.ms/dotnet-wasm-features"),ft.withConfig(/*json-start*/{ + "mainAssemblyName": "OnProfNext.Client", + "applicationEnvironment": "Development", + "resources": { + "hash": "sha256-g4gaY7tK4jSQr8//fauk60ySrGga4xKLILOwBcV0s18=", + "jsModuleNative": [ + { + "name": "dotnet.native.ykrnppwhq2.js" + } + ], + "jsModuleRuntime": [ + { + "name": "dotnet.runtime.peu2mfb29t.js" + } + ], + "wasmNative": [ + { + "name": "dotnet.native.53ez3dx5uy.wasm", + "integrity": "sha256-Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU=", + "cache": "force-cache" + } + ], + "icu": [ + { + "virtualPath": "icudt_CJK.dat", + "name": "icudt_CJK.tjcz0u77k5.dat", + "integrity": "sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=", + "cache": "force-cache" + }, + { + "virtualPath": "icudt_EFIGS.dat", + "name": "icudt_EFIGS.tptq2av103.dat", + "integrity": "sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=", + "cache": "force-cache" + }, + { + "virtualPath": "icudt_no_CJK.dat", + "name": "icudt_no_CJK.lfu7j35m59.dat", + "integrity": "sha256-L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs=", + "cache": "force-cache" + } + ], + "coreAssembly": [ + { + "virtualPath": "System.Runtime.InteropServices.JavaScript.wasm", + "name": "System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm", + "integrity": "sha256-BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Private.CoreLib.wasm", + "name": "System.Private.CoreLib.koxlwnosh6.wasm", + "integrity": "sha256-xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg=", + "cache": "force-cache" + } + ], + "assembly": [ + { + "virtualPath": "Microsoft.AspNetCore.Authorization.wasm", + "name": "Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm", + "integrity": "sha256-G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.AspNetCore.Components.wasm", + "name": "Microsoft.AspNetCore.Components.uddsvpv1sv.wasm", + "integrity": "sha256-wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.AspNetCore.Components.Forms.wasm", + "name": "Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm", + "integrity": "sha256-sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.AspNetCore.Components.Web.wasm", + "name": "Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm", + "integrity": "sha256-XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.AspNetCore.Components.WebAssembly.wasm", + "name": "Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm", + "integrity": "sha256-r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.AspNetCore.Metadata.wasm", + "name": "Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm", + "integrity": "sha256-3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", + "name": "Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm", + "integrity": "sha256-7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.Configuration.wasm", + "name": "Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm", + "integrity": "sha256-D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.Configuration.Abstractions.wasm", + "name": "Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm", + "integrity": "sha256-YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.Configuration.Binder.wasm", + "name": "Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm", + "integrity": "sha256-KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.Configuration.FileExtensions.wasm", + "name": "Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm", + "integrity": "sha256-MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.Configuration.Json.wasm", + "name": "Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm", + "integrity": "sha256-iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.DependencyInjection.wasm", + "name": "Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm", + "integrity": "sha256-EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.DependencyInjection.Abstractions.wasm", + "name": "Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm", + "integrity": "sha256-PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.Diagnostics.wasm", + "name": "Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm", + "integrity": "sha256-MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.Diagnostics.Abstractions.wasm", + "name": "Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm", + "integrity": "sha256-4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.FileProviders.Abstractions.wasm", + "name": "Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm", + "integrity": "sha256-/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.FileProviders.Physical.wasm", + "name": "Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm", + "integrity": "sha256-CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.FileSystemGlobbing.wasm", + "name": "Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm", + "integrity": "sha256-pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.Localization.wasm", + "name": "Microsoft.Extensions.Localization.xcslyy3nju.wasm", + "integrity": "sha256-L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.Localization.Abstractions.wasm", + "name": "Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm", + "integrity": "sha256-8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.Logging.wasm", + "name": "Microsoft.Extensions.Logging.y4ydx3rk2c.wasm", + "integrity": "sha256-7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.Logging.Abstractions.wasm", + "name": "Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm", + "integrity": "sha256-5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.Options.wasm", + "name": "Microsoft.Extensions.Options.2rz5zbidnd.wasm", + "integrity": "sha256-PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.Options.ConfigurationExtensions.wasm", + "name": "Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm", + "integrity": "sha256-652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.Primitives.wasm", + "name": "Microsoft.Extensions.Primitives.bd164v6l3f.wasm", + "integrity": "sha256-b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Extensions.Validation.wasm", + "name": "Microsoft.Extensions.Validation.r1sv3m5lsf.wasm", + "integrity": "sha256-QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.JSInterop.wasm", + "name": "Microsoft.JSInterop.1r0ampr2q1.wasm", + "integrity": "sha256-TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.JSInterop.WebAssembly.wasm", + "name": "Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm", + "integrity": "sha256-vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU=", + "cache": "force-cache" + }, + { + "virtualPath": "MudBlazor.wasm", + "name": "MudBlazor.k6079czmkm.wasm", + "integrity": "sha256-rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.CSharp.wasm", + "name": "Microsoft.CSharp.452y5fjxmv.wasm", + "integrity": "sha256-qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.VisualBasic.Core.wasm", + "name": "Microsoft.VisualBasic.Core.re3geseai5.wasm", + "integrity": "sha256-vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.VisualBasic.wasm", + "name": "Microsoft.VisualBasic.91iw3j3d9p.wasm", + "integrity": "sha256-TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Win32.Primitives.wasm", + "name": "Microsoft.Win32.Primitives.2mjytoh92q.wasm", + "integrity": "sha256-NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM=", + "cache": "force-cache" + }, + { + "virtualPath": "Microsoft.Win32.Registry.wasm", + "name": "Microsoft.Win32.Registry.yz8nt3ycsq.wasm", + "integrity": "sha256-sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU=", + "cache": "force-cache" + }, + { + "virtualPath": "System.AppContext.wasm", + "name": "System.AppContext.uwq3fpef1w.wasm", + "integrity": "sha256-/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Buffers.wasm", + "name": "System.Buffers.m4yhcvz2y2.wasm", + "integrity": "sha256-+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Collections.Concurrent.wasm", + "name": "System.Collections.Concurrent.1zv6wuzklu.wasm", + "integrity": "sha256-XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Collections.Immutable.wasm", + "name": "System.Collections.Immutable.6uzpuv4o5d.wasm", + "integrity": "sha256-UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Collections.NonGeneric.wasm", + "name": "System.Collections.NonGeneric.k5rgagff9o.wasm", + "integrity": "sha256-eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Collections.Specialized.wasm", + "name": "System.Collections.Specialized.84wojkejb4.wasm", + "integrity": "sha256-mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Collections.wasm", + "name": "System.Collections.63jrcion39.wasm", + "integrity": "sha256-Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg=", + "cache": "force-cache" + }, + { + "virtualPath": "System.ComponentModel.Annotations.wasm", + "name": "System.ComponentModel.Annotations.cjsvkufomv.wasm", + "integrity": "sha256-yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg=", + "cache": "force-cache" + }, + { + "virtualPath": "System.ComponentModel.DataAnnotations.wasm", + "name": "System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm", + "integrity": "sha256-7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o=", + "cache": "force-cache" + }, + { + "virtualPath": "System.ComponentModel.EventBasedAsync.wasm", + "name": "System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm", + "integrity": "sha256-9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38=", + "cache": "force-cache" + }, + { + "virtualPath": "System.ComponentModel.Primitives.wasm", + "name": "System.ComponentModel.Primitives.u0y5oi3qdg.wasm", + "integrity": "sha256-fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4=", + "cache": "force-cache" + }, + { + "virtualPath": "System.ComponentModel.TypeConverter.wasm", + "name": "System.ComponentModel.TypeConverter.e2hbv9lola.wasm", + "integrity": "sha256-Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco=", + "cache": "force-cache" + }, + { + "virtualPath": "System.ComponentModel.wasm", + "name": "System.ComponentModel.m11rh1qn2x.wasm", + "integrity": "sha256-9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Configuration.wasm", + "name": "System.Configuration.j8qjkqg593.wasm", + "integrity": "sha256-bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Console.wasm", + "name": "System.Console.x9at0eh4vs.wasm", + "integrity": "sha256-ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Core.wasm", + "name": "System.Core.ickp29885z.wasm", + "integrity": "sha256-vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Data.Common.wasm", + "name": "System.Data.Common.4wisaz8pj4.wasm", + "integrity": "sha256-pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Data.DataSetExtensions.wasm", + "name": "System.Data.DataSetExtensions.904tnen1ot.wasm", + "integrity": "sha256-dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Data.wasm", + "name": "System.Data.0h75nr7qqd.wasm", + "integrity": "sha256-7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Diagnostics.Contracts.wasm", + "name": "System.Diagnostics.Contracts.z1eotzj35n.wasm", + "integrity": "sha256-2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Diagnostics.Debug.wasm", + "name": "System.Diagnostics.Debug.aeh9b1tcuc.wasm", + "integrity": "sha256-Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Diagnostics.DiagnosticSource.wasm", + "name": "System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm", + "integrity": "sha256-sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Diagnostics.FileVersionInfo.wasm", + "name": "System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm", + "integrity": "sha256-ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Diagnostics.Process.wasm", + "name": "System.Diagnostics.Process.lqtqkmw274.wasm", + "integrity": "sha256-87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Diagnostics.StackTrace.wasm", + "name": "System.Diagnostics.StackTrace.wvlboxd9cz.wasm", + "integrity": "sha256-jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Diagnostics.TextWriterTraceListener.wasm", + "name": "System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm", + "integrity": "sha256-9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Diagnostics.Tools.wasm", + "name": "System.Diagnostics.Tools.862j1ozg5o.wasm", + "integrity": "sha256-wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Diagnostics.TraceSource.wasm", + "name": "System.Diagnostics.TraceSource.j08okd90mo.wasm", + "integrity": "sha256-k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Diagnostics.Tracing.wasm", + "name": "System.Diagnostics.Tracing.bnz7jo4op8.wasm", + "integrity": "sha256-ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Drawing.Primitives.wasm", + "name": "System.Drawing.Primitives.k3z431p3v7.wasm", + "integrity": "sha256-sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Drawing.wasm", + "name": "System.Drawing.v0usa2s224.wasm", + "integrity": "sha256-/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Dynamic.Runtime.wasm", + "name": "System.Dynamic.Runtime.iktlm0yhdx.wasm", + "integrity": "sha256-8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Formats.Asn1.wasm", + "name": "System.Formats.Asn1.9iyl1hnh76.wasm", + "integrity": "sha256-8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Formats.Tar.wasm", + "name": "System.Formats.Tar.9ikmelhi7g.wasm", + "integrity": "sha256-rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Globalization.Calendars.wasm", + "name": "System.Globalization.Calendars.e8yl47y6cv.wasm", + "integrity": "sha256-jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Globalization.Extensions.wasm", + "name": "System.Globalization.Extensions.fvxkfs32tv.wasm", + "integrity": "sha256-e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Globalization.wasm", + "name": "System.Globalization.4ulc930few.wasm", + "integrity": "sha256-jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I=", + "cache": "force-cache" + }, + { + "virtualPath": "System.IO.Compression.Brotli.wasm", + "name": "System.IO.Compression.Brotli.ibxx4kh8c6.wasm", + "integrity": "sha256-7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY=", + "cache": "force-cache" + }, + { + "virtualPath": "System.IO.Compression.FileSystem.wasm", + "name": "System.IO.Compression.FileSystem.bselp9vv9w.wasm", + "integrity": "sha256-5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM=", + "cache": "force-cache" + }, + { + "virtualPath": "System.IO.Compression.ZipFile.wasm", + "name": "System.IO.Compression.ZipFile.b0ha8vyo8i.wasm", + "integrity": "sha256-m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk=", + "cache": "force-cache" + }, + { + "virtualPath": "System.IO.Compression.wasm", + "name": "System.IO.Compression.sgbc42zrd8.wasm", + "integrity": "sha256-DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY=", + "cache": "force-cache" + }, + { + "virtualPath": "System.IO.FileSystem.AccessControl.wasm", + "name": "System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm", + "integrity": "sha256-kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg=", + "cache": "force-cache" + }, + { + "virtualPath": "System.IO.FileSystem.DriveInfo.wasm", + "name": "System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm", + "integrity": "sha256-2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU=", + "cache": "force-cache" + }, + { + "virtualPath": "System.IO.FileSystem.Primitives.wasm", + "name": "System.IO.FileSystem.Primitives.6j2ed42ac7.wasm", + "integrity": "sha256-UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI=", + "cache": "force-cache" + }, + { + "virtualPath": "System.IO.FileSystem.Watcher.wasm", + "name": "System.IO.FileSystem.Watcher.v9i07bnq2k.wasm", + "integrity": "sha256-g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg=", + "cache": "force-cache" + }, + { + "virtualPath": "System.IO.FileSystem.wasm", + "name": "System.IO.FileSystem.fktu0k4b93.wasm", + "integrity": "sha256-L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM=", + "cache": "force-cache" + }, + { + "virtualPath": "System.IO.IsolatedStorage.wasm", + "name": "System.IO.IsolatedStorage.8ll4gxwfs1.wasm", + "integrity": "sha256-TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4=", + "cache": "force-cache" + }, + { + "virtualPath": "System.IO.MemoryMappedFiles.wasm", + "name": "System.IO.MemoryMappedFiles.6do4olk7ib.wasm", + "integrity": "sha256-WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk=", + "cache": "force-cache" + }, + { + "virtualPath": "System.IO.Pipelines.wasm", + "name": "System.IO.Pipelines.21z0t9w6sq.wasm", + "integrity": "sha256-VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM=", + "cache": "force-cache" + }, + { + "virtualPath": "System.IO.Pipes.AccessControl.wasm", + "name": "System.IO.Pipes.AccessControl.5lvzz4lks7.wasm", + "integrity": "sha256-qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE=", + "cache": "force-cache" + }, + { + "virtualPath": "System.IO.Pipes.wasm", + "name": "System.IO.Pipes.xosph8vk4a.wasm", + "integrity": "sha256-gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg=", + "cache": "force-cache" + }, + { + "virtualPath": "System.IO.UnmanagedMemoryStream.wasm", + "name": "System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm", + "integrity": "sha256-gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4=", + "cache": "force-cache" + }, + { + "virtualPath": "System.IO.wasm", + "name": "System.IO.i9g92fmb9y.wasm", + "integrity": "sha256-akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Linq.AsyncEnumerable.wasm", + "name": "System.Linq.AsyncEnumerable.4m1mh525k0.wasm", + "integrity": "sha256-VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Linq.Expressions.wasm", + "name": "System.Linq.Expressions.4nat0rber0.wasm", + "integrity": "sha256-IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Linq.Parallel.wasm", + "name": "System.Linq.Parallel.qf7zemz9aw.wasm", + "integrity": "sha256-ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Linq.Queryable.wasm", + "name": "System.Linq.Queryable.vwinf8twbn.wasm", + "integrity": "sha256-geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Linq.wasm", + "name": "System.Linq.rp2jklkmsi.wasm", + "integrity": "sha256-f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Memory.wasm", + "name": "System.Memory.3r0soomurg.wasm", + "integrity": "sha256-z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.Http.Json.wasm", + "name": "System.Net.Http.Json.t9gqpmtbpb.wasm", + "integrity": "sha256-H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.Http.wasm", + "name": "System.Net.Http.9rl4gopayw.wasm", + "integrity": "sha256-JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.HttpListener.wasm", + "name": "System.Net.HttpListener.zg37o92yol.wasm", + "integrity": "sha256-rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.Mail.wasm", + "name": "System.Net.Mail.qk214miut2.wasm", + "integrity": "sha256-tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.NameResolution.wasm", + "name": "System.Net.NameResolution.50dzekuu9x.wasm", + "integrity": "sha256-a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.NetworkInformation.wasm", + "name": "System.Net.NetworkInformation.k8343mqust.wasm", + "integrity": "sha256-ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.Ping.wasm", + "name": "System.Net.Ping.00vh2kvsiz.wasm", + "integrity": "sha256-MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.Primitives.wasm", + "name": "System.Net.Primitives.whs5oed1wm.wasm", + "integrity": "sha256-fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.Quic.wasm", + "name": "System.Net.Quic.grloe2ix5j.wasm", + "integrity": "sha256-1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.Requests.wasm", + "name": "System.Net.Requests.r8ar2pd94c.wasm", + "integrity": "sha256-ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.Security.wasm", + "name": "System.Net.Security.yn3zcskz4j.wasm", + "integrity": "sha256-TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.ServerSentEvents.wasm", + "name": "System.Net.ServerSentEvents.37wbq4jfsy.wasm", + "integrity": "sha256-Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.ServicePoint.wasm", + "name": "System.Net.ServicePoint.j436yqvrg9.wasm", + "integrity": "sha256-rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.Sockets.wasm", + "name": "System.Net.Sockets.utzdm9sw2p.wasm", + "integrity": "sha256-olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.WebClient.wasm", + "name": "System.Net.WebClient.e5a4gx4ylt.wasm", + "integrity": "sha256-YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.WebHeaderCollection.wasm", + "name": "System.Net.WebHeaderCollection.rbzkmij005.wasm", + "integrity": "sha256-132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.WebProxy.wasm", + "name": "System.Net.WebProxy.38jcv8jeeu.wasm", + "integrity": "sha256-UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.WebSockets.Client.wasm", + "name": "System.Net.WebSockets.Client.nv5izr3rt6.wasm", + "integrity": "sha256-vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.WebSockets.wasm", + "name": "System.Net.WebSockets.hdzn84g6uh.wasm", + "integrity": "sha256-1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Net.wasm", + "name": "System.Net.zku96ychk7.wasm", + "integrity": "sha256-E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Numerics.Vectors.wasm", + "name": "System.Numerics.Vectors.1l8xruz8uh.wasm", + "integrity": "sha256-tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Numerics.wasm", + "name": "System.Numerics.on9qk50okp.wasm", + "integrity": "sha256-ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk=", + "cache": "force-cache" + }, + { + "virtualPath": "System.ObjectModel.wasm", + "name": "System.ObjectModel.4omhtq90sd.wasm", + "integrity": "sha256-BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Private.DataContractSerialization.wasm", + "name": "System.Private.DataContractSerialization.zlwtcvnuqv.wasm", + "integrity": "sha256-qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Private.Uri.wasm", + "name": "System.Private.Uri.clehp4avpy.wasm", + "integrity": "sha256-IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Private.Xml.Linq.wasm", + "name": "System.Private.Xml.Linq.ga3n3gh9b6.wasm", + "integrity": "sha256-aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Private.Xml.wasm", + "name": "System.Private.Xml.g9rvjereoe.wasm", + "integrity": "sha256-xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Reflection.DispatchProxy.wasm", + "name": "System.Reflection.DispatchProxy.b7qn4zpc0q.wasm", + "integrity": "sha256-mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Reflection.Emit.ILGeneration.wasm", + "name": "System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm", + "integrity": "sha256-ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Reflection.Emit.Lightweight.wasm", + "name": "System.Reflection.Emit.Lightweight.3tzjd7znni.wasm", + "integrity": "sha256-B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Reflection.Emit.wasm", + "name": "System.Reflection.Emit.3t7flfwg7o.wasm", + "integrity": "sha256-uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Reflection.Extensions.wasm", + "name": "System.Reflection.Extensions.ymwga5opgl.wasm", + "integrity": "sha256-xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Reflection.Metadata.wasm", + "name": "System.Reflection.Metadata.9lgg9wjd2a.wasm", + "integrity": "sha256-/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Reflection.Primitives.wasm", + "name": "System.Reflection.Primitives.n2ngq6as7g.wasm", + "integrity": "sha256-z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Reflection.TypeExtensions.wasm", + "name": "System.Reflection.TypeExtensions.ivmzcfvrc6.wasm", + "integrity": "sha256-jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Reflection.wasm", + "name": "System.Reflection.v4mfyzbte8.wasm", + "integrity": "sha256-MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Resources.Reader.wasm", + "name": "System.Resources.Reader.c9z9nieytf.wasm", + "integrity": "sha256-QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Resources.ResourceManager.wasm", + "name": "System.Resources.ResourceManager.f3fiwdwb50.wasm", + "integrity": "sha256-61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Resources.Writer.wasm", + "name": "System.Resources.Writer.tx9namivq6.wasm", + "integrity": "sha256-EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Runtime.CompilerServices.Unsafe.wasm", + "name": "System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm", + "integrity": "sha256-M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Runtime.CompilerServices.VisualC.wasm", + "name": "System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm", + "integrity": "sha256-b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Runtime.Extensions.wasm", + "name": "System.Runtime.Extensions.f4fqaba1oz.wasm", + "integrity": "sha256-8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Runtime.Handles.wasm", + "name": "System.Runtime.Handles.kpe61fymig.wasm", + "integrity": "sha256-+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Runtime.InteropServices.RuntimeInformation.wasm", + "name": "System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm", + "integrity": "sha256-Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Runtime.InteropServices.wasm", + "name": "System.Runtime.InteropServices.02r2ubft18.wasm", + "integrity": "sha256-iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Runtime.Intrinsics.wasm", + "name": "System.Runtime.Intrinsics.j8lrpban8m.wasm", + "integrity": "sha256-vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Runtime.Loader.wasm", + "name": "System.Runtime.Loader.bm8d2pac0a.wasm", + "integrity": "sha256-Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Runtime.Numerics.wasm", + "name": "System.Runtime.Numerics.e3fl2oogjk.wasm", + "integrity": "sha256-Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Runtime.Serialization.Formatters.wasm", + "name": "System.Runtime.Serialization.Formatters.a0v88kqnif.wasm", + "integrity": "sha256-Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Runtime.Serialization.Json.wasm", + "name": "System.Runtime.Serialization.Json.pez04wd9mo.wasm", + "integrity": "sha256-vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Runtime.Serialization.Primitives.wasm", + "name": "System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm", + "integrity": "sha256-hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Runtime.Serialization.Xml.wasm", + "name": "System.Runtime.Serialization.Xml.mmwsbcsgly.wasm", + "integrity": "sha256-0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Runtime.Serialization.wasm", + "name": "System.Runtime.Serialization.qfpmfujegm.wasm", + "integrity": "sha256-un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Runtime.wasm", + "name": "System.Runtime.k6ze2203p2.wasm", + "integrity": "sha256-ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Security.AccessControl.wasm", + "name": "System.Security.AccessControl.4mxo8hy5cn.wasm", + "integrity": "sha256-1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Security.Claims.wasm", + "name": "System.Security.Claims.9n1yusa5e5.wasm", + "integrity": "sha256-KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Security.Cryptography.Algorithms.wasm", + "name": "System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm", + "integrity": "sha256-CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Security.Cryptography.Cng.wasm", + "name": "System.Security.Cryptography.Cng.dyaxkkx3lb.wasm", + "integrity": "sha256-SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Security.Cryptography.Csp.wasm", + "name": "System.Security.Cryptography.Csp.20t5iw27a6.wasm", + "integrity": "sha256-EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Security.Cryptography.Encoding.wasm", + "name": "System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm", + "integrity": "sha256-7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Security.Cryptography.OpenSsl.wasm", + "name": "System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm", + "integrity": "sha256-nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Security.Cryptography.Primitives.wasm", + "name": "System.Security.Cryptography.Primitives.7bcdd4uolu.wasm", + "integrity": "sha256-kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Security.Cryptography.X509Certificates.wasm", + "name": "System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm", + "integrity": "sha256-+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Security.Cryptography.wasm", + "name": "System.Security.Cryptography.5rp84ijz8t.wasm", + "integrity": "sha256-YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Security.Principal.Windows.wasm", + "name": "System.Security.Principal.Windows.7ssqvw2wfy.wasm", + "integrity": "sha256-NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Security.Principal.wasm", + "name": "System.Security.Principal.j5dp7k8x6u.wasm", + "integrity": "sha256-KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Security.SecureString.wasm", + "name": "System.Security.SecureString.7weoywtuje.wasm", + "integrity": "sha256-Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Security.wasm", + "name": "System.Security.snpv53zusk.wasm", + "integrity": "sha256-qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk=", + "cache": "force-cache" + }, + { + "virtualPath": "System.ServiceModel.Web.wasm", + "name": "System.ServiceModel.Web.3f1khl8k32.wasm", + "integrity": "sha256-0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY=", + "cache": "force-cache" + }, + { + "virtualPath": "System.ServiceProcess.wasm", + "name": "System.ServiceProcess.a95c1olw0i.wasm", + "integrity": "sha256-nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Text.Encoding.CodePages.wasm", + "name": "System.Text.Encoding.CodePages.8bhn50uz8f.wasm", + "integrity": "sha256-nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Text.Encoding.Extensions.wasm", + "name": "System.Text.Encoding.Extensions.tqz9dyg6j7.wasm", + "integrity": "sha256-y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Text.Encoding.wasm", + "name": "System.Text.Encoding.s9ic8sulfi.wasm", + "integrity": "sha256-gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Text.Encodings.Web.wasm", + "name": "System.Text.Encodings.Web.07hq35kp92.wasm", + "integrity": "sha256-dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Text.Json.wasm", + "name": "System.Text.Json.2alhj4y3bm.wasm", + "integrity": "sha256-BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Text.RegularExpressions.wasm", + "name": "System.Text.RegularExpressions.h1qtkesphd.wasm", + "integrity": "sha256-FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Threading.AccessControl.wasm", + "name": "System.Threading.AccessControl.ruehy0ud5k.wasm", + "integrity": "sha256-c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Threading.Channels.wasm", + "name": "System.Threading.Channels.s3i62rxr2p.wasm", + "integrity": "sha256-2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Threading.Overlapped.wasm", + "name": "System.Threading.Overlapped.lzl7igry1t.wasm", + "integrity": "sha256-ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Threading.Tasks.Dataflow.wasm", + "name": "System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm", + "integrity": "sha256-zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Threading.Tasks.Extensions.wasm", + "name": "System.Threading.Tasks.Extensions.unp0hcfijn.wasm", + "integrity": "sha256-Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Threading.Tasks.Parallel.wasm", + "name": "System.Threading.Tasks.Parallel.hyku0ejwye.wasm", + "integrity": "sha256-ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Threading.Tasks.wasm", + "name": "System.Threading.Tasks.t0sjw89o0i.wasm", + "integrity": "sha256-YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Threading.Thread.wasm", + "name": "System.Threading.Thread.nfbg9v9bn0.wasm", + "integrity": "sha256-43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Threading.ThreadPool.wasm", + "name": "System.Threading.ThreadPool.jrzo6stg1k.wasm", + "integrity": "sha256-D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Threading.Timer.wasm", + "name": "System.Threading.Timer.y8l1kxazi5.wasm", + "integrity": "sha256-0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Threading.wasm", + "name": "System.Threading.47ucbn1gg1.wasm", + "integrity": "sha256-ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Transactions.Local.wasm", + "name": "System.Transactions.Local.cig01jt23c.wasm", + "integrity": "sha256-lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Transactions.wasm", + "name": "System.Transactions.pl50n6qbg7.wasm", + "integrity": "sha256-XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio=", + "cache": "force-cache" + }, + { + "virtualPath": "System.ValueTuple.wasm", + "name": "System.ValueTuple.mj3r9p0pcw.wasm", + "integrity": "sha256-Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Web.HttpUtility.wasm", + "name": "System.Web.HttpUtility.3jfxpyq4in.wasm", + "integrity": "sha256-IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Web.wasm", + "name": "System.Web.2a6wq9gv6d.wasm", + "integrity": "sha256-Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Windows.wasm", + "name": "System.Windows.bw79ix589z.wasm", + "integrity": "sha256-O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Xml.Linq.wasm", + "name": "System.Xml.Linq.nvnhbwdsg6.wasm", + "integrity": "sha256-I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Xml.ReaderWriter.wasm", + "name": "System.Xml.ReaderWriter.szsdminork.wasm", + "integrity": "sha256-+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Xml.Serialization.wasm", + "name": "System.Xml.Serialization.b9imguls9w.wasm", + "integrity": "sha256-EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Xml.XDocument.wasm", + "name": "System.Xml.XDocument.8hg6c0at0c.wasm", + "integrity": "sha256-7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Xml.XPath.XDocument.wasm", + "name": "System.Xml.XPath.XDocument.g7i5gd64yo.wasm", + "integrity": "sha256-bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Xml.XPath.wasm", + "name": "System.Xml.XPath.11wk1hhnfk.wasm", + "integrity": "sha256-28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Xml.XmlDocument.wasm", + "name": "System.Xml.XmlDocument.isetn6xlxa.wasm", + "integrity": "sha256-Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Xml.XmlSerializer.wasm", + "name": "System.Xml.XmlSerializer.okgnp5v9bw.wasm", + "integrity": "sha256-WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U=", + "cache": "force-cache" + }, + { + "virtualPath": "System.Xml.wasm", + "name": "System.Xml.zjgi7nrlno.wasm", + "integrity": "sha256-scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas=", + "cache": "force-cache" + }, + { + "virtualPath": "System.wasm", + "name": "System.7rk3uansaa.wasm", + "integrity": "sha256-00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q=", + "cache": "force-cache" + }, + { + "virtualPath": "WindowsBase.wasm", + "name": "WindowsBase.wz82kkc1p3.wasm", + "integrity": "sha256-DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ=", + "cache": "force-cache" + }, + { + "virtualPath": "mscorlib.wasm", + "name": "mscorlib.555t1ekkz8.wasm", + "integrity": "sha256-SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M=", + "cache": "force-cache" + }, + { + "virtualPath": "netstandard.wasm", + "name": "netstandard.0e3bjkca9m.wasm", + "integrity": "sha256-6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs=", + "cache": "force-cache" + }, + { + "virtualPath": "OnProfNext.Client.wasm", + "name": "OnProfNext.Client.xhq6acanj0.wasm", + "integrity": "sha256-pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc=", + "cache": "force-cache" + } + ], + "pdb": [ + { + "virtualPath": "OnProfNext.Client.pdb", + "name": "OnProfNext.Client.lplk7v275j.pdb", + "integrity": "sha256-FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0=", + "cache": "force-cache" + } + ], + "libraryInitializers": [ + { + "name": "_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js" + } + ], + "modulesAfterConfigLoaded": [ + { + "name": "../_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js" + } + ] + }, + "debugLevel": -1, + "appsettings": [ + "../appsettings.Development.json", + "../appsettings.json" + ], + "globalizationMode": "sharded", + "extensions": { + "blazor": {} + }, + "runtimeConfig": { + "runtimeOptions": { + "configProperties": { + "Microsoft.AspNetCore.Components.Routing.RegexConstraintSupport": false, + "Microsoft.Extensions.DependencyInjection.VerifyOpenGenericServiceTrimmability": true, + "System.ComponentModel.DefaultValueAttribute.IsSupported": false, + "System.ComponentModel.Design.IDesignerHost.IsSupported": false, + "System.ComponentModel.TypeConverter.EnableUnsafeBinaryFormatterInDesigntimeLicenseContextSerialization": false, + "System.ComponentModel.TypeDescriptor.IsComObjectDescriptorSupported": false, + "System.Data.DataSet.XmlSerializationIsSupported": false, + "System.Diagnostics.Metrics.Meter.IsSupported": false, + "System.Diagnostics.Tracing.EventSource.IsSupported": false, + "System.GC.Server": true, + "System.Globalization.Invariant": false, + "System.TimeZoneInfo.Invariant": false, + "System.Linq.Enumerable.IsSizeOptimized": true, + "System.Net.Http.EnableActivityPropagation": false, + "System.Net.Http.WasmEnableStreamingResponse": true, + "System.Net.SocketsHttpHandler.Http3Support": false, + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, + "System.Resources.ResourceManager.AllowCustomResourceTypes": false, + "System.Resources.UseSystemResourceKeys": true, + "System.Runtime.CompilerServices.RuntimeFeature.IsDynamicCodeSupported": true, + "System.Runtime.InteropServices.BuiltInComInterop.IsSupported": false, + "System.Runtime.InteropServices.EnableConsumingManagedCodeFromNativeHosting": false, + "System.Runtime.InteropServices.EnableCppCLIHostActivation": false, + "System.Runtime.InteropServices.Marshalling.EnableGeneratedComInterfaceComImportInterop": false, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false, + "System.StartupHookProvider.IsSupported": false, + "System.Text.Encoding.EnableUnsafeUTF7Encoding": false, + "System.Text.Json.JsonSerializer.IsReflectionEnabledByDefault": true, + "System.Threading.Thread.EnableAutoreleasePool": false, + "Microsoft.AspNetCore.Components.Endpoints.NavigationManager.DisableThrowNavigationException": true + } + } + } +}/*json-end*/);export{gt as default,ft as dotnet,mt as exit}; diff --git a/OnProfNext.Client/obj/Debug/net10.0/rbcswa.dswa.cache.json b/OnProfNext.Client/obj/Debug/net10.0/rbcswa.dswa.cache.json new file mode 100644 index 0000000..b9463f1 --- /dev/null +++ b/OnProfNext.Client/obj/Debug/net10.0/rbcswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"2ilJ2M8+ZdH0swl4cXFj9Ji8kay0R08ISE/fEc+OL0o=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["GGdrjBF1JG5h6J8AHMFfTyby72jLfEcvDgz5OWqE5Ps=","GykffT9ioihebZXcF39BDe0DlU\u002B3GEcDgMS/Q5IEn1Q=","NNOF95cT\u002BLE3lNkqdOz03t6xf5lPu0pHgn619E34t6g=","MgI3NS7ENGha/2zUqT5TTIEwxeXsxhJqUY7X/p16DRM=","kBZdbKLMX0zdOCQCeii7Qbn69K2liSOhKo23eNykndw=","mgbhae92VjHr\u002BpAYyVtup8MAJS\u002B37PSUm/G5Qdl5xbg=","A6O2orDsr20j3X4stPxoDTTpON9ripACeqU4xcprYlY=","S71o8k3bYETd2H8oYnf1KjzHuWignN4mGir0A4zuL90=","0rx2jaib0nHOBB9HoOG7VcOT8j/8yJMocXtjf6O2TpM=","jvCc4\u002BMRqenhb\u002BO\u002BfaCaKNztjx6XyyFWoT94KD/ngE0=","AbZUGuc1kamsWWMsAz5DnYZtyGhp45N1BXd5RkqIkFM=","DW0l8gGkmxoT3TSpYw3atjX\u002BPYj9R2TLSXBIDjB5sGs=","p1\u002BKvdUraUX3XQdNXHJNDpWfSg63k/\u002BX4636LU2Xfo0=","ZFPXs/Qk0kuJmvfVNiEpE6EA2YghU8OeqnWfgyJgdOw=","/zDnfTvGhF9AUL5OMqrPCoKJqiKEpqvnnK4CaR7WxKI=","hQRzK8kB7mwtzoV\u002BY3ZlEoHbOnW4Rb\u002BBqmTYZXBdR2A=","dU7rg6h3bSY1BmAB/X53lQI76adxN0G96MvVP54L8Kg=","oLXpIAQTWRGrnhmhoxSSs7I\u002B1bm5x65dCXELV6hf8is=","CHsEcQRn8UV2Wy09z24spDNHvmzsRtnDtGJtYJj9Oc4=","SQixcw7mvMYr9ZkaYdHQJjhMC46v0HbdMgOEM0kK24Y=","7tCQe1TNb8ACXqM4LMgAMY\u002BqR7nRei0IiakTuZp\u002B\u002B3U=","4mzxYSGqwL7fyO1pXagaZG2\u002BpbO20g8T5zQleAMeJNg=","EsJIULIDOZsFQQvl94Fv8QhdbwncZWbpPAy0TdBHHYU=","SCAkUAO8I5ajwTlT9eUBJ9l2q/w6IwLbLLAHU7f5W/w=","D29piY0j/MLTO/plTz19GcwJCO/RxkYf8KSBVSUsTvY=","h0kDBqW\u002BSkiuElX\u002BE4xwYB1tkjHpGdbMwWJp7K2P\u002Brk=","XtGtFNmtoHnY0uwM23KwXONNwA8KogKHx89iERoj8io=","wC4BfZwONlsCvA\u002BXi/YBGuuyrvTn\u002BPe2gkWwe3q\u002BMNU=","/6mdBFUPwsjpz3tN4sMhx7AjcX4Ld87yYftZAemKD5A=","woMoDGZVdSLUQsq07n9xUY6EBwvNp8f9NTSCTBGMrXc=","co5VHi5so/yj4rlcsHcyhjXEWr7clWVMj6mCZDk1YI8=","bg5x/r2SBWoLGsEGATfbMVKdDSiJxTQPuhYstkRssO8=","Utxg8XHmCukubcfiDXWWHKhkulo1wprT3k5zEtB5uhI=","wnE5Cs0vSERTw2fJ8znNOvBrryloYBB/\u002BjSElFweULc=","7d78Uw\u002BIr5vm4dRxNgAzZbR4b3lfspUugoy7TeXwg6s=","prrH8KrEJnfmub0BDCCThpTXGAg0iq/F03t2Dc25zAU=","\u002BEDfp39H86nixEDoBX\u002B67c7mABn3CE47j2hqc4UUO8c=","1dRuQy2ADgLtEOlquXe9c3/HCjHDGYLbq71hcxcu2nU=","Tf4TG9rWZ1D8\u002ByqsczPQQMP7JFW4\u002BaAfcl7Q5yZHrVk=","qPNcZiK9eMymiPZM4zzkIfIARhW48NB9S8u577I3FiA=","IUIO9jC6g1SSKuUJ\u002Bsi2erPXhDiyN4qxxBOWzmmPfcM=","Gk4xFwXcG3D7W7\u002BtDuTRoeXJkML9QluzYlAeUfk\u002B/68=","GCt146qTZiagBpURmUDptOAPdqRMZLwNSo4ODhi7bOw=","MwYS\u002BWVqW4PIXab7MtuoOFMhBfo5z65wlukXoV2tgjc=","iGxutHcY3fPYcxtzErrKJNJVwimEtUvL0jYyq7Axnx4=","8zUIKkwDRQqXSFCB\u002BfBF8m4qjgwQQ3txNVg6UEH3p9s=","/pZJtmtUnzasffGhMtUHT4EVIePSMKqexlPPkfZ986M=","6Tg0Miq9C4i8whcBdhZQzZVl2hTx15Qp/gcDTUjl7W0=","Nc3iTXp47oHxIKUBkDLq6MAX\u002BQ7l1AObj3\u002BDUQjFt3c=","FhKB5ZliTH\u002BBhadY0N2vuXiNCO1M3yX5y6GpxmLgvLY=","oL0eoDmsQxzz1ekPChlY68e/lOiiQEofKzw/Qce3i5w=","cqGCr5TkQDdzerwurYSM14Z/jE1qB8xVGtYrAVH0eTE=","jzxdpYmIKcN0Nqw7JMaySUmjpL6E\u002BDDzDUd11ep0t5A=","GTYlw6enqiRZqb\u002BVR3UnRhflobcgrBvza\u002BtEJ5Ih9/k=","XvhWT\u002Bn/UO1E0HrTqnnxfRdVFFWh8W2XCDIKAK2Jt68=","F8\u002B/lCOauqbnVpiTDkrTBEi0BxfH544t9T0EViBj3Mw=","QL63Qysm5uhrItw//qEBVjhacNnvCAp3cZgKniVQCpY=","2Dc27FeDMvJxfTU2UQAGtAVKq14obt\u002BHpSrTwYfhYfc=","GFRmUnZ9kIW6270Ly\u002BuXGvc63tyZK7jjAxHDWk8PK20=","8D1x\u002BltEPgwOkfJGQhQB05X/PpizjbLE0c6G8JoRkik=","qqe/El/DV\u002BNj3TLG3cQ5NxXkWVwl454phh6jti4Q6Ig=","rYfnI4mVMoZeOyOMoQaDHcDGnxxyUKFXfbOJ6a/XN64=","vW7Z0PeF8bh9oDlR7bM0PaR7X6TJxJmPjaUDxE6kUrI=","6jEs/Rth7hgZS4r\u002Bg8vtctyUn9GfCWtGhqAHM099iuk=","RY2qHIsq87jL2ma721rdHezniK7YsdY\u002BzVLlVF6EnNc=","MLpcfg/VH6L7JuJPgl/5xlb8zyxHJs2gKZLsgStgGyg=","/PyF7KdrTfzxRJY8C2XdudMbQAxhR\u002BkSyNJhheTv5tA=","asyfYrsxAcoX83jXKEHFciPo1h/u\u002BGzXU7o0ass2p1g=","EhpXP3iZWuBWsUWv2f6eFf\u002BAwyPXhsu378YD\u002BhiQbPg=","bSok/kfu/SOLr7WoEja2BBNNpO70848Y4wyA16xNFgY=","DWlztucaVbXRgCOHeCfxkzZDwtJYlhHdQbAHA8NkvjQ=","np2XYpYky8H/qOeKQQyqNXpDMBibLdQt6kI5Ix3I438=","mGFQfl\u002BvnvceFdnNciDGbq7HtJU0/kuhcQt/tVoHZOQ=","R0yapo76\u002ByOsiItCyYKHqFtT4eN7OIgVh158votMTbU=","a1Yyeuh85OUevfAUES3fLGOiYHU04S2W34NOw9NGAJ0=","7Y5EaFCQt3fXJCJaEGmha77NSUEQ6A5QLnXFlIEykJ0=","u6yIGbSzoDcvWxPFVZjkokdHptb0zOglFXyaxN53Nrk=","xkYSoSYk1SjoMnN4KM5IHQEM9h73FJjXPvOEHw0/9pQ=","mc/LNyKVsz8aiqZ94lr35YKViY4PmVgqgRzYidWf4Oc=","lleT6qRlkKZ0f72OU1Dl1R0aueYU\u002Bi9yDLVtIFb6L8M=","aISN1JBGTn\u002BGQHOqgwkw616FDPYlvVnU7\u002BLkVS3oMUw=","co6dTTFV2d3GS5oNMU1nrTsLv1V8ZjMMSdfCR9GbRs0=","MLNfyFPOIATEaXaZ4P3uw771x\u002BdYziNAQEdcAzOg4qc=","e2j2Vrs6TkH4xxr6LfuZH\u002BE1SwC6WabB8SNTVSTNdN4=","3vMuYfwRBRzrghrmSmDX29Ub2VBwlcFHFzXKeL77OV4=","J0Eon4mFLy7Ja/HM1A8Ps\u002BwWUtxANrxBQVJ4M5Uh7zM=","NpJ/OCKXVgN2TZxzvb7i2krjQ8/orLA6Df90syijOoo=","g8fG\u002B85\u002B1gMSEXQkpcpPs660OauINO7FjH/r0OlCRIU=","9RFoxYcrZfd5vNauvAv4W2PzaAC9W5UqpAd9/u5Rxyo=","VrIB6dtOuSDOcc9cvH88N\u002B9MnELs0SkAvgtTg2kZOwQ=","ay5sZE28\u002BVjVOUQ4e6Km/a\u002BE3wDd\u002BeE88tRUAEpaPLA=","mVQDEZUqyUqgviz3qanP4CtpktgCJviTs1aUoo\u002BembQ=","Axmkw/7dux7p7D8qW0ll1g331fjJWrCUFuov/O4o54E=","X9CR1xnCYGFtJ/LhswO/kUh/tNrTuTBGyELzuXoKswc=","KE7eEveVygwM2IEzIHFZm6WmUWGyQpKvKoYsqL8kCQc=","8oFYeZ0zSH5tSlrmXWKZ3hGMt3/rqZO2coappELh6tk=","RuURI8IfcVcIxcHCDDN4\u002BPlHt2ZO1M22q1Ruo9aCmng=","2VB14xRBZco5fjXlhi5gMhSh0dL0Z7tmA0ll7pw4UAg=","Jv6HO9OI8Af2JeK6EWzpO4JT87k/VtnSDV6YnoZbeRQ=","M7IiRp/IIT7/S41p6QdGKsfJOsH98GBHblyXYjwibFw=","I9ElQON\u002Bw3s38OULY4Cz6hk2m38Ido0s7saNsbcCh7A=","XW3RcnMtP0VUYGAWIPR8ejSu5T843f5B\u002BuwwQL6C9d4=","TTiz46UKRC/rE/fTxiduAblboPV5W9quGjsneBBQyFM=","bp2qsgKLk87pdZARwiKmNJ9caQOfeyUqnIZInF82q1w=","UJR1jEvBHz/gNFAtEFQpZK7O9eGAcqCne112tKADkeQ=","zyriRHRdijdu\u002Bn1hcmJdeNV0QaoMVwVYRZ2Hvi\u002BI030=","dzcssiSWFF2tQzW5UlV7jTZQV/pCQ/FsJDZkGashJgw=","P5sNHStHf9tu1C5soayGF/LUOYReT9mj2l8CZJsF9hs=","LCu7c32jIRwllkZpFYjo7byQEvcvDkOYWjy4C9MYZnQ=","G4Qdj3PZ\u002BSozNOiE5Le1TA48aFIbfRNEi4h1sgzNSq0=","c6oFZkD9HgWpNBNa48QvaYNSXRKecDDuHhnbU2RuYqs=","W3NLhFwrqbZ7258JJiUKumOJ0HskWb2s\u002BPrEitk\u002Blq8=","nMXmrw3D7\u002BswIT4Tu0Y6hJEBKQZ9M5ESrqm7yQr4ew0=","t8ynU56EkPHtGFS/8XKfSoewTHkmzLjBoqlBZvRfivk=","9mfbom7zgRWt3\u002B827XdtWav0yb\u002BY\u002B/IvBKELsNfNKlU=","KVEvX0zfhJPZMFOzlgLkDkt52uakX7I33A4gihbp86E=","pohZ6nw82vm7WFJs3FabdPVtpGmf6VHPXau/BehaouU=","eFHUZ6SW8DStvQ0NpoRebTN7s1taz5jXJyLNCyOUZ50=","DMfmbyf1KQsXH5TjiRK7Jlx/EPY\u002BM8h0TgHmZHnts8c=","BN1EMH3Z8k\u002BRwtch9WrvMpGS6LxMArH6QrqcR5gAfz4=","MLQghs\u002BWs95UXA0NsIUlDn/THXy/4yTvuaxPM5kybaE=","pLvXAsyXO6\u002BBIIk0I7ksGnn\u002B8CF\u002B0z1Ss2IPmQXEx9E=","bxtuyCv4ObCZAkwM/qj/gpU9LGg40jxWC2YQ\u002BedTncU=","XRP3R1dZh0PiuOPULh1b1EVV2MsJfeYn9I2OHhuuh\u002Bg=","zDeTN9espyBhHmXJ2vGIKH\u002BVyPPgnc8wdLAlUBWDKm0=","bKZEtQZSC6oQz03EVYaVeRt0QmOjh0gvdY1xArukgsc=","4AP43CP9YZAWbDbyUWFaBwp2ZcFu\u002B8aBJ0y\u002BJ1RqY\u002BU=","IFulfUFbuhnmzSRZHDS3c7l7epEJMnR0ahbF0fSFCG8=","axLp/d24rZOxE91thVmqeKlxIesKDOsNXc8JVaG9yG8=","apxaHJhngUpOfKNaBPXo\u002B26B71PafFFnNy2OIwFn2LI=","Enc2OBVPHj\u002BnH1XM5qmoRB7U\u002BYNpyHl1XveDkLDPsdA=","cL4v/8UDARqs2FLHlWBApsh4Fnmst1n4F8Fx9dGFzfI=","RIB2A9s2BXGK2xchjs8oyYXiTsFriC7FRk9aZr94v8o=","A3anrejOF8dIeAXkjss4yvtN8ynz4KnljuaBeS80lds=","Gm8mpB6snwGvN0WHhJ/7HczTAe7vRAB10WrZsnJWyNc=","W9MFLgHlIPEmoZJSNAoclBtBhTYFf/K4XkciiCZeEvs=","wi1gTsTgz1/FbHyqfXer4PjheqVsT2DuVMeSt4ANwEk=","K0e3uzmvZRGnT0bAj0ROLRbmZJwyqpYwVSO2Sz54YUY=","N\u002By4zgYR27QtZpRL4y47AwfrXP/r4xsCq1kmBP//WPk=","GvHWqm\u002BAHrGP4sQh7eYiuepYrMwFU/0HifpL2nHyUnk=","QWot7UlzbXT8/n\u002B07zUf0xyGxgObgWlXLkG1d9dKuS0=","ELQOY/296\u002B1AWsXR1Zdu/s1Q\u002B5hYntq9w5EGKKcBBZE=","sYT3zexwRZSlN17sgq/vMi3KmzwxPyI6XQ448QNHDaY=","iElRyTZRTqQBBZyRi34QRR80Cz6nvZCOjEuqWN4J1uk=","mtp5DrhIR5PDtg/2j7QFGFmtFjZ6TMPfmO1m28JrOas=","fIJB15Cj\u002BYmrkmDA/28DonOyKOf5MAY3b27vNFHDhgc=","\u002BVPXdjF5wuF\u002BDjzWkXLnfqjQmPd8Yv/vtQqviQB\u002BqDI=","F/xlG/Pqo7h7ke6c3Zn7G\u002Bh4NkybId8X6Es3ElHTJmE=","DwUy8biEBfr7vKVW1rtmXb9P5fvnp0gMQq9mFA31q0E=","gFdMiD\u002BS/NlGzaWU08HIo4alMo6cJDMh85Xe146Mcfo=","4myv7Y\u002B9x6Mz4wNB\u002B20K9sJfZnZGpk3WxvnoxU963rs=","Q7SNPFIPSOo4yK/jYk2vNO24AiF/EaYLgF7xrBB3CpI=","0XM5BPGl0Py1wTHSK9k7R3HgR1m0bd9yXGCLwtHiVyM=","HOa1oyR5DPeBlHGBZj6PO3UxbGLZixjFYvTGRFnOxms=","SPFZmFzTx9FWgNOMn8JFX75yz3YwuxXSRlE5YLfijZg=","McyNtn6zyHmv6P3Odmjy1Eq5lAjpXC6Y1xiTk2BTaWM=","hQmP\u002BZQjQP3uEVahoRCbt1q36m5ijmphYzHyJ74JAJ0=","ZZzd7bxobk1GTyO7wimEK9ggygzpN1ZZZxTXT2NxfdE=","PRAsIy7f7rOVCgBYwy16xphLCFeCTeaJayBBLv53/ns=","TyhtMyuY6Fg2WYnXgbl0mLXdNhKu4PIzQdjtQQuVHdo=","J3y8O2q/1iqp6VNUlW30TUVpnNzCjgPpjq4AN8AAcYQ=","8\u002BvraeNJphzR14NqE6hA42IbW2PnGvWgJANhYW\u002BlqCk=","nJPNrfYI3Y\u002Bn/YeYeA6N7ViYkp\u002BQm88/11wUIioX2OE=","KPgnPkLVL3YoFSEk08yGggwwlBWOvNOzaWLOkfsswAQ=","4DdG33f9\u002BZ8IEcOUl7snYM8J6X48LlhjgswBugrwjCQ=","pOblUrsIjmPL05HIoELs4TyxjRK0JPueZ5VnVyKZfeA=","p6mgkbRemJ/Vani0pDMTNntw0yb6rSp5iIqALh3rtCk=","VCmT8Eo1CNGsY0q5RXPCXxR5eJNrTrSJYdmkqmAJaAY=","d\u002B9pMzw5ZoYizu4mSyclYmKCD7vjMk5KqqdyXNh6uL0=","m4bXBTU\u002B6dUvaWjyEO2KhI\u002BG4Koz721h3VwI48IUmPA=","UyE7EHCv7/GXOB3MEHZVBwMVBoYanzZLUmj4r6Wy4gc=","vVUXsXJisbKeBMfYTvgHamEzy5PZoncdG3v5SWoJcjc=","AQb3DFLQjUg264hZeXF3\u002B1batYL4vRSIYWcIAMj14u0=","HA2v8C8wJeiwYsvIOasMfuMPqCcfsAEJMXS31Hq1D9Q=","UYyEeRVu4hTCxz7pIaSa0pw0UXWEYkTIvsOgIzHVVf4=","vuXq5r0IKbyhnpBhYIYO7ryeTgkcEaxR\u002B\u002B3J8PGO83g=","nLOgYShcUxYTzQnRlenhbYQ2aLIHLciqIsDl7LcxuTo=","dbevUlwQQ6OEzYYbTV13HgbjEoqBv\u002BDvW4WfyvjNI4E=","pGtBfel\u002BuAfBMq3qlDAvLM6bTHjCaa8dk74gkxDMKFU=","9UXQnCbPxLR2Fn8FkE9d5zTQyVLxnfjXazb8UVn6KgU=","p8h6ouUG1IeLrNjgCikZn4DcWQEH5FlBeUGFOBFXs74=","hKnIohGswhMM79uN74GtBoielbgBgjtAhpL\u002BfHPzZvI=","N5fRQGd2dd\u002B3KFJti2gFhiUp6oW9AE7VNPGxIunO2wY=","jpHhZjZyHTZfV2zN7NyntNkIM8jRTgoHTbz8nAWoIA8=","8B7y0D0PxJpSwBgjcc3lwic74DTlNqbUAR4KXjoqces=","Cw0jfCqPzdmH3cBncAsQ3P2q49MdqFhlFAdHG7Y5fPk=","9JA8Be/NKOTLJmd7IdUdXVU/twy5boLjX3rVcETOkF4=","hqpdYhJimhNWBX9vRaVmstRWsHoyTsObXtOZVp4B6go=","srXqfyUvqec0F7bHbZ2ZLuUa86D2OeNxrqieawKW\u002Bpc=","FgKAQtfqvO1f3rOBCsuE73Ru43miiEAnrfPVaXwWbLI=","\u002Bfs3/COU6hb6bo7SBaYvBQ6HuPJ7DUG3KHKDfGvQvRk=","HrpnL0ooQ25AP4QgQTq4lgI0rbu0z7SDJC62zIMwa\u002BA=","BB\u002Bh6iSthXc27lRd3SZfqXzpHhveVueiK3cY4w06ZaQ=","bs\u002Bm7Zv1TScYeaaHtiI9cpTiHSHj69Th0mUdCG1pMhg=","2b774RQN3Ktji/F3yIqOXVW1Re38sYnv6/f/pfHNYRM=","RtT0E7ab8qDuXT4AJiF3kKlif7Xiw2D99S2sJ869RR0=","UlNzf42fAeXmVCuLiC8FA\u002B\u002BU52YUMzVIGrMvv408DVM=","JapVTmHqKHJ3z7tq9TYRg/qnfSkYzHCDkPP/w2N4E7c=","JoIiFQf6wQ3Bl4WflzlWpq9VKyx55\u002B7KdiI5u8feNws=","Lyt12FPWYYiC567dCBG6GZ1pXGXp8QZYU\u002BmRUKMsId8=","XrCv8lA8qsQOKty/YpWani3i3dS0BAfftcyzUfwYPfk=","8JPH4/T1A8zXLPKohPznlJAiXWG3I1zkW9azS/gkSTs=","gEb2TbtsbS/m166p76ehwqgn\u002Bwl0kO8dgakEomqurnc=","D4SJbilWD\u002Bzr260VtX6xXjyJOpBXDgpOpOIX9qSm8Hs=","7v2uGjx2bWx/obW2eLGAneNIlF419wOL9zbFkpu3XbE=","Slpv7S5A1tPlOqpddfrXyFQT8hTG9z7RYV7ycKQCYi0=","SzztVC63\u002BrdU8vdnm4muEnw48hKH4YKzFu2qHx0H/fI=","5SguK3bMDdmhHdrISydt4SdOGhtQE0gWdIBGTBN2xwc=","tLzh0A0SYpsTg55lt6UDzmwl89LgdBfXrnkiY30LAbk=","Gq8/AG\u002BNTt35ugbdvHRTyPq27To42mKnpKwLR5jUl44=","WVzne/msI0Z76jj7TU0I9Pll8xssCE/cwE403HDWp2k=","xgYHq3uNBmvNyi82zLXk9qryGMJ\u002BuGskZqoaKT\u002Bl4m4=","6BuBuEknhMPtG/Xst07VHQq1lqE\u002BFZtIz9KqBGTAsmM=","tBEz3ZzYFngbHMQr8FTfK\u002BJqOyZwYIWahJ9qbRFquCk=","UsymScHjr3ww\u002BaoGEVLeVoGgEhbDTW0EQiblBOQuIlw=","rjwqL2P/4X1LPgqrz6jXYPCTWDjG5CJJM5hGUBw9I\u002B0=","9RZF\u002BopR55iJCr4z/bPocsD\u002BB4I2MBkmcXmnVTIKFpc=","5TrtGiPXYynyclEusV71sk/t6cOzd2LR0Y7cOFdT/vU=","DVhpF4yh0RRzG4RpoflWehUuRj\u002BanhO8BAXUQIDMAbs="],"CachedAssets":{"GGdrjBF1JG5h6J8AHMFfTyby72jLfEcvDgz5OWqE5Ps=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\bfkt9xtjsh-{0}-x0ueugt8gp-x0ueugt8gp.gz","SourceId":"OnProfNext.Client","SourceType":"Discovered","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"appsettings.Development#[.{fingerprint=x0ueugt8gp}]?.json.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\appsettings.Development.json","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"zt9ktt9z9k","Integrity":"x4\u002Btk9\u002BomwgcRKN2rU2k\u002BXJpsYRYbNNcQBA21gxOfr4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\appsettings.Development.json","FileLength":108,"LastWriteTime":"2026-03-18T16:34:25.5922929+00:00"},"GykffT9ioihebZXcF39BDe0DlU\u002B3GEcDgMS/Q5IEn1Q=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3hvscw4lq4-{0}-x0ueugt8gp-x0ueugt8gp.gz","SourceId":"OnProfNext.Client","SourceType":"Discovered","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"appsettings#[.{fingerprint=x0ueugt8gp}]?.json.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\appsettings.json","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"zt9ktt9z9k","Integrity":"x4\u002Btk9\u002BomwgcRKN2rU2k\u002BXJpsYRYbNNcQBA21gxOfr4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\appsettings.json","FileLength":108,"LastWriteTime":"2026-03-18T16:34:25.594293+00:00"},"NNOF95cT\u002BLE3lNkqdOz03t6xf5lPu0pHgn619E34t6g=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ug9ge1behf-{0}-ycbzh0sbjd-ycbzh0sbjd.gz","SourceId":"OnProfNext.Client","SourceType":"Discovered","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"Layout/ReconnectModal#[.{fingerprint=ycbzh0sbjd}]?.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\Layout\\ReconnectModal.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"e94n4p5e08","Integrity":"rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\Layout\\ReconnectModal.razor.js","FileLength":787,"LastWriteTime":"2026-03-18T16:34:25.5957947+00:00"},"MgI3NS7ENGha/2zUqT5TTIEwxeXsxhJqUY7X/p16DRM=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vbwtfewq79-{0}-66stpp682q-66stpp682q.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/blazor.webassembly.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\blazor.webassembly.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ob0lsmap0j","Integrity":"5Igt0nmzlphL04ESrb7MBY9ts2dhz5i3UJ\u002BaCoJbK0Y=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\blazor.webassembly.js","FileLength":18724,"LastWriteTime":"2026-03-18T16:34:25.6037942+00:00"},"kBZdbKLMX0zdOCQCeii7Qbn69K2liSOhKo23eNykndw=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hd2b1ihltm-{0}-uzl7ca9j9c-uzl7ca9j9c.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"OnProfNext.Client#[.{fingerprint=uzl7ca9j9c}]?.styles.css.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\scopedcss\\bundle\\OnProfNext.Client.styles.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"8ygq2qmxxz","Integrity":"UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS\u002Bo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\scopedcss\\bundle\\OnProfNext.Client.styles.css","FileLength":1448,"LastWriteTime":"2026-03-18T16:34:25.6082933+00:00"},"mgbhae92VjHr\u002BpAYyVtup8MAJS\u002B37PSUm/G5Qdl5xbg=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\808kb9dz89-{0}-uzl7ca9j9c-uzl7ca9j9c.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"OnProfNext.Client#[.{fingerprint=uzl7ca9j9c}]!.bundle.scp.css.gz","AssetKind":"All","AssetMode":"Reference","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\scopedcss\\projectbundle\\OnProfNext.Client.bundle.scp.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"8ygq2qmxxz","Integrity":"UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS\u002Bo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\scopedcss\\projectbundle\\OnProfNext.Client.bundle.scp.css","FileLength":1448,"LastWriteTime":"2026-03-18T16:34:25.6157944+00:00"},"A6O2orDsr20j3X4stPxoDTTpON9ripACeqU4xcprYlY=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5g3srlr8jx-{0}-roqc1km2rj-roqc1km2rj.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.AspNetCore.Authorization#[.{fingerprint=roqc1km2rj}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"dnuvacvqw8","Integrity":"6RbsaszehDYrZqEQQAzKB/FB\u002BwDv6vvUz2eK6PuEUG8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm","FileLength":19732,"LastWriteTime":"2026-03-18T16:34:25.6012944+00:00"},"S71o8k3bYETd2H8oYnf1KjzHuWignN4mGir0A4zuL90=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fs9spivh8g-{0}-uddsvpv1sv-uddsvpv1sv.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.AspNetCore.Components#[.{fingerprint=uddsvpv1sv}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.uddsvpv1sv.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"kkn2n533lj","Integrity":"1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.uddsvpv1sv.wasm","FileLength":154281,"LastWriteTime":"2026-03-18T16:34:25.6247949+00:00"},"0rx2jaib0nHOBB9HoOG7VcOT8j/8yJMocXtjf6O2TpM=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qlfvznror3-{0}-zrueb40r85-zrueb40r85.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.AspNetCore.Components.Forms#[.{fingerprint=zrueb40r85}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"83yupvvf0z","Integrity":"FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm","FileLength":17376,"LastWriteTime":"2026-03-18T16:34:25.6302937+00:00"},"jvCc4\u002BMRqenhb\u002BO\u002BfaCaKNztjx6XyyFWoT94KD/ngE0=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gx4y3aoczp-{0}-g5qdp1mxha-g5qdp1mxha.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.AspNetCore.Components.Web#[.{fingerprint=g5qdp1mxha}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"7joby0gmhk","Integrity":"Dc0Ey4v7afGB0cdVgHcV\u002ByL2eNu/jWwcECSHv79Rge0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm","FileLength":71572,"LastWriteTime":"2026-03-18T16:34:25.6257947+00:00"},"AbZUGuc1kamsWWMsAz5DnYZtyGhp45N1BXd5RkqIkFM=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mx4r46cpu7-{0}-9mjwvs1qyp-9mjwvs1qyp.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.AspNetCore.Components.WebAssembly#[.{fingerprint=9mjwvs1qyp}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"n094wzgwgi","Integrity":"WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm","FileLength":61540,"LastWriteTime":"2026-03-18T16:34:25.6362939+00:00"},"DW0l8gGkmxoT3TSpYw3atjX\u002BPYj9R2TLSXBIDjB5sGs=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zpx4nb1yyz-{0}-m3mxap0jif-m3mxap0jif.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.AspNetCore.Metadata#[.{fingerprint=m3mxap0jif}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ervw32usw9","Integrity":"NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm","FileLength":2466,"LastWriteTime":"2026-03-18T16:34:25.6372948+00:00"},"p1\u002BKvdUraUX3XQdNXHJNDpWfSg63k/\u002BX4636LU2Xfo0=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3of7h5c6n8-{0}-hrhwg3a64c-hrhwg3a64c.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser#[.{fingerprint=hrhwg3a64c}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"1it2uduzuc","Integrity":"2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm","FileLength":24419,"LastWriteTime":"2026-03-18T16:34:25.6012944+00:00"},"ZFPXs/Qk0kuJmvfVNiEpE6EA2YghU8OeqnWfgyJgdOw=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\dnrp0xl7wy-{0}-fgwnqtu7qk-fgwnqtu7qk.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Configuration#[.{fingerprint=fgwnqtu7qk}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"midc3whqfr","Integrity":"bsKX3IV7dNcOVpHYtJ2\u002BxwPs7t7xKVBEeTrIRJZQUy0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm","FileLength":15475,"LastWriteTime":"2026-03-18T16:34:25.6042945+00:00"},"/zDnfTvGhF9AUL5OMqrPCoKJqiKEpqvnnK4CaR7WxKI=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\s4opith0ak-{0}-thew1o6jcx-thew1o6jcx.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Configuration.Abstractions#[.{fingerprint=thew1o6jcx}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ghofgzfbll","Integrity":"TKp\u002BChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm","FileLength":8096,"LastWriteTime":"2026-03-18T16:34:25.6092944+00:00"},"hQRzK8kB7mwtzoV\u002BY3ZlEoHbOnW4Rb\u002BBqmTYZXBdR2A=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\11oooy7jd2-{0}-7o70008j8o-7o70008j8o.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Configuration.Binder#[.{fingerprint=7o70008j8o}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"tc4mjf07ok","Integrity":"c/GNU0MQFM2JbqQUc0caJ4yMICSJFO\u002BrkG3AVgEl3dk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm","FileLength":14172,"LastWriteTime":"2026-03-18T16:34:25.6172935+00:00"},"dU7rg6h3bSY1BmAB/X53lQI76adxN0G96MvVP54L8Kg=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vhumncwy1p-{0}-ouivavlhyy-ouivavlhyy.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Configuration.FileExtensions#[.{fingerprint=ouivavlhyy}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"7xgfmwx4a3","Integrity":"a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm","FileLength":7985,"LastWriteTime":"2026-03-18T16:34:25.6217951+00:00"},"oLXpIAQTWRGrnhmhoxSSs7I\u002B1bm5x65dCXELV6hf8is=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\69vphje66t-{0}-giv4t23za9-giv4t23za9.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Configuration.Json#[.{fingerprint=giv4t23za9}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"d4992121ss","Integrity":"kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i\u002B7wF5sPVY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm","FileLength":7862,"LastWriteTime":"2026-03-18T16:34:25.6267948+00:00"},"CHsEcQRn8UV2Wy09z24spDNHvmzsRtnDtGJtYJj9Oc4=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\epsgnejg6l-{0}-vs620n44bv-vs620n44bv.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.DependencyInjection#[.{fingerprint=vs620n44bv}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"tffkpdcxi8","Integrity":"KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm","FileLength":36541,"LastWriteTime":"2026-03-18T16:34:25.6047946+00:00"},"SQixcw7mvMYr9ZkaYdHQJjhMC46v0HbdMgOEM0kK24Y=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kstk0dzyw1-{0}-ud13mwbta3-ud13mwbta3.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions#[.{fingerprint=ud13mwbta3}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"w0dzf4xi6r","Integrity":"UEQ4WHUWNYKuxJ0Ox0DjAhfPo\u002BMKzcGKYsaMc3ZOheU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm","FileLength":21732,"LastWriteTime":"2026-03-18T16:34:25.610795+00:00"},"7tCQe1TNb8ACXqM4LMgAMY\u002BqR7nRei0IiakTuZp\u002B\u002B3U=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3rwukvhyra-{0}-jnogfbng3i-jnogfbng3i.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Diagnostics#[.{fingerprint=jnogfbng3i}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9y06osgqhd","Integrity":"UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm","FileLength":12090,"LastWriteTime":"2026-03-18T16:34:25.6167941+00:00"},"4mzxYSGqwL7fyO1pXagaZG2\u002BpbO20g8T5zQleAMeJNg=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0o3yap4xcv-{0}-v59ymogeuz-v59ymogeuz.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Diagnostics.Abstractions#[.{fingerprint=v59ymogeuz}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"1d4dr8p0gt","Integrity":"q/1QB4fuP6upiGpsSRq\u002BLbUmBK7AQE/6\u002B\u002BTDcsp4qV4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm","FileLength":8585,"LastWriteTime":"2026-03-18T16:34:25.6212949+00:00"},"EsJIULIDOZsFQQvl94Fv8QhdbwncZWbpPAy0TdBHHYU=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ezxlu8d1x1-{0}-ssv83rveyv-ssv83rveyv.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.FileProviders.Abstractions#[.{fingerprint=ssv83rveyv}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ggs2562wfp","Integrity":"kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm","FileLength":5652,"LastWriteTime":"2026-03-18T16:34:25.6252943+00:00"},"SCAkUAO8I5ajwTlT9eUBJ9l2q/w6IwLbLLAHU7f5W/w=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\keeokmerp8-{0}-8gz29xpyh3-8gz29xpyh3.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.FileProviders.Physical#[.{fingerprint=8gz29xpyh3}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"05hyyioq0r","Integrity":"RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm","FileLength":16448,"LastWriteTime":"2026-03-18T16:34:25.6307933+00:00"},"D29piY0j/MLTO/plTz19GcwJCO/RxkYf8KSBVSUsTvY=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\l2v44xhbzj-{0}-ozuva4e3vv-ozuva4e3vv.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.FileSystemGlobbing#[.{fingerprint=ozuva4e3vv}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"4zdwe30v1x","Integrity":"QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm","FileLength":16965,"LastWriteTime":"2026-03-18T16:34:25.6012944+00:00"},"h0kDBqW\u002BSkiuElX\u002BE4xwYB1tkjHpGdbMwWJp7K2P\u002Brk=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\84jx0dmgdc-{0}-xcslyy3nju-xcslyy3nju.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Localization#[.{fingerprint=xcslyy3nju}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Localization.xcslyy3nju.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"t8f4qjkh0j","Integrity":"LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Localization.xcslyy3nju.wasm","FileLength":9994,"LastWriteTime":"2026-03-18T16:34:25.6032945+00:00"},"XtGtFNmtoHnY0uwM23KwXONNwA8KogKHx89iERoj8io=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tezhiquus4-{0}-6jkolue1ka-6jkolue1ka.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Localization.Abstractions#[.{fingerprint=6jkolue1ka}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"zynb14uzz8","Integrity":"5eCZruCWTw\u002BzLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm","FileLength":3828,"LastWriteTime":"2026-03-18T16:34:25.6082933+00:00"},"wC4BfZwONlsCvA\u002BXi/YBGuuyrvTn\u002BPe2gkWwe3q\u002BMNU=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\oix89w3uk2-{0}-y4ydx3rk2c-y4ydx3rk2c.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Logging#[.{fingerprint=y4ydx3rk2c}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Logging.y4ydx3rk2c.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"mwqfamp4zc","Integrity":"CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P\u002BI9Q=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Logging.y4ydx3rk2c.wasm","FileLength":18618,"LastWriteTime":"2026-03-18T16:34:25.6172935+00:00"},"/6mdBFUPwsjpz3tN4sMhx7AjcX4Ld87yYftZAemKD5A=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sn0mpm6uvc-{0}-1q3x7vre4l-1q3x7vre4l.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Logging.Abstractions#[.{fingerprint=1q3x7vre4l}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"vw2uqtemv2","Integrity":"wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm","FileLength":24489,"LastWriteTime":"2026-03-18T16:34:25.6237938+00:00"},"woMoDGZVdSLUQsq07n9xUY6EBwvNp8f9NTSCTBGMrXc=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\u4abyqnekj-{0}-2rz5zbidnd-2rz5zbidnd.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Options#[.{fingerprint=2rz5zbidnd}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Options.2rz5zbidnd.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"v0o0qd5zi3","Integrity":"nzeBvV\u002Bgl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Options.2rz5zbidnd.wasm","FileLength":23512,"LastWriteTime":"2026-03-18T16:34:25.629796+00:00"},"co5VHi5so/yj4rlcsHcyhjXEWr7clWVMj6mCZDk1YI8=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ozc2mb3rdz-{0}-zmb03w0weu-zmb03w0weu.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions#[.{fingerprint=zmb03w0weu}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"dqcssuy61d","Integrity":"i1zEjdBZKbXswBX6kHTGH0\u002BYyPT\u002BplGhxAd/Yi/2l4I=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm","FileLength":5101,"LastWriteTime":"2026-03-18T16:34:25.6012944+00:00"},"bg5x/r2SBWoLGsEGATfbMVKdDSiJxTQPuhYstkRssO8=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\co27dkpaxa-{0}-bd164v6l3f-bd164v6l3f.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Primitives#[.{fingerprint=bd164v6l3f}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.bd164v6l3f.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bj7ikxinm7","Integrity":"WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.bd164v6l3f.wasm","FileLength":15247,"LastWriteTime":"2026-03-18T16:34:25.606794+00:00"},"Utxg8XHmCukubcfiDXWWHKhkulo1wprT3k5zEtB5uhI=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fappprmifz-{0}-r1sv3m5lsf-r1sv3m5lsf.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Validation#[.{fingerprint=r1sv3m5lsf}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Validation.r1sv3m5lsf.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"uctmea5fo6","Integrity":"4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0\u002BQjMnaGM0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Validation.r1sv3m5lsf.wasm","FileLength":14443,"LastWriteTime":"2026-03-18T16:34:25.6172935+00:00"},"wnE5Cs0vSERTw2fJ8znNOvBrryloYBB/\u002BjSElFweULc=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\pro4ajsvfg-{0}-1r0ampr2q1-1r0ampr2q1.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.JSInterop#[.{fingerprint=1r0ampr2q1}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.JSInterop.1r0ampr2q1.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"83n0xwuttg","Integrity":"5NWw0RiMY0Fm2mcJ8VUQy\u002BIrp2YOHr\u002Bs\u002B5gqJXTt/C0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.JSInterop.1r0ampr2q1.wasm","FileLength":27523,"LastWriteTime":"2026-03-18T16:34:25.6237938+00:00"},"7d78Uw\u002BIr5vm4dRxNgAzZbR4b3lfspUugoy7TeXwg6s=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6mv5cent6u-{0}-oz8fkrrrd6-oz8fkrrrd6.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.JSInterop.WebAssembly#[.{fingerprint=oz8fkrrrd6}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"vqm70abvg2","Integrity":"50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT\u002BsJ6bbA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm","FileLength":6861,"LastWriteTime":"2026-03-18T16:34:25.6282949+00:00"},"prrH8KrEJnfmub0BDCCThpTXGAg0iq/F03t2Dc25zAU=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\w2iaa8sc3u-{0}-k6079czmkm-k6079czmkm.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/MudBlazor#[.{fingerprint=k6079czmkm}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\MudBlazor.k6079czmkm.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"pzzlmu9pfo","Integrity":"dYfdbZQgaoBzURDR4ktTrN2o\u002BX9BWw8vX3qCAw5LhvM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\MudBlazor.k6079czmkm.wasm","FileLength":2249638,"LastWriteTime":"2026-03-18T16:34:25.9902992+00:00"},"\u002BEDfp39H86nixEDoBX\u002B67c7mABn3CE47j2hqc4UUO8c=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\yva5srnvsu-{0}-452y5fjxmv-452y5fjxmv.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.CSharp#[.{fingerprint=452y5fjxmv}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.CSharp.452y5fjxmv.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"xagztf6a3s","Integrity":"SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.CSharp.452y5fjxmv.wasm","FileLength":131862,"LastWriteTime":"2026-03-18T16:34:25.6157944+00:00"},"1dRuQy2ADgLtEOlquXe9c3/HCjHDGYLbq71hcxcu2nU=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\du4skpg5oq-{0}-re3geseai5-re3geseai5.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.VisualBasic.Core#[.{fingerprint=re3geseai5}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.re3geseai5.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"dwyqqei2y4","Integrity":"09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.re3geseai5.wasm","FileLength":166913,"LastWriteTime":"2026-03-18T16:34:25.6367948+00:00"},"Tf4TG9rWZ1D8\u002ByqsczPQQMP7JFW4\u002BaAfcl7Q5yZHrVk=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\akapjt0sxo-{0}-91iw3j3d9p-91iw3j3d9p.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.VisualBasic#[.{fingerprint=91iw3j3d9p}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.VisualBasic.91iw3j3d9p.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"h1hqahv7du","Integrity":"O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.VisualBasic.91iw3j3d9p.wasm","FileLength":2863,"LastWriteTime":"2026-03-18T16:34:25.6377945+00:00"},"qPNcZiK9eMymiPZM4zzkIfIARhW48NB9S8u577I3FiA=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i7n8kqec4e-{0}-2mjytoh92q-2mjytoh92q.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Win32.Primitives#[.{fingerprint=2mjytoh92q}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Win32.Primitives.2mjytoh92q.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"4eibfa0pj4","Integrity":"JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Win32.Primitives.2mjytoh92q.wasm","FileLength":2216,"LastWriteTime":"2026-03-18T16:34:25.6312937+00:00"},"IUIO9jC6g1SSKuUJ\u002Bsi2erPXhDiyN4qxxBOWzmmPfcM=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\553rwsqb4a-{0}-yz8nt3ycsq-yz8nt3ycsq.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Win32.Registry#[.{fingerprint=yz8nt3ycsq}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Win32.Registry.yz8nt3ycsq.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"6vmzj7j11v","Integrity":"gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1\u002BjM0Wgt/8Nk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Win32.Registry.yz8nt3ycsq.wasm","FileLength":9112,"LastWriteTime":"2026-03-18T16:34:25.6342942+00:00"},"Gk4xFwXcG3D7W7\u002BtDuTRoeXJkML9QluzYlAeUfk\u002B/68=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jcwxb5s78i-{0}-uwq3fpef1w-uwq3fpef1w.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.AppContext#[.{fingerprint=uwq3fpef1w}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.AppContext.uwq3fpef1w.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ubhhfy85j7","Integrity":"Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.AppContext.uwq3fpef1w.wasm","FileLength":2115,"LastWriteTime":"2026-03-18T16:34:25.6362939+00:00"},"GCt146qTZiagBpURmUDptOAPdqRMZLwNSo4ODhi7bOw=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8u2rup9szd-{0}-m4yhcvz2y2-m4yhcvz2y2.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Buffers#[.{fingerprint=m4yhcvz2y2}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Buffers.m4yhcvz2y2.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"mmzbmsscku","Integrity":"Hg\u002BzsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh\u002Bg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Buffers.m4yhcvz2y2.wasm","FileLength":2117,"LastWriteTime":"2026-03-18T16:34:25.5967943+00:00"},"MwYS\u002BWVqW4PIXab7MtuoOFMhBfo5z65wlukXoV2tgjc=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\niv8zsbxhl-{0}-1zv6wuzklu-1zv6wuzklu.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Collections.Concurrent#[.{fingerprint=1zv6wuzklu}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.Concurrent.1zv6wuzklu.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bq2g07ai1i","Integrity":"LfLZ\u002BcyWkGP\u002BWtYeXahx4mTey0ofblMty43jGWQLufU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.Concurrent.1zv6wuzklu.wasm","FileLength":33673,"LastWriteTime":"2026-03-18T16:34:25.6052949+00:00"},"iGxutHcY3fPYcxtzErrKJNJVwimEtUvL0jYyq7Axnx4=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3k0w0ci5df-{0}-6uzpuv4o5d-6uzpuv4o5d.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Collections.Immutable#[.{fingerprint=6uzpuv4o5d}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.Immutable.6uzpuv4o5d.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"qgpgqsl74x","Integrity":"FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.Immutable.6uzpuv4o5d.wasm","FileLength":98053,"LastWriteTime":"2026-03-18T16:34:25.6222951+00:00"},"8zUIKkwDRQqXSFCB\u002BfBF8m4qjgwQQ3txNVg6UEH3p9s=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\r1c02csw1u-{0}-k5rgagff9o-k5rgagff9o.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Collections.NonGeneric#[.{fingerprint=k5rgagff9o}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.NonGeneric.k5rgagff9o.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"dvlsa6rrt1","Integrity":"RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.NonGeneric.k5rgagff9o.wasm","FileLength":14717,"LastWriteTime":"2026-03-18T16:34:25.6277938+00:00"},"/pZJtmtUnzasffGhMtUHT4EVIePSMKqexlPPkfZ986M=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\q6am3o85wz-{0}-84wojkejb4-84wojkejb4.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Collections.Specialized#[.{fingerprint=84wojkejb4}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.Specialized.84wojkejb4.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0egm0291ft","Integrity":"iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.Specialized.84wojkejb4.wasm","FileLength":16334,"LastWriteTime":"2026-03-18T16:34:25.6327948+00:00"},"6Tg0Miq9C4i8whcBdhZQzZVl2hTx15Qp/gcDTUjl7W0=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3zhncs8zdy-{0}-63jrcion39-63jrcion39.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Collections#[.{fingerprint=63jrcion39}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.63jrcion39.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"2jtttpxj8w","Integrity":"vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.63jrcion39.wasm","FileLength":43289,"LastWriteTime":"2026-03-18T16:34:25.6382944+00:00"},"Nc3iTXp47oHxIKUBkDLq6MAX\u002BQ7l1AObj3\u002BDUQjFt3c=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wj9cgpvw17-{0}-cjsvkufomv-cjsvkufomv.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.ComponentModel.Annotations#[.{fingerprint=cjsvkufomv}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.Annotations.cjsvkufomv.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"vvzp0orytg","Integrity":"6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.Annotations.cjsvkufomv.wasm","FileLength":35777,"LastWriteTime":"2026-03-18T16:34:25.6047946+00:00"},"FhKB5ZliTH\u002BBhadY0N2vuXiNCO1M3yX5y6GpxmLgvLY=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jimv6lw5j5-{0}-vpng0qt4u6-vpng0qt4u6.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.ComponentModel.DataAnnotations#[.{fingerprint=vpng0qt4u6}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"4mahw0a2fi","Integrity":"BHBFvQmGuu735h\u002BkJlTEPGpWBVhLBXuBvSIyIGFPGNs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm","FileLength":2583,"LastWriteTime":"2026-03-18T16:34:25.6097938+00:00"},"oL0eoDmsQxzz1ekPChlY68e/lOiiQEofKzw/Qce3i5w=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ixx2bqnfah-{0}-en4q13ibd5-en4q13ibd5.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.ComponentModel.EventBasedAsync#[.{fingerprint=en4q13ibd5}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"1t9lhk7tl2","Integrity":"G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm","FileLength":6777,"LastWriteTime":"2026-03-18T16:34:25.6162936+00:00"},"cqGCr5TkQDdzerwurYSM14Z/jE1qB8xVGtYrAVH0eTE=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\nu73pdet4t-{0}-u0y5oi3qdg-u0y5oi3qdg.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.ComponentModel.Primitives#[.{fingerprint=u0y5oi3qdg}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.Primitives.u0y5oi3qdg.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"8scmms1euz","Integrity":"yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.Primitives.u0y5oi3qdg.wasm","FileLength":13423,"LastWriteTime":"2026-03-18T16:34:25.6207944+00:00"},"jzxdpYmIKcN0Nqw7JMaySUmjpL6E\u002BDDzDUd11ep0t5A=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gpzobq46fp-{0}-e2hbv9lola-e2hbv9lola.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.ComponentModel.TypeConverter#[.{fingerprint=e2hbv9lola}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.e2hbv9lola.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"otvdjow6va","Integrity":"pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG\u002BVT36qS45cKqs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.e2hbv9lola.wasm","FileLength":122798,"LastWriteTime":"2026-03-18T16:34:25.6387946+00:00"},"GTYlw6enqiRZqb\u002BVR3UnRhflobcgrBvza\u002BtEJ5Ih9/k=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ffumllgt4m-{0}-m11rh1qn2x-m11rh1qn2x.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.ComponentModel#[.{fingerprint=m11rh1qn2x}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.m11rh1qn2x.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"aipvp5fgnc","Integrity":"4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.m11rh1qn2x.wasm","FileLength":2572,"LastWriteTime":"2026-03-18T16:34:25.6392954+00:00"},"XvhWT\u002Bn/UO1E0HrTqnnxfRdVFFWh8W2XCDIKAK2Jt68=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\o9xpqh7wzb-{0}-j8qjkqg593-j8qjkqg593.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Configuration#[.{fingerprint=j8qjkqg593}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Configuration.j8qjkqg593.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ipksztdpap","Integrity":"KgGQuKshMXbP\u002BitjS2exAQEjGuns5oOaXyP82Gb7YeA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Configuration.j8qjkqg593.wasm","FileLength":3122,"LastWriteTime":"2026-03-18T16:34:25.6017948+00:00"},"F8\u002B/lCOauqbnVpiTDkrTBEi0BxfH544t9T0EViBj3Mw=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ea8uo6cwb8-{0}-x9at0eh4vs-x9at0eh4vs.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Console#[.{fingerprint=x9at0eh4vs}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Console.x9at0eh4vs.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"uojdvkwt3s","Integrity":"EswEndm7vHKUTULFtIykD/W\u002BV6qJ7trZbT6PfrpT9oM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Console.x9at0eh4vs.wasm","FileLength":19390,"LastWriteTime":"2026-03-18T16:34:25.606794+00:00"},"QL63Qysm5uhrItw//qEBVjhacNnvCAp3cZgKniVQCpY=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\edgswerp4g-{0}-ickp29885z-ickp29885z.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Core#[.{fingerprint=ickp29885z}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Core.ickp29885z.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"79fagkdleb","Integrity":"RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Core.ickp29885z.wasm","FileLength":4558,"LastWriteTime":"2026-03-18T16:34:25.6152927+00:00"},"2Dc27FeDMvJxfTU2UQAGtAVKq14obt\u002BHpSrTwYfhYfc=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\68hq2gv5cb-{0}-4wisaz8pj4-4wisaz8pj4.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Data.Common#[.{fingerprint=4wisaz8pj4}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Data.Common.4wisaz8pj4.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"s1468k0u99","Integrity":"ALJuG\u002B4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z\u002B9A=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Data.Common.4wisaz8pj4.wasm","FileLength":375378,"LastWriteTime":"2026-03-18T16:34:25.6582953+00:00"},"GFRmUnZ9kIW6270Ly\u002BuXGvc63tyZK7jjAxHDWk8PK20=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sm8o0gwk5g-{0}-904tnen1ot-904tnen1ot.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Data.DataSetExtensions#[.{fingerprint=904tnen1ot}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Data.DataSetExtensions.904tnen1ot.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"52ipu6ljxy","Integrity":"re32\u002BlNN8a1z5EgMMcIwNZ/KlHDo\u002Bu/sfXKFzTW6FnY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Data.DataSetExtensions.904tnen1ot.wasm","FileLength":2081,"LastWriteTime":"2026-03-18T16:34:25.6587952+00:00"},"8D1x\u002BltEPgwOkfJGQhQB05X/PpizjbLE0c6G8JoRkik=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\y20kxtztgi-{0}-0h75nr7qqd-0h75nr7qqd.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Data#[.{fingerprint=0h75nr7qqd}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Data.0h75nr7qqd.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"xg9obt7g2f","Integrity":"8TQb8DoHDKgOKFa\u002B77OjGkEjpNTmWi5rEFBqAQATfjE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Data.0h75nr7qqd.wasm","FileLength":5022,"LastWriteTime":"2026-03-18T16:34:25.6592954+00:00"},"qqe/El/DV\u002BNj3TLG3cQ5NxXkWVwl454phh6jti4Q6Ig=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wgdliulfxe-{0}-z1eotzj35n-z1eotzj35n.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.Contracts#[.{fingerprint=z1eotzj35n}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Contracts.z1eotzj35n.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"33jofr2vn1","Integrity":"Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Contracts.z1eotzj35n.wasm","FileLength":2392,"LastWriteTime":"2026-03-18T16:34:25.6012944+00:00"},"rYfnI4mVMoZeOyOMoQaDHcDGnxxyUKFXfbOJ6a/XN64=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i9mn6d27vy-{0}-aeh9b1tcuc-aeh9b1tcuc.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.Debug#[.{fingerprint=aeh9b1tcuc}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Debug.aeh9b1tcuc.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0bwmu5jjo7","Integrity":"DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Debug.aeh9b1tcuc.wasm","FileLength":2284,"LastWriteTime":"2026-03-18T16:34:25.6047946+00:00"},"vW7Z0PeF8bh9oDlR7bM0PaR7X6TJxJmPjaUDxE6kUrI=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\lgx6p69ons-{0}-ou2dt7nfo2-ou2dt7nfo2.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.DiagnosticSource#[.{fingerprint=ou2dt7nfo2}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ehzhw0b8x3","Integrity":"4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU\u002BhONKFUuCvs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm","FileLength":81033,"LastWriteTime":"2026-03-18T16:34:25.6202933+00:00"},"6jEs/Rth7hgZS4r\u002Bg8vtctyUn9GfCWtGhqAHM099iuk=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i7dsezujyr-{0}-kv9gl8mgag-kv9gl8mgag.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.FileVersionInfo#[.{fingerprint=kv9gl8mgag}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"j4wrreo1h8","Integrity":"Y44VzHMxcOMr4\u002BdX02zEmCpwgqCCLv0x84iVnj65/CA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm","FileLength":5132,"LastWriteTime":"2026-03-18T16:34:25.6242937+00:00"},"RY2qHIsq87jL2ma721rdHezniK7YsdY\u002BzVLlVF6EnNc=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\67s0zux9y9-{0}-lqtqkmw274-lqtqkmw274.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.Process#[.{fingerprint=lqtqkmw274}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Process.lqtqkmw274.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"3ago6fw6i6","Integrity":"a0ocUU6\u002B5CAKiflHMnWhQOGjQQL\u002BdttoeApZK3a\u002BCf0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Process.lqtqkmw274.wasm","FileLength":16197,"LastWriteTime":"2026-03-18T16:34:25.629796+00:00"},"MLpcfg/VH6L7JuJPgl/5xlb8zyxHJs2gKZLsgStgGyg=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ae1qv5wfu3-{0}-wvlboxd9cz-wvlboxd9cz.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.StackTrace#[.{fingerprint=wvlboxd9cz}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.StackTrace.wvlboxd9cz.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"6h9497gan2","Integrity":"\u002Bq1yN\u002BOcdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.StackTrace.wvlboxd9cz.wasm","FileLength":7365,"LastWriteTime":"2026-03-18T16:34:25.6332943+00:00"},"/PyF7KdrTfzxRJY8C2XdudMbQAxhR\u002BkSyNJhheTv5tA=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5psn88uayv-{0}-mx5w1z1p6w-mx5w1z1p6w.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.TextWriterTraceListener#[.{fingerprint=mx5w1z1p6w}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"of2hbj3jtu","Integrity":"bNIOvfCZC4ftF84\u002BwWb33BdcM37Jo5E9sGby/4fRKJY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm","FileLength":9390,"LastWriteTime":"2026-03-18T16:34:25.6022949+00:00"},"asyfYrsxAcoX83jXKEHFciPo1h/u\u002BGzXU7o0ass2p1g=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6yvil548ai-{0}-862j1ozg5o-862j1ozg5o.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.Tools#[.{fingerprint=862j1ozg5o}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Tools.862j1ozg5o.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"e8yn8tx9b6","Integrity":"Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Tools.862j1ozg5o.wasm","FileLength":2194,"LastWriteTime":"2026-03-18T16:34:25.6057946+00:00"},"EhpXP3iZWuBWsUWv2f6eFf\u002BAwyPXhsu378YD\u002BhiQbPg=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\w9uuhprkgr-{0}-j08okd90mo-j08okd90mo.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.TraceSource#[.{fingerprint=j08okd90mo}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.TraceSource.j08okd90mo.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"298gstgzqo","Integrity":"xn2rEuDz\u002B/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.TraceSource.j08okd90mo.wasm","FileLength":20119,"LastWriteTime":"2026-03-18T16:34:25.6157944+00:00"},"bSok/kfu/SOLr7WoEja2BBNNpO70848Y4wyA16xNFgY=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ymz6pz7ujf-{0}-bnz7jo4op8-bnz7jo4op8.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.Tracing#[.{fingerprint=bnz7jo4op8}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Tracing.bnz7jo4op8.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"agm35xp769","Integrity":"ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Tracing.bnz7jo4op8.wasm","FileLength":2509,"LastWriteTime":"2026-03-18T16:34:25.6187933+00:00"},"DWlztucaVbXRgCOHeCfxkzZDwtJYlhHdQbAHA8NkvjQ=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\beyjjw9nw7-{0}-k3z431p3v7-k3z431p3v7.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Drawing.Primitives#[.{fingerprint=k3z431p3v7}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Drawing.Primitives.k3z431p3v7.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"j4p6zyk3r4","Integrity":"s4\u002BCgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Drawing.Primitives.k3z431p3v7.wasm","FileLength":24043,"LastWriteTime":"2026-03-18T16:34:25.6247949+00:00"},"np2XYpYky8H/qOeKQQyqNXpDMBibLdQt6kI5Ix3I438=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\bm4t56k5pn-{0}-v0usa2s224-v0usa2s224.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Drawing#[.{fingerprint=v0usa2s224}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Drawing.v0usa2s224.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"r4neytsin0","Integrity":"ZV38t/WASh\u002B\u002BGAocxc9IoEid2DXD9rN8Zr5v0sVWy8c=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Drawing.v0usa2s224.wasm","FileLength":3864,"LastWriteTime":"2026-03-18T16:34:25.629796+00:00"},"mGFQfl\u002BvnvceFdnNciDGbq7HtJU0/kuhcQt/tVoHZOQ=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\95o3q4uwxv-{0}-iktlm0yhdx-iktlm0yhdx.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Dynamic.Runtime#[.{fingerprint=iktlm0yhdx}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Dynamic.Runtime.iktlm0yhdx.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"jwqvny79hr","Integrity":"DXfrPTXCl6WbgktuKWNiDRD\u002BUnpqixe7cG2s1GpTZ9A=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Dynamic.Runtime.iktlm0yhdx.wasm","FileLength":2444,"LastWriteTime":"2026-03-18T16:34:25.6022949+00:00"},"R0yapo76\u002ByOsiItCyYKHqFtT4eN7OIgVh158votMTbU=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\2eqyybz3l2-{0}-9iyl1hnh76-9iyl1hnh76.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Formats.Asn1#[.{fingerprint=9iyl1hnh76}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Formats.Asn1.9iyl1hnh76.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0fd9ispd0f","Integrity":"LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Formats.Asn1.9iyl1hnh76.wasm","FileLength":35706,"LastWriteTime":"2026-03-18T16:34:25.6097938+00:00"},"a1Yyeuh85OUevfAUES3fLGOiYHU04S2W34NOw9NGAJ0=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\aawrgxq7b9-{0}-9ikmelhi7g-9ikmelhi7g.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Formats.Tar#[.{fingerprint=9ikmelhi7g}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Formats.Tar.9ikmelhi7g.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"pw9bxbzc7p","Integrity":"F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl\u002Bk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Formats.Tar.9ikmelhi7g.wasm","FileLength":10493,"LastWriteTime":"2026-03-18T16:34:25.6162936+00:00"},"7Y5EaFCQt3fXJCJaEGmha77NSUEQ6A5QLnXFlIEykJ0=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\g4w42juzkx-{0}-e8yl47y6cv-e8yl47y6cv.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Globalization.Calendars#[.{fingerprint=e8yl47y6cv}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Globalization.Calendars.e8yl47y6cv.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9lrv8us0bl","Integrity":"bZ33x6bPkeceQILRa9tNf\u002BOef2JSASsUQaeE6PrTg2A=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Globalization.Calendars.e8yl47y6cv.wasm","FileLength":2298,"LastWriteTime":"2026-03-18T16:34:25.6207944+00:00"},"u6yIGbSzoDcvWxPFVZjkokdHptb0zOglFXyaxN53Nrk=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\g3b5a282rj-{0}-fvxkfs32tv-fvxkfs32tv.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Globalization.Extensions#[.{fingerprint=fvxkfs32tv}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Globalization.Extensions.fvxkfs32tv.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"02ayb7artg","Integrity":"mNH\u002BCqOsj\u002B3yzDzuCscl2OmP\u002ByfhXm6ZGnXVqVlqA/o=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Globalization.Extensions.fvxkfs32tv.wasm","FileLength":2190,"LastWriteTime":"2026-03-18T16:34:25.6242937+00:00"},"xkYSoSYk1SjoMnN4KM5IHQEM9h73FJjXPvOEHw0/9pQ=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\nvjr9jta08-{0}-4ulc930few-4ulc930few.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Globalization#[.{fingerprint=4ulc930few}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Globalization.4ulc930few.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0y2gwsj5of","Integrity":"GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Globalization.4ulc930few.wasm","FileLength":2275,"LastWriteTime":"2026-03-18T16:34:25.6292947+00:00"},"mc/LNyKVsz8aiqZ94lr35YKViY4PmVgqgRzYidWf4Oc=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\flmzbagm0p-{0}-ibxx4kh8c6-ibxx4kh8c6.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.Compression.Brotli#[.{fingerprint=ibxx4kh8c6}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.Brotli.ibxx4kh8c6.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"5w5ohwyzbs","Integrity":"1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.Brotli.ibxx4kh8c6.wasm","FileLength":6944,"LastWriteTime":"2026-03-18T16:34:25.6012944+00:00"},"lleT6qRlkKZ0f72OU1Dl1R0aueYU\u002Bi9yDLVtIFb6L8M=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ffagyufl1o-{0}-bselp9vv9w-bselp9vv9w.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.Compression.FileSystem#[.{fingerprint=bselp9vv9w}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.FileSystem.bselp9vv9w.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"5ohw841xcg","Integrity":"dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.FileSystem.bselp9vv9w.wasm","FileLength":2005,"LastWriteTime":"2026-03-18T16:34:25.6042945+00:00"},"aISN1JBGTn\u002BGQHOqgwkw616FDPYlvVnU7\u002BLkVS3oMUw=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\a99cqvh69a-{0}-b0ha8vyo8i-b0ha8vyo8i.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.Compression.ZipFile#[.{fingerprint=b0ha8vyo8i}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.ZipFile.b0ha8vyo8i.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9vm9g5dkex","Integrity":"\u002Bw/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.ZipFile.b0ha8vyo8i.wasm","FileLength":18694,"LastWriteTime":"2026-03-18T16:34:25.6097938+00:00"},"co6dTTFV2d3GS5oNMU1nrTsLv1V8ZjMMSdfCR9GbRs0=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mk5261bq2v-{0}-sgbc42zrd8-sgbc42zrd8.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.Compression#[.{fingerprint=sgbc42zrd8}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.sgbc42zrd8.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"66qmqm0jtr","Integrity":"/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9\u002B4M28=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.sgbc42zrd8.wasm","FileLength":64786,"LastWriteTime":"2026-03-18T16:34:25.6237938+00:00"},"MLNfyFPOIATEaXaZ4P3uw771x\u002BdYziNAQEdcAzOg4qc=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m3i6jtsneo-{0}-oi9xn5s0h3-oi9xn5s0h3.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.FileSystem.AccessControl#[.{fingerprint=oi9xn5s0h3}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"g9qipdfnsf","Integrity":"dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm","FileLength":8474,"LastWriteTime":"2026-03-18T16:34:25.6282949+00:00"},"e2j2Vrs6TkH4xxr6LfuZH\u002BE1SwC6WabB8SNTVSTNdN4=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8i8whn9pm1-{0}-fi1uhp9255-fi1uhp9255.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.FileSystem.DriveInfo#[.{fingerprint=fi1uhp9255}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"7hebj64a57","Integrity":"9VZ17EMg9/z\u002B9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm","FileLength":6033,"LastWriteTime":"2026-03-18T16:34:25.6327948+00:00"},"3vMuYfwRBRzrghrmSmDX29Ub2VBwlcFHFzXKeL77OV4=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kzc385ysv6-{0}-6j2ed42ac7-6j2ed42ac7.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.FileSystem.Primitives#[.{fingerprint=6j2ed42ac7}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.6j2ed42ac7.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"2e3l0cy7lg","Integrity":"apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.6j2ed42ac7.wasm","FileLength":2192,"LastWriteTime":"2026-03-18T16:34:25.6022949+00:00"},"J0Eon4mFLy7Ja/HM1A8Ps\u002BwWUtxANrxBQVJ4M5Uh7zM=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m428rlfc87-{0}-v9i07bnq2k-v9i07bnq2k.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.FileSystem.Watcher#[.{fingerprint=v9i07bnq2k}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.v9i07bnq2k.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"8n2p85wzfo","Integrity":"XCooFnIj0raNsRnkzXuJGOXEkvf3w\u002BUJzbAPv/DknQQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.v9i07bnq2k.wasm","FileLength":8751,"LastWriteTime":"2026-03-18T16:34:25.606794+00:00"},"NpJ/OCKXVgN2TZxzvb7i2krjQ8/orLA6Df90syijOoo=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vnqjd4ny0q-{0}-fktu0k4b93-fktu0k4b93.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.FileSystem#[.{fingerprint=fktu0k4b93}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.fktu0k4b93.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"gx6nm5qbny","Integrity":"1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.fktu0k4b93.wasm","FileLength":2303,"LastWriteTime":"2026-03-18T16:34:25.6162936+00:00"},"g8fG\u002B85\u002B1gMSEXQkpcpPs660OauINO7FjH/r0OlCRIU=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\na7pgc18jv-{0}-8ll4gxwfs1-8ll4gxwfs1.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.IsolatedStorage#[.{fingerprint=8ll4gxwfs1}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.IsolatedStorage.8ll4gxwfs1.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"huqxar7psw","Integrity":"KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.IsolatedStorage.8ll4gxwfs1.wasm","FileLength":9369,"LastWriteTime":"2026-03-18T16:34:25.6207944+00:00"},"9RFoxYcrZfd5vNauvAv4W2PzaAC9W5UqpAd9/u5Rxyo=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\rsffl3vumf-{0}-6do4olk7ib-6do4olk7ib.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.MemoryMappedFiles#[.{fingerprint=6do4olk7ib}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.6do4olk7ib.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"4dma9hit54","Integrity":"uHykrSzy4\u002BBc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.6do4olk7ib.wasm","FileLength":17013,"LastWriteTime":"2026-03-18T16:34:25.6257947+00:00"},"VrIB6dtOuSDOcc9cvH88N\u002B9MnELs0SkAvgtTg2kZOwQ=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\pxy8xfz0ow-{0}-21z0t9w6sq-21z0t9w6sq.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.Pipelines#[.{fingerprint=21z0t9w6sq}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Pipelines.21z0t9w6sq.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"qhvaeyhv35","Integrity":"7iOJoNjJf187RirXolrLdFRbJ\u002BE1rzFjxyGwKnJvQl8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Pipelines.21z0t9w6sq.wasm","FileLength":30368,"LastWriteTime":"2026-03-18T16:34:25.6332943+00:00"},"ay5sZE28\u002BVjVOUQ4e6Km/a\u002BE3wDd\u002BeE88tRUAEpaPLA=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\lvyasyre47-{0}-5lvzz4lks7-5lvzz4lks7.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.Pipes.AccessControl#[.{fingerprint=5lvzz4lks7}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.5lvzz4lks7.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"gekrupgc08","Integrity":"\u002BH0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.5lvzz4lks7.wasm","FileLength":5567,"LastWriteTime":"2026-03-18T16:34:25.597794+00:00"},"mVQDEZUqyUqgviz3qanP4CtpktgCJviTs1aUoo\u002BembQ=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vjl93wt59v-{0}-xosph8vk4a-xosph8vk4a.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.Pipes#[.{fingerprint=xosph8vk4a}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Pipes.xosph8vk4a.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"cwn8d6c7ve","Integrity":"BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Pipes.xosph8vk4a.wasm","FileLength":11401,"LastWriteTime":"2026-03-18T16:34:25.6027937+00:00"},"Axmkw/7dux7p7D8qW0ll1g331fjJWrCUFuov/O4o54E=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\dzqyarawy9-{0}-d1pja42pyi-d1pja42pyi.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.UnmanagedMemoryStream#[.{fingerprint=d1pja42pyi}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"vdo10os1fk","Integrity":"TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq\u002BQFh2G/A4tsU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm","FileLength":2221,"LastWriteTime":"2026-03-18T16:34:25.606794+00:00"},"X9CR1xnCYGFtJ/LhswO/kUh/tNrTuTBGyELzuXoKswc=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kukm29h8dt-{0}-i9g92fmb9y-i9g92fmb9y.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO#[.{fingerprint=i9g92fmb9y}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.i9g92fmb9y.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"icnv0lnc0i","Integrity":"DpQshZyTG\u002BLVazA76gtZQBfoeyKYEZg1HU0FThyQlzM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.i9g92fmb9y.wasm","FileLength":2280,"LastWriteTime":"2026-03-18T16:34:25.6162936+00:00"},"KE7eEveVygwM2IEzIHFZm6WmUWGyQpKvKoYsqL8kCQc=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\1u9lol5zjk-{0}-4m1mh525k0-4m1mh525k0.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Linq.AsyncEnumerable#[.{fingerprint=4m1mh525k0}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.AsyncEnumerable.4m1mh525k0.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ui9j0r4hxl","Integrity":"Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.AsyncEnumerable.4m1mh525k0.wasm","FileLength":143644,"LastWriteTime":"2026-03-18T16:34:25.6377945+00:00"},"8oFYeZ0zSH5tSlrmXWKZ3hGMt3/rqZO2coappELh6tk=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\r0xa1dsvvu-{0}-4nat0rber0-4nat0rber0.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Linq.Expressions#[.{fingerprint=4nat0rber0}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.Expressions.4nat0rber0.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9tived7r2w","Integrity":"Az1MttDJBcaixWXOw9FeGdEcKA8QCT\u002B3zzRC4dE7Nc0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.Expressions.4nat0rber0.wasm","FileLength":213264,"LastWriteTime":"2026-03-18T16:34:25.6577951+00:00"},"RuURI8IfcVcIxcHCDDN4\u002BPlHt2ZO1M22q1Ruo9aCmng=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\35llacexwm-{0}-qf7zemz9aw-qf7zemz9aw.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Linq.Parallel#[.{fingerprint=qf7zemz9aw}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.Parallel.qf7zemz9aw.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"15geimm1az","Integrity":"NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.Parallel.qf7zemz9aw.wasm","FileLength":86417,"LastWriteTime":"2026-03-18T16:34:25.6102945+00:00"},"2VB14xRBZco5fjXlhi5gMhSh0dL0Z7tmA0ll7pw4UAg=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hylqczc46z-{0}-vwinf8twbn-vwinf8twbn.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Linq.Queryable#[.{fingerprint=vwinf8twbn}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.Queryable.vwinf8twbn.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bklodz3kxf","Integrity":"K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.Queryable.vwinf8twbn.wasm","FileLength":21387,"LastWriteTime":"2026-03-18T16:34:25.6177939+00:00"},"Jv6HO9OI8Af2JeK6EWzpO4JT87k/VtnSDV6YnoZbeRQ=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\p0pe0blimm-{0}-rp2jklkmsi-rp2jklkmsi.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Linq#[.{fingerprint=rp2jklkmsi}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.rp2jklkmsi.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"npq7r9d4h5","Integrity":"\u002BxH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh\u002BJ1BPedTmw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.rp2jklkmsi.wasm","FileLength":74838,"LastWriteTime":"2026-03-18T16:34:25.6302937+00:00"},"M7IiRp/IIT7/S41p6QdGKsfJOsH98GBHblyXYjwibFw=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zip5atfnk1-{0}-3r0soomurg-3r0soomurg.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Memory#[.{fingerprint=3r0soomurg}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Memory.3r0soomurg.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"npdk29xyk6","Integrity":"lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d\u002BnY60=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Memory.3r0soomurg.wasm","FileLength":20575,"LastWriteTime":"2026-03-18T16:34:25.6327948+00:00"},"I9ElQON\u002Bw3s38OULY4Cz6hk2m38Ido0s7saNsbcCh7A=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zxgtro8yo7-{0}-t9gqpmtbpb-t9gqpmtbpb.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.Http.Json#[.{fingerprint=t9gqpmtbpb}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Http.Json.t9gqpmtbpb.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"brrohyqrst","Integrity":"h3snS/jGQwMy75UJmcb\u002BYrhqiRPIjQK7eKcyrh6n5Wg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Http.Json.t9gqpmtbpb.wasm","FileLength":19382,"LastWriteTime":"2026-03-18T16:34:25.6357935+00:00"},"XW3RcnMtP0VUYGAWIPR8ejSu5T843f5B\u002BuwwQL6C9d4=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hz1tpel2o0-{0}-9rl4gopayw-9rl4gopayw.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.Http#[.{fingerprint=9rl4gopayw}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Http.9rl4gopayw.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"u8euvk1cpm","Integrity":"Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Http.9rl4gopayw.wasm","FileLength":117194,"LastWriteTime":"2026-03-18T16:34:25.6472931+00:00"},"TTiz46UKRC/rE/fTxiduAblboPV5W9quGjsneBBQyFM=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mkyh3erkm9-{0}-zg37o92yol-zg37o92yol.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.HttpListener#[.{fingerprint=zg37o92yol}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.HttpListener.zg37o92yol.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"qfnuawkynh","Integrity":"2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.HttpListener.zg37o92yol.wasm","FileLength":16053,"LastWriteTime":"2026-03-18T16:34:25.6032945+00:00"},"bp2qsgKLk87pdZARwiKmNJ9caQOfeyUqnIZInF82q1w=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\019ldzgpk2-{0}-qk214miut2-qk214miut2.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.Mail#[.{fingerprint=qk214miut2}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Mail.qk214miut2.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"vwbkysdtgf","Integrity":"T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Mail.qk214miut2.wasm","FileLength":42440,"LastWriteTime":"2026-03-18T16:34:25.610795+00:00"},"UJR1jEvBHz/gNFAtEFQpZK7O9eGAcqCne112tKADkeQ=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ui1ul8tpby-{0}-50dzekuu9x-50dzekuu9x.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.NameResolution#[.{fingerprint=50dzekuu9x}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.NameResolution.50dzekuu9x.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"3k34wxzq9g","Integrity":"A9/weYRUVoYh\u002BS8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.NameResolution.50dzekuu9x.wasm","FileLength":5933,"LastWriteTime":"2026-03-18T16:34:25.6162936+00:00"},"zyriRHRdijdu\u002Bn1hcmJdeNV0QaoMVwVYRZ2Hvi\u002BI030=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\luuq2ppq8r-{0}-k8343mqust-k8343mqust.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.NetworkInformation#[.{fingerprint=k8343mqust}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.NetworkInformation.k8343mqust.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"fconal7ces","Integrity":"Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX\u002BOo1rgAzQ0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.NetworkInformation.k8343mqust.wasm","FileLength":12728,"LastWriteTime":"2026-03-18T16:34:25.6207944+00:00"},"dzcssiSWFF2tQzW5UlV7jTZQV/pCQ/FsJDZkGashJgw=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\yswenxxy60-{0}-00vh2kvsiz-00vh2kvsiz.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.Ping#[.{fingerprint=00vh2kvsiz}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Ping.00vh2kvsiz.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"4r6k7kj18g","Integrity":"MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Ping.00vh2kvsiz.wasm","FileLength":7542,"LastWriteTime":"2026-03-18T16:34:25.6252943+00:00"},"P5sNHStHf9tu1C5soayGF/LUOYReT9mj2l8CZJsF9hs=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\e2kh1woy2q-{0}-whs5oed1wm-whs5oed1wm.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.Primitives#[.{fingerprint=whs5oed1wm}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Primitives.whs5oed1wm.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9izefwu8g8","Integrity":"v4VqyiI/u92jxL7NYH\u002B\u002BqoIo90Mxi//qKynSjy4NFJ0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Primitives.whs5oed1wm.wasm","FileLength":45890,"LastWriteTime":"2026-03-18T16:34:25.6327948+00:00"},"LCu7c32jIRwllkZpFYjo7byQEvcvDkOYWjy4C9MYZnQ=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\t7lpa3lwov-{0}-grloe2ix5j-grloe2ix5j.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.Quic#[.{fingerprint=grloe2ix5j}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Quic.grloe2ix5j.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"3nqwdf9vdo","Integrity":"IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT\u002BA8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Quic.grloe2ix5j.wasm","FileLength":10934,"LastWriteTime":"2026-03-18T16:34:25.6027937+00:00"},"G4Qdj3PZ\u002BSozNOiE5Le1TA48aFIbfRNEi4h1sgzNSq0=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zy4nys0fbm-{0}-r8ar2pd94c-r8ar2pd94c.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.Requests#[.{fingerprint=r8ar2pd94c}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Requests.r8ar2pd94c.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"72b6rw0q6a","Integrity":"gYcSg3pxQhW6bpnWnBpRJUaLN/g\u002BkCtFykYrl9aEwNA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Requests.r8ar2pd94c.wasm","FileLength":20293,"LastWriteTime":"2026-03-18T16:34:25.6087934+00:00"},"c6oFZkD9HgWpNBNa48QvaYNSXRKecDDuHhnbU2RuYqs=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\iem13k4n35-{0}-yn3zcskz4j-yn3zcskz4j.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.Security#[.{fingerprint=yn3zcskz4j}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Security.yn3zcskz4j.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"cyh7fwwt9g","Integrity":"pIXyqicM5CxChUNnGz\u002Bi3z7trej151xIc65XoR4iCtQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Security.yn3zcskz4j.wasm","FileLength":33688,"LastWriteTime":"2026-03-18T16:34:25.6187933+00:00"},"W3NLhFwrqbZ7258JJiUKumOJ0HskWb2s\u002BPrEitk\u002Blq8=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\t2mopjsgs5-{0}-37wbq4jfsy-37wbq4jfsy.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.ServerSentEvents#[.{fingerprint=37wbq4jfsy}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.ServerSentEvents.37wbq4jfsy.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"6ojmnuk21h","Integrity":"FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.ServerSentEvents.37wbq4jfsy.wasm","FileLength":14667,"LastWriteTime":"2026-03-18T16:34:25.6242937+00:00"},"nMXmrw3D7\u002BswIT4Tu0Y6hJEBKQZ9M5ESrqm7yQr4ew0=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sz4qmwa0cz-{0}-j436yqvrg9-j436yqvrg9.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.ServicePoint#[.{fingerprint=j436yqvrg9}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.ServicePoint.j436yqvrg9.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0t2wur1hsg","Integrity":"NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.ServicePoint.j436yqvrg9.wasm","FileLength":2179,"LastWriteTime":"2026-03-18T16:34:25.6282949+00:00"},"t8ynU56EkPHtGFS/8XKfSoewTHkmzLjBoqlBZvRfivk=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ozd9l95cy8-{0}-utzdm9sw2p-utzdm9sw2p.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.Sockets#[.{fingerprint=utzdm9sw2p}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Sockets.utzdm9sw2p.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"46c7yu1zqk","Integrity":"XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Sockets.utzdm9sw2p.wasm","FileLength":22918,"LastWriteTime":"2026-03-18T16:34:25.6337944+00:00"},"9mfbom7zgRWt3\u002B827XdtWav0yb\u002BY\u002B/IvBKELsNfNKlU=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0qximx7h6w-{0}-e5a4gx4ylt-e5a4gx4ylt.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.WebClient#[.{fingerprint=e5a4gx4ylt}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebClient.e5a4gx4ylt.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"71c4zcajqa","Integrity":"FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75\u002BycdI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebClient.e5a4gx4ylt.wasm","FileLength":14733,"LastWriteTime":"2026-03-18T16:34:25.6027937+00:00"},"KVEvX0zfhJPZMFOzlgLkDkt52uakX7I33A4gihbp86E=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\xfyu8pi705-{0}-rbzkmij005-rbzkmij005.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.WebHeaderCollection#[.{fingerprint=rbzkmij005}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebHeaderCollection.rbzkmij005.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"pnu0ylbmbp","Integrity":"y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebHeaderCollection.rbzkmij005.wasm","FileLength":10208,"LastWriteTime":"2026-03-18T16:34:25.6077938+00:00"},"pohZ6nw82vm7WFJs3FabdPVtpGmf6VHPXau/BehaouU=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kwztau0oyy-{0}-38jcv8jeeu-38jcv8jeeu.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.WebProxy#[.{fingerprint=38jcv8jeeu}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebProxy.38jcv8jeeu.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"x8z2lgf060","Integrity":"8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebProxy.38jcv8jeeu.wasm","FileLength":5621,"LastWriteTime":"2026-03-18T16:34:25.6162936+00:00"},"eFHUZ6SW8DStvQ0NpoRebTN7s1taz5jXJyLNCyOUZ50=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zc08r46902-{0}-nv5izr3rt6-nv5izr3rt6.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.WebSockets.Client#[.{fingerprint=nv5izr3rt6}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebSockets.Client.nv5izr3rt6.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"whi0oxky18","Integrity":"XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebSockets.Client.nv5izr3rt6.wasm","FileLength":17919,"LastWriteTime":"2026-03-18T16:34:25.6217951+00:00"},"DMfmbyf1KQsXH5TjiRK7Jlx/EPY\u002BM8h0TgHmZHnts8c=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ttu14uxg7m-{0}-hdzn84g6uh-hdzn84g6uh.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.WebSockets#[.{fingerprint=hdzn84g6uh}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebSockets.hdzn84g6uh.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"rwv4qr12j8","Integrity":"dU\u002BUigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI\u002BXOhDlo=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebSockets.hdzn84g6uh.wasm","FileLength":40574,"LastWriteTime":"2026-03-18T16:34:25.629796+00:00"},"BN1EMH3Z8k\u002BRwtch9WrvMpGS6LxMArH6QrqcR5gAfz4=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mwxs9jgpi5-{0}-zku96ychk7-zku96ychk7.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net#[.{fingerprint=zku96ychk7}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.zku96ychk7.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ir1et9ocs2","Integrity":"boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.zku96ychk7.wasm","FileLength":2754,"LastWriteTime":"2026-03-18T16:34:25.6327948+00:00"},"MLQghs\u002BWs95UXA0NsIUlDn/THXy/4yTvuaxPM5kybaE=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tmgotixosa-{0}-1l8xruz8uh-1l8xruz8uh.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Numerics.Vectors#[.{fingerprint=1l8xruz8uh}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Numerics.Vectors.1l8xruz8uh.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"1zn0i5c3ic","Integrity":"XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Numerics.Vectors.1l8xruz8uh.wasm","FileLength":2275,"LastWriteTime":"2026-03-18T16:34:25.6017948+00:00"},"pLvXAsyXO6\u002BBIIk0I7ksGnn\u002B8CF\u002B0z1Ss2IPmQXEx9E=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fmcag5xdn2-{0}-on9qk50okp-on9qk50okp.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Numerics#[.{fingerprint=on9qk50okp}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Numerics.on9qk50okp.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"yf0mwfai6t","Integrity":"voekoedDuJB1hD6RJCQzaKMRJQCT1j\u002BgGGuU4stRKxQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Numerics.on9qk50okp.wasm","FileLength":2037,"LastWriteTime":"2026-03-18T16:34:25.6047946+00:00"},"bxtuyCv4ObCZAkwM/qj/gpU9LGg40jxWC2YQ\u002BedTncU=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\f62yejuwjc-{0}-4omhtq90sd-4omhtq90sd.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.ObjectModel#[.{fingerprint=4omhtq90sd}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ObjectModel.4omhtq90sd.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"qwqekt33jv","Integrity":"RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ObjectModel.4omhtq90sd.wasm","FileLength":13356,"LastWriteTime":"2026-03-18T16:34:25.6097938+00:00"},"XRP3R1dZh0PiuOPULh1b1EVV2MsJfeYn9I2OHhuuh\u002Bg=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\g0qzdert85-{0}-zlwtcvnuqv-zlwtcvnuqv.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Private.DataContractSerialization#[.{fingerprint=zlwtcvnuqv}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.DataContractSerialization.zlwtcvnuqv.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"b2kfnzp5bc","Integrity":"U8bHrnrwmyw\u002BRjJn01pArdoD1oPemXHEnE9QZwg\u002By7E=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.DataContractSerialization.zlwtcvnuqv.wasm","FileLength":301793,"LastWriteTime":"2026-03-18T16:34:25.6492954+00:00"},"zDeTN9espyBhHmXJ2vGIKH\u002BVyPPgnc8wdLAlUBWDKm0=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\e67ma35du3-{0}-clehp4avpy-clehp4avpy.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Private.Uri#[.{fingerprint=clehp4avpy}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.Uri.clehp4avpy.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ppfsjc24fs","Integrity":"jQERn00SqaFrG/nTDM3xa14\u002BEabt5OTHVhIC3z67EJ8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.Uri.clehp4avpy.wasm","FileLength":42319,"LastWriteTime":"2026-03-18T16:34:25.6527951+00:00"},"bKZEtQZSC6oQz03EVYaVeRt0QmOjh0gvdY1xArukgsc=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\93opzeh57b-{0}-ga3n3gh9b6-ga3n3gh9b6.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Private.Xml.Linq#[.{fingerprint=ga3n3gh9b6}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.Xml.Linq.ga3n3gh9b6.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"z02ij3rv9o","Integrity":"wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.Xml.Linq.ga3n3gh9b6.wasm","FileLength":58633,"LastWriteTime":"2026-03-18T16:34:25.6587952+00:00"},"4AP43CP9YZAWbDbyUWFaBwp2ZcFu\u002B8aBJ0y\u002BJ1RqY\u002BU=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\byxake4xdz-{0}-g9rvjereoe-g9rvjereoe.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Private.Xml#[.{fingerprint=g9rvjereoe}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.Xml.g9rvjereoe.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"daids8fpga","Integrity":"K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.Xml.g9rvjereoe.wasm","FileLength":1053126,"LastWriteTime":"2026-03-18T16:34:25.7162989+00:00"},"IFulfUFbuhnmzSRZHDS3c7l7epEJMnR0ahbF0fSFCG8=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jjcxq3ejac-{0}-b7qn4zpc0q-b7qn4zpc0q.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Reflection.DispatchProxy#[.{fingerprint=b7qn4zpc0q}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.DispatchProxy.b7qn4zpc0q.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"eqyyjrpmbo","Integrity":"VjPcC6pnNHonOv5yN\u002BrkAodoAOuqKhg5\u002BLh7DeaFX6w=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.DispatchProxy.b7qn4zpc0q.wasm","FileLength":12687,"LastWriteTime":"2026-03-18T16:34:25.6332943+00:00"},"axLp/d24rZOxE91thVmqeKlxIesKDOsNXc8JVaG9yG8=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i8msa0z88m-{0}-x0vkqyycss-x0vkqyycss.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Reflection.Emit.ILGeneration#[.{fingerprint=x0vkqyycss}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"o2w8yjk0oz","Integrity":"YCJJ6\u002B9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm","FileLength":2283,"LastWriteTime":"2026-03-18T16:34:25.6352948+00:00"},"apxaHJhngUpOfKNaBPXo\u002B26B71PafFFnNy2OIwFn2LI=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gremm5qhcr-{0}-3tzjd7znni-3tzjd7znni.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Reflection.Emit.Lightweight#[.{fingerprint=3tzjd7znni}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.3tzjd7znni.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"8l6oh4glwo","Integrity":"XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.3tzjd7znni.wasm","FileLength":2237,"LastWriteTime":"2026-03-18T16:34:25.6367948+00:00"},"Enc2OBVPHj\u002BnH1XM5qmoRB7U\u002BYNpyHl1XveDkLDPsdA=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\p1p1dduoka-{0}-3t7flfwg7o-3t7flfwg7o.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Reflection.Emit#[.{fingerprint=3t7flfwg7o}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Emit.3t7flfwg7o.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"7klo5pzc4x","Integrity":"2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB\u002B/fH3\u002Bh59ZMQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Emit.3t7flfwg7o.wasm","FileLength":53251,"LastWriteTime":"2026-03-18T16:34:25.642295+00:00"},"cL4v/8UDARqs2FLHlWBApsh4Fnmst1n4F8Fx9dGFzfI=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vtgrfa0p11-{0}-ymwga5opgl-ymwga5opgl.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Reflection.Extensions#[.{fingerprint=ymwga5opgl}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Extensions.ymwga5opgl.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"cx1gfip5ma","Integrity":"QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Extensions.ymwga5opgl.wasm","FileLength":2163,"LastWriteTime":"2026-03-18T16:34:25.6327948+00:00"},"RIB2A9s2BXGK2xchjs8oyYXiTsFriC7FRk9aZr94v8o=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\k6k7jlyl2f-{0}-9lgg9wjd2a-9lgg9wjd2a.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Reflection.Metadata#[.{fingerprint=9lgg9wjd2a}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Metadata.9lgg9wjd2a.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"5mtud3umo5","Integrity":"bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Metadata.9lgg9wjd2a.wasm","FileLength":192211,"LastWriteTime":"2026-03-18T16:34:25.6217951+00:00"},"A3anrejOF8dIeAXkjss4yvtN8ynz4KnljuaBeS80lds=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tdpp3qw974-{0}-n2ngq6as7g-n2ngq6as7g.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Reflection.Primitives#[.{fingerprint=n2ngq6as7g}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Primitives.n2ngq6as7g.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"lahejca87r","Integrity":"DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Primitives.n2ngq6as7g.wasm","FileLength":2362,"LastWriteTime":"2026-03-18T16:34:25.6257947+00:00"},"Gm8mpB6snwGvN0WHhJ/7HczTAe7vRAB10WrZsnJWyNc=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hoalsbog2o-{0}-ivmzcfvrc6-ivmzcfvrc6.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Reflection.TypeExtensions#[.{fingerprint=ivmzcfvrc6}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.TypeExtensions.ivmzcfvrc6.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"4jyu10wr5a","Integrity":"UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.TypeExtensions.ivmzcfvrc6.wasm","FileLength":5862,"LastWriteTime":"2026-03-18T16:34:25.6307933+00:00"},"W9MFLgHlIPEmoZJSNAoclBtBhTYFf/K4XkciiCZeEvs=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m0i5wjywsx-{0}-v4mfyzbte8-v4mfyzbte8.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Reflection#[.{fingerprint=v4mfyzbte8}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.v4mfyzbte8.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"c0fw9fozii","Integrity":"/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC\u002BmIfPng=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.v4mfyzbte8.wasm","FileLength":2471,"LastWriteTime":"2026-03-18T16:34:25.6327948+00:00"},"wi1gTsTgz1/FbHyqfXer4PjheqVsT2DuVMeSt4ANwEk=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\xtefui8dpc-{0}-c9z9nieytf-c9z9nieytf.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Resources.Reader#[.{fingerprint=c9z9nieytf}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Resources.Reader.c9z9nieytf.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"6sus8qhlnm","Integrity":"1orAa7wgWqUC5\u002Bt1CwkbCCzkSPLo2j31WQDkwqTKjLI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Resources.Reader.c9z9nieytf.wasm","FileLength":2131,"LastWriteTime":"2026-03-18T16:34:25.6342942+00:00"},"K0e3uzmvZRGnT0bAj0ROLRbmZJwyqpYwVSO2Sz54YUY=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qrheoix2ig-{0}-f3fiwdwb50-f3fiwdwb50.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Resources.ResourceManager#[.{fingerprint=f3fiwdwb50}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Resources.ResourceManager.f3fiwdwb50.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0mnxpc9lyj","Integrity":"yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf\u002B7YUIg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Resources.ResourceManager.f3fiwdwb50.wasm","FileLength":2248,"LastWriteTime":"2026-03-18T16:34:25.6362939+00:00"},"N\u002By4zgYR27QtZpRL4y47AwfrXP/r4xsCq1kmBP//WPk=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\szit2ufpnx-{0}-tx9namivq6-tx9namivq6.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Resources.Writer#[.{fingerprint=tx9namivq6}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Resources.Writer.tx9namivq6.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"3pift1if2v","Integrity":"mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3\u002BL0gqHhw1mw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Resources.Writer.tx9namivq6.wasm","FileLength":7584,"LastWriteTime":"2026-03-18T16:34:25.5982942+00:00"},"GvHWqm\u002BAHrGP4sQh7eYiuepYrMwFU/0HifpL2nHyUnk=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3txc49hfsy-{0}-5yw8jyjkyt-5yw8jyjkyt.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.CompilerServices.Unsafe#[.{fingerprint=5yw8jyjkyt}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bh824og9pz","Integrity":"b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm","FileLength":2135,"LastWriteTime":"2026-03-18T16:34:25.6022949+00:00"},"QWot7UlzbXT8/n\u002B07zUf0xyGxgObgWlXLkG1d9dKuS0=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\me1or200pv-{0}-ddbsai2xh9-ddbsai2xh9.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.CompilerServices.VisualC#[.{fingerprint=ddbsai2xh9}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"v9gpkfoy8o","Integrity":"XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm","FileLength":3049,"LastWriteTime":"2026-03-18T16:34:25.606794+00:00"},"ELQOY/296\u002B1AWsXR1Zdu/s1Q\u002B5hYntq9w5EGKKcBBZE=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4syo1xqmc8-{0}-f4fqaba1oz-f4fqaba1oz.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Extensions#[.{fingerprint=f4fqaba1oz}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Extensions.f4fqaba1oz.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"txhuzt8zv6","Integrity":"UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Extensions.f4fqaba1oz.wasm","FileLength":2997,"LastWriteTime":"2026-03-18T16:34:25.6157944+00:00"},"sYT3zexwRZSlN17sgq/vMi3KmzwxPyI6XQ448QNHDaY=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fz4pecsmjf-{0}-kpe61fymig-kpe61fymig.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Handles#[.{fingerprint=kpe61fymig}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Handles.kpe61fymig.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"l3c23v44di","Integrity":"P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Handles.kpe61fymig.wasm","FileLength":2214,"LastWriteTime":"2026-03-18T16:34:25.6187933+00:00"},"iElRyTZRTqQBBZyRi34QRR80Cz6nvZCOjEuqWN4J1uk=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\h9925thw3k-{0}-ythr5w8c2e-ythr5w8c2e.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.InteropServices.JavaScript#[.{fingerprint=ythr5w8c2e}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ajxd2v6lfp","Integrity":"BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm","FileLength":31832,"LastWriteTime":"2026-03-18T16:34:25.6257947+00:00"},"mtp5DrhIR5PDtg/2j7QFGFmtFjZ6TMPfmO1m28JrOas=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zx6kj3xmnr-{0}-esodb2rpbi-esodb2rpbi.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.InteropServices.RuntimeInformation#[.{fingerprint=esodb2rpbi}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"hjiemymc38","Integrity":"XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm","FileLength":2159,"LastWriteTime":"2026-03-18T16:34:25.6012944+00:00"},"fIJB15Cj\u002BYmrkmDA/28DonOyKOf5MAY3b27vNFHDhgc=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0st0knthx5-{0}-02r2ubft18-02r2ubft18.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.InteropServices#[.{fingerprint=02r2ubft18}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.InteropServices.02r2ubft18.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"a0n0ubbzpl","Integrity":"hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.InteropServices.02r2ubft18.wasm","FileLength":23552,"LastWriteTime":"2026-03-18T16:34:25.6057946+00:00"},"\u002BVPXdjF5wuF\u002BDjzWkXLnfqjQmPd8Yv/vtQqviQB\u002BqDI=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\7yd9j54hd0-{0}-j8lrpban8m-j8lrpban8m.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Intrinsics#[.{fingerprint=j8lrpban8m}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Intrinsics.j8lrpban8m.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bbrcg1brto","Integrity":"RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Intrinsics.j8lrpban8m.wasm","FileLength":2843,"LastWriteTime":"2026-03-18T16:34:25.6102945+00:00"},"F/xlG/Pqo7h7ke6c3Zn7G\u002Bh4NkybId8X6Es3ElHTJmE=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\06jmrwgemt-{0}-bm8d2pac0a-bm8d2pac0a.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Loader#[.{fingerprint=bm8d2pac0a}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Loader.bm8d2pac0a.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"u8iepuojih","Integrity":"InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Loader.bm8d2pac0a.wasm","FileLength":2330,"LastWriteTime":"2026-03-18T16:34:25.6157944+00:00"},"DwUy8biEBfr7vKVW1rtmXb9P5fvnp0gMQq9mFA31q0E=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\b1pqie8d42-{0}-e3fl2oogjk-e3fl2oogjk.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Numerics#[.{fingerprint=e3fl2oogjk}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Numerics.e3fl2oogjk.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"og1ky6ahsr","Integrity":"aF6mF\u002BLwWwQh5L02TIAB80cZiImP\u002BixTkkvJQC13xSs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Numerics.e3fl2oogjk.wasm","FileLength":52773,"LastWriteTime":"2026-03-18T16:34:25.6232935+00:00"},"gFdMiD\u002BS/NlGzaWU08HIo4alMo6cJDMh85Xe146Mcfo=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4k92vl8md2-{0}-a0v88kqnif-a0v88kqnif.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Serialization.Formatters#[.{fingerprint=a0v88kqnif}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.a0v88kqnif.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"pdepispd6w","Integrity":"89g\u002BMXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.a0v88kqnif.wasm","FileLength":24114,"LastWriteTime":"2026-03-18T16:34:25.629796+00:00"},"4myv7Y\u002B9x6Mz4wNB\u002B20K9sJfZnZGpk3WxvnoxU963rs=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wxwyng4xk0-{0}-pez04wd9mo-pez04wd9mo.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Serialization.Json#[.{fingerprint=pez04wd9mo}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Json.pez04wd9mo.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"llewqzbb1s","Integrity":"F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Json.pez04wd9mo.wasm","FileLength":2264,"LastWriteTime":"2026-03-18T16:34:25.5922929+00:00"},"Q7SNPFIPSOo4yK/jYk2vNO24AiF/EaYLgF7xrBB3CpI=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\j81tt1y6rj-{0}-xy5d3j3dn1-xy5d3j3dn1.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Serialization.Primitives#[.{fingerprint=xy5d3j3dn1}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"c44nsj5fc5","Integrity":"nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm","FileLength":5419,"LastWriteTime":"2026-03-18T16:34:25.594293+00:00"},"0XM5BPGl0Py1wTHSK9k7R3HgR1m0bd9yXGCLwtHiVyM=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8pmauzinw9-{0}-mmwsbcsgly-mmwsbcsgly.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Serialization.Xml#[.{fingerprint=mmwsbcsgly}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.mmwsbcsgly.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"stzn0dpvhw","Integrity":"ILn\u002B2FJJ3\u002Boc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.mmwsbcsgly.wasm","FileLength":2570,"LastWriteTime":"2026-03-18T16:34:25.5972945+00:00"},"HOa1oyR5DPeBlHGBZj6PO3UxbGLZixjFYvTGRFnOxms=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mkj61d469a-{0}-qfpmfujegm-qfpmfujegm.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Serialization#[.{fingerprint=qfpmfujegm}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.qfpmfujegm.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"1z5o61ix8q","Integrity":"wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.qfpmfujegm.wasm","FileLength":2505,"LastWriteTime":"2026-03-18T16:34:25.6022949+00:00"},"SPFZmFzTx9FWgNOMn8JFX75yz3YwuxXSRlE5YLfijZg=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\9ru0gm9zti-{0}-k6ze2203p2-k6ze2203p2.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime#[.{fingerprint=k6ze2203p2}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.k6ze2203p2.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ey60xjxn2s","Integrity":"yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.k6ze2203p2.wasm","FileLength":10833,"LastWriteTime":"2026-03-18T16:34:25.606794+00:00"},"McyNtn6zyHmv6P3Odmjy1Eq5lAjpXC6Y1xiTk2BTaWM=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\9n1qe841ua-{0}-4mxo8hy5cn-4mxo8hy5cn.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security.AccessControl#[.{fingerprint=4mxo8hy5cn}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.AccessControl.4mxo8hy5cn.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bgmvr02kn5","Integrity":"lWEPXSnO9YHOWkOitnoCn78jV\u002BVQ3p\u002BoX6yEQUNBtak=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.AccessControl.4mxo8hy5cn.wasm","FileLength":16828,"LastWriteTime":"2026-03-18T16:34:25.6152927+00:00"},"hQmP\u002BZQjQP3uEVahoRCbt1q36m5ijmphYzHyJ74JAJ0=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\awwlmj7zy5-{0}-9n1yusa5e5-9n1yusa5e5.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security.Claims#[.{fingerprint=9n1yusa5e5}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Claims.9n1yusa5e5.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"lcn83o9k5m","Integrity":"ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Claims.9n1yusa5e5.wasm","FileLength":16556,"LastWriteTime":"2026-03-18T16:34:25.5937934+00:00"},"ZZzd7bxobk1GTyO7wimEK9ggygzpN1ZZZxTXT2NxfdE=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m02xm5ue7p-{0}-4dnz7b15a9-4dnz7b15a9.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography.Algorithms#[.{fingerprint=4dnz7b15a9}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ybki534pum","Integrity":"kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm","FileLength":2712,"LastWriteTime":"2026-03-18T16:34:25.595293+00:00"},"PRAsIy7f7rOVCgBYwy16xphLCFeCTeaJayBBLv53/ns=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jhjpqkptaq-{0}-dyaxkkx3lb-dyaxkkx3lb.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography.Cng#[.{fingerprint=dyaxkkx3lb}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dyaxkkx3lb.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"y5vw5769bq","Integrity":"xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dyaxkkx3lb.wasm","FileLength":2476,"LastWriteTime":"2026-03-18T16:34:25.6022949+00:00"},"TyhtMyuY6Fg2WYnXgbl0mLXdNhKu4PIzQdjtQQuVHdo=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\v9jar86jna-{0}-20t5iw27a6-20t5iw27a6.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography.Csp#[.{fingerprint=20t5iw27a6}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Csp.20t5iw27a6.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ye9z1wtmih","Integrity":"lnREpN0XsHOYqA0opLdAO3lidv\u002BBWgsO7J9YixuO7Ek=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Csp.20t5iw27a6.wasm","FileLength":2335,"LastWriteTime":"2026-03-18T16:34:25.6057946+00:00"},"J3y8O2q/1iqp6VNUlW30TUVpnNzCjgPpjq4AN8AAcYQ=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\uu7wfp4do2-{0}-0lu5m0tfx2-0lu5m0tfx2.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography.Encoding#[.{fingerprint=0lu5m0tfx2}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"fw6kh8k1tw","Integrity":"EU\u002BwGvCVJ4P\u002BUOsj9//iW0AlKp9btnatielTiNJBJcg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm","FileLength":2280,"LastWriteTime":"2026-03-18T16:34:25.6102945+00:00"},"8\u002BvraeNJphzR14NqE6hA42IbW2PnGvWgJANhYW\u002BlqCk=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\12m83h5a1i-{0}-4m4pzjxi3g-4m4pzjxi3g.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography.OpenSsl#[.{fingerprint=4m4pzjxi3g}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"rdx3jhokd5","Integrity":"vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm","FileLength":2222,"LastWriteTime":"2026-03-18T16:34:25.6162936+00:00"},"nJPNrfYI3Y\u002Bn/YeYeA6N7ViYkp\u002BQm88/11wUIioX2OE=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ly70359tb6-{0}-7bcdd4uolu-7bcdd4uolu.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography.Primitives#[.{fingerprint=7bcdd4uolu}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.7bcdd4uolu.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"h32r6tttj6","Integrity":"o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.7bcdd4uolu.wasm","FileLength":2347,"LastWriteTime":"2026-03-18T16:34:25.5932933+00:00"},"KPgnPkLVL3YoFSEk08yGggwwlBWOvNOzaWLOkfsswAQ=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\rz1qtq0z6d-{0}-dmew7c9amv-dmew7c9amv.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography.X509Certificates#[.{fingerprint=dmew7c9amv}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"qcmgapxu82","Integrity":"KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm","FileLength":2671,"LastWriteTime":"2026-03-18T16:34:25.5947931+00:00"},"4DdG33f9\u002BZ8IEcOUl7snYM8J6X48LlhjgswBugrwjCQ=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gqmneoqstx-{0}-5rp84ijz8t-5rp84ijz8t.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography#[.{fingerprint=5rp84ijz8t}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.5rp84ijz8t.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"zdpmmy3hvx","Integrity":"\u002Bcc/6iMbtCGe4lJSUBpqM9Iz\u002BzmOtzmaN9d9P0n488Y=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.5rp84ijz8t.wasm","FileLength":227329,"LastWriteTime":"2026-03-18T16:34:25.6282949+00:00"},"pOblUrsIjmPL05HIoELs4TyxjRK0JPueZ5VnVyKZfeA=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sl0sft7bkv-{0}-7ssqvw2wfy-7ssqvw2wfy.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security.Principal.Windows#[.{fingerprint=7ssqvw2wfy}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Principal.Windows.7ssqvw2wfy.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"isx6bre34i","Integrity":"ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Principal.Windows.7ssqvw2wfy.wasm","FileLength":11089,"LastWriteTime":"2026-03-18T16:34:25.6182938+00:00"},"p6mgkbRemJ/Vani0pDMTNntw0yb6rSp5iIqALh3rtCk=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8ynwqwcefg-{0}-j5dp7k8x6u-j5dp7k8x6u.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security.Principal#[.{fingerprint=j5dp7k8x6u}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Principal.j5dp7k8x6u.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"t59yqcarie","Integrity":"HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Principal.j5dp7k8x6u.wasm","FileLength":2175,"LastWriteTime":"2026-03-18T16:34:25.6227955+00:00"},"VCmT8Eo1CNGsY0q5RXPCXxR5eJNrTrSJYdmkqmAJaAY=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ogcs9ucvrf-{0}-7weoywtuje-7weoywtuje.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security.SecureString#[.{fingerprint=7weoywtuje}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.SecureString.7weoywtuje.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"tplt9bq51t","Integrity":"z1d7DJCtVET38L4E8jsKPU74oYmXTU\u002B/72XtA4idVfM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.SecureString.7weoywtuje.wasm","FileLength":2205,"LastWriteTime":"2026-03-18T16:34:25.6277938+00:00"},"d\u002B9pMzw5ZoYizu4mSyclYmKCD7vjMk5KqqdyXNh6uL0=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8srr1acehr-{0}-snpv53zusk-snpv53zusk.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security#[.{fingerprint=snpv53zusk}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.snpv53zusk.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"rrzajs05pn","Integrity":"l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.snpv53zusk.wasm","FileLength":2967,"LastWriteTime":"2026-03-18T16:34:25.5932933+00:00"},"m4bXBTU\u002B6dUvaWjyEO2KhI\u002BG4Koz721h3VwI48IUmPA=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i30lqfoca8-{0}-3f1khl8k32-3f1khl8k32.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.ServiceModel.Web#[.{fingerprint=3f1khl8k32}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ServiceModel.Web.3f1khl8k32.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"lav6j5stx6","Integrity":"E/XyCarft/OY/0mXV3BOpJ\u002BFbP8Tq99ttdKYdp/Dkw4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ServiceModel.Web.3f1khl8k32.wasm","FileLength":2547,"LastWriteTime":"2026-03-18T16:34:25.595293+00:00"},"UyE7EHCv7/GXOB3MEHZVBwMVBoYanzZLUmj4r6Wy4gc=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zlxnfbxifc-{0}-a95c1olw0i-a95c1olw0i.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.ServiceProcess#[.{fingerprint=a95c1olw0i}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ServiceProcess.a95c1olw0i.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"me2z6mjve0","Integrity":"EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ServiceProcess.a95c1olw0i.wasm","FileLength":2307,"LastWriteTime":"2026-03-18T16:34:25.6017948+00:00"},"vVUXsXJisbKeBMfYTvgHamEzy5PZoncdG3v5SWoJcjc=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\d2kqqmb0bv-{0}-8bhn50uz8f-8bhn50uz8f.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Text.Encoding.CodePages#[.{fingerprint=8bhn50uz8f}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encoding.CodePages.8bhn50uz8f.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"mdh6jg86ph","Integrity":"hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encoding.CodePages.8bhn50uz8f.wasm","FileLength":515711,"LastWriteTime":"2026-03-18T16:34:25.6317945+00:00"},"AQb3DFLQjUg264hZeXF3\u002B1batYL4vRSIYWcIAMj14u0=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m10se0yx1g-{0}-tqz9dyg6j7-tqz9dyg6j7.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Text.Encoding.Extensions#[.{fingerprint=tqz9dyg6j7}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encoding.Extensions.tqz9dyg6j7.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"2opuvzttkl","Integrity":"jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encoding.Extensions.tqz9dyg6j7.wasm","FileLength":2258,"LastWriteTime":"2026-03-18T16:34:25.6337944+00:00"},"HA2v8C8wJeiwYsvIOasMfuMPqCcfsAEJMXS31Hq1D9Q=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\w4xw0gq3pj-{0}-s9ic8sulfi-s9ic8sulfi.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Text.Encoding#[.{fingerprint=s9ic8sulfi}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encoding.s9ic8sulfi.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"wkro82bmx3","Integrity":"oCHQApQjJzoAAIZvV56\u002BoT72Q8dP\u002BcDF6fRCy5veunA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encoding.s9ic8sulfi.wasm","FileLength":2244,"LastWriteTime":"2026-03-18T16:34:25.6357935+00:00"},"UYyEeRVu4hTCxz7pIaSa0pw0UXWEYkTIvsOgIzHVVf4=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wqsee81gb1-{0}-07hq35kp92-07hq35kp92.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Text.Encodings.Web#[.{fingerprint=07hq35kp92}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encodings.Web.07hq35kp92.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"uo8zg9bp7s","Integrity":"vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encodings.Web.07hq35kp92.wasm","FileLength":22077,"LastWriteTime":"2026-03-18T16:34:25.5947931+00:00"},"vuXq5r0IKbyhnpBhYIYO7ryeTgkcEaxR\u002B\u002B3J8PGO83g=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0064fe6uur-{0}-2alhj4y3bm-2alhj4y3bm.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Text.Json#[.{fingerprint=2alhj4y3bm}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Json.2alhj4y3bm.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9e91cyfosn","Integrity":"L9bRjJmNXCzpvot51qkAUeXx\u002BgnWCH4UUe\u002BUH44LTcw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Json.2alhj4y3bm.wasm","FileLength":228692,"LastWriteTime":"2026-03-18T16:34:25.6282949+00:00"},"nLOgYShcUxYTzQnRlenhbYQ2aLIHLciqIsDl7LcxuTo=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\7d15z782y2-{0}-h1qtkesphd-h1qtkesphd.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Text.RegularExpressions#[.{fingerprint=h1qtkesphd}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.RegularExpressions.h1qtkesphd.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ejgp754x7r","Integrity":"BsUfIN9G\u002BAGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.RegularExpressions.h1qtkesphd.wasm","FileLength":158442,"LastWriteTime":"2026-03-18T16:34:25.6452928+00:00"},"dbevUlwQQ6OEzYYbTV13HgbjEoqBv\u002BDvW4WfyvjNI4E=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\lbcric48ji-{0}-ruehy0ud5k-ruehy0ud5k.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Threading.AccessControl#[.{fingerprint=ruehy0ud5k}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.AccessControl.ruehy0ud5k.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"sxqijfks4m","Integrity":"INizfWoBGBPS5JA\u002BMDBrFx30NloM1x3iWHXRIySoW9s=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.AccessControl.ruehy0ud5k.wasm","FileLength":8489,"LastWriteTime":"2026-03-18T16:34:25.6197932+00:00"},"pGtBfel\u002BuAfBMq3qlDAvLM6bTHjCaa8dk74gkxDMKFU=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\rma0vjtbld-{0}-s3i62rxr2p-s3i62rxr2p.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Threading.Channels#[.{fingerprint=s3i62rxr2p}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Channels.s3i62rxr2p.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"p7z829j3zv","Integrity":"u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Channels.s3i62rxr2p.wasm","FileLength":24416,"LastWriteTime":"2026-03-18T16:34:25.6252943+00:00"},"9UXQnCbPxLR2Fn8FkE9d5zTQyVLxnfjXazb8UVn6KgU=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ywpa2qpg55-{0}-lzl7igry1t-lzl7igry1t.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Threading.Overlapped#[.{fingerprint=lzl7igry1t}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Overlapped.lzl7igry1t.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"qzi45nrx8u","Integrity":"2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Overlapped.lzl7igry1t.wasm","FileLength":2317,"LastWriteTime":"2026-03-18T16:34:25.629796+00:00"},"p8h6ouUG1IeLrNjgCikZn4DcWQEH5FlBeUGFOBFXs74=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\to8tkrj8cc-{0}-p9bjzp5pyo-p9bjzp5pyo.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Threading.Tasks.Dataflow#[.{fingerprint=p9bjzp5pyo}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"42hyvsnaqu","Integrity":"3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L\u002BjgysU3U=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm","FileLength":73245,"LastWriteTime":"2026-03-18T16:34:25.6017948+00:00"},"hKnIohGswhMM79uN74GtBoielbgBgjtAhpL\u002BfHPzZvI=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\7o4w0lfocu-{0}-unp0hcfijn-unp0hcfijn.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Threading.Tasks.Extensions#[.{fingerprint=unp0hcfijn}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.unp0hcfijn.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"qwyx5haebb","Integrity":"\u002BlfiMZyo8XNLEKW5qwYB7S08ya\u002BPlkeBikYb\u002BaKcSDw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.unp0hcfijn.wasm","FileLength":2307,"LastWriteTime":"2026-03-18T16:34:25.6057946+00:00"},"N5fRQGd2dd\u002B3KFJti2gFhiUp6oW9AE7VNPGxIunO2wY=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ohlfbgu01g-{0}-hyku0ejwye-hyku0ejwye.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Threading.Tasks.Parallel#[.{fingerprint=hyku0ejwye}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.hyku0ejwye.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ze0qpj2ft1","Integrity":"m0kiIyiKYU12IHuJA\u002BByY2\u002BnpUBZouojSf367hPkufk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.hyku0ejwye.wasm","FileLength":21088,"LastWriteTime":"2026-03-18T16:34:25.6152927+00:00"},"jpHhZjZyHTZfV2zN7NyntNkIM8jRTgoHTbz8nAWoIA8=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8rrnar5gtv-{0}-t0sjw89o0i-t0sjw89o0i.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Threading.Tasks#[.{fingerprint=t0sjw89o0i}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.t0sjw89o0i.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ih31xgx7gx","Integrity":"Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.t0sjw89o0i.wasm","FileLength":2575,"LastWriteTime":"2026-03-18T16:34:25.6172935+00:00"},"8B7y0D0PxJpSwBgjcc3lwic74DTlNqbUAR4KXjoqces=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wi7nbv7im4-{0}-nfbg9v9bn0-nfbg9v9bn0.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Threading.Thread#[.{fingerprint=nfbg9v9bn0}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Thread.nfbg9v9bn0.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"mdkrp4y6nu","Integrity":"FnecfvF\u002B0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Thread.nfbg9v9bn0.wasm","FileLength":2338,"LastWriteTime":"2026-03-18T16:34:25.6212949+00:00"},"Cw0jfCqPzdmH3cBncAsQ3P2q49MdqFhlFAdHG7Y5fPk=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5g4i44bi6s-{0}-jrzo6stg1k-jrzo6stg1k.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Threading.ThreadPool#[.{fingerprint=jrzo6stg1k}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.ThreadPool.jrzo6stg1k.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"6hixptdyye","Integrity":"yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.ThreadPool.jrzo6stg1k.wasm","FileLength":2260,"LastWriteTime":"2026-03-18T16:34:25.6252943+00:00"},"9JA8Be/NKOTLJmd7IdUdXVU/twy5boLjX3rVcETOkF4=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hq538hfxem-{0}-y8l1kxazi5-y8l1kxazi5.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Threading.Timer#[.{fingerprint=y8l1kxazi5}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Timer.y8l1kxazi5.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"o794zzlysj","Integrity":"pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Timer.y8l1kxazi5.wasm","FileLength":2137,"LastWriteTime":"2026-03-18T16:34:25.5932933+00:00"},"hqpdYhJimhNWBX9vRaVmstRWsHoyTsObXtOZVp4B6go=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\e2ypaal8k2-{0}-47ucbn1gg1-47ucbn1gg1.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Threading#[.{fingerprint=47ucbn1gg1}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.47ucbn1gg1.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ulv66c32nm","Integrity":"fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.47ucbn1gg1.wasm","FileLength":14695,"LastWriteTime":"2026-03-18T16:34:25.5957947+00:00"},"srXqfyUvqec0F7bHbZ2ZLuUa86D2OeNxrqieawKW\u002Bpc=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\uz6wr238mp-{0}-cig01jt23c-cig01jt23c.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Transactions.Local#[.{fingerprint=cig01jt23c}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Transactions.Local.cig01jt23c.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"vj5q1xzbda","Integrity":"ZazzicKvbqrM7rAtk2IZ5Ls\u002BkASADToq92r2ADJ6QJ8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Transactions.Local.cig01jt23c.wasm","FileLength":51451,"LastWriteTime":"2026-03-18T16:34:25.6072937+00:00"},"FgKAQtfqvO1f3rOBCsuE73Ru43miiEAnrfPVaXwWbLI=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kmdzqqqt27-{0}-pl50n6qbg7-pl50n6qbg7.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Transactions#[.{fingerprint=pl50n6qbg7}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Transactions.pl50n6qbg7.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"llh2keu3u7","Integrity":"Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Transactions.pl50n6qbg7.wasm","FileLength":2384,"LastWriteTime":"2026-03-18T16:34:25.6162936+00:00"},"\u002Bfs3/COU6hb6bo7SBaYvBQ6HuPJ7DUG3KHKDfGvQvRk=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\dy6tcjmb9q-{0}-mj3r9p0pcw-mj3r9p0pcw.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.ValueTuple#[.{fingerprint=mj3r9p0pcw}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ValueTuple.mj3r9p0pcw.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"iqz39h2edb","Integrity":"qgR9aVm9mSU0GNgsV\u002BwT/lKh\u002BlGIjp05qGmyXEO1diY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ValueTuple.mj3r9p0pcw.wasm","FileLength":2193,"LastWriteTime":"2026-03-18T16:34:25.6202933+00:00"},"HrpnL0ooQ25AP4QgQTq4lgI0rbu0z7SDJC62zIMwa\u002BA=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\pfi56k79hn-{0}-3jfxpyq4in-3jfxpyq4in.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Web.HttpUtility#[.{fingerprint=3jfxpyq4in}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Web.HttpUtility.3jfxpyq4in.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"028nsingxa","Integrity":"eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Web.HttpUtility.3jfxpyq4in.wasm","FileLength":9544,"LastWriteTime":"2026-03-18T16:34:25.6242937+00:00"},"BB\u002Bh6iSthXc27lRd3SZfqXzpHhveVueiK3cY4w06ZaQ=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\iok845swr0-{0}-2a6wq9gv6d-2a6wq9gv6d.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Web#[.{fingerprint=2a6wq9gv6d}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Web.2a6wq9gv6d.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"jo2b7bl28x","Integrity":"UyV1Fw58Zf5n2hqFxK95WOqr\u002B3JorUTt5\u002Bynwulymq4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Web.2a6wq9gv6d.wasm","FileLength":2127,"LastWriteTime":"2026-03-18T16:34:25.5937934+00:00"},"bs\u002Bm7Zv1TScYeaaHtiI9cpTiHSHj69Th0mUdCG1pMhg=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tvvpa50077-{0}-bw79ix589z-bw79ix589z.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Windows#[.{fingerprint=bw79ix589z}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Windows.bw79ix589z.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"24566f8mt4","Integrity":"YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Windows.bw79ix589z.wasm","FileLength":2281,"LastWriteTime":"2026-03-18T16:34:25.5957947+00:00"},"2b774RQN3Ktji/F3yIqOXVW1Re38sYnv6/f/pfHNYRM=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\79deazooef-{0}-nvnhbwdsg6-nvnhbwdsg6.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Xml.Linq#[.{fingerprint=nvnhbwdsg6}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.Linq.nvnhbwdsg6.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"u344kyov9m","Integrity":"NnZ\u002Beyix3kXLSUZoBtSZkyfD8\u002BPBOSJ9OcAVGvP9Bog=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.Linq.nvnhbwdsg6.wasm","FileLength":2209,"LastWriteTime":"2026-03-18T16:34:25.6012944+00:00"},"RtT0E7ab8qDuXT4AJiF3kKlif7Xiw2D99S2sJ869RR0=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kmp1cwjk7f-{0}-szsdminork-szsdminork.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Xml.ReaderWriter#[.{fingerprint=szsdminork}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.ReaderWriter.szsdminork.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9ad0wbobz3","Integrity":"v1BRg0vxtPiIPnzz2M9JSxROvOy\u002B7pWOOxKndAtIbaI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.ReaderWriter.szsdminork.wasm","FileLength":4021,"LastWriteTime":"2026-03-18T16:34:25.6042945+00:00"},"UlNzf42fAeXmVCuLiC8FA\u002B\u002BU52YUMzVIGrMvv408DVM=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\cagt9idkdm-{0}-b9imguls9w-b9imguls9w.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Xml.Serialization#[.{fingerprint=b9imguls9w}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.Serialization.b9imguls9w.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"2gx8hets28","Integrity":"UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.Serialization.b9imguls9w.wasm","FileLength":2252,"LastWriteTime":"2026-03-18T16:34:25.6087934+00:00"},"JapVTmHqKHJ3z7tq9TYRg/qnfSkYzHCDkPP/w2N4E7c=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\blwck2749u-{0}-8hg6c0at0c-8hg6c0at0c.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Xml.XDocument#[.{fingerprint=8hg6c0at0c}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XDocument.8hg6c0at0c.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"4o0fiht1d3","Integrity":"JPfoaVF8EWUV\u002B4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XDocument.8hg6c0at0c.wasm","FileLength":2395,"LastWriteTime":"2026-03-18T16:34:25.6157944+00:00"},"JoIiFQf6wQ3Bl4WflzlWpq9VKyx55\u002B7KdiI5u8feNws=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gsr2zhdiud-{0}-g7i5gd64yo-g7i5gd64yo.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Xml.XPath.XDocument#[.{fingerprint=g7i5gd64yo}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XPath.XDocument.g7i5gd64yo.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"kdk317qr42","Integrity":"6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XPath.XDocument.g7i5gd64yo.wasm","FileLength":2491,"LastWriteTime":"2026-03-18T16:34:25.6192934+00:00"},"Lyt12FPWYYiC567dCBG6GZ1pXGXp8QZYU\u002BmRUKMsId8=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\xo45czuveq-{0}-11wk1hhnfk-11wk1hhnfk.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Xml.XPath#[.{fingerprint=11wk1hhnfk}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XPath.11wk1hhnfk.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"214is7vbw1","Integrity":"5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XPath.11wk1hhnfk.wasm","FileLength":2320,"LastWriteTime":"2026-03-18T16:34:25.6227955+00:00"},"XrCv8lA8qsQOKty/YpWani3i3dS0BAfftcyzUfwYPfk=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ww3wnv8b6s-{0}-isetn6xlxa-isetn6xlxa.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Xml.XmlDocument#[.{fingerprint=isetn6xlxa}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XmlDocument.isetn6xlxa.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"dz24ujiuy1","Integrity":"520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XmlDocument.isetn6xlxa.wasm","FileLength":2362,"LastWriteTime":"2026-03-18T16:34:25.6277938+00:00"},"8JPH4/T1A8zXLPKohPznlJAiXWG3I1zkW9azS/gkSTs=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qt3o35adbl-{0}-okgnp5v9bw-okgnp5v9bw.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Xml.XmlSerializer#[.{fingerprint=okgnp5v9bw}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XmlSerializer.okgnp5v9bw.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"tjd36i6n6w","Integrity":"WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XmlSerializer.okgnp5v9bw.wasm","FileLength":2861,"LastWriteTime":"2026-03-18T16:34:25.6317945+00:00"},"gEb2TbtsbS/m166p76ehwqgn\u002Bwl0kO8dgakEomqurnc=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ra6e7v46m5-{0}-zjgi7nrlno-zjgi7nrlno.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Xml#[.{fingerprint=zjgi7nrlno}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.zjgi7nrlno.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"7bphnl6e9l","Integrity":"Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.zjgi7nrlno.wasm","FileLength":4217,"LastWriteTime":"2026-03-18T16:34:25.6337944+00:00"},"D4SJbilWD\u002Bzr260VtX6xXjyJOpBXDgpOpOIX9qSm8Hs=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5onvg4v1ie-{0}-7rk3uansaa-7rk3uansaa.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System#[.{fingerprint=7rk3uansaa}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.7rk3uansaa.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"c3f3hm8or8","Integrity":"KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.7rk3uansaa.wasm","FileLength":11781,"LastWriteTime":"2026-03-18T16:34:25.6362939+00:00"},"7v2uGjx2bWx/obW2eLGAneNIlF419wOL9zbFkpu3XbE=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\10vfj5e8p2-{0}-wz82kkc1p3-wz82kkc1p3.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/WindowsBase#[.{fingerprint=wz82kkc1p3}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\WindowsBase.wz82kkc1p3.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"f8gt6nt5v1","Integrity":"b4mSwQTirqZk648X1S\u002Bpd29OT1qWMQRvIu/dlpANxJc=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\WindowsBase.wz82kkc1p3.wasm","FileLength":2526,"LastWriteTime":"2026-03-18T16:34:25.6287946+00:00"},"Slpv7S5A1tPlOqpddfrXyFQT8hTG9z7RYV7ycKQCYi0=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6ixuumt5h1-{0}-555t1ekkz8-555t1ekkz8.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/mscorlib#[.{fingerprint=555t1ekkz8}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\mscorlib.555t1ekkz8.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"cf3kfqyddt","Integrity":"qDryqQ0g0iz9JqKIhX\u002BQMxC8XOFsfS09axL2RodrYR4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\mscorlib.555t1ekkz8.wasm","FileLength":14832,"LastWriteTime":"2026-03-18T16:34:25.6332943+00:00"},"SzztVC63\u002BrdU8vdnm4muEnw48hKH4YKzFu2qHx0H/fI=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8dl34ipw8j-{0}-0e3bjkca9m-0e3bjkca9m.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/netstandard#[.{fingerprint=0e3bjkca9m}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\netstandard.0e3bjkca9m.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"a7ek15y8at","Integrity":"GobSqpfyCY\u002BpON9mn8Z/xlb56m7Dt6ZBU1Q\u002BDW\u002BdmhE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\netstandard.0e3bjkca9m.wasm","FileLength":26086,"LastWriteTime":"2026-03-18T16:34:25.6372948+00:00"},"5SguK3bMDdmhHdrISydt4SdOGhtQE0gWdIBGTBN2xwc=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3zyfvkhmnk-{0}-koxlwnosh6-koxlwnosh6.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Private.CoreLib#[.{fingerprint=koxlwnosh6}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.CoreLib.koxlwnosh6.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"u4ey83ooeo","Integrity":"8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.CoreLib.koxlwnosh6.wasm","FileLength":1552335,"LastWriteTime":"2026-03-18T16:34:25.781299+00:00"},"tLzh0A0SYpsTg55lt6UDzmwl89LgdBfXrnkiY30LAbk=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jg5bcwzjkb-{0}-clndu25lif-clndu25lif.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/dotnet.js#[.{fingerprint=clndu25lif}]?.map.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"i4y67pcvny","Integrity":"viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.js.map","FileLength":19302,"LastWriteTime":"2026-03-18T16:34:25.7837991+00:00"},"Gq8/AG\u002BNTt35ugbdvHRTyPq27To42mKnpKwLR5jUl44=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4131vl2c0u-{0}-ykrnppwhq2-ykrnppwhq2.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/dotnet.native#[.{fingerprint=ykrnppwhq2}]!.js.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.native.ykrnppwhq2.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"xmtmurkslm","Integrity":"iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.native.ykrnppwhq2.js","FileLength":34666,"LastWriteTime":"2026-03-18T16:34:25.7877989+00:00"},"WVzne/msI0Z76jj7TU0I9Pll8xssCE/cwE403HDWp2k=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4gmvxkcg2g-{0}-53ez3dx5uy-53ez3dx5uy.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/dotnet.native#[.{fingerprint=53ez3dx5uy}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.native.53ez3dx5uy.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"wev1umwx52","Integrity":"SItRpPrdUzB1n8iy3he4\u002BrFOlyaI8t1ptZwbsk4wNvw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.native.53ez3dx5uy.wasm","FileLength":1187026,"LastWriteTime":"2026-03-18T16:34:25.7712993+00:00"},"xgYHq3uNBmvNyi82zLXk9qryGMJ\u002BuGskZqoaKT\u002Bl4m4=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\arn1xqjw1x-{0}-peu2mfb29t-peu2mfb29t.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/dotnet.runtime#[.{fingerprint=peu2mfb29t}]!.js.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.runtime.peu2mfb29t.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"iavj8wyhfn","Integrity":"1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.runtime.peu2mfb29t.js","FileLength":56611,"LastWriteTime":"2026-03-18T16:34:25.7762991+00:00"},"6BuBuEknhMPtG/Xst07VHQq1lqE\u002BFZtIz9KqBGTAsmM=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6fczie0f1k-{0}-y1cse46x0j-y1cse46x0j.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/dotnet.runtime.js#[.{fingerprint=y1cse46x0j}]?.map.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.runtime.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"k3l5g6t8d3","Integrity":"8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.runtime.js.map","FileLength":88502,"LastWriteTime":"2026-03-18T16:34:25.7892992+00:00"},"tBEz3ZzYFngbHMQr8FTfK\u002BJqOyZwYIWahJ9qbRFquCk=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\2noakrdf2j-{0}-tjcz0u77k5-tjcz0u77k5.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/icudt_CJK#[.{fingerprint=tjcz0u77k5}]!.dat.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\icudt_CJK.tjcz0u77k5.dat","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"su9h2nea1m","Integrity":"JKp\u002BT1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\icudt_CJK.tjcz0u77k5.dat","FileLength":333110,"LastWriteTime":"2026-03-18T16:34:25.8192989+00:00"},"UsymScHjr3ww\u002BaoGEVLeVoGgEhbDTW0EQiblBOQuIlw=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\yee81ivl95-{0}-tptq2av103-tptq2av103.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/icudt_EFIGS#[.{fingerprint=tptq2av103}]!.dat.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\icudt_EFIGS.tptq2av103.dat","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"fnxfkgr4e8","Integrity":"G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ\u002B3hRE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\icudt_EFIGS.tptq2av103.dat","FileLength":196037,"LastWriteTime":"2026-03-18T16:34:25.836299+00:00"},"rjwqL2P/4X1LPgqrz6jXYPCTWDjG5CJJM5hGUBw9I\u002B0=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gnkv5k3g9v-{0}-lfu7j35m59-lfu7j35m59.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/icudt_no_CJK#[.{fingerprint=lfu7j35m59}]!.dat.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\icudt_no_CJK.lfu7j35m59.dat","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"v385ycndre","Integrity":"S3rRs\u002BMOdWkA48i3UrKbP0iD\u002BIShrxe0Z0ZuQ7Mp9qk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\icudt_no_CJK.lfu7j35m59.dat","FileLength":317618,"LastWriteTime":"2026-03-18T16:34:25.863299+00:00"},"9RZF\u002BopR55iJCr4z/bPocsD\u002BB4I2MBkmcXmnVTIKFpc=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\f6u1msztxb-{0}-xhq6acanj0-xhq6acanj0.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/OnProfNext.Client#[.{fingerprint=xhq6acanj0}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\OnProfNext.Client.xhq6acanj0.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"mqrlhu4nlf","Integrity":"UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\OnProfNext.Client.xhq6acanj0.wasm","FileLength":14848,"LastWriteTime":"2026-03-18T16:34:25.6312937+00:00"},"5TrtGiPXYynyclEusV71sk/t6cOzd2LR0Y7cOFdT/vU=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\cycczivqx5-{0}-lplk7v275j-lplk7v275j.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/OnProfNext.Client#[.{fingerprint=lplk7v275j}]!.pdb.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\OnProfNext.Client.lplk7v275j.pdb","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"2v0j1pjbhw","Integrity":"4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E\u002BkCrzU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\OnProfNext.Client.lplk7v275j.pdb","FileLength":26158,"LastWriteTime":"2026-03-18T16:34:25.6342942+00:00"},"DVhpF4yh0RRzG4RpoflWehUuRj\u002BanhO8BAXUQIDMAbs=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qz9h56e7z8-{0}-kx7meqmil2-kx7meqmil2.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/dotnet#[.{fingerprint=kx7meqmil2}]?.js.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9d4679pf7x","Integrity":"Yymfth3lHWyaCEr\u002BJW8GA/RKmHHF1CKK8rW0g1wne6I=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.js","FileLength":25310,"LastWriteTime":"2026-03-18T16:34:25.6382944+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/OnProfNext.Client/obj/Debug/net10.0/ref/OnProfNext.Client.dll b/OnProfNext.Client/obj/Debug/net10.0/ref/OnProfNext.Client.dll new file mode 100644 index 0000000..2cd623a Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/ref/OnProfNext.Client.dll differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/refint/OnProfNext.Client.dll b/OnProfNext.Client/obj/Debug/net10.0/refint/OnProfNext.Client.dll new file mode 100644 index 0000000..2cd623a Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/refint/OnProfNext.Client.dll differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/rjimswa.dswa.cache.json b/OnProfNext.Client/obj/Debug/net10.0/rjimswa.dswa.cache.json new file mode 100644 index 0000000..599a547 --- /dev/null +++ b/OnProfNext.Client/obj/Debug/net10.0/rjimswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"mM8eeq7khgiV1Ho7QUmOpk+VtYcA7aET/3LQ1YVdmDk=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"R7Rea/YQmcweqCbKffD9oUelggfpJQX85r65aYZsas0=","InputHashes":["baZtsmkkFIOBdisxdqYpxKTijWFQ7K1cMUlsiwk03cY=","JDLLOUu6uJaVCLc1s4X31fNpBE8HJpOMV2Za0paLhbM="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/OnProfNext.Client/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json b/OnProfNext.Client/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json new file mode 100644 index 0000000..1667191 --- /dev/null +++ b/OnProfNext.Client/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"AHqUvtcq0/uGMCYQndTbkCTxTcoYUarDG7PCme/1A7Y=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["VE\u002BpR917HjFp9gYK1XDTmwHtO7D52AaupqiGoT47KOg=","UJnkQBNtjaxTikg3vmugRVAFtF6hvHDn4FaWCEz2zjM=","4CkZKjhmIpvEqKpnX4SHqDYTPppSz6VvTDTpl2HUdv8=","eI4bVy3Gh8j8eCYfgX8V8M7uHKKDISoT60q\u002BF8/UaQI=","R\u002BM/OthMdeQATqSrWj5YvibIW0f6FRHRb9KPZPxfx\u002Bk=","KtMcCZYV1pVsrd0MLUMfbt28YdvVhiWYMjq0fNuUdQA=","YoHWWZniXlAz04xBK8BQI1yYa1fxP/sbI2MFvwu9kuY=","4cFvcUIUrBodlCinZvANH95jRWA2Tv56JFz0JCB23r4=","597cJLP130m7F8NABJtyCFYjqBXBZZ\u002ByS79uvYE\u002ByYY=","8\u002BzS1fkNIeUtk2qi1DErgqc02\u002B6IPeIAkp\u002B6vFr6uK4=","m574K3xCoXT254R89TxToR59xHmi3gsExT8w\u002BHxiNyA=","2aX\u002BX\u002B4eE8xi\u002BR7ngW0cq03FjNfIsbVE\u002BusEwCQmFWI=","SqTDM3v2LWiW/nP3WnxvUb3FCx88S4FQBhwnCKof6mk="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/OnProfNext.Client/obj/Debug/net10.0/rjsmrazor.dswa.cache.json b/OnProfNext.Client/obj/Debug/net10.0/rjsmrazor.dswa.cache.json new file mode 100644 index 0000000..6eb64a2 --- /dev/null +++ b/OnProfNext.Client/obj/Debug/net10.0/rjsmrazor.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"nTZLcUNcq6m2VFEdFbcXfzvxonGExOJOO/jRXnOQPjE=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["VE\u002BpR917HjFp9gYK1XDTmwHtO7D52AaupqiGoT47KOg=","UJnkQBNtjaxTikg3vmugRVAFtF6hvHDn4FaWCEz2zjM=","4CkZKjhmIpvEqKpnX4SHqDYTPppSz6VvTDTpl2HUdv8=","eI4bVy3Gh8j8eCYfgX8V8M7uHKKDISoT60q\u002BF8/UaQI=","R\u002BM/OthMdeQATqSrWj5YvibIW0f6FRHRb9KPZPxfx\u002Bk=","KtMcCZYV1pVsrd0MLUMfbt28YdvVhiWYMjq0fNuUdQA=","YoHWWZniXlAz04xBK8BQI1yYa1fxP/sbI2MFvwu9kuY=","4cFvcUIUrBodlCinZvANH95jRWA2Tv56JFz0JCB23r4=","597cJLP130m7F8NABJtyCFYjqBXBZZ\u002ByS79uvYE\u002ByYY=","8\u002BzS1fkNIeUtk2qi1DErgqc02\u002B6IPeIAkp\u002B6vFr6uK4=","m574K3xCoXT254R89TxToR59xHmi3gsExT8w\u002BHxiNyA=","2aX\u002BX\u002B4eE8xi\u002BR7ngW0cq03FjNfIsbVE\u002BusEwCQmFWI=","SqTDM3v2LWiW/nP3WnxvUb3FCx88S4FQBhwnCKof6mk="],"CachedAssets":{"SqTDM3v2LWiW/nP3WnxvUb3FCx88S4FQBhwnCKof6mk=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\Layout\\ReconnectModal.razor.js","SourceId":"OnProfNext.Client","SourceType":"Discovered","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\","BasePath":"/","RelativePath":"Layout/ReconnectModal#[.{fingerprint}]?.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ycbzh0sbjd","Integrity":"QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"Layout\\ReconnectModal.razor.js","FileLength":2746,"LastWriteTime":"2026-03-18T16:33:32.4827835+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/OnProfNext.Client/obj/Debug/net10.0/rpswa.dswa.cache.json b/OnProfNext.Client/obj/Debug/net10.0/rpswa.dswa.cache.json new file mode 100644 index 0000000..461a446 --- /dev/null +++ b/OnProfNext.Client/obj/Debug/net10.0/rpswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"ceVpLKOwAYIalAIdJEpP4itQE+Net5TgzJv3073CDrM=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["VE\u002BpR917HjFp9gYK1XDTmwHtO7D52AaupqiGoT47KOg=","UJnkQBNtjaxTikg3vmugRVAFtF6hvHDn4FaWCEz2zjM=","4CkZKjhmIpvEqKpnX4SHqDYTPppSz6VvTDTpl2HUdv8=","eI4bVy3Gh8j8eCYfgX8V8M7uHKKDISoT60q\u002BF8/UaQI=","R\u002BM/OthMdeQATqSrWj5YvibIW0f6FRHRb9KPZPxfx\u002Bk=","KtMcCZYV1pVsrd0MLUMfbt28YdvVhiWYMjq0fNuUdQA=","YoHWWZniXlAz04xBK8BQI1yYa1fxP/sbI2MFvwu9kuY=","4cFvcUIUrBodlCinZvANH95jRWA2Tv56JFz0JCB23r4=","597cJLP130m7F8NABJtyCFYjqBXBZZ\u002ByS79uvYE\u002ByYY=","8\u002BzS1fkNIeUtk2qi1DErgqc02\u002B6IPeIAkp\u002B6vFr6uK4=","m574K3xCoXT254R89TxToR59xHmi3gsExT8w\u002BHxiNyA="],"CachedAssets":{"VE\u002BpR917HjFp9gYK1XDTmwHtO7D52AaupqiGoT47KOg=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\appsettings.Development.json","SourceId":"OnProfNext.Client","SourceType":"Discovered","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\","BasePath":"/","RelativePath":"appsettings.Development#[.{fingerprint}]?.json","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"x0ueugt8gp","Integrity":"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\appsettings.Development.json","FileLength":119,"LastWriteTime":"2026-03-18T16:33:32.4217478+00:00"},"UJnkQBNtjaxTikg3vmugRVAFtF6hvHDn4FaWCEz2zjM=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\appsettings.json","SourceId":"OnProfNext.Client","SourceType":"Discovered","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\","BasePath":"/","RelativePath":"appsettings#[.{fingerprint}]?.json","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"x0ueugt8gp","Integrity":"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\appsettings.json","FileLength":119,"LastWriteTime":"2026-03-18T16:33:32.4227457+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/OnProfNext.Client/obj/Debug/net10.0/scopedcss/Layout/ReconnectModal.razor.rz.scp.css b/OnProfNext.Client/obj/Debug/net10.0/scopedcss/Layout/ReconnectModal.razor.rz.scp.css new file mode 100644 index 0000000..317aa53 --- /dev/null +++ b/OnProfNext.Client/obj/Debug/net10.0/scopedcss/Layout/ReconnectModal.razor.rz.scp.css @@ -0,0 +1,220 @@ +#components-reconnect-modal[b-4v5fhrpsm8] { + display: none; + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1400; + overflow: hidden; + background-color: transparent; + border: none; + width: 100%; + max-width: 100%; + max-height: 100%; + margin: 0; + padding: 0; +} + + #components-reconnect-modal[b-4v5fhrpsm8]::backdrop { + background: rgba(10, 16, 28, 0.5); + } + + #components-reconnect-modal.components-reconnect-show[b-4v5fhrpsm8], + #components-reconnect-modal[open][b-4v5fhrpsm8], + #components-reconnect-modal.components-reconnect-failed[b-4v5fhrpsm8], + #components-reconnect-modal.components-reconnect-repeated-attempt[b-4v5fhrpsm8], + #components-reconnect-modal.components-reconnect-paused[b-4v5fhrpsm8], + #components-reconnect-modal.components-reconnect-resume-failed[b-4v5fhrpsm8], + #components-reconnect-modal.components-pause[b-4v5fhrpsm8], + #components-reconnect-modal.components-resume-failed[b-4v5fhrpsm8] { + display: flex; + align-items: center; + justify-content: center; + } + +.components-reconnect-backdrop[b-4v5fhrpsm8] { + position: fixed; + inset: 0; + display: flex; + align-items: center; + justify-content: center; + padding: 24px; + background: radial-gradient(90% 60% at 80% 0%, color-mix(in srgb, var(--mud-palette-primary, #594AE2) 12%, transparent), transparent 60%), radial-gradient(80% 55% at 0% 100%, color-mix(in srgb, var(--mud-palette-info, #2196f3) 16%, transparent), transparent 62%), rgba(8, 12, 20, 0.5); +} + +.components-reconnect-surface[b-4v5fhrpsm8] { + width: min(480px, 100%); + border-radius: var(--mud-default-borderradius, 12px); + border: 1px solid color-mix(in srgb, var(--mud-palette-lines-default, #e0e0e0) 70%, transparent); + background: var(--mud-palette-surface, #fff); + box-shadow: var(--mud-elevation-24, 0 16px 30px rgba(0, 0, 0, 0.28)); + color: var(--mud-palette-text-primary, #1f2937); + padding: 20px 20px 18px; +} + +.components-reconnect-header[b-4v5fhrpsm8] { + display: flex; + align-items: center; + gap: 10px; + margin-bottom: 8px; +} + + .components-reconnect-header h2[b-4v5fhrpsm8] { + margin: 0; + font-size: 1.05rem; + font-weight: 600; + line-height: 1.3; + } + +.components-reconnect-status-dot[b-4v5fhrpsm8] { + width: 12px; + height: 12px; + border-radius: 50%; + background: var(--mud-palette-warning, #f59e0b); + box-shadow: 0 0 0 6px color-mix(in srgb, var(--mud-palette-warning, #f59e0b) 25%, transparent); +} + +.components-reconnect-supporting[b-4v5fhrpsm8], +.components-reconnect-message[b-4v5fhrpsm8] { + margin: 0; + line-height: 1.45; + font-size: 0.95rem; +} + +.components-reconnect-supporting[b-4v5fhrpsm8] { + color: var(--mud-palette-text-secondary, #52607a); + margin-bottom: 14px; +} + +.components-reconnect-message[b-4v5fhrpsm8] { + font-weight: 500; +} + +.components-reconnect-danger[b-4v5fhrpsm8] { + color: var(--mud-palette-error, #b00020); +} + +.components-reconnect-actions[b-4v5fhrpsm8] { + margin-top: 14px; + display: flex; + gap: 10px; + justify-content: flex-end; +} + +.components-reconnect-first-attempt-visible[b-4v5fhrpsm8], +.components-reconnect-repeated-attempt-visible[b-4v5fhrpsm8], +.components-reconnect-failed-visible[b-4v5fhrpsm8], +.components-pause-visible[b-4v5fhrpsm8], +.components-resume-failed-visible[b-4v5fhrpsm8] { + display: none; +} + +dialog[open].components-reconnect-show .components-reconnect-first-attempt-visible[b-4v5fhrpsm8] { + display: block; +} + +dialog[open].components-reconnect-show .components-rejoin-loader[b-4v5fhrpsm8] { + display: inline-flex; +} + +dialog[open].components-reconnect-failed .components-reconnect-failed-visible[b-4v5fhrpsm8] { + display: block; +} + +dialog[open].components-reconnect-failed #components-reconnect-button[b-4v5fhrpsm8] { + display: block; +} + +dialog[open].components-reconnect-repeated-attempt .components-reconnect-repeated-attempt-visible[b-4v5fhrpsm8] { + display: block; +} + +dialog[open].components-reconnect-repeated-attempt .components-rejoin-loader[b-4v5fhrpsm8] { + display: inline-flex; +} + +dialog[open].components-reconnect-paused .components-pause-visible[b-4v5fhrpsm8], +dialog[open].components-pause .components-pause-visible[b-4v5fhrpsm8] { + display: block; +} + +dialog[open].components-reconnect-paused #components-resume-button[b-4v5fhrpsm8], +dialog[open].components-pause #components-resume-button[b-4v5fhrpsm8], +dialog[open].components-reconnect-resume-failed #components-resume-button[b-4v5fhrpsm8], +dialog[open].components-resume-failed #components-resume-button[b-4v5fhrpsm8] { + display: block; +} + +dialog[open].components-reconnect-resume-failed .components-resume-failed-visible[b-4v5fhrpsm8], +dialog[open].components-resume-failed .components-resume-failed-visible[b-4v5fhrpsm8] { + display: block; +} + +.components-rejoin-loader[b-4v5fhrpsm8] { + display: none; + margin-bottom: 10px; + gap: 8px; +} + + .components-rejoin-loader div[b-4v5fhrpsm8] { + width: 9px; + height: 9px; + border-radius: 50%; + background-color: var(--mud-palette-primary, #594AE2); + animation: reconnect-pulse-b-4v5fhrpsm8 1.2s infinite ease-in-out both; + } + + .components-rejoin-loader div:nth-child(1)[b-4v5fhrpsm8] { + animation-delay: -0.24s; + } + + .components-rejoin-loader div:nth-child(2)[b-4v5fhrpsm8] { + animation-delay: -0.12s; + } + +@keyframes reconnect-pulse-b-4v5fhrpsm8 { + 0%, 80%, 100% { + transform: scale(0); + } + + 40% { + transform: scale(1); + } +} + +#components-reconnect-button[b-4v5fhrpsm8], +#components-resume-button[b-4v5fhrpsm8] { + display: none; + min-width: 92px; + cursor: pointer; + padding: 8px 16px; + border: 1px solid transparent; + border-radius: 999px; + background-color: var(--mud-palette-primary, #594AE2); + color: #fff; + font-size: 0.875rem; + font-weight: 600; + line-height: 1.2; + transition: filter 140ms ease, transform 140ms ease; +} + + #components-reconnect-button:hover[b-4v5fhrpsm8], + #components-resume-button:hover[b-4v5fhrpsm8] { + filter: brightness(0.95); + } + + #components-reconnect-button:active[b-4v5fhrpsm8], + #components-resume-button:active[b-4v5fhrpsm8] { + transform: translateY(1px); + } + +@media (max-width: 600px) { + .components-reconnect-backdrop[b-4v5fhrpsm8] { + padding: 14px; + } + + .components-reconnect-surface[b-4v5fhrpsm8] { + padding: 16px; + } +} diff --git a/OnProfNext.Client/obj/Debug/net10.0/scopedcss/bundle/OnProfNext.Client.styles.css b/OnProfNext.Client/obj/Debug/net10.0/scopedcss/bundle/OnProfNext.Client.styles.css new file mode 100644 index 0000000..00738e8 --- /dev/null +++ b/OnProfNext.Client/obj/Debug/net10.0/scopedcss/bundle/OnProfNext.Client.styles.css @@ -0,0 +1,221 @@ +/* /Layout/ReconnectModal.razor.rz.scp.css */ +#components-reconnect-modal[b-4v5fhrpsm8] { + display: none; + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1400; + overflow: hidden; + background-color: transparent; + border: none; + width: 100%; + max-width: 100%; + max-height: 100%; + margin: 0; + padding: 0; +} + + #components-reconnect-modal[b-4v5fhrpsm8]::backdrop { + background: rgba(10, 16, 28, 0.5); + } + + #components-reconnect-modal.components-reconnect-show[b-4v5fhrpsm8], + #components-reconnect-modal[open][b-4v5fhrpsm8], + #components-reconnect-modal.components-reconnect-failed[b-4v5fhrpsm8], + #components-reconnect-modal.components-reconnect-repeated-attempt[b-4v5fhrpsm8], + #components-reconnect-modal.components-reconnect-paused[b-4v5fhrpsm8], + #components-reconnect-modal.components-reconnect-resume-failed[b-4v5fhrpsm8], + #components-reconnect-modal.components-pause[b-4v5fhrpsm8], + #components-reconnect-modal.components-resume-failed[b-4v5fhrpsm8] { + display: flex; + align-items: center; + justify-content: center; + } + +.components-reconnect-backdrop[b-4v5fhrpsm8] { + position: fixed; + inset: 0; + display: flex; + align-items: center; + justify-content: center; + padding: 24px; + background: radial-gradient(90% 60% at 80% 0%, color-mix(in srgb, var(--mud-palette-primary, #594AE2) 12%, transparent), transparent 60%), radial-gradient(80% 55% at 0% 100%, color-mix(in srgb, var(--mud-palette-info, #2196f3) 16%, transparent), transparent 62%), rgba(8, 12, 20, 0.5); +} + +.components-reconnect-surface[b-4v5fhrpsm8] { + width: min(480px, 100%); + border-radius: var(--mud-default-borderradius, 12px); + border: 1px solid color-mix(in srgb, var(--mud-palette-lines-default, #e0e0e0) 70%, transparent); + background: var(--mud-palette-surface, #fff); + box-shadow: var(--mud-elevation-24, 0 16px 30px rgba(0, 0, 0, 0.28)); + color: var(--mud-palette-text-primary, #1f2937); + padding: 20px 20px 18px; +} + +.components-reconnect-header[b-4v5fhrpsm8] { + display: flex; + align-items: center; + gap: 10px; + margin-bottom: 8px; +} + + .components-reconnect-header h2[b-4v5fhrpsm8] { + margin: 0; + font-size: 1.05rem; + font-weight: 600; + line-height: 1.3; + } + +.components-reconnect-status-dot[b-4v5fhrpsm8] { + width: 12px; + height: 12px; + border-radius: 50%; + background: var(--mud-palette-warning, #f59e0b); + box-shadow: 0 0 0 6px color-mix(in srgb, var(--mud-palette-warning, #f59e0b) 25%, transparent); +} + +.components-reconnect-supporting[b-4v5fhrpsm8], +.components-reconnect-message[b-4v5fhrpsm8] { + margin: 0; + line-height: 1.45; + font-size: 0.95rem; +} + +.components-reconnect-supporting[b-4v5fhrpsm8] { + color: var(--mud-palette-text-secondary, #52607a); + margin-bottom: 14px; +} + +.components-reconnect-message[b-4v5fhrpsm8] { + font-weight: 500; +} + +.components-reconnect-danger[b-4v5fhrpsm8] { + color: var(--mud-palette-error, #b00020); +} + +.components-reconnect-actions[b-4v5fhrpsm8] { + margin-top: 14px; + display: flex; + gap: 10px; + justify-content: flex-end; +} + +.components-reconnect-first-attempt-visible[b-4v5fhrpsm8], +.components-reconnect-repeated-attempt-visible[b-4v5fhrpsm8], +.components-reconnect-failed-visible[b-4v5fhrpsm8], +.components-pause-visible[b-4v5fhrpsm8], +.components-resume-failed-visible[b-4v5fhrpsm8] { + display: none; +} + +dialog[open].components-reconnect-show .components-reconnect-first-attempt-visible[b-4v5fhrpsm8] { + display: block; +} + +dialog[open].components-reconnect-show .components-rejoin-loader[b-4v5fhrpsm8] { + display: inline-flex; +} + +dialog[open].components-reconnect-failed .components-reconnect-failed-visible[b-4v5fhrpsm8] { + display: block; +} + +dialog[open].components-reconnect-failed #components-reconnect-button[b-4v5fhrpsm8] { + display: block; +} + +dialog[open].components-reconnect-repeated-attempt .components-reconnect-repeated-attempt-visible[b-4v5fhrpsm8] { + display: block; +} + +dialog[open].components-reconnect-repeated-attempt .components-rejoin-loader[b-4v5fhrpsm8] { + display: inline-flex; +} + +dialog[open].components-reconnect-paused .components-pause-visible[b-4v5fhrpsm8], +dialog[open].components-pause .components-pause-visible[b-4v5fhrpsm8] { + display: block; +} + +dialog[open].components-reconnect-paused #components-resume-button[b-4v5fhrpsm8], +dialog[open].components-pause #components-resume-button[b-4v5fhrpsm8], +dialog[open].components-reconnect-resume-failed #components-resume-button[b-4v5fhrpsm8], +dialog[open].components-resume-failed #components-resume-button[b-4v5fhrpsm8] { + display: block; +} + +dialog[open].components-reconnect-resume-failed .components-resume-failed-visible[b-4v5fhrpsm8], +dialog[open].components-resume-failed .components-resume-failed-visible[b-4v5fhrpsm8] { + display: block; +} + +.components-rejoin-loader[b-4v5fhrpsm8] { + display: none; + margin-bottom: 10px; + gap: 8px; +} + + .components-rejoin-loader div[b-4v5fhrpsm8] { + width: 9px; + height: 9px; + border-radius: 50%; + background-color: var(--mud-palette-primary, #594AE2); + animation: reconnect-pulse-b-4v5fhrpsm8 1.2s infinite ease-in-out both; + } + + .components-rejoin-loader div:nth-child(1)[b-4v5fhrpsm8] { + animation-delay: -0.24s; + } + + .components-rejoin-loader div:nth-child(2)[b-4v5fhrpsm8] { + animation-delay: -0.12s; + } + +@keyframes reconnect-pulse-b-4v5fhrpsm8 { + 0%, 80%, 100% { + transform: scale(0); + } + + 40% { + transform: scale(1); + } +} + +#components-reconnect-button[b-4v5fhrpsm8], +#components-resume-button[b-4v5fhrpsm8] { + display: none; + min-width: 92px; + cursor: pointer; + padding: 8px 16px; + border: 1px solid transparent; + border-radius: 999px; + background-color: var(--mud-palette-primary, #594AE2); + color: #fff; + font-size: 0.875rem; + font-weight: 600; + line-height: 1.2; + transition: filter 140ms ease, transform 140ms ease; +} + + #components-reconnect-button:hover[b-4v5fhrpsm8], + #components-resume-button:hover[b-4v5fhrpsm8] { + filter: brightness(0.95); + } + + #components-reconnect-button:active[b-4v5fhrpsm8], + #components-resume-button:active[b-4v5fhrpsm8] { + transform: translateY(1px); + } + +@media (max-width: 600px) { + .components-reconnect-backdrop[b-4v5fhrpsm8] { + padding: 14px; + } + + .components-reconnect-surface[b-4v5fhrpsm8] { + padding: 16px; + } +} diff --git a/OnProfNext.Client/obj/Debug/net10.0/scopedcss/projectbundle/OnProfNext.Client.bundle.scp.css b/OnProfNext.Client/obj/Debug/net10.0/scopedcss/projectbundle/OnProfNext.Client.bundle.scp.css new file mode 100644 index 0000000..00738e8 --- /dev/null +++ b/OnProfNext.Client/obj/Debug/net10.0/scopedcss/projectbundle/OnProfNext.Client.bundle.scp.css @@ -0,0 +1,221 @@ +/* /Layout/ReconnectModal.razor.rz.scp.css */ +#components-reconnect-modal[b-4v5fhrpsm8] { + display: none; + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1400; + overflow: hidden; + background-color: transparent; + border: none; + width: 100%; + max-width: 100%; + max-height: 100%; + margin: 0; + padding: 0; +} + + #components-reconnect-modal[b-4v5fhrpsm8]::backdrop { + background: rgba(10, 16, 28, 0.5); + } + + #components-reconnect-modal.components-reconnect-show[b-4v5fhrpsm8], + #components-reconnect-modal[open][b-4v5fhrpsm8], + #components-reconnect-modal.components-reconnect-failed[b-4v5fhrpsm8], + #components-reconnect-modal.components-reconnect-repeated-attempt[b-4v5fhrpsm8], + #components-reconnect-modal.components-reconnect-paused[b-4v5fhrpsm8], + #components-reconnect-modal.components-reconnect-resume-failed[b-4v5fhrpsm8], + #components-reconnect-modal.components-pause[b-4v5fhrpsm8], + #components-reconnect-modal.components-resume-failed[b-4v5fhrpsm8] { + display: flex; + align-items: center; + justify-content: center; + } + +.components-reconnect-backdrop[b-4v5fhrpsm8] { + position: fixed; + inset: 0; + display: flex; + align-items: center; + justify-content: center; + padding: 24px; + background: radial-gradient(90% 60% at 80% 0%, color-mix(in srgb, var(--mud-palette-primary, #594AE2) 12%, transparent), transparent 60%), radial-gradient(80% 55% at 0% 100%, color-mix(in srgb, var(--mud-palette-info, #2196f3) 16%, transparent), transparent 62%), rgba(8, 12, 20, 0.5); +} + +.components-reconnect-surface[b-4v5fhrpsm8] { + width: min(480px, 100%); + border-radius: var(--mud-default-borderradius, 12px); + border: 1px solid color-mix(in srgb, var(--mud-palette-lines-default, #e0e0e0) 70%, transparent); + background: var(--mud-palette-surface, #fff); + box-shadow: var(--mud-elevation-24, 0 16px 30px rgba(0, 0, 0, 0.28)); + color: var(--mud-palette-text-primary, #1f2937); + padding: 20px 20px 18px; +} + +.components-reconnect-header[b-4v5fhrpsm8] { + display: flex; + align-items: center; + gap: 10px; + margin-bottom: 8px; +} + + .components-reconnect-header h2[b-4v5fhrpsm8] { + margin: 0; + font-size: 1.05rem; + font-weight: 600; + line-height: 1.3; + } + +.components-reconnect-status-dot[b-4v5fhrpsm8] { + width: 12px; + height: 12px; + border-radius: 50%; + background: var(--mud-palette-warning, #f59e0b); + box-shadow: 0 0 0 6px color-mix(in srgb, var(--mud-palette-warning, #f59e0b) 25%, transparent); +} + +.components-reconnect-supporting[b-4v5fhrpsm8], +.components-reconnect-message[b-4v5fhrpsm8] { + margin: 0; + line-height: 1.45; + font-size: 0.95rem; +} + +.components-reconnect-supporting[b-4v5fhrpsm8] { + color: var(--mud-palette-text-secondary, #52607a); + margin-bottom: 14px; +} + +.components-reconnect-message[b-4v5fhrpsm8] { + font-weight: 500; +} + +.components-reconnect-danger[b-4v5fhrpsm8] { + color: var(--mud-palette-error, #b00020); +} + +.components-reconnect-actions[b-4v5fhrpsm8] { + margin-top: 14px; + display: flex; + gap: 10px; + justify-content: flex-end; +} + +.components-reconnect-first-attempt-visible[b-4v5fhrpsm8], +.components-reconnect-repeated-attempt-visible[b-4v5fhrpsm8], +.components-reconnect-failed-visible[b-4v5fhrpsm8], +.components-pause-visible[b-4v5fhrpsm8], +.components-resume-failed-visible[b-4v5fhrpsm8] { + display: none; +} + +dialog[open].components-reconnect-show .components-reconnect-first-attempt-visible[b-4v5fhrpsm8] { + display: block; +} + +dialog[open].components-reconnect-show .components-rejoin-loader[b-4v5fhrpsm8] { + display: inline-flex; +} + +dialog[open].components-reconnect-failed .components-reconnect-failed-visible[b-4v5fhrpsm8] { + display: block; +} + +dialog[open].components-reconnect-failed #components-reconnect-button[b-4v5fhrpsm8] { + display: block; +} + +dialog[open].components-reconnect-repeated-attempt .components-reconnect-repeated-attempt-visible[b-4v5fhrpsm8] { + display: block; +} + +dialog[open].components-reconnect-repeated-attempt .components-rejoin-loader[b-4v5fhrpsm8] { + display: inline-flex; +} + +dialog[open].components-reconnect-paused .components-pause-visible[b-4v5fhrpsm8], +dialog[open].components-pause .components-pause-visible[b-4v5fhrpsm8] { + display: block; +} + +dialog[open].components-reconnect-paused #components-resume-button[b-4v5fhrpsm8], +dialog[open].components-pause #components-resume-button[b-4v5fhrpsm8], +dialog[open].components-reconnect-resume-failed #components-resume-button[b-4v5fhrpsm8], +dialog[open].components-resume-failed #components-resume-button[b-4v5fhrpsm8] { + display: block; +} + +dialog[open].components-reconnect-resume-failed .components-resume-failed-visible[b-4v5fhrpsm8], +dialog[open].components-resume-failed .components-resume-failed-visible[b-4v5fhrpsm8] { + display: block; +} + +.components-rejoin-loader[b-4v5fhrpsm8] { + display: none; + margin-bottom: 10px; + gap: 8px; +} + + .components-rejoin-loader div[b-4v5fhrpsm8] { + width: 9px; + height: 9px; + border-radius: 50%; + background-color: var(--mud-palette-primary, #594AE2); + animation: reconnect-pulse-b-4v5fhrpsm8 1.2s infinite ease-in-out both; + } + + .components-rejoin-loader div:nth-child(1)[b-4v5fhrpsm8] { + animation-delay: -0.24s; + } + + .components-rejoin-loader div:nth-child(2)[b-4v5fhrpsm8] { + animation-delay: -0.12s; + } + +@keyframes reconnect-pulse-b-4v5fhrpsm8 { + 0%, 80%, 100% { + transform: scale(0); + } + + 40% { + transform: scale(1); + } +} + +#components-reconnect-button[b-4v5fhrpsm8], +#components-resume-button[b-4v5fhrpsm8] { + display: none; + min-width: 92px; + cursor: pointer; + padding: 8px 16px; + border: 1px solid transparent; + border-radius: 999px; + background-color: var(--mud-palette-primary, #594AE2); + color: #fff; + font-size: 0.875rem; + font-weight: 600; + line-height: 1.2; + transition: filter 140ms ease, transform 140ms ease; +} + + #components-reconnect-button:hover[b-4v5fhrpsm8], + #components-resume-button:hover[b-4v5fhrpsm8] { + filter: brightness(0.95); + } + + #components-reconnect-button:active[b-4v5fhrpsm8], + #components-resume-button:active[b-4v5fhrpsm8] { + transform: translateY(1px); + } + +@media (max-width: 600px) { + .components-reconnect-backdrop[b-4v5fhrpsm8] { + padding: 14px; + } + + .components-reconnect-surface[b-4v5fhrpsm8] { + padding: 16px; + } +} diff --git a/OnProfNext.Client/obj/Debug/net10.0/staticwebassets.build.endpoints.json b/OnProfNext.Client/obj/Debug/net10.0/staticwebassets.build.endpoints.json new file mode 100644 index 0000000..e9b4465 --- /dev/null +++ b/OnProfNext.Client/obj/Debug/net10.0/staticwebassets.build.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"Layout/ReconnectModal.razor.js","AssetFile":"Layout/ReconnectModal.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2746"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4="},{"Name":"script-type","Value":"module"}]},{"Route":"Layout/ReconnectModal.razor.js","AssetFile":"Layout/ReconnectModal.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001269035533"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"787"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4="},{"Name":"original-resource","Value":"\"QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4=\""},{"Name":"script-type","Value":"module"}]},{"Route":"Layout/ReconnectModal.razor.js.gz","AssetFile":"Layout/ReconnectModal.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"787"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA="}]},{"Route":"Layout/ReconnectModal.ycbzh0sbjd.razor.js","AssetFile":"Layout/ReconnectModal.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2746"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ycbzh0sbjd"},{"Name":"integrity","Value":"sha256-QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4="},{"Name":"label","Value":"Layout/ReconnectModal.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"Layout/ReconnectModal.ycbzh0sbjd.razor.js","AssetFile":"Layout/ReconnectModal.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001269035533"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"787"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ycbzh0sbjd"},{"Name":"integrity","Value":"sha256-QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4="},{"Name":"label","Value":"Layout/ReconnectModal.razor.js"},{"Name":"original-resource","Value":"\"QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4=\""},{"Name":"script-type","Value":"module"}]},{"Route":"Layout/ReconnectModal.ycbzh0sbjd.razor.js.gz","AssetFile":"Layout/ReconnectModal.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"787"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ycbzh0sbjd"},{"Name":"integrity","Value":"sha256-rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA="},{"Name":"label","Value":"Layout/ReconnectModal.razor.js.gz"}]},{"Route":"OnProfNext.Client.styles.css","AssetFile":"OnProfNext.Client.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000690131125"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1448"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4="},{"Name":"original-resource","Value":"\"5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4=\""}]},{"Route":"OnProfNext.Client.styles.css","AssetFile":"OnProfNext.Client.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6834"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4="}]},{"Route":"OnProfNext.Client.styles.css.gz","AssetFile":"OnProfNext.Client.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1448"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o="}]},{"Route":"OnProfNext.Client.uzl7ca9j9c.styles.css","AssetFile":"OnProfNext.Client.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000690131125"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1448"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uzl7ca9j9c"},{"Name":"integrity","Value":"sha256-5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4="},{"Name":"label","Value":"OnProfNext.Client.styles.css"},{"Name":"original-resource","Value":"\"5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4=\""}]},{"Route":"OnProfNext.Client.uzl7ca9j9c.styles.css","AssetFile":"OnProfNext.Client.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6834"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uzl7ca9j9c"},{"Name":"integrity","Value":"sha256-5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4="},{"Name":"label","Value":"OnProfNext.Client.styles.css"}]},{"Route":"OnProfNext.Client.uzl7ca9j9c.styles.css.gz","AssetFile":"OnProfNext.Client.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1448"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uzl7ca9j9c"},{"Name":"integrity","Value":"sha256-UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o="},{"Name":"label","Value":"OnProfNext.Client.styles.css.gz"}]},{"Route":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js","AssetFile":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1862"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"A8e6zZwhOqf7lDQqbbCYcAUv4wGE9aQxOo4WyYxR//0=\""},{"Name":"Last-Modified","Value":"Wed, 04 Mar 2026 01:26:18 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"dependency-group","Value":"js-initializer"},{"Name":"fingerprint","Value":"99zm1jdh75"},{"Name":"integrity","Value":"sha256-A8e6zZwhOqf7lDQqbbCYcAUv4wGE9aQxOo4WyYxR//0="},{"Name":"label","Value":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js","AssetFile":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1862"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"A8e6zZwhOqf7lDQqbbCYcAUv4wGE9aQxOo4WyYxR//0=\""},{"Name":"Last-Modified","Value":"Wed, 04 Mar 2026 01:26:18 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"dependency-group","Value":"js-initializer"},{"Name":"integrity","Value":"sha256-A8e6zZwhOqf7lDQqbbCYcAUv4wGE9aQxOo4WyYxR//0="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/MudBlazor/MudBlazor.min.8dleymzaev.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"64944"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"VHJcGholtUHNobadpTrhyE/VCi90X4p12vYD83bzI04=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:27 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8dleymzaev"},{"Name":"integrity","Value":"sha256-VHJcGholtUHNobadpTrhyE/VCi90X4p12vYD83bzI04="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js"}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"607258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"kBmVfU2BqUZUT8HPz7NUnkObDjxYKbSWXF5q33paHM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:28 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kBmVfU2BqUZUT8HPz7NUnkObDjxYKbSWXF5q33paHM0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"64944"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"VHJcGholtUHNobadpTrhyE/VCi90X4p12vYD83bzI04=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:27 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VHJcGholtUHNobadpTrhyE/VCi90X4p12vYD83bzI04="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.0ykner63ol.map","AssetFile":"_content/MudBlazor/MudBlazor.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"236222"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"yAPYxO0UcV5YvjmoVWBh8O+tMbwO9AMZv1RMPdpxE0Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:27 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0ykner63ol"},{"Name":"integrity","Value":"sha256-yAPYxO0UcV5YvjmoVWBh8O+tMbwO9AMZv1RMPdpxE0Q="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js.map"}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.map","AssetFile":"_content/MudBlazor/MudBlazor.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"236222"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"yAPYxO0UcV5YvjmoVWBh8O+tMbwO9AMZv1RMPdpxE0Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:27 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yAPYxO0UcV5YvjmoVWBh8O+tMbwO9AMZv1RMPdpxE0Q="}]},{"Route":"_content/MudBlazor/MudBlazor.min.o2b68hjqqd.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"607258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"kBmVfU2BqUZUT8HPz7NUnkObDjxYKbSWXF5q33paHM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:28 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"o2b68hjqqd"},{"Name":"integrity","Value":"sha256-kBmVfU2BqUZUT8HPz7NUnkObDjxYKbSWXF5q33paHM0="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.css"}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"45333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"roqc1km2rj"},{"Name":"integrity","Value":"sha256-G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Authorization.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000050676532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"roqc1km2rj"},{"Name":"integrity","Value":"sha256-G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Authorization.wasm"},{"Name":"original-resource","Value":"\"G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"roqc1km2rj"},{"Name":"integrity","Value":"sha256-6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Authorization.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"45333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc="}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000050676532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc="},{"Name":"original-resource","Value":"\"G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000057547333"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17376"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ="},{"Name":"original-resource","Value":"\"sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17376"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zrueb40r85"},{"Name":"integrity","Value":"sha256-sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Forms.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000057547333"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17376"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zrueb40r85"},{"Name":"integrity","Value":"sha256-sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Forms.wasm"},{"Name":"original-resource","Value":"\"sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17376"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zrueb40r85"},{"Name":"integrity","Value":"sha256-FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Forms.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"178965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g5qdp1mxha"},{"Name":"integrity","Value":"sha256-XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Web.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013971749"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"71572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g5qdp1mxha"},{"Name":"integrity","Value":"sha256-XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Web.wasm"},{"Name":"original-resource","Value":"\"XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"71572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g5qdp1mxha"},{"Name":"integrity","Value":"sha256-Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Web.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"178965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013971749"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"71572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU="},{"Name":"original-resource","Value":"\"XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"71572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"155925"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9mjwvs1qyp"},{"Name":"integrity","Value":"sha256-r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000016249330"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"61540"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9mjwvs1qyp"},{"Name":"integrity","Value":"sha256-r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm"},{"Name":"original-resource","Value":"\"r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"61540"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9mjwvs1qyp"},{"Name":"integrity","Value":"sha256-WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"155925"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000016249330"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"61540"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4="},{"Name":"original-resource","Value":"\"r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"61540"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"388885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uddsvpv1sv"},{"Name":"integrity","Value":"sha256-wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006481638"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"154281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uddsvpv1sv"},{"Name":"integrity","Value":"sha256-wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.wasm"},{"Name":"original-resource","Value":"\"wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"154281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uddsvpv1sv"},{"Name":"integrity","Value":"sha256-1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"388885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006481638"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"154281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4="},{"Name":"original-resource","Value":"\"wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"154281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk="}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m3mxap0jif"},{"Name":"integrity","Value":"sha256-3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Metadata.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000405350628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2466"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m3mxap0jif"},{"Name":"integrity","Value":"sha256-3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Metadata.wasm"},{"Name":"original-resource","Value":"\"3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2466"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m3mxap0jif"},{"Name":"integrity","Value":"sha256-NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Metadata.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ="}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000405350628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2466"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ="},{"Name":"original-resource","Value":"\"3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2466"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU="}]},{"Route":"_framework/Microsoft.CSharp.452y5fjxmv.wasm","AssetFile":"_framework/Microsoft.CSharp.452y5fjxmv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"301333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"452y5fjxmv"},{"Name":"integrity","Value":"sha256-qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g="},{"Name":"label","Value":"_framework/Microsoft.CSharp.wasm"}]},{"Route":"_framework/Microsoft.CSharp.452y5fjxmv.wasm","AssetFile":"_framework/Microsoft.CSharp.452y5fjxmv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000007583628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"131862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"452y5fjxmv"},{"Name":"integrity","Value":"sha256-qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g="},{"Name":"label","Value":"_framework/Microsoft.CSharp.wasm"},{"Name":"original-resource","Value":"\"qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g=\""}]},{"Route":"_framework/Microsoft.CSharp.452y5fjxmv.wasm.gz","AssetFile":"_framework/Microsoft.CSharp.452y5fjxmv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"131862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"452y5fjxmv"},{"Name":"integrity","Value":"sha256-SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU="},{"Name":"label","Value":"_framework/Microsoft.CSharp.wasm.gz"}]},{"Route":"_framework/Microsoft.CSharp.wasm","AssetFile":"_framework/Microsoft.CSharp.452y5fjxmv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"301333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g="}]},{"Route":"_framework/Microsoft.CSharp.wasm","AssetFile":"_framework/Microsoft.CSharp.452y5fjxmv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000007583628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"131862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g="},{"Name":"original-resource","Value":"\"qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g=\""}]},{"Route":"_framework/Microsoft.CSharp.wasm.gz","AssetFile":"_framework/Microsoft.CSharp.452y5fjxmv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"131862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU="}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm","AssetFile":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"56085"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrhwg3a64c"},{"Name":"integrity","Value":"sha256-7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU="},{"Name":"label","Value":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm"}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm","AssetFile":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040950041"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrhwg3a64c"},{"Name":"integrity","Value":"sha256-7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU="},{"Name":"label","Value":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm"},{"Name":"original-resource","Value":"\"7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU=\""}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm.gz","AssetFile":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrhwg3a64c"},{"Name":"integrity","Value":"sha256-2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw="},{"Name":"label","Value":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz"}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm","AssetFile":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"56085"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU="}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm","AssetFile":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040950041"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU="},{"Name":"original-resource","Value":"\"7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU=\""}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz","AssetFile":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"thew1o6jcx"},{"Name":"integrity","Value":"sha256-YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000123502532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8096"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"thew1o6jcx"},{"Name":"integrity","Value":"sha256-YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm"},{"Name":"original-resource","Value":"\"YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8096"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"thew1o6jcx"},{"Name":"integrity","Value":"sha256-TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000123502532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8096"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0="},{"Name":"original-resource","Value":"\"YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8096"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"33045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7o70008j8o"},{"Name":"integrity","Value":"sha256-KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Binder.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000070556692"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14172"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7o70008j8o"},{"Name":"integrity","Value":"sha256-KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Binder.wasm"},{"Name":"original-resource","Value":"\"KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14172"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7o70008j8o"},{"Name":"integrity","Value":"sha256-c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Binder.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"33045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000070556692"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14172"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70="},{"Name":"original-resource","Value":"\"KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14172"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ouivavlhyy"},{"Name":"integrity","Value":"sha256-MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000125219133"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7985"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ouivavlhyy"},{"Name":"integrity","Value":"sha256-MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm"},{"Name":"original-resource","Value":"\"MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7985"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ouivavlhyy"},{"Name":"integrity","Value":"sha256-a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000125219133"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7985"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8="},{"Name":"original-resource","Value":"\"MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7985"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"17685"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"giv4t23za9"},{"Name":"integrity","Value":"sha256-iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Json.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000127177922"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"giv4t23za9"},{"Name":"integrity","Value":"sha256-iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Json.wasm"},{"Name":"original-resource","Value":"\"iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"giv4t23za9"},{"Name":"integrity","Value":"sha256-kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Json.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"17685"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000127177922"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg="},{"Name":"original-resource","Value":"\"iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fgwnqtu7qk"},{"Name":"integrity","Value":"sha256-D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000064616180"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15475"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fgwnqtu7qk"},{"Name":"integrity","Value":"sha256-D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.wasm"},{"Name":"original-resource","Value":"\"D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15475"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fgwnqtu7qk"},{"Name":"integrity","Value":"sha256-bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000064616180"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15475"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY="},{"Name":"original-resource","Value":"\"D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15475"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0="}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ud13mwbta3"},{"Name":"integrity","Value":"sha256-PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000046012976"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ud13mwbta3"},{"Name":"integrity","Value":"sha256-PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm"},{"Name":"original-resource","Value":"\"PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM=\""}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ud13mwbta3"},{"Name":"integrity","Value":"sha256-UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM="}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000046012976"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM="},{"Name":"original-resource","Value":"\"PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM=\""}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU="}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"85269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vs620n44bv"},{"Name":"integrity","Value":"sha256-EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.wasm"}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000027365771"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"36541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vs620n44bv"},{"Name":"integrity","Value":"sha256-EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.wasm"},{"Name":"original-resource","Value":"\"EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ=\""}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"36541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vs620n44bv"},{"Name":"integrity","Value":"sha256-KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"85269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ="}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000027365771"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"36541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ="},{"Name":"original-resource","Value":"\"EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ=\""}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"36541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA="}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"20757"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v59ymogeuz"},{"Name":"integrity","Value":"sha256-4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000116468670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8585"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v59ymogeuz"},{"Name":"integrity","Value":"sha256-4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm"},{"Name":"original-resource","Value":"\"4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA=\""}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8585"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v59ymogeuz"},{"Name":"integrity","Value":"sha256-q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"20757"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA="}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000116468670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8585"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA="},{"Name":"original-resource","Value":"\"4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA=\""}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8585"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4="}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"25877"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jnogfbng3i"},{"Name":"integrity","Value":"sha256-MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000082706145"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12090"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jnogfbng3i"},{"Name":"integrity","Value":"sha256-MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.wasm"},{"Name":"original-resource","Value":"\"MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo=\""}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12090"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jnogfbng3i"},{"Name":"integrity","Value":"sha256-UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"25877"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo="}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000082706145"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12090"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo="},{"Name":"original-resource","Value":"\"MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo=\""}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12090"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk="}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ssv83rveyv"},{"Name":"integrity","Value":"sha256-/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000176897223"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5652"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ssv83rveyv"},{"Name":"integrity","Value":"sha256-/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm"},{"Name":"original-resource","Value":"\"/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8=\""}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5652"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ssv83rveyv"},{"Name":"integrity","Value":"sha256-kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8="}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000176897223"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5652"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8="},{"Name":"original-resource","Value":"\"/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8=\""}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5652"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4="}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"35093"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8gz29xpyh3"},{"Name":"integrity","Value":"sha256-CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm"}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060793969"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16448"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8gz29xpyh3"},{"Name":"integrity","Value":"sha256-CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm"},{"Name":"original-resource","Value":"\"CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0=\""}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16448"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8gz29xpyh3"},{"Name":"integrity","Value":"sha256-RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"35093"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0="}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060793969"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16448"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0="},{"Name":"original-resource","Value":"\"CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0=\""}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16448"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo="}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm","AssetFile":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozuva4e3vv"},{"Name":"integrity","Value":"sha256-pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm"}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm","AssetFile":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000058941412"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozuva4e3vv"},{"Name":"integrity","Value":"sha256-pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm"},{"Name":"original-resource","Value":"\"pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI=\""}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozuva4e3vv"},{"Name":"integrity","Value":"sha256-QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm","AssetFile":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI="}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm","AssetFile":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000058941412"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI="},{"Name":"original-resource","Value":"\"pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI=\""}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY="}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"8981"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6jkolue1ka"},{"Name":"integrity","Value":"sha256-8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000261164795"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6jkolue1ka"},{"Name":"integrity","Value":"sha256-8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm"},{"Name":"original-resource","Value":"\"8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4=\""}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6jkolue1ka"},{"Name":"integrity","Value":"sha256-5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"8981"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4="}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000261164795"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4="},{"Name":"original-resource","Value":"\"8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4=\""}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8="}]},{"Route":"_framework/Microsoft.Extensions.Localization.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"21269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs="}]},{"Route":"_framework/Microsoft.Extensions.Localization.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000100050025"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9994"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs="},{"Name":"original-resource","Value":"\"L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs=\""}]},{"Route":"_framework/Microsoft.Extensions.Localization.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9994"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM="}]},{"Route":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"21269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xcslyy3nju"},{"Name":"integrity","Value":"sha256-L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000100050025"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9994"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xcslyy3nju"},{"Name":"integrity","Value":"sha256-L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.wasm"},{"Name":"original-resource","Value":"\"L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs=\""}]},{"Route":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9994"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xcslyy3nju"},{"Name":"integrity","Value":"sha256-LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"56597"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1q3x7vre4l"},{"Name":"integrity","Value":"sha256-5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040832993"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1q3x7vre4l"},{"Name":"integrity","Value":"sha256-5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm"},{"Name":"original-resource","Value":"\"5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI=\""}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1q3x7vre4l"},{"Name":"integrity","Value":"sha256-wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"56597"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI="}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040832993"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI="},{"Name":"original-resource","Value":"\"5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI=\""}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo="}]},{"Route":"_framework/Microsoft.Extensions.Logging.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"41237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis="}]},{"Route":"_framework/Microsoft.Extensions.Logging.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053708577"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18618"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis="},{"Name":"original-resource","Value":"\"7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis=\""}]},{"Route":"_framework/Microsoft.Extensions.Logging.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18618"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q="}]},{"Route":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"41237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y4ydx3rk2c"},{"Name":"integrity","Value":"sha256-7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053708577"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18618"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y4ydx3rk2c"},{"Name":"integrity","Value":"sha256-7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.wasm"},{"Name":"original-resource","Value":"\"7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis=\""}]},{"Route":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18618"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y4ydx3rk2c"},{"Name":"integrity","Value":"sha256-CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55061"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2rz5zbidnd"},{"Name":"integrity","Value":"sha256-PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000042529664"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23512"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2rz5zbidnd"},{"Name":"integrity","Value":"sha256-PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.wasm"},{"Name":"original-resource","Value":"\"PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY=\""}]},{"Route":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23512"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2rz5zbidnd"},{"Name":"integrity","Value":"sha256-nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U="}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000196001568"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U="},{"Name":"original-resource","Value":"\"652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U=\""}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I="}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zmb03w0weu"},{"Name":"integrity","Value":"sha256-652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000196001568"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zmb03w0weu"},{"Name":"integrity","Value":"sha256-652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm"},{"Name":"original-resource","Value":"\"652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U=\""}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zmb03w0weu"},{"Name":"integrity","Value":"sha256-i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Options.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"55061"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY="}]},{"Route":"_framework/Microsoft.Extensions.Options.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000042529664"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23512"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY="},{"Name":"original-resource","Value":"\"PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY=\""}]},{"Route":"_framework/Microsoft.Extensions.Options.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23512"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4="}]},{"Route":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm","AssetFile":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bd164v6l3f"},{"Name":"integrity","Value":"sha256-b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Primitives.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm","AssetFile":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000065582371"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15247"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bd164v6l3f"},{"Name":"integrity","Value":"sha256-b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Primitives.wasm"},{"Name":"original-resource","Value":"\"b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo=\""}]},{"Route":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15247"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bd164v6l3f"},{"Name":"integrity","Value":"sha256-WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Primitives.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Primitives.wasm","AssetFile":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo="}]},{"Route":"_framework/Microsoft.Extensions.Primitives.wasm","AssetFile":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000065582371"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15247"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo="},{"Name":"original-resource","Value":"\"b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo=\""}]},{"Route":"_framework/Microsoft.Extensions.Primitives.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15247"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8="}]},{"Route":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm","AssetFile":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"33045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r1sv3m5lsf"},{"Name":"integrity","Value":"sha256-QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Validation.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm","AssetFile":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000069232899"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14443"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r1sv3m5lsf"},{"Name":"integrity","Value":"sha256-QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Validation.wasm"},{"Name":"original-resource","Value":"\"QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk=\""}]},{"Route":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14443"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r1sv3m5lsf"},{"Name":"integrity","Value":"sha256-4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Validation.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Validation.wasm","AssetFile":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"33045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk="}]},{"Route":"_framework/Microsoft.Extensions.Validation.wasm","AssetFile":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000069232899"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14443"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk="},{"Name":"original-resource","Value":"\"QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk=\""}]},{"Route":"_framework/Microsoft.Extensions.Validation.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14443"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0="}]},{"Route":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm","AssetFile":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"64789"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1r0ampr2q1"},{"Name":"integrity","Value":"sha256-TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.wasm"}]},{"Route":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm","AssetFile":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000036331928"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"27523"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1r0ampr2q1"},{"Name":"integrity","Value":"sha256-TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.wasm"},{"Name":"original-resource","Value":"\"TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA=\""}]},{"Route":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm.gz","AssetFile":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"27523"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1r0ampr2q1"},{"Name":"integrity","Value":"sha256-5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.wasm.gz"}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm","AssetFile":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"14613"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oz8fkrrrd6"},{"Name":"integrity","Value":"sha256-vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.WebAssembly.wasm"}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm","AssetFile":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000145730108"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oz8fkrrrd6"},{"Name":"integrity","Value":"sha256-vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.WebAssembly.wasm"},{"Name":"original-resource","Value":"\"vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU=\""}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm.gz","AssetFile":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oz8fkrrrd6"},{"Name":"integrity","Value":"sha256-50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.WebAssembly.wasm.gz"}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.wasm","AssetFile":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"14613"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU="}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.wasm","AssetFile":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000145730108"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU="},{"Name":"original-resource","Value":"\"vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU=\""}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.wasm.gz","AssetFile":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA="}]},{"Route":"_framework/Microsoft.JSInterop.wasm","AssetFile":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"64789"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA="}]},{"Route":"_framework/Microsoft.JSInterop.wasm","AssetFile":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000036331928"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"27523"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA="},{"Name":"original-resource","Value":"\"TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA=\""}]},{"Route":"_framework/Microsoft.JSInterop.wasm.gz","AssetFile":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"27523"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0="}]},{"Route":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm","AssetFile":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"91iw3j3d9p"},{"Name":"integrity","Value":"sha256-TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.wasm"}]},{"Route":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm","AssetFile":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000349162011"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2863"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"91iw3j3d9p"},{"Name":"integrity","Value":"sha256-TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.wasm"},{"Name":"original-resource","Value":"\"TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM=\""}]},{"Route":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm.gz","AssetFile":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2863"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"91iw3j3d9p"},{"Name":"integrity","Value":"sha256-O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.wasm.gz"}]},{"Route":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm","AssetFile":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"418581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"re3geseai5"},{"Name":"integrity","Value":"sha256-vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.Core.wasm"}]},{"Route":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm","AssetFile":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005991109"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"166913"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"re3geseai5"},{"Name":"integrity","Value":"sha256-vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.Core.wasm"},{"Name":"original-resource","Value":"\"vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0=\""}]},{"Route":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm.gz","AssetFile":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"166913"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"re3geseai5"},{"Name":"integrity","Value":"sha256-09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.Core.wasm.gz"}]},{"Route":"_framework/Microsoft.VisualBasic.Core.wasm","AssetFile":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"418581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0="}]},{"Route":"_framework/Microsoft.VisualBasic.Core.wasm","AssetFile":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005991109"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"166913"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0="},{"Name":"original-resource","Value":"\"vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0=\""}]},{"Route":"_framework/Microsoft.VisualBasic.Core.wasm.gz","AssetFile":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"166913"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc="}]},{"Route":"_framework/Microsoft.VisualBasic.wasm","AssetFile":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM="}]},{"Route":"_framework/Microsoft.VisualBasic.wasm","AssetFile":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000349162011"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2863"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM="},{"Name":"original-resource","Value":"\"TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM=\""}]},{"Route":"_framework/Microsoft.VisualBasic.wasm.gz","AssetFile":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2863"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as="}]},{"Route":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm","AssetFile":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mjytoh92q"},{"Name":"integrity","Value":"sha256-NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM="},{"Name":"label","Value":"_framework/Microsoft.Win32.Primitives.wasm"}]},{"Route":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm","AssetFile":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000451059991"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2216"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mjytoh92q"},{"Name":"integrity","Value":"sha256-NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM="},{"Name":"label","Value":"_framework/Microsoft.Win32.Primitives.wasm"},{"Name":"original-resource","Value":"\"NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM=\""}]},{"Route":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm.gz","AssetFile":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2216"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mjytoh92q"},{"Name":"integrity","Value":"sha256-JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As="},{"Name":"label","Value":"_framework/Microsoft.Win32.Primitives.wasm.gz"}]},{"Route":"_framework/Microsoft.Win32.Primitives.wasm","AssetFile":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM="}]},{"Route":"_framework/Microsoft.Win32.Primitives.wasm","AssetFile":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000451059991"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2216"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM="},{"Name":"original-resource","Value":"\"NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM=\""}]},{"Route":"_framework/Microsoft.Win32.Primitives.wasm.gz","AssetFile":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2216"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As="}]},{"Route":"_framework/Microsoft.Win32.Registry.wasm","AssetFile":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU="}]},{"Route":"_framework/Microsoft.Win32.Registry.wasm","AssetFile":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000109733348"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9112"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU="},{"Name":"original-resource","Value":"\"sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU=\""}]},{"Route":"_framework/Microsoft.Win32.Registry.wasm.gz","AssetFile":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9112"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk="}]},{"Route":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm","AssetFile":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yz8nt3ycsq"},{"Name":"integrity","Value":"sha256-sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU="},{"Name":"label","Value":"_framework/Microsoft.Win32.Registry.wasm"}]},{"Route":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm","AssetFile":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000109733348"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9112"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yz8nt3ycsq"},{"Name":"integrity","Value":"sha256-sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU="},{"Name":"label","Value":"_framework/Microsoft.Win32.Registry.wasm"},{"Name":"original-resource","Value":"\"sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU=\""}]},{"Route":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm.gz","AssetFile":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9112"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yz8nt3ycsq"},{"Name":"integrity","Value":"sha256-gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk="},{"Name":"label","Value":"_framework/Microsoft.Win32.Registry.wasm.gz"}]},{"Route":"_framework/MudBlazor.k6079czmkm.wasm","AssetFile":"_framework/MudBlazor.k6079czmkm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10119449"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6079czmkm"},{"Name":"integrity","Value":"sha256-rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI="},{"Name":"label","Value":"_framework/MudBlazor.wasm"}]},{"Route":"_framework/MudBlazor.k6079czmkm.wasm","AssetFile":"_framework/MudBlazor.k6079czmkm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000444516"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2249638"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6079czmkm"},{"Name":"integrity","Value":"sha256-rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI="},{"Name":"label","Value":"_framework/MudBlazor.wasm"},{"Name":"original-resource","Value":"\"rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI=\""}]},{"Route":"_framework/MudBlazor.k6079czmkm.wasm.gz","AssetFile":"_framework/MudBlazor.k6079czmkm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2249638"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6079czmkm"},{"Name":"integrity","Value":"sha256-dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM="},{"Name":"label","Value":"_framework/MudBlazor.wasm.gz"}]},{"Route":"_framework/MudBlazor.wasm","AssetFile":"_framework/MudBlazor.k6079czmkm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10119449"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI="}]},{"Route":"_framework/MudBlazor.wasm","AssetFile":"_framework/MudBlazor.k6079czmkm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000444516"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2249638"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI="},{"Name":"original-resource","Value":"\"rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI=\""}]},{"Route":"_framework/MudBlazor.wasm.gz","AssetFile":"_framework/MudBlazor.k6079czmkm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2249638"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM="}]},{"Route":"_framework/OnProfNext.Client.lplk7v275j.pdb","AssetFile":"_framework/OnProfNext.Client.lplk7v275j.pdb","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"33624"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lplk7v275j"},{"Name":"integrity","Value":"sha256-FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0="},{"Name":"label","Value":"_framework/OnProfNext.Client.pdb"}]},{"Route":"_framework/OnProfNext.Client.lplk7v275j.pdb","AssetFile":"_framework/OnProfNext.Client.lplk7v275j.pdb.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038227761"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26158"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lplk7v275j"},{"Name":"integrity","Value":"sha256-FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0="},{"Name":"label","Value":"_framework/OnProfNext.Client.pdb"},{"Name":"original-resource","Value":"\"FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0=\""}]},{"Route":"_framework/OnProfNext.Client.lplk7v275j.pdb.gz","AssetFile":"_framework/OnProfNext.Client.lplk7v275j.pdb.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26158"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lplk7v275j"},{"Name":"integrity","Value":"sha256-4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU="},{"Name":"label","Value":"_framework/OnProfNext.Client.pdb.gz"}]},{"Route":"_framework/OnProfNext.Client.pdb","AssetFile":"_framework/OnProfNext.Client.lplk7v275j.pdb","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"33624"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0="}]},{"Route":"_framework/OnProfNext.Client.pdb","AssetFile":"_framework/OnProfNext.Client.lplk7v275j.pdb.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038227761"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26158"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0="},{"Name":"original-resource","Value":"\"FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0=\""}]},{"Route":"_framework/OnProfNext.Client.pdb.gz","AssetFile":"_framework/OnProfNext.Client.lplk7v275j.pdb.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26158"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU="}]},{"Route":"_framework/OnProfNext.Client.wasm","AssetFile":"_framework/OnProfNext.Client.xhq6acanj0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"42261"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc="}]},{"Route":"_framework/OnProfNext.Client.wasm","AssetFile":"_framework/OnProfNext.Client.xhq6acanj0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067344602"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14848"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc="},{"Name":"original-resource","Value":"\"pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc=\""}]},{"Route":"_framework/OnProfNext.Client.wasm.gz","AssetFile":"_framework/OnProfNext.Client.xhq6acanj0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14848"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA="}]},{"Route":"_framework/OnProfNext.Client.xhq6acanj0.wasm","AssetFile":"_framework/OnProfNext.Client.xhq6acanj0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"42261"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xhq6acanj0"},{"Name":"integrity","Value":"sha256-pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc="},{"Name":"label","Value":"_framework/OnProfNext.Client.wasm"}]},{"Route":"_framework/OnProfNext.Client.xhq6acanj0.wasm","AssetFile":"_framework/OnProfNext.Client.xhq6acanj0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067344602"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14848"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xhq6acanj0"},{"Name":"integrity","Value":"sha256-pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc="},{"Name":"label","Value":"_framework/OnProfNext.Client.wasm"},{"Name":"original-resource","Value":"\"pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc=\""}]},{"Route":"_framework/OnProfNext.Client.xhq6acanj0.wasm.gz","AssetFile":"_framework/OnProfNext.Client.xhq6acanj0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14848"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xhq6acanj0"},{"Name":"integrity","Value":"sha256-UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA="},{"Name":"label","Value":"_framework/OnProfNext.Client.wasm.gz"}]},{"Route":"_framework/System.7rk3uansaa.wasm","AssetFile":"_framework/System.7rk3uansaa.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"39701"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7rk3uansaa"},{"Name":"integrity","Value":"sha256-00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q="},{"Name":"label","Value":"_framework/System.wasm"}]},{"Route":"_framework/System.7rk3uansaa.wasm","AssetFile":"_framework/System.7rk3uansaa.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000084875233"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7rk3uansaa"},{"Name":"integrity","Value":"sha256-00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q="},{"Name":"label","Value":"_framework/System.wasm"},{"Name":"original-resource","Value":"\"00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q=\""}]},{"Route":"_framework/System.7rk3uansaa.wasm.gz","AssetFile":"_framework/System.7rk3uansaa.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7rk3uansaa"},{"Name":"integrity","Value":"sha256-KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI="},{"Name":"label","Value":"_framework/System.wasm.gz"}]},{"Route":"_framework/System.AppContext.uwq3fpef1w.wasm","AssetFile":"_framework/System.AppContext.uwq3fpef1w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uwq3fpef1w"},{"Name":"integrity","Value":"sha256-/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA="},{"Name":"label","Value":"_framework/System.AppContext.wasm"}]},{"Route":"_framework/System.AppContext.uwq3fpef1w.wasm","AssetFile":"_framework/System.AppContext.uwq3fpef1w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000472589792"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2115"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uwq3fpef1w"},{"Name":"integrity","Value":"sha256-/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA="},{"Name":"label","Value":"_framework/System.AppContext.wasm"},{"Name":"original-resource","Value":"\"/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA=\""}]},{"Route":"_framework/System.AppContext.uwq3fpef1w.wasm.gz","AssetFile":"_framework/System.AppContext.uwq3fpef1w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2115"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uwq3fpef1w"},{"Name":"integrity","Value":"sha256-Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8="},{"Name":"label","Value":"_framework/System.AppContext.wasm.gz"}]},{"Route":"_framework/System.AppContext.wasm","AssetFile":"_framework/System.AppContext.uwq3fpef1w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA="}]},{"Route":"_framework/System.AppContext.wasm","AssetFile":"_framework/System.AppContext.uwq3fpef1w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000472589792"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2115"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA="},{"Name":"original-resource","Value":"\"/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA=\""}]},{"Route":"_framework/System.AppContext.wasm.gz","AssetFile":"_framework/System.AppContext.uwq3fpef1w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2115"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8="}]},{"Route":"_framework/System.Buffers.m4yhcvz2y2.wasm","AssetFile":"_framework/System.Buffers.m4yhcvz2y2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m4yhcvz2y2"},{"Name":"integrity","Value":"sha256-+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g="},{"Name":"label","Value":"_framework/System.Buffers.wasm"}]},{"Route":"_framework/System.Buffers.m4yhcvz2y2.wasm","AssetFile":"_framework/System.Buffers.m4yhcvz2y2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000472143532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2117"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m4yhcvz2y2"},{"Name":"integrity","Value":"sha256-+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g="},{"Name":"label","Value":"_framework/System.Buffers.wasm"},{"Name":"original-resource","Value":"\"+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g=\""}]},{"Route":"_framework/System.Buffers.m4yhcvz2y2.wasm.gz","AssetFile":"_framework/System.Buffers.m4yhcvz2y2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2117"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m4yhcvz2y2"},{"Name":"integrity","Value":"sha256-Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g="},{"Name":"label","Value":"_framework/System.Buffers.wasm.gz"}]},{"Route":"_framework/System.Buffers.wasm","AssetFile":"_framework/System.Buffers.m4yhcvz2y2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g="}]},{"Route":"_framework/System.Buffers.wasm","AssetFile":"_framework/System.Buffers.m4yhcvz2y2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000472143532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2117"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g="},{"Name":"original-resource","Value":"\"+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g=\""}]},{"Route":"_framework/System.Buffers.wasm.gz","AssetFile":"_framework/System.Buffers.m4yhcvz2y2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2117"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g="}]},{"Route":"_framework/System.Collections.63jrcion39.wasm","AssetFile":"_framework/System.Collections.63jrcion39.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"102677"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63jrcion39"},{"Name":"integrity","Value":"sha256-Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg="},{"Name":"label","Value":"_framework/System.Collections.wasm"}]},{"Route":"_framework/System.Collections.63jrcion39.wasm","AssetFile":"_framework/System.Collections.63jrcion39.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023100023"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"43289"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63jrcion39"},{"Name":"integrity","Value":"sha256-Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg="},{"Name":"label","Value":"_framework/System.Collections.wasm"},{"Name":"original-resource","Value":"\"Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg=\""}]},{"Route":"_framework/System.Collections.63jrcion39.wasm.gz","AssetFile":"_framework/System.Collections.63jrcion39.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"43289"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63jrcion39"},{"Name":"integrity","Value":"sha256-vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU="},{"Name":"label","Value":"_framework/System.Collections.wasm.gz"}]},{"Route":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm","AssetFile":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"78613"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1zv6wuzklu"},{"Name":"integrity","Value":"sha256-XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw="},{"Name":"label","Value":"_framework/System.Collections.Concurrent.wasm"}]},{"Route":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm","AssetFile":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029696502"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33673"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1zv6wuzklu"},{"Name":"integrity","Value":"sha256-XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw="},{"Name":"label","Value":"_framework/System.Collections.Concurrent.wasm"},{"Name":"original-resource","Value":"\"XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw=\""}]},{"Route":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm.gz","AssetFile":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33673"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1zv6wuzklu"},{"Name":"integrity","Value":"sha256-LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU="},{"Name":"label","Value":"_framework/System.Collections.Concurrent.wasm.gz"}]},{"Route":"_framework/System.Collections.Concurrent.wasm","AssetFile":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"78613"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw="}]},{"Route":"_framework/System.Collections.Concurrent.wasm","AssetFile":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029696502"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33673"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw="},{"Name":"original-resource","Value":"\"XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw=\""}]},{"Route":"_framework/System.Collections.Concurrent.wasm.gz","AssetFile":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33673"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU="}]},{"Route":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm","AssetFile":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"240917"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6uzpuv4o5d"},{"Name":"integrity","Value":"sha256-UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE="},{"Name":"label","Value":"_framework/System.Collections.Immutable.wasm"}]},{"Route":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm","AssetFile":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010198462"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"98053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6uzpuv4o5d"},{"Name":"integrity","Value":"sha256-UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE="},{"Name":"label","Value":"_framework/System.Collections.Immutable.wasm"},{"Name":"original-resource","Value":"\"UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE=\""}]},{"Route":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm.gz","AssetFile":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"98053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6uzpuv4o5d"},{"Name":"integrity","Value":"sha256-FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI="},{"Name":"label","Value":"_framework/System.Collections.Immutable.wasm.gz"}]},{"Route":"_framework/System.Collections.Immutable.wasm","AssetFile":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"240917"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE="}]},{"Route":"_framework/System.Collections.Immutable.wasm","AssetFile":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010198462"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"98053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE="},{"Name":"original-resource","Value":"\"UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE=\""}]},{"Route":"_framework/System.Collections.Immutable.wasm.gz","AssetFile":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"98053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI="}]},{"Route":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm","AssetFile":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k5rgagff9o"},{"Name":"integrity","Value":"sha256-eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q="},{"Name":"label","Value":"_framework/System.Collections.NonGeneric.wasm"}]},{"Route":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm","AssetFile":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067944014"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14717"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k5rgagff9o"},{"Name":"integrity","Value":"sha256-eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q="},{"Name":"label","Value":"_framework/System.Collections.NonGeneric.wasm"},{"Name":"original-resource","Value":"\"eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q=\""}]},{"Route":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm.gz","AssetFile":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14717"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k5rgagff9o"},{"Name":"integrity","Value":"sha256-RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M="},{"Name":"label","Value":"_framework/System.Collections.NonGeneric.wasm.gz"}]},{"Route":"_framework/System.Collections.NonGeneric.wasm","AssetFile":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q="}]},{"Route":"_framework/System.Collections.NonGeneric.wasm","AssetFile":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067944014"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14717"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q="},{"Name":"original-resource","Value":"\"eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q=\""}]},{"Route":"_framework/System.Collections.NonGeneric.wasm.gz","AssetFile":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14717"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M="}]},{"Route":"_framework/System.Collections.Specialized.84wojkejb4.wasm","AssetFile":"_framework/System.Collections.Specialized.84wojkejb4.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"84wojkejb4"},{"Name":"integrity","Value":"sha256-mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74="},{"Name":"label","Value":"_framework/System.Collections.Specialized.wasm"}]},{"Route":"_framework/System.Collections.Specialized.84wojkejb4.wasm","AssetFile":"_framework/System.Collections.Specialized.84wojkejb4.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061218243"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16334"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"84wojkejb4"},{"Name":"integrity","Value":"sha256-mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74="},{"Name":"label","Value":"_framework/System.Collections.Specialized.wasm"},{"Name":"original-resource","Value":"\"mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74=\""}]},{"Route":"_framework/System.Collections.Specialized.84wojkejb4.wasm.gz","AssetFile":"_framework/System.Collections.Specialized.84wojkejb4.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16334"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"84wojkejb4"},{"Name":"integrity","Value":"sha256-iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0="},{"Name":"label","Value":"_framework/System.Collections.Specialized.wasm.gz"}]},{"Route":"_framework/System.Collections.Specialized.wasm","AssetFile":"_framework/System.Collections.Specialized.84wojkejb4.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74="}]},{"Route":"_framework/System.Collections.Specialized.wasm","AssetFile":"_framework/System.Collections.Specialized.84wojkejb4.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061218243"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16334"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74="},{"Name":"original-resource","Value":"\"mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74=\""}]},{"Route":"_framework/System.Collections.Specialized.wasm.gz","AssetFile":"_framework/System.Collections.Specialized.84wojkejb4.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16334"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0="}]},{"Route":"_framework/System.Collections.wasm","AssetFile":"_framework/System.Collections.63jrcion39.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"102677"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg="}]},{"Route":"_framework/System.Collections.wasm","AssetFile":"_framework/System.Collections.63jrcion39.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023100023"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"43289"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg="},{"Name":"original-resource","Value":"\"Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg=\""}]},{"Route":"_framework/System.Collections.wasm.gz","AssetFile":"_framework/System.Collections.63jrcion39.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"43289"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU="}]},{"Route":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm","AssetFile":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"92437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cjsvkufomv"},{"Name":"integrity","Value":"sha256-yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg="},{"Name":"label","Value":"_framework/System.ComponentModel.Annotations.wasm"}]},{"Route":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm","AssetFile":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000027950137"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cjsvkufomv"},{"Name":"integrity","Value":"sha256-yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg="},{"Name":"label","Value":"_framework/System.ComponentModel.Annotations.wasm"},{"Name":"original-resource","Value":"\"yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg=\""}]},{"Route":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm.gz","AssetFile":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cjsvkufomv"},{"Name":"integrity","Value":"sha256-6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM="},{"Name":"label","Value":"_framework/System.ComponentModel.Annotations.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.Annotations.wasm","AssetFile":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"92437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg="}]},{"Route":"_framework/System.ComponentModel.Annotations.wasm","AssetFile":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000027950137"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg="},{"Name":"original-resource","Value":"\"yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg=\""}]},{"Route":"_framework/System.ComponentModel.Annotations.wasm.gz","AssetFile":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM="}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm","AssetFile":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vpng0qt4u6"},{"Name":"integrity","Value":"sha256-7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o="},{"Name":"label","Value":"_framework/System.ComponentModel.DataAnnotations.wasm"}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm","AssetFile":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000386996904"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2583"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vpng0qt4u6"},{"Name":"integrity","Value":"sha256-7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o="},{"Name":"label","Value":"_framework/System.ComponentModel.DataAnnotations.wasm"},{"Name":"original-resource","Value":"\"7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o=\""}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm.gz","AssetFile":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2583"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vpng0qt4u6"},{"Name":"integrity","Value":"sha256-BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs="},{"Name":"label","Value":"_framework/System.ComponentModel.DataAnnotations.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.wasm","AssetFile":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o="}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.wasm","AssetFile":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000386996904"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2583"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o="},{"Name":"original-resource","Value":"\"7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o=\""}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.wasm.gz","AssetFile":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2583"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs="}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm","AssetFile":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"16149"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"en4q13ibd5"},{"Name":"integrity","Value":"sha256-9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38="},{"Name":"label","Value":"_framework/System.ComponentModel.EventBasedAsync.wasm"}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm","AssetFile":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000147536146"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"en4q13ibd5"},{"Name":"integrity","Value":"sha256-9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38="},{"Name":"label","Value":"_framework/System.ComponentModel.EventBasedAsync.wasm"},{"Name":"original-resource","Value":"\"9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38=\""}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm.gz","AssetFile":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"en4q13ibd5"},{"Name":"integrity","Value":"sha256-G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU="},{"Name":"label","Value":"_framework/System.ComponentModel.EventBasedAsync.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.wasm","AssetFile":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"16149"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38="}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.wasm","AssetFile":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000147536146"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38="},{"Name":"original-resource","Value":"\"9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38=\""}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.wasm.gz","AssetFile":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU="}]},{"Route":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm","AssetFile":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u0y5oi3qdg"},{"Name":"integrity","Value":"sha256-fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4="},{"Name":"label","Value":"_framework/System.ComponentModel.Primitives.wasm"}]},{"Route":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm","AssetFile":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000074493445"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13423"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u0y5oi3qdg"},{"Name":"integrity","Value":"sha256-fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4="},{"Name":"label","Value":"_framework/System.ComponentModel.Primitives.wasm"},{"Name":"original-resource","Value":"\"fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4=\""}]},{"Route":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm.gz","AssetFile":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13423"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u0y5oi3qdg"},{"Name":"integrity","Value":"sha256-yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM="},{"Name":"label","Value":"_framework/System.ComponentModel.Primitives.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.Primitives.wasm","AssetFile":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4="}]},{"Route":"_framework/System.ComponentModel.Primitives.wasm","AssetFile":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000074493445"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13423"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4="},{"Name":"original-resource","Value":"\"fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4=\""}]},{"Route":"_framework/System.ComponentModel.Primitives.wasm.gz","AssetFile":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13423"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM="}]},{"Route":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm","AssetFile":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"306453"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e2hbv9lola"},{"Name":"integrity","Value":"sha256-Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco="},{"Name":"label","Value":"_framework/System.ComponentModel.TypeConverter.wasm"}]},{"Route":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm","AssetFile":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008143389"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"122798"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e2hbv9lola"},{"Name":"integrity","Value":"sha256-Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco="},{"Name":"label","Value":"_framework/System.ComponentModel.TypeConverter.wasm"},{"Name":"original-resource","Value":"\"Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco=\""}]},{"Route":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm.gz","AssetFile":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"122798"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e2hbv9lola"},{"Name":"integrity","Value":"sha256-pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs="},{"Name":"label","Value":"_framework/System.ComponentModel.TypeConverter.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.TypeConverter.wasm","AssetFile":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"306453"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco="}]},{"Route":"_framework/System.ComponentModel.TypeConverter.wasm","AssetFile":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008143389"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"122798"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco="},{"Name":"original-resource","Value":"\"Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco=\""}]},{"Route":"_framework/System.ComponentModel.TypeConverter.wasm.gz","AssetFile":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"122798"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs="}]},{"Route":"_framework/System.ComponentModel.m11rh1qn2x.wasm","AssetFile":"_framework/System.ComponentModel.m11rh1qn2x.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m11rh1qn2x"},{"Name":"integrity","Value":"sha256-9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ="},{"Name":"label","Value":"_framework/System.ComponentModel.wasm"}]},{"Route":"_framework/System.ComponentModel.m11rh1qn2x.wasm","AssetFile":"_framework/System.ComponentModel.m11rh1qn2x.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388651380"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m11rh1qn2x"},{"Name":"integrity","Value":"sha256-9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ="},{"Name":"label","Value":"_framework/System.ComponentModel.wasm"},{"Name":"original-resource","Value":"\"9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ=\""}]},{"Route":"_framework/System.ComponentModel.m11rh1qn2x.wasm.gz","AssetFile":"_framework/System.ComponentModel.m11rh1qn2x.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m11rh1qn2x"},{"Name":"integrity","Value":"sha256-4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4="},{"Name":"label","Value":"_framework/System.ComponentModel.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.wasm","AssetFile":"_framework/System.ComponentModel.m11rh1qn2x.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ="}]},{"Route":"_framework/System.ComponentModel.wasm","AssetFile":"_framework/System.ComponentModel.m11rh1qn2x.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388651380"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ="},{"Name":"original-resource","Value":"\"9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ=\""}]},{"Route":"_framework/System.ComponentModel.wasm.gz","AssetFile":"_framework/System.ComponentModel.m11rh1qn2x.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4="}]},{"Route":"_framework/System.Configuration.j8qjkqg593.wasm","AssetFile":"_framework/System.Configuration.j8qjkqg593.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"8981"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8qjkqg593"},{"Name":"integrity","Value":"sha256-bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU="},{"Name":"label","Value":"_framework/System.Configuration.wasm"}]},{"Route":"_framework/System.Configuration.j8qjkqg593.wasm","AssetFile":"_framework/System.Configuration.j8qjkqg593.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000320204931"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3122"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8qjkqg593"},{"Name":"integrity","Value":"sha256-bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU="},{"Name":"label","Value":"_framework/System.Configuration.wasm"},{"Name":"original-resource","Value":"\"bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU=\""}]},{"Route":"_framework/System.Configuration.j8qjkqg593.wasm.gz","AssetFile":"_framework/System.Configuration.j8qjkqg593.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3122"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8qjkqg593"},{"Name":"integrity","Value":"sha256-KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA="},{"Name":"label","Value":"_framework/System.Configuration.wasm.gz"}]},{"Route":"_framework/System.Configuration.wasm","AssetFile":"_framework/System.Configuration.j8qjkqg593.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"8981"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU="}]},{"Route":"_framework/System.Configuration.wasm","AssetFile":"_framework/System.Configuration.j8qjkqg593.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000320204931"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3122"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU="},{"Name":"original-resource","Value":"\"bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU=\""}]},{"Route":"_framework/System.Configuration.wasm.gz","AssetFile":"_framework/System.Configuration.j8qjkqg593.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3122"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA="}]},{"Route":"_framework/System.Console.wasm","AssetFile":"_framework/System.Console.x9at0eh4vs.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"43797"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI="}]},{"Route":"_framework/System.Console.wasm","AssetFile":"_framework/System.Console.x9at0eh4vs.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051570316"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI="},{"Name":"original-resource","Value":"\"ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI=\""}]},{"Route":"_framework/System.Console.wasm.gz","AssetFile":"_framework/System.Console.x9at0eh4vs.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM="}]},{"Route":"_framework/System.Console.x9at0eh4vs.wasm","AssetFile":"_framework/System.Console.x9at0eh4vs.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"43797"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x9at0eh4vs"},{"Name":"integrity","Value":"sha256-ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI="},{"Name":"label","Value":"_framework/System.Console.wasm"}]},{"Route":"_framework/System.Console.x9at0eh4vs.wasm","AssetFile":"_framework/System.Console.x9at0eh4vs.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051570316"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x9at0eh4vs"},{"Name":"integrity","Value":"sha256-ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI="},{"Name":"label","Value":"_framework/System.Console.wasm"},{"Name":"original-resource","Value":"\"ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI=\""}]},{"Route":"_framework/System.Console.x9at0eh4vs.wasm.gz","AssetFile":"_framework/System.Console.x9at0eh4vs.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x9at0eh4vs"},{"Name":"integrity","Value":"sha256-EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM="},{"Name":"label","Value":"_framework/System.Console.wasm.gz"}]},{"Route":"_framework/System.Core.ickp29885z.wasm","AssetFile":"_framework/System.Core.ickp29885z.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ickp29885z"},{"Name":"integrity","Value":"sha256-vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU="},{"Name":"label","Value":"_framework/System.Core.wasm"}]},{"Route":"_framework/System.Core.ickp29885z.wasm","AssetFile":"_framework/System.Core.ickp29885z.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000219346348"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ickp29885z"},{"Name":"integrity","Value":"sha256-vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU="},{"Name":"label","Value":"_framework/System.Core.wasm"},{"Name":"original-resource","Value":"\"vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU=\""}]},{"Route":"_framework/System.Core.ickp29885z.wasm.gz","AssetFile":"_framework/System.Core.ickp29885z.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ickp29885z"},{"Name":"integrity","Value":"sha256-RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4="},{"Name":"label","Value":"_framework/System.Core.wasm.gz"}]},{"Route":"_framework/System.Core.wasm","AssetFile":"_framework/System.Core.ickp29885z.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU="}]},{"Route":"_framework/System.Core.wasm","AssetFile":"_framework/System.Core.ickp29885z.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000219346348"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU="},{"Name":"original-resource","Value":"\"vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU=\""}]},{"Route":"_framework/System.Core.wasm.gz","AssetFile":"_framework/System.Core.ickp29885z.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4="}]},{"Route":"_framework/System.Data.0h75nr7qqd.wasm","AssetFile":"_framework/System.Data.0h75nr7qqd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"15125"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0h75nr7qqd"},{"Name":"integrity","Value":"sha256-7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg="},{"Name":"label","Value":"_framework/System.Data.wasm"}]},{"Route":"_framework/System.Data.0h75nr7qqd.wasm","AssetFile":"_framework/System.Data.0h75nr7qqd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000199084213"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5022"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0h75nr7qqd"},{"Name":"integrity","Value":"sha256-7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg="},{"Name":"label","Value":"_framework/System.Data.wasm"},{"Name":"original-resource","Value":"\"7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg=\""}]},{"Route":"_framework/System.Data.0h75nr7qqd.wasm.gz","AssetFile":"_framework/System.Data.0h75nr7qqd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5022"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0h75nr7qqd"},{"Name":"integrity","Value":"sha256-8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE="},{"Name":"label","Value":"_framework/System.Data.wasm.gz"}]},{"Route":"_framework/System.Data.Common.4wisaz8pj4.wasm","AssetFile":"_framework/System.Data.Common.4wisaz8pj4.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1007893"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4wisaz8pj4"},{"Name":"integrity","Value":"sha256-pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q="},{"Name":"label","Value":"_framework/System.Data.Common.wasm"}]},{"Route":"_framework/System.Data.Common.4wisaz8pj4.wasm","AssetFile":"_framework/System.Data.Common.4wisaz8pj4.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000002663974"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"375378"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4wisaz8pj4"},{"Name":"integrity","Value":"sha256-pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q="},{"Name":"label","Value":"_framework/System.Data.Common.wasm"},{"Name":"original-resource","Value":"\"pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q=\""}]},{"Route":"_framework/System.Data.Common.4wisaz8pj4.wasm.gz","AssetFile":"_framework/System.Data.Common.4wisaz8pj4.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"375378"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4wisaz8pj4"},{"Name":"integrity","Value":"sha256-ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A="},{"Name":"label","Value":"_framework/System.Data.Common.wasm.gz"}]},{"Route":"_framework/System.Data.Common.wasm","AssetFile":"_framework/System.Data.Common.4wisaz8pj4.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1007893"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q="}]},{"Route":"_framework/System.Data.Common.wasm","AssetFile":"_framework/System.Data.Common.4wisaz8pj4.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000002663974"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"375378"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q="},{"Name":"original-resource","Value":"\"pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q=\""}]},{"Route":"_framework/System.Data.Common.wasm.gz","AssetFile":"_framework/System.Data.Common.4wisaz8pj4.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"375378"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A="}]},{"Route":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm","AssetFile":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"904tnen1ot"},{"Name":"integrity","Value":"sha256-dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A="},{"Name":"label","Value":"_framework/System.Data.DataSetExtensions.wasm"}]},{"Route":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm","AssetFile":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000480307397"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2081"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"904tnen1ot"},{"Name":"integrity","Value":"sha256-dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A="},{"Name":"label","Value":"_framework/System.Data.DataSetExtensions.wasm"},{"Name":"original-resource","Value":"\"dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A=\""}]},{"Route":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm.gz","AssetFile":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2081"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"904tnen1ot"},{"Name":"integrity","Value":"sha256-re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY="},{"Name":"label","Value":"_framework/System.Data.DataSetExtensions.wasm.gz"}]},{"Route":"_framework/System.Data.DataSetExtensions.wasm","AssetFile":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A="}]},{"Route":"_framework/System.Data.DataSetExtensions.wasm","AssetFile":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000480307397"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2081"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A="},{"Name":"original-resource","Value":"\"dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A=\""}]},{"Route":"_framework/System.Data.DataSetExtensions.wasm.gz","AssetFile":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2081"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY="}]},{"Route":"_framework/System.Data.wasm","AssetFile":"_framework/System.Data.0h75nr7qqd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"15125"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg="}]},{"Route":"_framework/System.Data.wasm","AssetFile":"_framework/System.Data.0h75nr7qqd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000199084213"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5022"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg="},{"Name":"original-resource","Value":"\"7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg=\""}]},{"Route":"_framework/System.Data.wasm.gz","AssetFile":"_framework/System.Data.0h75nr7qqd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5022"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE="}]},{"Route":"_framework/System.Diagnostics.Contracts.wasm","AssetFile":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I="}]},{"Route":"_framework/System.Diagnostics.Contracts.wasm","AssetFile":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000417885499"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2392"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I="},{"Name":"original-resource","Value":"\"2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I=\""}]},{"Route":"_framework/System.Diagnostics.Contracts.wasm.gz","AssetFile":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2392"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY="}]},{"Route":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm","AssetFile":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z1eotzj35n"},{"Name":"integrity","Value":"sha256-2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I="},{"Name":"label","Value":"_framework/System.Diagnostics.Contracts.wasm"}]},{"Route":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm","AssetFile":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000417885499"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2392"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z1eotzj35n"},{"Name":"integrity","Value":"sha256-2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I="},{"Name":"label","Value":"_framework/System.Diagnostics.Contracts.wasm"},{"Name":"original-resource","Value":"\"2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I=\""}]},{"Route":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm.gz","AssetFile":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2392"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z1eotzj35n"},{"Name":"integrity","Value":"sha256-Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY="},{"Name":"label","Value":"_framework/System.Diagnostics.Contracts.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm","AssetFile":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aeh9b1tcuc"},{"Name":"integrity","Value":"sha256-Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g="},{"Name":"label","Value":"_framework/System.Diagnostics.Debug.wasm"}]},{"Route":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm","AssetFile":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000437636761"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2284"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aeh9b1tcuc"},{"Name":"integrity","Value":"sha256-Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g="},{"Name":"label","Value":"_framework/System.Diagnostics.Debug.wasm"},{"Name":"original-resource","Value":"\"Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g=\""}]},{"Route":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm.gz","AssetFile":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2284"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aeh9b1tcuc"},{"Name":"integrity","Value":"sha256-DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk="},{"Name":"label","Value":"_framework/System.Diagnostics.Debug.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.Debug.wasm","AssetFile":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g="}]},{"Route":"_framework/System.Diagnostics.Debug.wasm","AssetFile":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000437636761"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2284"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g="},{"Name":"original-resource","Value":"\"Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g=\""}]},{"Route":"_framework/System.Diagnostics.Debug.wasm.gz","AssetFile":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2284"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk="}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm","AssetFile":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"192277"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ou2dt7nfo2"},{"Name":"integrity","Value":"sha256-sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc="},{"Name":"label","Value":"_framework/System.Diagnostics.DiagnosticSource.wasm"}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm","AssetFile":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000012340499"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"81033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ou2dt7nfo2"},{"Name":"integrity","Value":"sha256-sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc="},{"Name":"label","Value":"_framework/System.Diagnostics.DiagnosticSource.wasm"},{"Name":"original-resource","Value":"\"sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc=\""}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm.gz","AssetFile":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"81033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ou2dt7nfo2"},{"Name":"integrity","Value":"sha256-4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs="},{"Name":"label","Value":"_framework/System.Diagnostics.DiagnosticSource.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.wasm","AssetFile":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"192277"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc="}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.wasm","AssetFile":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000012340499"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"81033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc="},{"Name":"original-resource","Value":"\"sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc=\""}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.wasm.gz","AssetFile":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"81033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs="}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm","AssetFile":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"12565"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kv9gl8mgag"},{"Name":"integrity","Value":"sha256-ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4="},{"Name":"label","Value":"_framework/System.Diagnostics.FileVersionInfo.wasm"}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm","AssetFile":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000194817845"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5132"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kv9gl8mgag"},{"Name":"integrity","Value":"sha256-ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4="},{"Name":"label","Value":"_framework/System.Diagnostics.FileVersionInfo.wasm"},{"Name":"original-resource","Value":"\"ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4=\""}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm.gz","AssetFile":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5132"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kv9gl8mgag"},{"Name":"integrity","Value":"sha256-Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA="},{"Name":"label","Value":"_framework/System.Diagnostics.FileVersionInfo.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.wasm","AssetFile":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"12565"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4="}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.wasm","AssetFile":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000194817845"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5132"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4="},{"Name":"original-resource","Value":"\"ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4=\""}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.wasm.gz","AssetFile":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5132"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA="}]},{"Route":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm","AssetFile":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"46357"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lqtqkmw274"},{"Name":"integrity","Value":"sha256-87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk="},{"Name":"label","Value":"_framework/System.Diagnostics.Process.wasm"}]},{"Route":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm","AssetFile":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061736017"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lqtqkmw274"},{"Name":"integrity","Value":"sha256-87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk="},{"Name":"label","Value":"_framework/System.Diagnostics.Process.wasm"},{"Name":"original-resource","Value":"\"87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk=\""}]},{"Route":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm.gz","AssetFile":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lqtqkmw274"},{"Name":"integrity","Value":"sha256-a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0="},{"Name":"label","Value":"_framework/System.Diagnostics.Process.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.Process.wasm","AssetFile":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"46357"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk="}]},{"Route":"_framework/System.Diagnostics.Process.wasm","AssetFile":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061736017"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk="},{"Name":"original-resource","Value":"\"87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk=\""}]},{"Route":"_framework/System.Diagnostics.Process.wasm.gz","AssetFile":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0="}]},{"Route":"_framework/System.Diagnostics.StackTrace.wasm","AssetFile":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"15637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls="}]},{"Route":"_framework/System.Diagnostics.StackTrace.wasm","AssetFile":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000135758892"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7365"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls="},{"Name":"original-resource","Value":"\"jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls=\""}]},{"Route":"_framework/System.Diagnostics.StackTrace.wasm.gz","AssetFile":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7365"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg="}]},{"Route":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm","AssetFile":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"15637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wvlboxd9cz"},{"Name":"integrity","Value":"sha256-jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls="},{"Name":"label","Value":"_framework/System.Diagnostics.StackTrace.wasm"}]},{"Route":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm","AssetFile":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000135758892"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7365"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wvlboxd9cz"},{"Name":"integrity","Value":"sha256-jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls="},{"Name":"label","Value":"_framework/System.Diagnostics.StackTrace.wasm"},{"Name":"original-resource","Value":"\"jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls=\""}]},{"Route":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm.gz","AssetFile":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7365"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wvlboxd9cz"},{"Name":"integrity","Value":"sha256-+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg="},{"Name":"label","Value":"_framework/System.Diagnostics.StackTrace.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm","AssetFile":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"21269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mx5w1z1p6w"},{"Name":"integrity","Value":"sha256-9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8="},{"Name":"label","Value":"_framework/System.Diagnostics.TextWriterTraceListener.wasm"}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm","AssetFile":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000106484932"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mx5w1z1p6w"},{"Name":"integrity","Value":"sha256-9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8="},{"Name":"label","Value":"_framework/System.Diagnostics.TextWriterTraceListener.wasm"},{"Name":"original-resource","Value":"\"9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8=\""}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm.gz","AssetFile":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mx5w1z1p6w"},{"Name":"integrity","Value":"sha256-bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY="},{"Name":"label","Value":"_framework/System.Diagnostics.TextWriterTraceListener.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.wasm","AssetFile":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"21269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8="}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.wasm","AssetFile":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000106484932"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8="},{"Name":"original-resource","Value":"\"9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8=\""}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.wasm.gz","AssetFile":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY="}]},{"Route":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm","AssetFile":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"862j1ozg5o"},{"Name":"integrity","Value":"sha256-wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE="},{"Name":"label","Value":"_framework/System.Diagnostics.Tools.wasm"}]},{"Route":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm","AssetFile":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455580866"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"862j1ozg5o"},{"Name":"integrity","Value":"sha256-wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE="},{"Name":"label","Value":"_framework/System.Diagnostics.Tools.wasm"},{"Name":"original-resource","Value":"\"wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE=\""}]},{"Route":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm.gz","AssetFile":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"862j1ozg5o"},{"Name":"integrity","Value":"sha256-Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0="},{"Name":"label","Value":"_framework/System.Diagnostics.Tools.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.Tools.wasm","AssetFile":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE="}]},{"Route":"_framework/System.Diagnostics.Tools.wasm","AssetFile":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455580866"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE="},{"Name":"original-resource","Value":"\"wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE=\""}]},{"Route":"_framework/System.Diagnostics.Tools.wasm.gz","AssetFile":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0="}]},{"Route":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm","AssetFile":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"48405"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j08okd90mo"},{"Name":"integrity","Value":"sha256-k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc="},{"Name":"label","Value":"_framework/System.Diagnostics.TraceSource.wasm"}]},{"Route":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm","AssetFile":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000049701789"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20119"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j08okd90mo"},{"Name":"integrity","Value":"sha256-k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc="},{"Name":"label","Value":"_framework/System.Diagnostics.TraceSource.wasm"},{"Name":"original-resource","Value":"\"k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc=\""}]},{"Route":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm.gz","AssetFile":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20119"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j08okd90mo"},{"Name":"integrity","Value":"sha256-xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM="},{"Name":"label","Value":"_framework/System.Diagnostics.TraceSource.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.TraceSource.wasm","AssetFile":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"48405"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc="}]},{"Route":"_framework/System.Diagnostics.TraceSource.wasm","AssetFile":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000049701789"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20119"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc="},{"Name":"original-resource","Value":"\"k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc=\""}]},{"Route":"_framework/System.Diagnostics.TraceSource.wasm.gz","AssetFile":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20119"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM="}]},{"Route":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm","AssetFile":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bnz7jo4op8"},{"Name":"integrity","Value":"sha256-ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg="},{"Name":"label","Value":"_framework/System.Diagnostics.Tracing.wasm"}]},{"Route":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm","AssetFile":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000398406375"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bnz7jo4op8"},{"Name":"integrity","Value":"sha256-ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg="},{"Name":"label","Value":"_framework/System.Diagnostics.Tracing.wasm"},{"Name":"original-resource","Value":"\"ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg=\""}]},{"Route":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm.gz","AssetFile":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bnz7jo4op8"},{"Name":"integrity","Value":"sha256-ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI="},{"Name":"label","Value":"_framework/System.Diagnostics.Tracing.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.Tracing.wasm","AssetFile":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg="}]},{"Route":"_framework/System.Diagnostics.Tracing.wasm","AssetFile":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000398406375"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg="},{"Name":"original-resource","Value":"\"ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg=\""}]},{"Route":"_framework/System.Diagnostics.Tracing.wasm.gz","AssetFile":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI="}]},{"Route":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm","AssetFile":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"54549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k3z431p3v7"},{"Name":"integrity","Value":"sha256-sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U="},{"Name":"label","Value":"_framework/System.Drawing.Primitives.wasm"}]},{"Route":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm","AssetFile":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041590418"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24043"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k3z431p3v7"},{"Name":"integrity","Value":"sha256-sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U="},{"Name":"label","Value":"_framework/System.Drawing.Primitives.wasm"},{"Name":"original-resource","Value":"\"sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U=\""}]},{"Route":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm.gz","AssetFile":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24043"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k3z431p3v7"},{"Name":"integrity","Value":"sha256-s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto="},{"Name":"label","Value":"_framework/System.Drawing.Primitives.wasm.gz"}]},{"Route":"_framework/System.Drawing.Primitives.wasm","AssetFile":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"54549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U="}]},{"Route":"_framework/System.Drawing.Primitives.wasm","AssetFile":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041590418"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24043"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U="},{"Name":"original-resource","Value":"\"sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U=\""}]},{"Route":"_framework/System.Drawing.Primitives.wasm.gz","AssetFile":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24043"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto="}]},{"Route":"_framework/System.Drawing.v0usa2s224.wasm","AssetFile":"_framework/System.Drawing.v0usa2s224.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0usa2s224"},{"Name":"integrity","Value":"sha256-/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I="},{"Name":"label","Value":"_framework/System.Drawing.wasm"}]},{"Route":"_framework/System.Drawing.v0usa2s224.wasm","AssetFile":"_framework/System.Drawing.v0usa2s224.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000258732212"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3864"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0usa2s224"},{"Name":"integrity","Value":"sha256-/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I="},{"Name":"label","Value":"_framework/System.Drawing.wasm"},{"Name":"original-resource","Value":"\"/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I=\""}]},{"Route":"_framework/System.Drawing.v0usa2s224.wasm.gz","AssetFile":"_framework/System.Drawing.v0usa2s224.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3864"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0usa2s224"},{"Name":"integrity","Value":"sha256-ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c="},{"Name":"label","Value":"_framework/System.Drawing.wasm.gz"}]},{"Route":"_framework/System.Drawing.wasm","AssetFile":"_framework/System.Drawing.v0usa2s224.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I="}]},{"Route":"_framework/System.Drawing.wasm","AssetFile":"_framework/System.Drawing.v0usa2s224.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000258732212"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3864"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I="},{"Name":"original-resource","Value":"\"/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I=\""}]},{"Route":"_framework/System.Drawing.wasm.gz","AssetFile":"_framework/System.Drawing.v0usa2s224.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3864"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c="}]},{"Route":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm","AssetFile":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iktlm0yhdx"},{"Name":"integrity","Value":"sha256-8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ="},{"Name":"label","Value":"_framework/System.Dynamic.Runtime.wasm"}]},{"Route":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm","AssetFile":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000408997955"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2444"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iktlm0yhdx"},{"Name":"integrity","Value":"sha256-8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ="},{"Name":"label","Value":"_framework/System.Dynamic.Runtime.wasm"},{"Name":"original-resource","Value":"\"8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ=\""}]},{"Route":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm.gz","AssetFile":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2444"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iktlm0yhdx"},{"Name":"integrity","Value":"sha256-DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A="},{"Name":"label","Value":"_framework/System.Dynamic.Runtime.wasm.gz"}]},{"Route":"_framework/System.Dynamic.Runtime.wasm","AssetFile":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ="}]},{"Route":"_framework/System.Dynamic.Runtime.wasm","AssetFile":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000408997955"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2444"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ="},{"Name":"original-resource","Value":"\"8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ=\""}]},{"Route":"_framework/System.Dynamic.Runtime.wasm.gz","AssetFile":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2444"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A="}]},{"Route":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm","AssetFile":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"86805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9iyl1hnh76"},{"Name":"integrity","Value":"sha256-8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0="},{"Name":"label","Value":"_framework/System.Formats.Asn1.wasm"}]},{"Route":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm","AssetFile":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000028005713"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35706"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9iyl1hnh76"},{"Name":"integrity","Value":"sha256-8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0="},{"Name":"label","Value":"_framework/System.Formats.Asn1.wasm"},{"Name":"original-resource","Value":"\"8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0=\""}]},{"Route":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm.gz","AssetFile":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35706"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9iyl1hnh76"},{"Name":"integrity","Value":"sha256-LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw="},{"Name":"label","Value":"_framework/System.Formats.Asn1.wasm.gz"}]},{"Route":"_framework/System.Formats.Asn1.wasm","AssetFile":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"86805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0="}]},{"Route":"_framework/System.Formats.Asn1.wasm","AssetFile":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000028005713"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35706"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0="},{"Name":"original-resource","Value":"\"8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0=\""}]},{"Route":"_framework/System.Formats.Asn1.wasm.gz","AssetFile":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35706"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw="}]},{"Route":"_framework/System.Formats.Tar.9ikmelhi7g.wasm","AssetFile":"_framework/System.Formats.Tar.9ikmelhi7g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"28437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ikmelhi7g"},{"Name":"integrity","Value":"sha256-rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE="},{"Name":"label","Value":"_framework/System.Formats.Tar.wasm"}]},{"Route":"_framework/System.Formats.Tar.9ikmelhi7g.wasm","AssetFile":"_framework/System.Formats.Tar.9ikmelhi7g.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000095292548"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10493"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ikmelhi7g"},{"Name":"integrity","Value":"sha256-rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE="},{"Name":"label","Value":"_framework/System.Formats.Tar.wasm"},{"Name":"original-resource","Value":"\"rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE=\""}]},{"Route":"_framework/System.Formats.Tar.9ikmelhi7g.wasm.gz","AssetFile":"_framework/System.Formats.Tar.9ikmelhi7g.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10493"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ikmelhi7g"},{"Name":"integrity","Value":"sha256-F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k="},{"Name":"label","Value":"_framework/System.Formats.Tar.wasm.gz"}]},{"Route":"_framework/System.Formats.Tar.wasm","AssetFile":"_framework/System.Formats.Tar.9ikmelhi7g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"28437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE="}]},{"Route":"_framework/System.Formats.Tar.wasm","AssetFile":"_framework/System.Formats.Tar.9ikmelhi7g.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000095292548"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10493"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE="},{"Name":"original-resource","Value":"\"rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE=\""}]},{"Route":"_framework/System.Formats.Tar.wasm.gz","AssetFile":"_framework/System.Formats.Tar.9ikmelhi7g.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10493"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k="}]},{"Route":"_framework/System.Globalization.4ulc930few.wasm","AssetFile":"_framework/System.Globalization.4ulc930few.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4ulc930few"},{"Name":"integrity","Value":"sha256-jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I="},{"Name":"label","Value":"_framework/System.Globalization.wasm"}]},{"Route":"_framework/System.Globalization.4ulc930few.wasm","AssetFile":"_framework/System.Globalization.4ulc930few.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000439367311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4ulc930few"},{"Name":"integrity","Value":"sha256-jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I="},{"Name":"label","Value":"_framework/System.Globalization.wasm"},{"Name":"original-resource","Value":"\"jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I=\""}]},{"Route":"_framework/System.Globalization.4ulc930few.wasm.gz","AssetFile":"_framework/System.Globalization.4ulc930few.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4ulc930few"},{"Name":"integrity","Value":"sha256-GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA="},{"Name":"label","Value":"_framework/System.Globalization.wasm.gz"}]},{"Route":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm","AssetFile":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e8yl47y6cv"},{"Name":"integrity","Value":"sha256-jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo="},{"Name":"label","Value":"_framework/System.Globalization.Calendars.wasm"}]},{"Route":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm","AssetFile":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000434971727"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2298"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e8yl47y6cv"},{"Name":"integrity","Value":"sha256-jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo="},{"Name":"label","Value":"_framework/System.Globalization.Calendars.wasm"},{"Name":"original-resource","Value":"\"jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo=\""}]},{"Route":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm.gz","AssetFile":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2298"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e8yl47y6cv"},{"Name":"integrity","Value":"sha256-bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A="},{"Name":"label","Value":"_framework/System.Globalization.Calendars.wasm.gz"}]},{"Route":"_framework/System.Globalization.Calendars.wasm","AssetFile":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo="}]},{"Route":"_framework/System.Globalization.Calendars.wasm","AssetFile":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000434971727"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2298"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo="},{"Name":"original-resource","Value":"\"jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo=\""}]},{"Route":"_framework/System.Globalization.Calendars.wasm.gz","AssetFile":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2298"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A="}]},{"Route":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm","AssetFile":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvxkfs32tv"},{"Name":"integrity","Value":"sha256-e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ="},{"Name":"label","Value":"_framework/System.Globalization.Extensions.wasm"}]},{"Route":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm","AssetFile":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000456412597"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2190"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvxkfs32tv"},{"Name":"integrity","Value":"sha256-e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ="},{"Name":"label","Value":"_framework/System.Globalization.Extensions.wasm"},{"Name":"original-resource","Value":"\"e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ=\""}]},{"Route":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm.gz","AssetFile":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2190"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvxkfs32tv"},{"Name":"integrity","Value":"sha256-mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o="},{"Name":"label","Value":"_framework/System.Globalization.Extensions.wasm.gz"}]},{"Route":"_framework/System.Globalization.Extensions.wasm","AssetFile":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ="}]},{"Route":"_framework/System.Globalization.Extensions.wasm","AssetFile":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000456412597"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2190"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ="},{"Name":"original-resource","Value":"\"e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ=\""}]},{"Route":"_framework/System.Globalization.Extensions.wasm.gz","AssetFile":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2190"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o="}]},{"Route":"_framework/System.Globalization.wasm","AssetFile":"_framework/System.Globalization.4ulc930few.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I="}]},{"Route":"_framework/System.Globalization.wasm","AssetFile":"_framework/System.Globalization.4ulc930few.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000439367311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I="},{"Name":"original-resource","Value":"\"jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I=\""}]},{"Route":"_framework/System.Globalization.wasm.gz","AssetFile":"_framework/System.Globalization.4ulc930few.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA="}]},{"Route":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm","AssetFile":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ibxx4kh8c6"},{"Name":"integrity","Value":"sha256-7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY="},{"Name":"label","Value":"_framework/System.IO.Compression.Brotli.wasm"}]},{"Route":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm","AssetFile":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000143988481"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6944"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ibxx4kh8c6"},{"Name":"integrity","Value":"sha256-7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY="},{"Name":"label","Value":"_framework/System.IO.Compression.Brotli.wasm"},{"Name":"original-resource","Value":"\"7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY=\""}]},{"Route":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm.gz","AssetFile":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6944"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ibxx4kh8c6"},{"Name":"integrity","Value":"sha256-1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw="},{"Name":"label","Value":"_framework/System.IO.Compression.Brotli.wasm.gz"}]},{"Route":"_framework/System.IO.Compression.Brotli.wasm","AssetFile":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY="}]},{"Route":"_framework/System.IO.Compression.Brotli.wasm","AssetFile":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000143988481"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6944"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY="},{"Name":"original-resource","Value":"\"7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY=\""}]},{"Route":"_framework/System.IO.Compression.Brotli.wasm.gz","AssetFile":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6944"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw="}]},{"Route":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm","AssetFile":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bselp9vv9w"},{"Name":"integrity","Value":"sha256-5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM="},{"Name":"label","Value":"_framework/System.IO.Compression.FileSystem.wasm"}]},{"Route":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm","AssetFile":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000498504487"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bselp9vv9w"},{"Name":"integrity","Value":"sha256-5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM="},{"Name":"label","Value":"_framework/System.IO.Compression.FileSystem.wasm"},{"Name":"original-resource","Value":"\"5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM=\""}]},{"Route":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm.gz","AssetFile":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bselp9vv9w"},{"Name":"integrity","Value":"sha256-dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI="},{"Name":"label","Value":"_framework/System.IO.Compression.FileSystem.wasm.gz"}]},{"Route":"_framework/System.IO.Compression.FileSystem.wasm","AssetFile":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM="}]},{"Route":"_framework/System.IO.Compression.FileSystem.wasm","AssetFile":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000498504487"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM="},{"Name":"original-resource","Value":"\"5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM=\""}]},{"Route":"_framework/System.IO.Compression.FileSystem.wasm.gz","AssetFile":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI="}]},{"Route":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm","AssetFile":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"43285"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b0ha8vyo8i"},{"Name":"integrity","Value":"sha256-m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk="},{"Name":"label","Value":"_framework/System.IO.Compression.ZipFile.wasm"}]},{"Route":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm","AssetFile":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053490238"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18694"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b0ha8vyo8i"},{"Name":"integrity","Value":"sha256-m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk="},{"Name":"label","Value":"_framework/System.IO.Compression.ZipFile.wasm"},{"Name":"original-resource","Value":"\"m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk=\""}]},{"Route":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm.gz","AssetFile":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18694"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b0ha8vyo8i"},{"Name":"integrity","Value":"sha256-+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc="},{"Name":"label","Value":"_framework/System.IO.Compression.ZipFile.wasm.gz"}]},{"Route":"_framework/System.IO.Compression.ZipFile.wasm","AssetFile":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"43285"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk="}]},{"Route":"_framework/System.IO.Compression.ZipFile.wasm","AssetFile":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053490238"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18694"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk="},{"Name":"original-resource","Value":"\"m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk=\""}]},{"Route":"_framework/System.IO.Compression.ZipFile.wasm.gz","AssetFile":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18694"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc="}]},{"Route":"_framework/System.IO.Compression.sgbc42zrd8.wasm","AssetFile":"_framework/System.IO.Compression.sgbc42zrd8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"157461"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sgbc42zrd8"},{"Name":"integrity","Value":"sha256-DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY="},{"Name":"label","Value":"_framework/System.IO.Compression.wasm"}]},{"Route":"_framework/System.IO.Compression.sgbc42zrd8.wasm","AssetFile":"_framework/System.IO.Compression.sgbc42zrd8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015435195"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64786"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sgbc42zrd8"},{"Name":"integrity","Value":"sha256-DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY="},{"Name":"label","Value":"_framework/System.IO.Compression.wasm"},{"Name":"original-resource","Value":"\"DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY=\""}]},{"Route":"_framework/System.IO.Compression.sgbc42zrd8.wasm.gz","AssetFile":"_framework/System.IO.Compression.sgbc42zrd8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64786"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sgbc42zrd8"},{"Name":"integrity","Value":"sha256-/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28="},{"Name":"label","Value":"_framework/System.IO.Compression.wasm.gz"}]},{"Route":"_framework/System.IO.Compression.wasm","AssetFile":"_framework/System.IO.Compression.sgbc42zrd8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"157461"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY="}]},{"Route":"_framework/System.IO.Compression.wasm","AssetFile":"_framework/System.IO.Compression.sgbc42zrd8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015435195"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64786"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY="},{"Name":"original-resource","Value":"\"DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY=\""}]},{"Route":"_framework/System.IO.Compression.wasm.gz","AssetFile":"_framework/System.IO.Compression.sgbc42zrd8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64786"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28="}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm","AssetFile":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"21781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oi9xn5s0h3"},{"Name":"integrity","Value":"sha256-kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg="},{"Name":"label","Value":"_framework/System.IO.FileSystem.AccessControl.wasm"}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm","AssetFile":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000117994100"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8474"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oi9xn5s0h3"},{"Name":"integrity","Value":"sha256-kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg="},{"Name":"label","Value":"_framework/System.IO.FileSystem.AccessControl.wasm"},{"Name":"original-resource","Value":"\"kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg=\""}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8474"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oi9xn5s0h3"},{"Name":"integrity","Value":"sha256-dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A="},{"Name":"label","Value":"_framework/System.IO.FileSystem.AccessControl.wasm.gz"}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.wasm","AssetFile":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"21781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg="}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.wasm","AssetFile":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000117994100"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8474"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg="},{"Name":"original-resource","Value":"\"kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg=\""}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8474"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A="}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm","AssetFile":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13589"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fi1uhp9255"},{"Name":"integrity","Value":"sha256-2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU="},{"Name":"label","Value":"_framework/System.IO.FileSystem.DriveInfo.wasm"}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm","AssetFile":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000165727544"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fi1uhp9255"},{"Name":"integrity","Value":"sha256-2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU="},{"Name":"label","Value":"_framework/System.IO.FileSystem.DriveInfo.wasm"},{"Name":"original-resource","Value":"\"2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU=\""}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fi1uhp9255"},{"Name":"integrity","Value":"sha256-9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4="},{"Name":"label","Value":"_framework/System.IO.FileSystem.DriveInfo.wasm.gz"}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.wasm","AssetFile":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13589"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU="}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.wasm","AssetFile":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000165727544"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU="},{"Name":"original-resource","Value":"\"2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU=\""}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4="}]},{"Route":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm","AssetFile":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6j2ed42ac7"},{"Name":"integrity","Value":"sha256-UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Primitives.wasm"}]},{"Route":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm","AssetFile":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455996352"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2192"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6j2ed42ac7"},{"Name":"integrity","Value":"sha256-UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Primitives.wasm"},{"Name":"original-resource","Value":"\"UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI=\""}]},{"Route":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2192"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6j2ed42ac7"},{"Name":"integrity","Value":"sha256-apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Primitives.wasm.gz"}]},{"Route":"_framework/System.IO.FileSystem.Primitives.wasm","AssetFile":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI="}]},{"Route":"_framework/System.IO.FileSystem.Primitives.wasm","AssetFile":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455996352"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2192"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI="},{"Name":"original-resource","Value":"\"UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI=\""}]},{"Route":"_framework/System.IO.FileSystem.Primitives.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2192"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg="}]},{"Route":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm","AssetFile":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v9i07bnq2k"},{"Name":"integrity","Value":"sha256-g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Watcher.wasm"}]},{"Route":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm","AssetFile":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000114259598"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8751"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v9i07bnq2k"},{"Name":"integrity","Value":"sha256-g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Watcher.wasm"},{"Name":"original-resource","Value":"\"g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg=\""}]},{"Route":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8751"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v9i07bnq2k"},{"Name":"integrity","Value":"sha256-XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Watcher.wasm.gz"}]},{"Route":"_framework/System.IO.FileSystem.Watcher.wasm","AssetFile":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg="}]},{"Route":"_framework/System.IO.FileSystem.Watcher.wasm","AssetFile":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000114259598"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8751"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg="},{"Name":"original-resource","Value":"\"g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg=\""}]},{"Route":"_framework/System.IO.FileSystem.Watcher.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8751"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ="}]},{"Route":"_framework/System.IO.FileSystem.fktu0k4b93.wasm","AssetFile":"_framework/System.IO.FileSystem.fktu0k4b93.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fktu0k4b93"},{"Name":"integrity","Value":"sha256-L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM="},{"Name":"label","Value":"_framework/System.IO.FileSystem.wasm"}]},{"Route":"_framework/System.IO.FileSystem.fktu0k4b93.wasm","AssetFile":"_framework/System.IO.FileSystem.fktu0k4b93.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000434027778"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2303"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fktu0k4b93"},{"Name":"integrity","Value":"sha256-L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM="},{"Name":"label","Value":"_framework/System.IO.FileSystem.wasm"},{"Name":"original-resource","Value":"\"L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM=\""}]},{"Route":"_framework/System.IO.FileSystem.fktu0k4b93.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.fktu0k4b93.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2303"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fktu0k4b93"},{"Name":"integrity","Value":"sha256-1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ="},{"Name":"label","Value":"_framework/System.IO.FileSystem.wasm.gz"}]},{"Route":"_framework/System.IO.FileSystem.wasm","AssetFile":"_framework/System.IO.FileSystem.fktu0k4b93.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM="}]},{"Route":"_framework/System.IO.FileSystem.wasm","AssetFile":"_framework/System.IO.FileSystem.fktu0k4b93.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000434027778"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2303"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM="},{"Name":"original-resource","Value":"\"L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM=\""}]},{"Route":"_framework/System.IO.FileSystem.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.fktu0k4b93.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2303"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ="}]},{"Route":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm","AssetFile":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"24853"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8ll4gxwfs1"},{"Name":"integrity","Value":"sha256-TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4="},{"Name":"label","Value":"_framework/System.IO.IsolatedStorage.wasm"}]},{"Route":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm","AssetFile":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000106723586"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9369"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8ll4gxwfs1"},{"Name":"integrity","Value":"sha256-TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4="},{"Name":"label","Value":"_framework/System.IO.IsolatedStorage.wasm"},{"Name":"original-resource","Value":"\"TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4=\""}]},{"Route":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm.gz","AssetFile":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9369"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8ll4gxwfs1"},{"Name":"integrity","Value":"sha256-KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ="},{"Name":"label","Value":"_framework/System.IO.IsolatedStorage.wasm.gz"}]},{"Route":"_framework/System.IO.IsolatedStorage.wasm","AssetFile":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"24853"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4="}]},{"Route":"_framework/System.IO.IsolatedStorage.wasm","AssetFile":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000106723586"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9369"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4="},{"Name":"original-resource","Value":"\"TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4=\""}]},{"Route":"_framework/System.IO.IsolatedStorage.wasm.gz","AssetFile":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9369"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ="}]},{"Route":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm","AssetFile":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"39701"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6do4olk7ib"},{"Name":"integrity","Value":"sha256-WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk="},{"Name":"label","Value":"_framework/System.IO.MemoryMappedFiles.wasm"}]},{"Route":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm","AssetFile":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000058775126"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6do4olk7ib"},{"Name":"integrity","Value":"sha256-WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk="},{"Name":"label","Value":"_framework/System.IO.MemoryMappedFiles.wasm"},{"Name":"original-resource","Value":"\"WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk=\""}]},{"Route":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm.gz","AssetFile":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6do4olk7ib"},{"Name":"integrity","Value":"sha256-uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk="},{"Name":"label","Value":"_framework/System.IO.MemoryMappedFiles.wasm.gz"}]},{"Route":"_framework/System.IO.MemoryMappedFiles.wasm","AssetFile":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"39701"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk="}]},{"Route":"_framework/System.IO.MemoryMappedFiles.wasm","AssetFile":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000058775126"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk="},{"Name":"original-resource","Value":"\"WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk=\""}]},{"Route":"_framework/System.IO.MemoryMappedFiles.wasm.gz","AssetFile":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk="}]},{"Route":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm","AssetFile":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"67861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"21z0t9w6sq"},{"Name":"integrity","Value":"sha256-VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM="},{"Name":"label","Value":"_framework/System.IO.Pipelines.wasm"}]},{"Route":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm","AssetFile":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032928315"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30368"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"21z0t9w6sq"},{"Name":"integrity","Value":"sha256-VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM="},{"Name":"label","Value":"_framework/System.IO.Pipelines.wasm"},{"Name":"original-resource","Value":"\"VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM=\""}]},{"Route":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm.gz","AssetFile":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30368"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"21z0t9w6sq"},{"Name":"integrity","Value":"sha256-7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8="},{"Name":"label","Value":"_framework/System.IO.Pipelines.wasm.gz"}]},{"Route":"_framework/System.IO.Pipelines.wasm","AssetFile":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"67861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM="}]},{"Route":"_framework/System.IO.Pipelines.wasm","AssetFile":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032928315"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30368"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM="},{"Name":"original-resource","Value":"\"VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM=\""}]},{"Route":"_framework/System.IO.Pipelines.wasm.gz","AssetFile":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30368"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8="}]},{"Route":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm","AssetFile":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5lvzz4lks7"},{"Name":"integrity","Value":"sha256-qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE="},{"Name":"label","Value":"_framework/System.IO.Pipes.AccessControl.wasm"}]},{"Route":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm","AssetFile":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000179597701"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5567"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5lvzz4lks7"},{"Name":"integrity","Value":"sha256-qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE="},{"Name":"label","Value":"_framework/System.IO.Pipes.AccessControl.wasm"},{"Name":"original-resource","Value":"\"qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE=\""}]},{"Route":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm.gz","AssetFile":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5567"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5lvzz4lks7"},{"Name":"integrity","Value":"sha256-+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4="},{"Name":"label","Value":"_framework/System.IO.Pipes.AccessControl.wasm.gz"}]},{"Route":"_framework/System.IO.Pipes.AccessControl.wasm","AssetFile":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE="}]},{"Route":"_framework/System.IO.Pipes.AccessControl.wasm","AssetFile":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000179597701"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5567"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE="},{"Name":"original-resource","Value":"\"qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE=\""}]},{"Route":"_framework/System.IO.Pipes.AccessControl.wasm.gz","AssetFile":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5567"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4="}]},{"Route":"_framework/System.IO.Pipes.wasm","AssetFile":"_framework/System.IO.Pipes.xosph8vk4a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg="}]},{"Route":"_framework/System.IO.Pipes.wasm","AssetFile":"_framework/System.IO.Pipes.xosph8vk4a.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000087703912"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg="},{"Name":"original-resource","Value":"\"gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg=\""}]},{"Route":"_framework/System.IO.Pipes.wasm.gz","AssetFile":"_framework/System.IO.Pipes.xosph8vk4a.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE="}]},{"Route":"_framework/System.IO.Pipes.xosph8vk4a.wasm","AssetFile":"_framework/System.IO.Pipes.xosph8vk4a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xosph8vk4a"},{"Name":"integrity","Value":"sha256-gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg="},{"Name":"label","Value":"_framework/System.IO.Pipes.wasm"}]},{"Route":"_framework/System.IO.Pipes.xosph8vk4a.wasm","AssetFile":"_framework/System.IO.Pipes.xosph8vk4a.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000087703912"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xosph8vk4a"},{"Name":"integrity","Value":"sha256-gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg="},{"Name":"label","Value":"_framework/System.IO.Pipes.wasm"},{"Name":"original-resource","Value":"\"gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg=\""}]},{"Route":"_framework/System.IO.Pipes.xosph8vk4a.wasm.gz","AssetFile":"_framework/System.IO.Pipes.xosph8vk4a.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xosph8vk4a"},{"Name":"integrity","Value":"sha256-BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE="},{"Name":"label","Value":"_framework/System.IO.Pipes.wasm.gz"}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm","AssetFile":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d1pja42pyi"},{"Name":"integrity","Value":"sha256-gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4="},{"Name":"label","Value":"_framework/System.IO.UnmanagedMemoryStream.wasm"}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm","AssetFile":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000450045005"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2221"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d1pja42pyi"},{"Name":"integrity","Value":"sha256-gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4="},{"Name":"label","Value":"_framework/System.IO.UnmanagedMemoryStream.wasm"},{"Name":"original-resource","Value":"\"gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4=\""}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm.gz","AssetFile":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2221"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d1pja42pyi"},{"Name":"integrity","Value":"sha256-TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU="},{"Name":"label","Value":"_framework/System.IO.UnmanagedMemoryStream.wasm.gz"}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.wasm","AssetFile":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4="}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.wasm","AssetFile":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000450045005"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2221"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4="},{"Name":"original-resource","Value":"\"gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4=\""}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.wasm.gz","AssetFile":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2221"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU="}]},{"Route":"_framework/System.IO.i9g92fmb9y.wasm","AssetFile":"_framework/System.IO.i9g92fmb9y.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"i9g92fmb9y"},{"Name":"integrity","Value":"sha256-akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw="},{"Name":"label","Value":"_framework/System.IO.wasm"}]},{"Route":"_framework/System.IO.i9g92fmb9y.wasm","AssetFile":"_framework/System.IO.i9g92fmb9y.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438404209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"i9g92fmb9y"},{"Name":"integrity","Value":"sha256-akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw="},{"Name":"label","Value":"_framework/System.IO.wasm"},{"Name":"original-resource","Value":"\"akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw=\""}]},{"Route":"_framework/System.IO.i9g92fmb9y.wasm.gz","AssetFile":"_framework/System.IO.i9g92fmb9y.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"i9g92fmb9y"},{"Name":"integrity","Value":"sha256-DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM="},{"Name":"label","Value":"_framework/System.IO.wasm.gz"}]},{"Route":"_framework/System.IO.wasm","AssetFile":"_framework/System.IO.i9g92fmb9y.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw="}]},{"Route":"_framework/System.IO.wasm","AssetFile":"_framework/System.IO.i9g92fmb9y.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438404209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw="},{"Name":"original-resource","Value":"\"akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw=\""}]},{"Route":"_framework/System.IO.wasm.gz","AssetFile":"_framework/System.IO.i9g92fmb9y.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM="}]},{"Route":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm","AssetFile":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"446229"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m1mh525k0"},{"Name":"integrity","Value":"sha256-VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48="},{"Name":"label","Value":"_framework/System.Linq.AsyncEnumerable.wasm"}]},{"Route":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm","AssetFile":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006961607"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"143644"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m1mh525k0"},{"Name":"integrity","Value":"sha256-VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48="},{"Name":"label","Value":"_framework/System.Linq.AsyncEnumerable.wasm"},{"Name":"original-resource","Value":"\"VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48=\""}]},{"Route":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm.gz","AssetFile":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"143644"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m1mh525k0"},{"Name":"integrity","Value":"sha256-Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8="},{"Name":"label","Value":"_framework/System.Linq.AsyncEnumerable.wasm.gz"}]},{"Route":"_framework/System.Linq.AsyncEnumerable.wasm","AssetFile":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"446229"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48="}]},{"Route":"_framework/System.Linq.AsyncEnumerable.wasm","AssetFile":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006961607"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"143644"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48="},{"Name":"original-resource","Value":"\"VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48=\""}]},{"Route":"_framework/System.Linq.AsyncEnumerable.wasm.gz","AssetFile":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"143644"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8="}]},{"Route":"_framework/System.Linq.Expressions.4nat0rber0.wasm","AssetFile":"_framework/System.Linq.Expressions.4nat0rber0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"565013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4nat0rber0"},{"Name":"integrity","Value":"sha256-IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA="},{"Name":"label","Value":"_framework/System.Linq.Expressions.wasm"}]},{"Route":"_framework/System.Linq.Expressions.4nat0rber0.wasm","AssetFile":"_framework/System.Linq.Expressions.4nat0rber0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004689002"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"213264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4nat0rber0"},{"Name":"integrity","Value":"sha256-IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA="},{"Name":"label","Value":"_framework/System.Linq.Expressions.wasm"},{"Name":"original-resource","Value":"\"IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA=\""}]},{"Route":"_framework/System.Linq.Expressions.4nat0rber0.wasm.gz","AssetFile":"_framework/System.Linq.Expressions.4nat0rber0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"213264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4nat0rber0"},{"Name":"integrity","Value":"sha256-Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0="},{"Name":"label","Value":"_framework/System.Linq.Expressions.wasm.gz"}]},{"Route":"_framework/System.Linq.Expressions.wasm","AssetFile":"_framework/System.Linq.Expressions.4nat0rber0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"565013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA="}]},{"Route":"_framework/System.Linq.Expressions.wasm","AssetFile":"_framework/System.Linq.Expressions.4nat0rber0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004689002"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"213264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA="},{"Name":"original-resource","Value":"\"IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA=\""}]},{"Route":"_framework/System.Linq.Expressions.wasm.gz","AssetFile":"_framework/System.Linq.Expressions.4nat0rber0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"213264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0="}]},{"Route":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm","AssetFile":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"212757"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qf7zemz9aw"},{"Name":"integrity","Value":"sha256-ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18="},{"Name":"label","Value":"_framework/System.Linq.Parallel.wasm"}]},{"Route":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm","AssetFile":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011571663"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86417"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qf7zemz9aw"},{"Name":"integrity","Value":"sha256-ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18="},{"Name":"label","Value":"_framework/System.Linq.Parallel.wasm"},{"Name":"original-resource","Value":"\"ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18=\""}]},{"Route":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm.gz","AssetFile":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86417"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qf7zemz9aw"},{"Name":"integrity","Value":"sha256-NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo="},{"Name":"label","Value":"_framework/System.Linq.Parallel.wasm.gz"}]},{"Route":"_framework/System.Linq.Parallel.wasm","AssetFile":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"212757"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18="}]},{"Route":"_framework/System.Linq.Parallel.wasm","AssetFile":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011571663"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86417"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18="},{"Name":"original-resource","Value":"\"ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18=\""}]},{"Route":"_framework/System.Linq.Parallel.wasm.gz","AssetFile":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86417"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo="}]},{"Route":"_framework/System.Linq.Queryable.vwinf8twbn.wasm","AssetFile":"_framework/System.Linq.Queryable.vwinf8twbn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"68373"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vwinf8twbn"},{"Name":"integrity","Value":"sha256-geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM="},{"Name":"label","Value":"_framework/System.Linq.Queryable.wasm"}]},{"Route":"_framework/System.Linq.Queryable.vwinf8twbn.wasm","AssetFile":"_framework/System.Linq.Queryable.vwinf8twbn.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000046755190"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21387"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vwinf8twbn"},{"Name":"integrity","Value":"sha256-geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM="},{"Name":"label","Value":"_framework/System.Linq.Queryable.wasm"},{"Name":"original-resource","Value":"\"geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM=\""}]},{"Route":"_framework/System.Linq.Queryable.vwinf8twbn.wasm.gz","AssetFile":"_framework/System.Linq.Queryable.vwinf8twbn.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21387"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vwinf8twbn"},{"Name":"integrity","Value":"sha256-K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts="},{"Name":"label","Value":"_framework/System.Linq.Queryable.wasm.gz"}]},{"Route":"_framework/System.Linq.Queryable.wasm","AssetFile":"_framework/System.Linq.Queryable.vwinf8twbn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"68373"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM="}]},{"Route":"_framework/System.Linq.Queryable.wasm","AssetFile":"_framework/System.Linq.Queryable.vwinf8twbn.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000046755190"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21387"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM="},{"Name":"original-resource","Value":"\"geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM=\""}]},{"Route":"_framework/System.Linq.Queryable.wasm.gz","AssetFile":"_framework/System.Linq.Queryable.vwinf8twbn.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21387"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts="}]},{"Route":"_framework/System.Linq.rp2jklkmsi.wasm","AssetFile":"_framework/System.Linq.rp2jklkmsi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"190741"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rp2jklkmsi"},{"Name":"integrity","Value":"sha256-f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA="},{"Name":"label","Value":"_framework/System.Linq.wasm"}]},{"Route":"_framework/System.Linq.rp2jklkmsi.wasm","AssetFile":"_framework/System.Linq.rp2jklkmsi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013362017"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"74838"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rp2jklkmsi"},{"Name":"integrity","Value":"sha256-f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA="},{"Name":"label","Value":"_framework/System.Linq.wasm"},{"Name":"original-resource","Value":"\"f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA=\""}]},{"Route":"_framework/System.Linq.rp2jklkmsi.wasm.gz","AssetFile":"_framework/System.Linq.rp2jklkmsi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"74838"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rp2jklkmsi"},{"Name":"integrity","Value":"sha256-+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw="},{"Name":"label","Value":"_framework/System.Linq.wasm.gz"}]},{"Route":"_framework/System.Linq.wasm","AssetFile":"_framework/System.Linq.rp2jklkmsi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"190741"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA="}]},{"Route":"_framework/System.Linq.wasm","AssetFile":"_framework/System.Linq.rp2jklkmsi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013362017"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"74838"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA="},{"Name":"original-resource","Value":"\"f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA=\""}]},{"Route":"_framework/System.Linq.wasm.gz","AssetFile":"_framework/System.Linq.rp2jklkmsi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"74838"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw="}]},{"Route":"_framework/System.Memory.3r0soomurg.wasm","AssetFile":"_framework/System.Memory.3r0soomurg.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"45333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3r0soomurg"},{"Name":"integrity","Value":"sha256-z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc="},{"Name":"label","Value":"_framework/System.Memory.wasm"}]},{"Route":"_framework/System.Memory.3r0soomurg.wasm","AssetFile":"_framework/System.Memory.3r0soomurg.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000048600311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3r0soomurg"},{"Name":"integrity","Value":"sha256-z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc="},{"Name":"label","Value":"_framework/System.Memory.wasm"},{"Name":"original-resource","Value":"\"z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc=\""}]},{"Route":"_framework/System.Memory.3r0soomurg.wasm.gz","AssetFile":"_framework/System.Memory.3r0soomurg.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3r0soomurg"},{"Name":"integrity","Value":"sha256-lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60="},{"Name":"label","Value":"_framework/System.Memory.wasm.gz"}]},{"Route":"_framework/System.Memory.wasm","AssetFile":"_framework/System.Memory.3r0soomurg.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"45333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc="}]},{"Route":"_framework/System.Memory.wasm","AssetFile":"_framework/System.Memory.3r0soomurg.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000048600311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc="},{"Name":"original-resource","Value":"\"z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc=\""}]},{"Route":"_framework/System.Memory.wasm.gz","AssetFile":"_framework/System.Memory.3r0soomurg.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60="}]},{"Route":"_framework/System.Net.Http.9rl4gopayw.wasm","AssetFile":"_framework/System.Net.Http.9rl4gopayw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"285973"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9rl4gopayw"},{"Name":"integrity","Value":"sha256-JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU="},{"Name":"label","Value":"_framework/System.Net.Http.wasm"}]},{"Route":"_framework/System.Net.Http.9rl4gopayw.wasm","AssetFile":"_framework/System.Net.Http.9rl4gopayw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008532787"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"117194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9rl4gopayw"},{"Name":"integrity","Value":"sha256-JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU="},{"Name":"label","Value":"_framework/System.Net.Http.wasm"},{"Name":"original-resource","Value":"\"JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU=\""}]},{"Route":"_framework/System.Net.Http.9rl4gopayw.wasm.gz","AssetFile":"_framework/System.Net.Http.9rl4gopayw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"117194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9rl4gopayw"},{"Name":"integrity","Value":"sha256-Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc="},{"Name":"label","Value":"_framework/System.Net.Http.wasm.gz"}]},{"Route":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm","AssetFile":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t9gqpmtbpb"},{"Name":"integrity","Value":"sha256-H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0="},{"Name":"label","Value":"_framework/System.Net.Http.Json.wasm"}]},{"Route":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm","AssetFile":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051591601"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19382"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t9gqpmtbpb"},{"Name":"integrity","Value":"sha256-H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0="},{"Name":"label","Value":"_framework/System.Net.Http.Json.wasm"},{"Name":"original-resource","Value":"\"H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0=\""}]},{"Route":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm.gz","AssetFile":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19382"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t9gqpmtbpb"},{"Name":"integrity","Value":"sha256-h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg="},{"Name":"label","Value":"_framework/System.Net.Http.Json.wasm.gz"}]},{"Route":"_framework/System.Net.Http.Json.wasm","AssetFile":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0="}]},{"Route":"_framework/System.Net.Http.Json.wasm","AssetFile":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051591601"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19382"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0="},{"Name":"original-resource","Value":"\"H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0=\""}]},{"Route":"_framework/System.Net.Http.Json.wasm.gz","AssetFile":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19382"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg="}]},{"Route":"_framework/System.Net.Http.wasm","AssetFile":"_framework/System.Net.Http.9rl4gopayw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"285973"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU="}]},{"Route":"_framework/System.Net.Http.wasm","AssetFile":"_framework/System.Net.Http.9rl4gopayw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008532787"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"117194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU="},{"Name":"original-resource","Value":"\"JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU=\""}]},{"Route":"_framework/System.Net.Http.wasm.gz","AssetFile":"_framework/System.Net.Http.9rl4gopayw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"117194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc="}]},{"Route":"_framework/System.Net.HttpListener.wasm","AssetFile":"_framework/System.Net.HttpListener.zg37o92yol.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE="}]},{"Route":"_framework/System.Net.HttpListener.wasm","AssetFile":"_framework/System.Net.HttpListener.zg37o92yol.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000062289772"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE="},{"Name":"original-resource","Value":"\"rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE=\""}]},{"Route":"_framework/System.Net.HttpListener.wasm.gz","AssetFile":"_framework/System.Net.HttpListener.zg37o92yol.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs="}]},{"Route":"_framework/System.Net.HttpListener.zg37o92yol.wasm","AssetFile":"_framework/System.Net.HttpListener.zg37o92yol.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zg37o92yol"},{"Name":"integrity","Value":"sha256-rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE="},{"Name":"label","Value":"_framework/System.Net.HttpListener.wasm"}]},{"Route":"_framework/System.Net.HttpListener.zg37o92yol.wasm","AssetFile":"_framework/System.Net.HttpListener.zg37o92yol.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000062289772"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zg37o92yol"},{"Name":"integrity","Value":"sha256-rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE="},{"Name":"label","Value":"_framework/System.Net.HttpListener.wasm"},{"Name":"original-resource","Value":"\"rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE=\""}]},{"Route":"_framework/System.Net.HttpListener.zg37o92yol.wasm.gz","AssetFile":"_framework/System.Net.HttpListener.zg37o92yol.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zg37o92yol"},{"Name":"integrity","Value":"sha256-2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs="},{"Name":"label","Value":"_framework/System.Net.HttpListener.wasm.gz"}]},{"Route":"_framework/System.Net.Mail.qk214miut2.wasm","AssetFile":"_framework/System.Net.Mail.qk214miut2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"94997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qk214miut2"},{"Name":"integrity","Value":"sha256-tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk="},{"Name":"label","Value":"_framework/System.Net.Mail.wasm"}]},{"Route":"_framework/System.Net.Mail.qk214miut2.wasm","AssetFile":"_framework/System.Net.Mail.qk214miut2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023562122"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42440"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qk214miut2"},{"Name":"integrity","Value":"sha256-tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk="},{"Name":"label","Value":"_framework/System.Net.Mail.wasm"},{"Name":"original-resource","Value":"\"tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk=\""}]},{"Route":"_framework/System.Net.Mail.qk214miut2.wasm.gz","AssetFile":"_framework/System.Net.Mail.qk214miut2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42440"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qk214miut2"},{"Name":"integrity","Value":"sha256-T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys="},{"Name":"label","Value":"_framework/System.Net.Mail.wasm.gz"}]},{"Route":"_framework/System.Net.Mail.wasm","AssetFile":"_framework/System.Net.Mail.qk214miut2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"94997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk="}]},{"Route":"_framework/System.Net.Mail.wasm","AssetFile":"_framework/System.Net.Mail.qk214miut2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023562122"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42440"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk="},{"Name":"original-resource","Value":"\"tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk=\""}]},{"Route":"_framework/System.Net.Mail.wasm.gz","AssetFile":"_framework/System.Net.Mail.qk214miut2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42440"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys="}]},{"Route":"_framework/System.Net.NameResolution.50dzekuu9x.wasm","AssetFile":"_framework/System.Net.NameResolution.50dzekuu9x.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"14101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"50dzekuu9x"},{"Name":"integrity","Value":"sha256-a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs="},{"Name":"label","Value":"_framework/System.Net.NameResolution.wasm"}]},{"Route":"_framework/System.Net.NameResolution.50dzekuu9x.wasm","AssetFile":"_framework/System.Net.NameResolution.50dzekuu9x.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000168520391"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"50dzekuu9x"},{"Name":"integrity","Value":"sha256-a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs="},{"Name":"label","Value":"_framework/System.Net.NameResolution.wasm"},{"Name":"original-resource","Value":"\"a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs=\""}]},{"Route":"_framework/System.Net.NameResolution.50dzekuu9x.wasm.gz","AssetFile":"_framework/System.Net.NameResolution.50dzekuu9x.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"50dzekuu9x"},{"Name":"integrity","Value":"sha256-A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI="},{"Name":"label","Value":"_framework/System.Net.NameResolution.wasm.gz"}]},{"Route":"_framework/System.Net.NameResolution.wasm","AssetFile":"_framework/System.Net.NameResolution.50dzekuu9x.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"14101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs="}]},{"Route":"_framework/System.Net.NameResolution.wasm","AssetFile":"_framework/System.Net.NameResolution.50dzekuu9x.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000168520391"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs="},{"Name":"original-resource","Value":"\"a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs=\""}]},{"Route":"_framework/System.Net.NameResolution.wasm.gz","AssetFile":"_framework/System.Net.NameResolution.50dzekuu9x.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI="}]},{"Route":"_framework/System.Net.NetworkInformation.k8343mqust.wasm","AssetFile":"_framework/System.Net.NetworkInformation.k8343mqust.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8343mqust"},{"Name":"integrity","Value":"sha256-ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8="},{"Name":"label","Value":"_framework/System.Net.NetworkInformation.wasm"}]},{"Route":"_framework/System.Net.NetworkInformation.k8343mqust.wasm","AssetFile":"_framework/System.Net.NetworkInformation.k8343mqust.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000078560767"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12728"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8343mqust"},{"Name":"integrity","Value":"sha256-ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8="},{"Name":"label","Value":"_framework/System.Net.NetworkInformation.wasm"},{"Name":"original-resource","Value":"\"ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8=\""}]},{"Route":"_framework/System.Net.NetworkInformation.k8343mqust.wasm.gz","AssetFile":"_framework/System.Net.NetworkInformation.k8343mqust.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12728"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8343mqust"},{"Name":"integrity","Value":"sha256-Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0="},{"Name":"label","Value":"_framework/System.Net.NetworkInformation.wasm.gz"}]},{"Route":"_framework/System.Net.NetworkInformation.wasm","AssetFile":"_framework/System.Net.NetworkInformation.k8343mqust.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8="}]},{"Route":"_framework/System.Net.NetworkInformation.wasm","AssetFile":"_framework/System.Net.NetworkInformation.k8343mqust.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000078560767"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12728"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8="},{"Name":"original-resource","Value":"\"ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8=\""}]},{"Route":"_framework/System.Net.NetworkInformation.wasm.gz","AssetFile":"_framework/System.Net.NetworkInformation.k8343mqust.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12728"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0="}]},{"Route":"_framework/System.Net.Ping.00vh2kvsiz.wasm","AssetFile":"_framework/System.Net.Ping.00vh2kvsiz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"17685"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"00vh2kvsiz"},{"Name":"integrity","Value":"sha256-MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s="},{"Name":"label","Value":"_framework/System.Net.Ping.wasm"}]},{"Route":"_framework/System.Net.Ping.00vh2kvsiz.wasm","AssetFile":"_framework/System.Net.Ping.00vh2kvsiz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000132573247"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7542"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"00vh2kvsiz"},{"Name":"integrity","Value":"sha256-MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s="},{"Name":"label","Value":"_framework/System.Net.Ping.wasm"},{"Name":"original-resource","Value":"\"MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s=\""}]},{"Route":"_framework/System.Net.Ping.00vh2kvsiz.wasm.gz","AssetFile":"_framework/System.Net.Ping.00vh2kvsiz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7542"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"00vh2kvsiz"},{"Name":"integrity","Value":"sha256-MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM="},{"Name":"label","Value":"_framework/System.Net.Ping.wasm.gz"}]},{"Route":"_framework/System.Net.Ping.wasm","AssetFile":"_framework/System.Net.Ping.00vh2kvsiz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"17685"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s="}]},{"Route":"_framework/System.Net.Ping.wasm","AssetFile":"_framework/System.Net.Ping.00vh2kvsiz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000132573247"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7542"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s="},{"Name":"original-resource","Value":"\"MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s=\""}]},{"Route":"_framework/System.Net.Ping.wasm.gz","AssetFile":"_framework/System.Net.Ping.00vh2kvsiz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7542"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM="}]},{"Route":"_framework/System.Net.Primitives.wasm","AssetFile":"_framework/System.Net.Primitives.whs5oed1wm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"97045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s="}]},{"Route":"_framework/System.Net.Primitives.wasm","AssetFile":"_framework/System.Net.Primitives.whs5oed1wm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000021790765"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"45890"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s="},{"Name":"original-resource","Value":"\"fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s=\""}]},{"Route":"_framework/System.Net.Primitives.wasm.gz","AssetFile":"_framework/System.Net.Primitives.whs5oed1wm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"45890"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0="}]},{"Route":"_framework/System.Net.Primitives.whs5oed1wm.wasm","AssetFile":"_framework/System.Net.Primitives.whs5oed1wm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"97045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"whs5oed1wm"},{"Name":"integrity","Value":"sha256-fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s="},{"Name":"label","Value":"_framework/System.Net.Primitives.wasm"}]},{"Route":"_framework/System.Net.Primitives.whs5oed1wm.wasm","AssetFile":"_framework/System.Net.Primitives.whs5oed1wm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000021790765"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"45890"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"whs5oed1wm"},{"Name":"integrity","Value":"sha256-fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s="},{"Name":"label","Value":"_framework/System.Net.Primitives.wasm"},{"Name":"original-resource","Value":"\"fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s=\""}]},{"Route":"_framework/System.Net.Primitives.whs5oed1wm.wasm.gz","AssetFile":"_framework/System.Net.Primitives.whs5oed1wm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"45890"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"whs5oed1wm"},{"Name":"integrity","Value":"sha256-v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0="},{"Name":"label","Value":"_framework/System.Net.Primitives.wasm.gz"}]},{"Route":"_framework/System.Net.Quic.grloe2ix5j.wasm","AssetFile":"_framework/System.Net.Quic.grloe2ix5j.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"28949"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"grloe2ix5j"},{"Name":"integrity","Value":"sha256-1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA="},{"Name":"label","Value":"_framework/System.Net.Quic.wasm"}]},{"Route":"_framework/System.Net.Quic.grloe2ix5j.wasm","AssetFile":"_framework/System.Net.Quic.grloe2ix5j.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000091449474"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10934"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"grloe2ix5j"},{"Name":"integrity","Value":"sha256-1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA="},{"Name":"label","Value":"_framework/System.Net.Quic.wasm"},{"Name":"original-resource","Value":"\"1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA=\""}]},{"Route":"_framework/System.Net.Quic.grloe2ix5j.wasm.gz","AssetFile":"_framework/System.Net.Quic.grloe2ix5j.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10934"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"grloe2ix5j"},{"Name":"integrity","Value":"sha256-IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8="},{"Name":"label","Value":"_framework/System.Net.Quic.wasm.gz"}]},{"Route":"_framework/System.Net.Quic.wasm","AssetFile":"_framework/System.Net.Quic.grloe2ix5j.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"28949"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA="}]},{"Route":"_framework/System.Net.Quic.wasm","AssetFile":"_framework/System.Net.Quic.grloe2ix5j.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000091449474"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10934"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA="},{"Name":"original-resource","Value":"\"1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA=\""}]},{"Route":"_framework/System.Net.Quic.wasm.gz","AssetFile":"_framework/System.Net.Quic.grloe2ix5j.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10934"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8="}]},{"Route":"_framework/System.Net.Requests.r8ar2pd94c.wasm","AssetFile":"_framework/System.Net.Requests.r8ar2pd94c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r8ar2pd94c"},{"Name":"integrity","Value":"sha256-ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88="},{"Name":"label","Value":"_framework/System.Net.Requests.wasm"}]},{"Route":"_framework/System.Net.Requests.r8ar2pd94c.wasm","AssetFile":"_framework/System.Net.Requests.r8ar2pd94c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000049275648"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20293"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r8ar2pd94c"},{"Name":"integrity","Value":"sha256-ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88="},{"Name":"label","Value":"_framework/System.Net.Requests.wasm"},{"Name":"original-resource","Value":"\"ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88=\""}]},{"Route":"_framework/System.Net.Requests.r8ar2pd94c.wasm.gz","AssetFile":"_framework/System.Net.Requests.r8ar2pd94c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20293"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r8ar2pd94c"},{"Name":"integrity","Value":"sha256-gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA="},{"Name":"label","Value":"_framework/System.Net.Requests.wasm.gz"}]},{"Route":"_framework/System.Net.Requests.wasm","AssetFile":"_framework/System.Net.Requests.r8ar2pd94c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88="}]},{"Route":"_framework/System.Net.Requests.wasm","AssetFile":"_framework/System.Net.Requests.r8ar2pd94c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000049275648"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20293"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88="},{"Name":"original-resource","Value":"\"ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88=\""}]},{"Route":"_framework/System.Net.Requests.wasm.gz","AssetFile":"_framework/System.Net.Requests.r8ar2pd94c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20293"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA="}]},{"Route":"_framework/System.Net.Security.wasm","AssetFile":"_framework/System.Net.Security.yn3zcskz4j.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"104213"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ="}]},{"Route":"_framework/System.Net.Security.wasm","AssetFile":"_framework/System.Net.Security.yn3zcskz4j.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029683279"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33688"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ="},{"Name":"original-resource","Value":"\"TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ=\""}]},{"Route":"_framework/System.Net.Security.wasm.gz","AssetFile":"_framework/System.Net.Security.yn3zcskz4j.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33688"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ="}]},{"Route":"_framework/System.Net.Security.yn3zcskz4j.wasm","AssetFile":"_framework/System.Net.Security.yn3zcskz4j.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"104213"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yn3zcskz4j"},{"Name":"integrity","Value":"sha256-TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ="},{"Name":"label","Value":"_framework/System.Net.Security.wasm"}]},{"Route":"_framework/System.Net.Security.yn3zcskz4j.wasm","AssetFile":"_framework/System.Net.Security.yn3zcskz4j.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029683279"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33688"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yn3zcskz4j"},{"Name":"integrity","Value":"sha256-TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ="},{"Name":"label","Value":"_framework/System.Net.Security.wasm"},{"Name":"original-resource","Value":"\"TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ=\""}]},{"Route":"_framework/System.Net.Security.yn3zcskz4j.wasm.gz","AssetFile":"_framework/System.Net.Security.yn3zcskz4j.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33688"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yn3zcskz4j"},{"Name":"integrity","Value":"sha256-pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ="},{"Name":"label","Value":"_framework/System.Net.Security.wasm.gz"}]},{"Route":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm","AssetFile":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"30485"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37wbq4jfsy"},{"Name":"integrity","Value":"sha256-Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho="},{"Name":"label","Value":"_framework/System.Net.ServerSentEvents.wasm"}]},{"Route":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm","AssetFile":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000068175620"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14667"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37wbq4jfsy"},{"Name":"integrity","Value":"sha256-Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho="},{"Name":"label","Value":"_framework/System.Net.ServerSentEvents.wasm"},{"Name":"original-resource","Value":"\"Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho=\""}]},{"Route":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm.gz","AssetFile":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14667"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37wbq4jfsy"},{"Name":"integrity","Value":"sha256-FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o="},{"Name":"label","Value":"_framework/System.Net.ServerSentEvents.wasm.gz"}]},{"Route":"_framework/System.Net.ServerSentEvents.wasm","AssetFile":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"30485"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho="}]},{"Route":"_framework/System.Net.ServerSentEvents.wasm","AssetFile":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000068175620"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14667"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho="},{"Name":"original-resource","Value":"\"Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho=\""}]},{"Route":"_framework/System.Net.ServerSentEvents.wasm.gz","AssetFile":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14667"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o="}]},{"Route":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm","AssetFile":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j436yqvrg9"},{"Name":"integrity","Value":"sha256-rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg="},{"Name":"label","Value":"_framework/System.Net.ServicePoint.wasm"}]},{"Route":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm","AssetFile":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000458715596"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2179"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j436yqvrg9"},{"Name":"integrity","Value":"sha256-rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg="},{"Name":"label","Value":"_framework/System.Net.ServicePoint.wasm"},{"Name":"original-resource","Value":"\"rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg=\""}]},{"Route":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm.gz","AssetFile":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2179"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j436yqvrg9"},{"Name":"integrity","Value":"sha256-NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI="},{"Name":"label","Value":"_framework/System.Net.ServicePoint.wasm.gz"}]},{"Route":"_framework/System.Net.ServicePoint.wasm","AssetFile":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg="}]},{"Route":"_framework/System.Net.ServicePoint.wasm","AssetFile":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000458715596"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2179"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg="},{"Name":"original-resource","Value":"\"rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg=\""}]},{"Route":"_framework/System.Net.ServicePoint.wasm.gz","AssetFile":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2179"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI="}]},{"Route":"_framework/System.Net.Sockets.utzdm9sw2p.wasm","AssetFile":"_framework/System.Net.Sockets.utzdm9sw2p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"64277"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"utzdm9sw2p"},{"Name":"integrity","Value":"sha256-olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo="},{"Name":"label","Value":"_framework/System.Net.Sockets.wasm"}]},{"Route":"_framework/System.Net.Sockets.utzdm9sw2p.wasm","AssetFile":"_framework/System.Net.Sockets.utzdm9sw2p.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000043631921"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22918"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"utzdm9sw2p"},{"Name":"integrity","Value":"sha256-olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo="},{"Name":"label","Value":"_framework/System.Net.Sockets.wasm"},{"Name":"original-resource","Value":"\"olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo=\""}]},{"Route":"_framework/System.Net.Sockets.utzdm9sw2p.wasm.gz","AssetFile":"_framework/System.Net.Sockets.utzdm9sw2p.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22918"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"utzdm9sw2p"},{"Name":"integrity","Value":"sha256-XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI="},{"Name":"label","Value":"_framework/System.Net.Sockets.wasm.gz"}]},{"Route":"_framework/System.Net.Sockets.wasm","AssetFile":"_framework/System.Net.Sockets.utzdm9sw2p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"64277"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo="}]},{"Route":"_framework/System.Net.Sockets.wasm","AssetFile":"_framework/System.Net.Sockets.utzdm9sw2p.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000043631921"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22918"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo="},{"Name":"original-resource","Value":"\"olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo=\""}]},{"Route":"_framework/System.Net.Sockets.wasm.gz","AssetFile":"_framework/System.Net.Sockets.utzdm9sw2p.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22918"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI="}]},{"Route":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm","AssetFile":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e5a4gx4ylt"},{"Name":"integrity","Value":"sha256-YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk="},{"Name":"label","Value":"_framework/System.Net.WebClient.wasm"}]},{"Route":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm","AssetFile":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067870232"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e5a4gx4ylt"},{"Name":"integrity","Value":"sha256-YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk="},{"Name":"label","Value":"_framework/System.Net.WebClient.wasm"},{"Name":"original-resource","Value":"\"YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk=\""}]},{"Route":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm.gz","AssetFile":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e5a4gx4ylt"},{"Name":"integrity","Value":"sha256-FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI="},{"Name":"label","Value":"_framework/System.Net.WebClient.wasm.gz"}]},{"Route":"_framework/System.Net.WebClient.wasm","AssetFile":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk="}]},{"Route":"_framework/System.Net.WebClient.wasm","AssetFile":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067870232"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk="},{"Name":"original-resource","Value":"\"YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk=\""}]},{"Route":"_framework/System.Net.WebClient.wasm.gz","AssetFile":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI="}]},{"Route":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm","AssetFile":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rbzkmij005"},{"Name":"integrity","Value":"sha256-132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE="},{"Name":"label","Value":"_framework/System.Net.WebHeaderCollection.wasm"}]},{"Route":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm","AssetFile":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000097952787"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10208"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rbzkmij005"},{"Name":"integrity","Value":"sha256-132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE="},{"Name":"label","Value":"_framework/System.Net.WebHeaderCollection.wasm"},{"Name":"original-resource","Value":"\"132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE=\""}]},{"Route":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm.gz","AssetFile":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10208"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rbzkmij005"},{"Name":"integrity","Value":"sha256-y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU="},{"Name":"label","Value":"_framework/System.Net.WebHeaderCollection.wasm.gz"}]},{"Route":"_framework/System.Net.WebHeaderCollection.wasm","AssetFile":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE="}]},{"Route":"_framework/System.Net.WebHeaderCollection.wasm","AssetFile":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000097952787"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10208"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE="},{"Name":"original-resource","Value":"\"132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE=\""}]},{"Route":"_framework/System.Net.WebHeaderCollection.wasm.gz","AssetFile":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10208"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU="}]},{"Route":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm","AssetFile":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"38jcv8jeeu"},{"Name":"integrity","Value":"sha256-UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok="},{"Name":"label","Value":"_framework/System.Net.WebProxy.wasm"}]},{"Route":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm","AssetFile":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000177872643"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5621"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"38jcv8jeeu"},{"Name":"integrity","Value":"sha256-UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok="},{"Name":"label","Value":"_framework/System.Net.WebProxy.wasm"},{"Name":"original-resource","Value":"\"UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok=\""}]},{"Route":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm.gz","AssetFile":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5621"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"38jcv8jeeu"},{"Name":"integrity","Value":"sha256-8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA="},{"Name":"label","Value":"_framework/System.Net.WebProxy.wasm.gz"}]},{"Route":"_framework/System.Net.WebProxy.wasm","AssetFile":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok="}]},{"Route":"_framework/System.Net.WebProxy.wasm","AssetFile":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000177872643"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5621"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok="},{"Name":"original-resource","Value":"\"UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok=\""}]},{"Route":"_framework/System.Net.WebProxy.wasm.gz","AssetFile":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5621"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA="}]},{"Route":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm","AssetFile":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"42261"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nv5izr3rt6"},{"Name":"integrity","Value":"sha256-vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc="},{"Name":"label","Value":"_framework/System.Net.WebSockets.Client.wasm"}]},{"Route":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm","AssetFile":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000055803571"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17919"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nv5izr3rt6"},{"Name":"integrity","Value":"sha256-vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc="},{"Name":"label","Value":"_framework/System.Net.WebSockets.Client.wasm"},{"Name":"original-resource","Value":"\"vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc=\""}]},{"Route":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm.gz","AssetFile":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17919"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nv5izr3rt6"},{"Name":"integrity","Value":"sha256-XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY="},{"Name":"label","Value":"_framework/System.Net.WebSockets.Client.wasm.gz"}]},{"Route":"_framework/System.Net.WebSockets.Client.wasm","AssetFile":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"42261"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc="}]},{"Route":"_framework/System.Net.WebSockets.Client.wasm","AssetFile":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000055803571"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17919"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc="},{"Name":"original-resource","Value":"\"vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc=\""}]},{"Route":"_framework/System.Net.WebSockets.Client.wasm.gz","AssetFile":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17919"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY="}]},{"Route":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm","AssetFile":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"98581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hdzn84g6uh"},{"Name":"integrity","Value":"sha256-1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE="},{"Name":"label","Value":"_framework/System.Net.WebSockets.wasm"}]},{"Route":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm","AssetFile":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000024645718"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"40574"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hdzn84g6uh"},{"Name":"integrity","Value":"sha256-1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE="},{"Name":"label","Value":"_framework/System.Net.WebSockets.wasm"},{"Name":"original-resource","Value":"\"1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE=\""}]},{"Route":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm.gz","AssetFile":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"40574"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hdzn84g6uh"},{"Name":"integrity","Value":"sha256-dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo="},{"Name":"label","Value":"_framework/System.Net.WebSockets.wasm.gz"}]},{"Route":"_framework/System.Net.WebSockets.wasm","AssetFile":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"98581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE="}]},{"Route":"_framework/System.Net.WebSockets.wasm","AssetFile":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000024645718"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"40574"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE="},{"Name":"original-resource","Value":"\"1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE=\""}]},{"Route":"_framework/System.Net.WebSockets.wasm.gz","AssetFile":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"40574"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo="}]},{"Route":"_framework/System.Net.wasm","AssetFile":"_framework/System.Net.zku96ychk7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU="}]},{"Route":"_framework/System.Net.wasm","AssetFile":"_framework/System.Net.zku96ychk7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000362976407"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2754"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU="},{"Name":"original-resource","Value":"\"E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU=\""}]},{"Route":"_framework/System.Net.wasm.gz","AssetFile":"_framework/System.Net.zku96ychk7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2754"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY="}]},{"Route":"_framework/System.Net.zku96ychk7.wasm","AssetFile":"_framework/System.Net.zku96ychk7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zku96ychk7"},{"Name":"integrity","Value":"sha256-E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU="},{"Name":"label","Value":"_framework/System.Net.wasm"}]},{"Route":"_framework/System.Net.zku96ychk7.wasm","AssetFile":"_framework/System.Net.zku96ychk7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000362976407"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2754"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zku96ychk7"},{"Name":"integrity","Value":"sha256-E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU="},{"Name":"label","Value":"_framework/System.Net.wasm"},{"Name":"original-resource","Value":"\"E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU=\""}]},{"Route":"_framework/System.Net.zku96ychk7.wasm.gz","AssetFile":"_framework/System.Net.zku96ychk7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2754"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zku96ychk7"},{"Name":"integrity","Value":"sha256-boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY="},{"Name":"label","Value":"_framework/System.Net.wasm.gz"}]},{"Route":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm","AssetFile":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1l8xruz8uh"},{"Name":"integrity","Value":"sha256-tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg="},{"Name":"label","Value":"_framework/System.Numerics.Vectors.wasm"}]},{"Route":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm","AssetFile":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000439367311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1l8xruz8uh"},{"Name":"integrity","Value":"sha256-tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg="},{"Name":"label","Value":"_framework/System.Numerics.Vectors.wasm"},{"Name":"original-resource","Value":"\"tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg=\""}]},{"Route":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm.gz","AssetFile":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1l8xruz8uh"},{"Name":"integrity","Value":"sha256-XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q="},{"Name":"label","Value":"_framework/System.Numerics.Vectors.wasm.gz"}]},{"Route":"_framework/System.Numerics.Vectors.wasm","AssetFile":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg="}]},{"Route":"_framework/System.Numerics.Vectors.wasm","AssetFile":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000439367311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg="},{"Name":"original-resource","Value":"\"tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg=\""}]},{"Route":"_framework/System.Numerics.Vectors.wasm.gz","AssetFile":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q="}]},{"Route":"_framework/System.Numerics.on9qk50okp.wasm","AssetFile":"_framework/System.Numerics.on9qk50okp.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"on9qk50okp"},{"Name":"integrity","Value":"sha256-ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk="},{"Name":"label","Value":"_framework/System.Numerics.wasm"}]},{"Route":"_framework/System.Numerics.on9qk50okp.wasm","AssetFile":"_framework/System.Numerics.on9qk50okp.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000490677134"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2037"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"on9qk50okp"},{"Name":"integrity","Value":"sha256-ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk="},{"Name":"label","Value":"_framework/System.Numerics.wasm"},{"Name":"original-resource","Value":"\"ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk=\""}]},{"Route":"_framework/System.Numerics.on9qk50okp.wasm.gz","AssetFile":"_framework/System.Numerics.on9qk50okp.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2037"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"on9qk50okp"},{"Name":"integrity","Value":"sha256-voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ="},{"Name":"label","Value":"_framework/System.Numerics.wasm.gz"}]},{"Route":"_framework/System.Numerics.wasm","AssetFile":"_framework/System.Numerics.on9qk50okp.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk="}]},{"Route":"_framework/System.Numerics.wasm","AssetFile":"_framework/System.Numerics.on9qk50okp.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000490677134"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2037"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk="},{"Name":"original-resource","Value":"\"ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk=\""}]},{"Route":"_framework/System.Numerics.wasm.gz","AssetFile":"_framework/System.Numerics.on9qk50okp.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2037"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ="}]},{"Route":"_framework/System.ObjectModel.4omhtq90sd.wasm","AssetFile":"_framework/System.ObjectModel.4omhtq90sd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"30997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4omhtq90sd"},{"Name":"integrity","Value":"sha256-BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU="},{"Name":"label","Value":"_framework/System.ObjectModel.wasm"}]},{"Route":"_framework/System.ObjectModel.4omhtq90sd.wasm","AssetFile":"_framework/System.ObjectModel.4omhtq90sd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000074867111"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13356"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4omhtq90sd"},{"Name":"integrity","Value":"sha256-BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU="},{"Name":"label","Value":"_framework/System.ObjectModel.wasm"},{"Name":"original-resource","Value":"\"BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU=\""}]},{"Route":"_framework/System.ObjectModel.4omhtq90sd.wasm.gz","AssetFile":"_framework/System.ObjectModel.4omhtq90sd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13356"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4omhtq90sd"},{"Name":"integrity","Value":"sha256-RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw="},{"Name":"label","Value":"_framework/System.ObjectModel.wasm.gz"}]},{"Route":"_framework/System.ObjectModel.wasm","AssetFile":"_framework/System.ObjectModel.4omhtq90sd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"30997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU="}]},{"Route":"_framework/System.ObjectModel.wasm","AssetFile":"_framework/System.ObjectModel.4omhtq90sd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000074867111"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13356"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU="},{"Name":"original-resource","Value":"\"BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU=\""}]},{"Route":"_framework/System.ObjectModel.wasm.gz","AssetFile":"_framework/System.ObjectModel.4omhtq90sd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13356"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw="}]},{"Route":"_framework/System.Private.CoreLib.koxlwnosh6.wasm","AssetFile":"_framework/System.Private.CoreLib.koxlwnosh6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4869401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"koxlwnosh6"},{"Name":"integrity","Value":"sha256-xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg="},{"Name":"label","Value":"_framework/System.Private.CoreLib.wasm"}]},{"Route":"_framework/System.Private.CoreLib.koxlwnosh6.wasm","AssetFile":"_framework/System.Private.CoreLib.koxlwnosh6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000644190"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1552335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"koxlwnosh6"},{"Name":"integrity","Value":"sha256-xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg="},{"Name":"label","Value":"_framework/System.Private.CoreLib.wasm"},{"Name":"original-resource","Value":"\"xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg=\""}]},{"Route":"_framework/System.Private.CoreLib.koxlwnosh6.wasm.gz","AssetFile":"_framework/System.Private.CoreLib.koxlwnosh6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1552335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"koxlwnosh6"},{"Name":"integrity","Value":"sha256-8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw="},{"Name":"label","Value":"_framework/System.Private.CoreLib.wasm.gz"}]},{"Route":"_framework/System.Private.CoreLib.wasm","AssetFile":"_framework/System.Private.CoreLib.koxlwnosh6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4869401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg="}]},{"Route":"_framework/System.Private.CoreLib.wasm","AssetFile":"_framework/System.Private.CoreLib.koxlwnosh6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000644190"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1552335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg="},{"Name":"original-resource","Value":"\"xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg=\""}]},{"Route":"_framework/System.Private.CoreLib.wasm.gz","AssetFile":"_framework/System.Private.CoreLib.koxlwnosh6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1552335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw="}]},{"Route":"_framework/System.Private.DataContractSerialization.wasm","AssetFile":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"849173"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs="}]},{"Route":"_framework/System.Private.DataContractSerialization.wasm","AssetFile":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003313518"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"301793"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs="},{"Name":"original-resource","Value":"\"qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs=\""}]},{"Route":"_framework/System.Private.DataContractSerialization.wasm.gz","AssetFile":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"301793"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E="}]},{"Route":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm","AssetFile":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"849173"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zlwtcvnuqv"},{"Name":"integrity","Value":"sha256-qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs="},{"Name":"label","Value":"_framework/System.Private.DataContractSerialization.wasm"}]},{"Route":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm","AssetFile":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003313518"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"301793"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zlwtcvnuqv"},{"Name":"integrity","Value":"sha256-qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs="},{"Name":"label","Value":"_framework/System.Private.DataContractSerialization.wasm"},{"Name":"original-resource","Value":"\"qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs=\""}]},{"Route":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm.gz","AssetFile":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"301793"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zlwtcvnuqv"},{"Name":"integrity","Value":"sha256-U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E="},{"Name":"label","Value":"_framework/System.Private.DataContractSerialization.wasm.gz"}]},{"Route":"_framework/System.Private.Uri.clehp4avpy.wasm","AssetFile":"_framework/System.Private.Uri.clehp4avpy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"95509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clehp4avpy"},{"Name":"integrity","Value":"sha256-IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU="},{"Name":"label","Value":"_framework/System.Private.Uri.wasm"}]},{"Route":"_framework/System.Private.Uri.clehp4avpy.wasm","AssetFile":"_framework/System.Private.Uri.clehp4avpy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023629490"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42319"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clehp4avpy"},{"Name":"integrity","Value":"sha256-IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU="},{"Name":"label","Value":"_framework/System.Private.Uri.wasm"},{"Name":"original-resource","Value":"\"IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU=\""}]},{"Route":"_framework/System.Private.Uri.clehp4avpy.wasm.gz","AssetFile":"_framework/System.Private.Uri.clehp4avpy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42319"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clehp4avpy"},{"Name":"integrity","Value":"sha256-jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8="},{"Name":"label","Value":"_framework/System.Private.Uri.wasm.gz"}]},{"Route":"_framework/System.Private.Uri.wasm","AssetFile":"_framework/System.Private.Uri.clehp4avpy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"95509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU="}]},{"Route":"_framework/System.Private.Uri.wasm","AssetFile":"_framework/System.Private.Uri.clehp4avpy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023629490"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42319"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU="},{"Name":"original-resource","Value":"\"IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU=\""}]},{"Route":"_framework/System.Private.Uri.wasm.gz","AssetFile":"_framework/System.Private.Uri.clehp4avpy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42319"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8="}]},{"Route":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm","AssetFile":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"143637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ga3n3gh9b6"},{"Name":"integrity","Value":"sha256-aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0="},{"Name":"label","Value":"_framework/System.Private.Xml.Linq.wasm"}]},{"Route":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm","AssetFile":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017054951"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"58633"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ga3n3gh9b6"},{"Name":"integrity","Value":"sha256-aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0="},{"Name":"label","Value":"_framework/System.Private.Xml.Linq.wasm"},{"Name":"original-resource","Value":"\"aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0=\""}]},{"Route":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm.gz","AssetFile":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"58633"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ga3n3gh9b6"},{"Name":"integrity","Value":"sha256-wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g="},{"Name":"label","Value":"_framework/System.Private.Xml.Linq.wasm.gz"}]},{"Route":"_framework/System.Private.Xml.Linq.wasm","AssetFile":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"143637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0="}]},{"Route":"_framework/System.Private.Xml.Linq.wasm","AssetFile":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017054951"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"58633"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0="},{"Name":"original-resource","Value":"\"aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0=\""}]},{"Route":"_framework/System.Private.Xml.Linq.wasm.gz","AssetFile":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"58633"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g="}]},{"Route":"_framework/System.Private.Xml.g9rvjereoe.wasm","AssetFile":"_framework/System.Private.Xml.g9rvjereoe.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3095833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g9rvjereoe"},{"Name":"integrity","Value":"sha256-xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0="},{"Name":"label","Value":"_framework/System.Private.Xml.wasm"}]},{"Route":"_framework/System.Private.Xml.g9rvjereoe.wasm","AssetFile":"_framework/System.Private.Xml.g9rvjereoe.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000949553"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1053126"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g9rvjereoe"},{"Name":"integrity","Value":"sha256-xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0="},{"Name":"label","Value":"_framework/System.Private.Xml.wasm"},{"Name":"original-resource","Value":"\"xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0=\""}]},{"Route":"_framework/System.Private.Xml.g9rvjereoe.wasm.gz","AssetFile":"_framework/System.Private.Xml.g9rvjereoe.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1053126"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g9rvjereoe"},{"Name":"integrity","Value":"sha256-K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw="},{"Name":"label","Value":"_framework/System.Private.Xml.wasm.gz"}]},{"Route":"_framework/System.Private.Xml.wasm","AssetFile":"_framework/System.Private.Xml.g9rvjereoe.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3095833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0="}]},{"Route":"_framework/System.Private.Xml.wasm","AssetFile":"_framework/System.Private.Xml.g9rvjereoe.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000949553"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1053126"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0="},{"Name":"original-resource","Value":"\"xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0=\""}]},{"Route":"_framework/System.Private.Xml.wasm.gz","AssetFile":"_framework/System.Private.Xml.g9rvjereoe.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1053126"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw="}]},{"Route":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm","AssetFile":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27925"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7qn4zpc0q"},{"Name":"integrity","Value":"sha256-mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME="},{"Name":"label","Value":"_framework/System.Reflection.DispatchProxy.wasm"}]},{"Route":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm","AssetFile":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000078814628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12687"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7qn4zpc0q"},{"Name":"integrity","Value":"sha256-mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME="},{"Name":"label","Value":"_framework/System.Reflection.DispatchProxy.wasm"},{"Name":"original-resource","Value":"\"mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME=\""}]},{"Route":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm.gz","AssetFile":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12687"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7qn4zpc0q"},{"Name":"integrity","Value":"sha256-VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w="},{"Name":"label","Value":"_framework/System.Reflection.DispatchProxy.wasm.gz"}]},{"Route":"_framework/System.Reflection.DispatchProxy.wasm","AssetFile":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"27925"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME="}]},{"Route":"_framework/System.Reflection.DispatchProxy.wasm","AssetFile":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000078814628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12687"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME="},{"Name":"original-resource","Value":"\"mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME=\""}]},{"Route":"_framework/System.Reflection.DispatchProxy.wasm.gz","AssetFile":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12687"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w="}]},{"Route":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm","AssetFile":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"122645"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3t7flfwg7o"},{"Name":"integrity","Value":"sha256-uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8="},{"Name":"label","Value":"_framework/System.Reflection.Emit.wasm"}]},{"Route":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm","AssetFile":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018778637"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"53251"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3t7flfwg7o"},{"Name":"integrity","Value":"sha256-uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8="},{"Name":"label","Value":"_framework/System.Reflection.Emit.wasm"},{"Name":"original-resource","Value":"\"uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8=\""}]},{"Route":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm.gz","AssetFile":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"53251"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3t7flfwg7o"},{"Name":"integrity","Value":"sha256-2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ="},{"Name":"label","Value":"_framework/System.Reflection.Emit.wasm.gz"}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.wasm","AssetFile":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80="}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.wasm","AssetFile":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000437828371"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2283"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80="},{"Name":"original-resource","Value":"\"ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80=\""}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.wasm.gz","AssetFile":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2283"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE="}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm","AssetFile":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0vkqyycss"},{"Name":"integrity","Value":"sha256-ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80="},{"Name":"label","Value":"_framework/System.Reflection.Emit.ILGeneration.wasm"}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm","AssetFile":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000437828371"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2283"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0vkqyycss"},{"Name":"integrity","Value":"sha256-ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80="},{"Name":"label","Value":"_framework/System.Reflection.Emit.ILGeneration.wasm"},{"Name":"original-resource","Value":"\"ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80=\""}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm.gz","AssetFile":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2283"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0vkqyycss"},{"Name":"integrity","Value":"sha256-YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE="},{"Name":"label","Value":"_framework/System.Reflection.Emit.ILGeneration.wasm.gz"}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm","AssetFile":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3tzjd7znni"},{"Name":"integrity","Value":"sha256-B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k="},{"Name":"label","Value":"_framework/System.Reflection.Emit.Lightweight.wasm"}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm","AssetFile":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000446827525"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3tzjd7znni"},{"Name":"integrity","Value":"sha256-B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k="},{"Name":"label","Value":"_framework/System.Reflection.Emit.Lightweight.wasm"},{"Name":"original-resource","Value":"\"B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k=\""}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm.gz","AssetFile":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3tzjd7znni"},{"Name":"integrity","Value":"sha256-XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk="},{"Name":"label","Value":"_framework/System.Reflection.Emit.Lightweight.wasm.gz"}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.wasm","AssetFile":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k="}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.wasm","AssetFile":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000446827525"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k="},{"Name":"original-resource","Value":"\"B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k=\""}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.wasm.gz","AssetFile":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk="}]},{"Route":"_framework/System.Reflection.Emit.wasm","AssetFile":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"122645"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8="}]},{"Route":"_framework/System.Reflection.Emit.wasm","AssetFile":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018778637"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"53251"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8="},{"Name":"original-resource","Value":"\"uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8=\""}]},{"Route":"_framework/System.Reflection.Emit.wasm.gz","AssetFile":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"53251"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ="}]},{"Route":"_framework/System.Reflection.Extensions.wasm","AssetFile":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo="}]},{"Route":"_framework/System.Reflection.Extensions.wasm","AssetFile":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000462107209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2163"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo="},{"Name":"original-resource","Value":"\"xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo=\""}]},{"Route":"_framework/System.Reflection.Extensions.wasm.gz","AssetFile":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2163"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4="}]},{"Route":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm","AssetFile":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ymwga5opgl"},{"Name":"integrity","Value":"sha256-xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo="},{"Name":"label","Value":"_framework/System.Reflection.Extensions.wasm"}]},{"Route":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm","AssetFile":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000462107209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2163"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ymwga5opgl"},{"Name":"integrity","Value":"sha256-xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo="},{"Name":"label","Value":"_framework/System.Reflection.Extensions.wasm"},{"Name":"original-resource","Value":"\"xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo=\""}]},{"Route":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm.gz","AssetFile":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2163"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ymwga5opgl"},{"Name":"integrity","Value":"sha256-QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4="},{"Name":"label","Value":"_framework/System.Reflection.Extensions.wasm.gz"}]},{"Route":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm","AssetFile":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"493333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9lgg9wjd2a"},{"Name":"integrity","Value":"sha256-/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0="},{"Name":"label","Value":"_framework/System.Reflection.Metadata.wasm"}]},{"Route":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm","AssetFile":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005202589"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"192211"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9lgg9wjd2a"},{"Name":"integrity","Value":"sha256-/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0="},{"Name":"label","Value":"_framework/System.Reflection.Metadata.wasm"},{"Name":"original-resource","Value":"\"/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0=\""}]},{"Route":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm.gz","AssetFile":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"192211"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9lgg9wjd2a"},{"Name":"integrity","Value":"sha256-bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM="},{"Name":"label","Value":"_framework/System.Reflection.Metadata.wasm.gz"}]},{"Route":"_framework/System.Reflection.Metadata.wasm","AssetFile":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"493333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0="}]},{"Route":"_framework/System.Reflection.Metadata.wasm","AssetFile":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005202589"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"192211"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0="},{"Name":"original-resource","Value":"\"/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0=\""}]},{"Route":"_framework/System.Reflection.Metadata.wasm.gz","AssetFile":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"192211"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM="}]},{"Route":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm","AssetFile":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"n2ngq6as7g"},{"Name":"integrity","Value":"sha256-z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY="},{"Name":"label","Value":"_framework/System.Reflection.Primitives.wasm"}]},{"Route":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm","AssetFile":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000423190859"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"n2ngq6as7g"},{"Name":"integrity","Value":"sha256-z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY="},{"Name":"label","Value":"_framework/System.Reflection.Primitives.wasm"},{"Name":"original-resource","Value":"\"z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY=\""}]},{"Route":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm.gz","AssetFile":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"n2ngq6as7g"},{"Name":"integrity","Value":"sha256-DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac="},{"Name":"label","Value":"_framework/System.Reflection.Primitives.wasm.gz"}]},{"Route":"_framework/System.Reflection.Primitives.wasm","AssetFile":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY="}]},{"Route":"_framework/System.Reflection.Primitives.wasm","AssetFile":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000423190859"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY="},{"Name":"original-resource","Value":"\"z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY=\""}]},{"Route":"_framework/System.Reflection.Primitives.wasm.gz","AssetFile":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac="}]},{"Route":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm","AssetFile":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"14101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ivmzcfvrc6"},{"Name":"integrity","Value":"sha256-jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0="},{"Name":"label","Value":"_framework/System.Reflection.TypeExtensions.wasm"}]},{"Route":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm","AssetFile":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000170561146"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ivmzcfvrc6"},{"Name":"integrity","Value":"sha256-jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0="},{"Name":"label","Value":"_framework/System.Reflection.TypeExtensions.wasm"},{"Name":"original-resource","Value":"\"jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0=\""}]},{"Route":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm.gz","AssetFile":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ivmzcfvrc6"},{"Name":"integrity","Value":"sha256-UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY="},{"Name":"label","Value":"_framework/System.Reflection.TypeExtensions.wasm.gz"}]},{"Route":"_framework/System.Reflection.TypeExtensions.wasm","AssetFile":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"14101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0="}]},{"Route":"_framework/System.Reflection.TypeExtensions.wasm","AssetFile":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000170561146"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0="},{"Name":"original-resource","Value":"\"jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0=\""}]},{"Route":"_framework/System.Reflection.TypeExtensions.wasm.gz","AssetFile":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY="}]},{"Route":"_framework/System.Reflection.v4mfyzbte8.wasm","AssetFile":"_framework/System.Reflection.v4mfyzbte8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v4mfyzbte8"},{"Name":"integrity","Value":"sha256-MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw="},{"Name":"label","Value":"_framework/System.Reflection.wasm"}]},{"Route":"_framework/System.Reflection.v4mfyzbte8.wasm","AssetFile":"_framework/System.Reflection.v4mfyzbte8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000404530744"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2471"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v4mfyzbte8"},{"Name":"integrity","Value":"sha256-MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw="},{"Name":"label","Value":"_framework/System.Reflection.wasm"},{"Name":"original-resource","Value":"\"MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw=\""}]},{"Route":"_framework/System.Reflection.v4mfyzbte8.wasm.gz","AssetFile":"_framework/System.Reflection.v4mfyzbte8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2471"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v4mfyzbte8"},{"Name":"integrity","Value":"sha256-/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng="},{"Name":"label","Value":"_framework/System.Reflection.wasm.gz"}]},{"Route":"_framework/System.Reflection.wasm","AssetFile":"_framework/System.Reflection.v4mfyzbte8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw="}]},{"Route":"_framework/System.Reflection.wasm","AssetFile":"_framework/System.Reflection.v4mfyzbte8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000404530744"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2471"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw="},{"Name":"original-resource","Value":"\"MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw=\""}]},{"Route":"_framework/System.Reflection.wasm.gz","AssetFile":"_framework/System.Reflection.v4mfyzbte8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2471"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng="}]},{"Route":"_framework/System.Resources.Reader.c9z9nieytf.wasm","AssetFile":"_framework/System.Resources.Reader.c9z9nieytf.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c9z9nieytf"},{"Name":"integrity","Value":"sha256-QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8="},{"Name":"label","Value":"_framework/System.Resources.Reader.wasm"}]},{"Route":"_framework/System.Resources.Reader.c9z9nieytf.wasm","AssetFile":"_framework/System.Resources.Reader.c9z9nieytf.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000469043152"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2131"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c9z9nieytf"},{"Name":"integrity","Value":"sha256-QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8="},{"Name":"label","Value":"_framework/System.Resources.Reader.wasm"},{"Name":"original-resource","Value":"\"QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8=\""}]},{"Route":"_framework/System.Resources.Reader.c9z9nieytf.wasm.gz","AssetFile":"_framework/System.Resources.Reader.c9z9nieytf.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2131"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c9z9nieytf"},{"Name":"integrity","Value":"sha256-1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI="},{"Name":"label","Value":"_framework/System.Resources.Reader.wasm.gz"}]},{"Route":"_framework/System.Resources.Reader.wasm","AssetFile":"_framework/System.Resources.Reader.c9z9nieytf.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8="}]},{"Route":"_framework/System.Resources.Reader.wasm","AssetFile":"_framework/System.Resources.Reader.c9z9nieytf.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000469043152"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2131"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8="},{"Name":"original-resource","Value":"\"QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8=\""}]},{"Route":"_framework/System.Resources.Reader.wasm.gz","AssetFile":"_framework/System.Resources.Reader.c9z9nieytf.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2131"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI="}]},{"Route":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm","AssetFile":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f3fiwdwb50"},{"Name":"integrity","Value":"sha256-61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw="},{"Name":"label","Value":"_framework/System.Resources.ResourceManager.wasm"}]},{"Route":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm","AssetFile":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000444642063"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2248"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f3fiwdwb50"},{"Name":"integrity","Value":"sha256-61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw="},{"Name":"label","Value":"_framework/System.Resources.ResourceManager.wasm"},{"Name":"original-resource","Value":"\"61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw=\""}]},{"Route":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm.gz","AssetFile":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2248"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f3fiwdwb50"},{"Name":"integrity","Value":"sha256-yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg="},{"Name":"label","Value":"_framework/System.Resources.ResourceManager.wasm.gz"}]},{"Route":"_framework/System.Resources.ResourceManager.wasm","AssetFile":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw="}]},{"Route":"_framework/System.Resources.ResourceManager.wasm","AssetFile":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000444642063"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2248"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw="},{"Name":"original-resource","Value":"\"61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw=\""}]},{"Route":"_framework/System.Resources.ResourceManager.wasm.gz","AssetFile":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2248"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg="}]},{"Route":"_framework/System.Resources.Writer.tx9namivq6.wasm","AssetFile":"_framework/System.Resources.Writer.tx9namivq6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"16661"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tx9namivq6"},{"Name":"integrity","Value":"sha256-EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw="},{"Name":"label","Value":"_framework/System.Resources.Writer.wasm"}]},{"Route":"_framework/System.Resources.Writer.tx9namivq6.wasm","AssetFile":"_framework/System.Resources.Writer.tx9namivq6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000131839156"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7584"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tx9namivq6"},{"Name":"integrity","Value":"sha256-EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw="},{"Name":"label","Value":"_framework/System.Resources.Writer.wasm"},{"Name":"original-resource","Value":"\"EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw=\""}]},{"Route":"_framework/System.Resources.Writer.tx9namivq6.wasm.gz","AssetFile":"_framework/System.Resources.Writer.tx9namivq6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7584"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tx9namivq6"},{"Name":"integrity","Value":"sha256-mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw="},{"Name":"label","Value":"_framework/System.Resources.Writer.wasm.gz"}]},{"Route":"_framework/System.Resources.Writer.wasm","AssetFile":"_framework/System.Resources.Writer.tx9namivq6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"16661"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw="}]},{"Route":"_framework/System.Resources.Writer.wasm","AssetFile":"_framework/System.Resources.Writer.tx9namivq6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000131839156"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7584"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw="},{"Name":"original-resource","Value":"\"EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw=\""}]},{"Route":"_framework/System.Resources.Writer.wasm.gz","AssetFile":"_framework/System.Resources.Writer.tx9namivq6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7584"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw="}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5yw8jyjkyt"},{"Name":"integrity","Value":"sha256-M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.Unsafe.wasm"}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000468164794"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2135"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5yw8jyjkyt"},{"Name":"integrity","Value":"sha256-M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.Unsafe.wasm"},{"Name":"original-resource","Value":"\"M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc=\""}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm.gz","AssetFile":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2135"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5yw8jyjkyt"},{"Name":"integrity","Value":"sha256-b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.Unsafe.wasm.gz"}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc="}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000468164794"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2135"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc="},{"Name":"original-resource","Value":"\"M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc=\""}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.wasm.gz","AssetFile":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2135"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks="}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ddbsai2xh9"},{"Name":"integrity","Value":"sha256-b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.VisualC.wasm"}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000327868852"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3049"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ddbsai2xh9"},{"Name":"integrity","Value":"sha256-b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.VisualC.wasm"},{"Name":"original-resource","Value":"\"b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM=\""}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm.gz","AssetFile":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3049"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ddbsai2xh9"},{"Name":"integrity","Value":"sha256-XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.VisualC.wasm.gz"}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM="}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000327868852"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3049"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM="},{"Name":"original-resource","Value":"\"b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM=\""}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.wasm.gz","AssetFile":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3049"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo="}]},{"Route":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm","AssetFile":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"7445"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f4fqaba1oz"},{"Name":"integrity","Value":"sha256-8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8="},{"Name":"label","Value":"_framework/System.Runtime.Extensions.wasm"}]},{"Route":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm","AssetFile":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000333555704"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f4fqaba1oz"},{"Name":"integrity","Value":"sha256-8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8="},{"Name":"label","Value":"_framework/System.Runtime.Extensions.wasm"},{"Name":"original-resource","Value":"\"8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8=\""}]},{"Route":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm.gz","AssetFile":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f4fqaba1oz"},{"Name":"integrity","Value":"sha256-UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM="},{"Name":"label","Value":"_framework/System.Runtime.Extensions.wasm.gz"}]},{"Route":"_framework/System.Runtime.Extensions.wasm","AssetFile":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"7445"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8="}]},{"Route":"_framework/System.Runtime.Extensions.wasm","AssetFile":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000333555704"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8="},{"Name":"original-resource","Value":"\"8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8=\""}]},{"Route":"_framework/System.Runtime.Extensions.wasm.gz","AssetFile":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM="}]},{"Route":"_framework/System.Runtime.Handles.kpe61fymig.wasm","AssetFile":"_framework/System.Runtime.Handles.kpe61fymig.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kpe61fymig"},{"Name":"integrity","Value":"sha256-+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ="},{"Name":"label","Value":"_framework/System.Runtime.Handles.wasm"}]},{"Route":"_framework/System.Runtime.Handles.kpe61fymig.wasm","AssetFile":"_framework/System.Runtime.Handles.kpe61fymig.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000451467269"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2214"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kpe61fymig"},{"Name":"integrity","Value":"sha256-+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ="},{"Name":"label","Value":"_framework/System.Runtime.Handles.wasm"},{"Name":"original-resource","Value":"\"+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ=\""}]},{"Route":"_framework/System.Runtime.Handles.kpe61fymig.wasm.gz","AssetFile":"_framework/System.Runtime.Handles.kpe61fymig.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2214"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kpe61fymig"},{"Name":"integrity","Value":"sha256-P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8="},{"Name":"label","Value":"_framework/System.Runtime.Handles.wasm.gz"}]},{"Route":"_framework/System.Runtime.Handles.wasm","AssetFile":"_framework/System.Runtime.Handles.kpe61fymig.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ="}]},{"Route":"_framework/System.Runtime.Handles.wasm","AssetFile":"_framework/System.Runtime.Handles.kpe61fymig.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000451467269"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2214"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ="},{"Name":"original-resource","Value":"\"+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ=\""}]},{"Route":"_framework/System.Runtime.Handles.wasm.gz","AssetFile":"_framework/System.Runtime.Handles.kpe61fymig.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2214"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8="}]},{"Route":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm","AssetFile":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"54549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"02r2ubft18"},{"Name":"integrity","Value":"sha256-iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.wasm"}]},{"Route":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm","AssetFile":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000042457436"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23552"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"02r2ubft18"},{"Name":"integrity","Value":"sha256-iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.wasm"},{"Name":"original-resource","Value":"\"iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI=\""}]},{"Route":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm.gz","AssetFile":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23552"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"02r2ubft18"},{"Name":"integrity","Value":"sha256-hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.wasm.gz"}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.wasm","AssetFile":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"79637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk="}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.wasm","AssetFile":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000031413942"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk="},{"Name":"original-resource","Value":"\"BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk=\""}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.wasm.gz","AssetFile":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A="}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm","AssetFile":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"79637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ythr5w8c2e"},{"Name":"integrity","Value":"sha256-BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.JavaScript.wasm"}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm","AssetFile":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000031413942"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ythr5w8c2e"},{"Name":"integrity","Value":"sha256-BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.JavaScript.wasm"},{"Name":"original-resource","Value":"\"BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk=\""}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm.gz","AssetFile":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ythr5w8c2e"},{"Name":"integrity","Value":"sha256-BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.JavaScript.wasm.gz"}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm","AssetFile":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"esodb2rpbi"},{"Name":"integrity","Value":"sha256-Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm"}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm","AssetFile":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000462962963"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2159"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"esodb2rpbi"},{"Name":"integrity","Value":"sha256-Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm"},{"Name":"original-resource","Value":"\"Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s=\""}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm.gz","AssetFile":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2159"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"esodb2rpbi"},{"Name":"integrity","Value":"sha256-XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm.gz"}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm","AssetFile":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s="}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm","AssetFile":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000462962963"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2159"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s="},{"Name":"original-resource","Value":"\"Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s=\""}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm.gz","AssetFile":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2159"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA="}]},{"Route":"_framework/System.Runtime.InteropServices.wasm","AssetFile":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"54549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI="}]},{"Route":"_framework/System.Runtime.InteropServices.wasm","AssetFile":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000042457436"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23552"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI="},{"Name":"original-resource","Value":"\"iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI=\""}]},{"Route":"_framework/System.Runtime.InteropServices.wasm.gz","AssetFile":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23552"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs="}]},{"Route":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm","AssetFile":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8lrpban8m"},{"Name":"integrity","Value":"sha256-vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk="},{"Name":"label","Value":"_framework/System.Runtime.Intrinsics.wasm"}]},{"Route":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm","AssetFile":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000351617440"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2843"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8lrpban8m"},{"Name":"integrity","Value":"sha256-vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk="},{"Name":"label","Value":"_framework/System.Runtime.Intrinsics.wasm"},{"Name":"original-resource","Value":"\"vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk=\""}]},{"Route":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm.gz","AssetFile":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2843"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8lrpban8m"},{"Name":"integrity","Value":"sha256-RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4="},{"Name":"label","Value":"_framework/System.Runtime.Intrinsics.wasm.gz"}]},{"Route":"_framework/System.Runtime.Intrinsics.wasm","AssetFile":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk="}]},{"Route":"_framework/System.Runtime.Intrinsics.wasm","AssetFile":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000351617440"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2843"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk="},{"Name":"original-resource","Value":"\"vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk=\""}]},{"Route":"_framework/System.Runtime.Intrinsics.wasm.gz","AssetFile":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2843"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4="}]},{"Route":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm","AssetFile":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bm8d2pac0a"},{"Name":"integrity","Value":"sha256-Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4="},{"Name":"label","Value":"_framework/System.Runtime.Loader.wasm"}]},{"Route":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm","AssetFile":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000429000429"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2330"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bm8d2pac0a"},{"Name":"integrity","Value":"sha256-Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4="},{"Name":"label","Value":"_framework/System.Runtime.Loader.wasm"},{"Name":"original-resource","Value":"\"Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4=\""}]},{"Route":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm.gz","AssetFile":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2330"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bm8d2pac0a"},{"Name":"integrity","Value":"sha256-InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns="},{"Name":"label","Value":"_framework/System.Runtime.Loader.wasm.gz"}]},{"Route":"_framework/System.Runtime.Loader.wasm","AssetFile":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4="}]},{"Route":"_framework/System.Runtime.Loader.wasm","AssetFile":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000429000429"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2330"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4="},{"Name":"original-resource","Value":"\"Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4=\""}]},{"Route":"_framework/System.Runtime.Loader.wasm.gz","AssetFile":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2330"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns="}]},{"Route":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm","AssetFile":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"134933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e3fl2oogjk"},{"Name":"integrity","Value":"sha256-Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4="},{"Name":"label","Value":"_framework/System.Runtime.Numerics.wasm"}]},{"Route":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm","AssetFile":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018948725"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"52773"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e3fl2oogjk"},{"Name":"integrity","Value":"sha256-Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4="},{"Name":"label","Value":"_framework/System.Runtime.Numerics.wasm"},{"Name":"original-resource","Value":"\"Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4=\""}]},{"Route":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm.gz","AssetFile":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"52773"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e3fl2oogjk"},{"Name":"integrity","Value":"sha256-aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs="},{"Name":"label","Value":"_framework/System.Runtime.Numerics.wasm.gz"}]},{"Route":"_framework/System.Runtime.Numerics.wasm","AssetFile":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"134933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4="}]},{"Route":"_framework/System.Runtime.Numerics.wasm","AssetFile":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018948725"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"52773"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4="},{"Name":"original-resource","Value":"\"Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4=\""}]},{"Route":"_framework/System.Runtime.Numerics.wasm.gz","AssetFile":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"52773"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs="}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm","AssetFile":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a0v88kqnif"},{"Name":"integrity","Value":"sha256-Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Formatters.wasm"}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm","AssetFile":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041467966"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24114"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a0v88kqnif"},{"Name":"integrity","Value":"sha256-Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Formatters.wasm"},{"Name":"original-resource","Value":"\"Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU=\""}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24114"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a0v88kqnif"},{"Name":"integrity","Value":"sha256-89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Formatters.wasm.gz"}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.wasm","AssetFile":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU="}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.wasm","AssetFile":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041467966"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24114"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU="},{"Name":"original-resource","Value":"\"Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU=\""}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24114"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4="}]},{"Route":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm","AssetFile":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pez04wd9mo"},{"Name":"integrity","Value":"sha256-vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Json.wasm"}]},{"Route":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm","AssetFile":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000441501104"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pez04wd9mo"},{"Name":"integrity","Value":"sha256-vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Json.wasm"},{"Name":"original-resource","Value":"\"vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw=\""}]},{"Route":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pez04wd9mo"},{"Name":"integrity","Value":"sha256-F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Json.wasm.gz"}]},{"Route":"_framework/System.Runtime.Serialization.Json.wasm","AssetFile":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw="}]},{"Route":"_framework/System.Runtime.Serialization.Json.wasm","AssetFile":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000441501104"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw="},{"Name":"original-resource","Value":"\"vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw=\""}]},{"Route":"_framework/System.Runtime.Serialization.Json.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM="}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.wasm","AssetFile":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY="}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.wasm","AssetFile":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000184501845"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY="},{"Name":"original-resource","Value":"\"hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY=\""}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g="}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm","AssetFile":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xy5d3j3dn1"},{"Name":"integrity","Value":"sha256-hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Primitives.wasm"}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm","AssetFile":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000184501845"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xy5d3j3dn1"},{"Name":"integrity","Value":"sha256-hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Primitives.wasm"},{"Name":"original-resource","Value":"\"hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY=\""}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xy5d3j3dn1"},{"Name":"integrity","Value":"sha256-nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Primitives.wasm.gz"}]},{"Route":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm","AssetFile":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mmwsbcsgly"},{"Name":"integrity","Value":"sha256-0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Xml.wasm"}]},{"Route":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm","AssetFile":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388953715"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2570"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mmwsbcsgly"},{"Name":"integrity","Value":"sha256-0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Xml.wasm"},{"Name":"original-resource","Value":"\"0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0=\""}]},{"Route":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2570"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mmwsbcsgly"},{"Name":"integrity","Value":"sha256-ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Xml.wasm.gz"}]},{"Route":"_framework/System.Runtime.Serialization.Xml.wasm","AssetFile":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0="}]},{"Route":"_framework/System.Runtime.Serialization.Xml.wasm","AssetFile":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388953715"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2570"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0="},{"Name":"original-resource","Value":"\"0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0=\""}]},{"Route":"_framework/System.Runtime.Serialization.Xml.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2570"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs="}]},{"Route":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm","AssetFile":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qfpmfujegm"},{"Name":"integrity","Value":"sha256-un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.wasm"}]},{"Route":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm","AssetFile":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000399042298"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2505"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qfpmfujegm"},{"Name":"integrity","Value":"sha256-un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.wasm"},{"Name":"original-resource","Value":"\"un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk=\""}]},{"Route":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2505"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qfpmfujegm"},{"Name":"integrity","Value":"sha256-wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.wasm.gz"}]},{"Route":"_framework/System.Runtime.Serialization.wasm","AssetFile":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk="}]},{"Route":"_framework/System.Runtime.Serialization.wasm","AssetFile":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000399042298"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2505"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk="},{"Name":"original-resource","Value":"\"un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk=\""}]},{"Route":"_framework/System.Runtime.Serialization.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2505"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g="}]},{"Route":"_framework/System.Runtime.k6ze2203p2.wasm","AssetFile":"_framework/System.Runtime.k6ze2203p2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6ze2203p2"},{"Name":"integrity","Value":"sha256-ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM="},{"Name":"label","Value":"_framework/System.Runtime.wasm"}]},{"Route":"_framework/System.Runtime.k6ze2203p2.wasm","AssetFile":"_framework/System.Runtime.k6ze2203p2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000092302012"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6ze2203p2"},{"Name":"integrity","Value":"sha256-ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM="},{"Name":"label","Value":"_framework/System.Runtime.wasm"},{"Name":"original-resource","Value":"\"ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM=\""}]},{"Route":"_framework/System.Runtime.k6ze2203p2.wasm.gz","AssetFile":"_framework/System.Runtime.k6ze2203p2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6ze2203p2"},{"Name":"integrity","Value":"sha256-yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4="},{"Name":"label","Value":"_framework/System.Runtime.wasm.gz"}]},{"Route":"_framework/System.Runtime.wasm","AssetFile":"_framework/System.Runtime.k6ze2203p2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM="}]},{"Route":"_framework/System.Runtime.wasm","AssetFile":"_framework/System.Runtime.k6ze2203p2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000092302012"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM="},{"Name":"original-resource","Value":"\"ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM=\""}]},{"Route":"_framework/System.Runtime.wasm.gz","AssetFile":"_framework/System.Runtime.k6ze2203p2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4="}]},{"Route":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm","AssetFile":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"47893"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4mxo8hy5cn"},{"Name":"integrity","Value":"sha256-1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA="},{"Name":"label","Value":"_framework/System.Security.AccessControl.wasm"}]},{"Route":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm","AssetFile":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000059421237"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4mxo8hy5cn"},{"Name":"integrity","Value":"sha256-1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA="},{"Name":"label","Value":"_framework/System.Security.AccessControl.wasm"},{"Name":"original-resource","Value":"\"1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA=\""}]},{"Route":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm.gz","AssetFile":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4mxo8hy5cn"},{"Name":"integrity","Value":"sha256-lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak="},{"Name":"label","Value":"_framework/System.Security.AccessControl.wasm.gz"}]},{"Route":"_framework/System.Security.AccessControl.wasm","AssetFile":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"47893"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA="}]},{"Route":"_framework/System.Security.AccessControl.wasm","AssetFile":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000059421237"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA="},{"Name":"original-resource","Value":"\"1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA=\""}]},{"Route":"_framework/System.Security.AccessControl.wasm.gz","AssetFile":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak="}]},{"Route":"_framework/System.Security.Claims.9n1yusa5e5.wasm","AssetFile":"_framework/System.Security.Claims.9n1yusa5e5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"44821"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9n1yusa5e5"},{"Name":"integrity","Value":"sha256-KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA="},{"Name":"label","Value":"_framework/System.Security.Claims.wasm"}]},{"Route":"_framework/System.Security.Claims.9n1yusa5e5.wasm","AssetFile":"_framework/System.Security.Claims.9n1yusa5e5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060397415"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16556"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9n1yusa5e5"},{"Name":"integrity","Value":"sha256-KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA="},{"Name":"label","Value":"_framework/System.Security.Claims.wasm"},{"Name":"original-resource","Value":"\"KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA=\""}]},{"Route":"_framework/System.Security.Claims.9n1yusa5e5.wasm.gz","AssetFile":"_framework/System.Security.Claims.9n1yusa5e5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16556"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9n1yusa5e5"},{"Name":"integrity","Value":"sha256-ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY="},{"Name":"label","Value":"_framework/System.Security.Claims.wasm.gz"}]},{"Route":"_framework/System.Security.Claims.wasm","AssetFile":"_framework/System.Security.Claims.9n1yusa5e5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"44821"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA="}]},{"Route":"_framework/System.Security.Claims.wasm","AssetFile":"_framework/System.Security.Claims.9n1yusa5e5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060397415"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16556"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA="},{"Name":"original-resource","Value":"\"KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA=\""}]},{"Route":"_framework/System.Security.Claims.wasm.gz","AssetFile":"_framework/System.Security.Claims.9n1yusa5e5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16556"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY="}]},{"Route":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm","AssetFile":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"642325"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5rp84ijz8t"},{"Name":"integrity","Value":"sha256-YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM="},{"Name":"label","Value":"_framework/System.Security.Cryptography.wasm"}]},{"Route":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm","AssetFile":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004398891"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"227329"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5rp84ijz8t"},{"Name":"integrity","Value":"sha256-YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM="},{"Name":"label","Value":"_framework/System.Security.Cryptography.wasm"},{"Name":"original-resource","Value":"\"YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM=\""}]},{"Route":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"227329"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5rp84ijz8t"},{"Name":"integrity","Value":"sha256-+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y="},{"Name":"label","Value":"_framework/System.Security.Cryptography.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm","AssetFile":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4dnz7b15a9"},{"Name":"integrity","Value":"sha256-CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Algorithms.wasm"}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm","AssetFile":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000368595651"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2712"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4dnz7b15a9"},{"Name":"integrity","Value":"sha256-CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Algorithms.wasm"},{"Name":"original-resource","Value":"\"CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0=\""}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2712"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4dnz7b15a9"},{"Name":"integrity","Value":"sha256-kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Algorithms.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.wasm","AssetFile":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0="}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.wasm","AssetFile":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000368595651"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2712"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0="},{"Name":"original-resource","Value":"\"CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0=\""}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2712"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A="}]},{"Route":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm","AssetFile":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyaxkkx3lb"},{"Name":"integrity","Value":"sha256-SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Cng.wasm"}]},{"Route":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm","AssetFile":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000403714170"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2476"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyaxkkx3lb"},{"Name":"integrity","Value":"sha256-SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Cng.wasm"},{"Name":"original-resource","Value":"\"SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug=\""}]},{"Route":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2476"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyaxkkx3lb"},{"Name":"integrity","Value":"sha256-xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Cng.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Cng.wasm","AssetFile":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug="}]},{"Route":"_framework/System.Security.Cryptography.Cng.wasm","AssetFile":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000403714170"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2476"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug="},{"Name":"original-resource","Value":"\"SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug=\""}]},{"Route":"_framework/System.Security.Cryptography.Cng.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2476"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178="}]},{"Route":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm","AssetFile":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"20t5iw27a6"},{"Name":"integrity","Value":"sha256-EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Csp.wasm"}]},{"Route":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm","AssetFile":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000428082192"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"20t5iw27a6"},{"Name":"integrity","Value":"sha256-EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Csp.wasm"},{"Name":"original-resource","Value":"\"EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M=\""}]},{"Route":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"20t5iw27a6"},{"Name":"integrity","Value":"sha256-lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Csp.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Csp.wasm","AssetFile":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M="}]},{"Route":"_framework/System.Security.Cryptography.Csp.wasm","AssetFile":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000428082192"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M="},{"Name":"original-resource","Value":"\"EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M=\""}]},{"Route":"_framework/System.Security.Cryptography.Csp.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek="}]},{"Route":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm","AssetFile":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0lu5m0tfx2"},{"Name":"integrity","Value":"sha256-7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Encoding.wasm"}]},{"Route":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm","AssetFile":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438404209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0lu5m0tfx2"},{"Name":"integrity","Value":"sha256-7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Encoding.wasm"},{"Name":"original-resource","Value":"\"7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU=\""}]},{"Route":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0lu5m0tfx2"},{"Name":"integrity","Value":"sha256-EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Encoding.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Encoding.wasm","AssetFile":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU="}]},{"Route":"_framework/System.Security.Cryptography.Encoding.wasm","AssetFile":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438404209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU="},{"Name":"original-resource","Value":"\"7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU=\""}]},{"Route":"_framework/System.Security.Cryptography.Encoding.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg="}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm","AssetFile":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m4pzjxi3g"},{"Name":"integrity","Value":"sha256-nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o="},{"Name":"label","Value":"_framework/System.Security.Cryptography.OpenSsl.wasm"}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm","AssetFile":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000449842555"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2222"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m4pzjxi3g"},{"Name":"integrity","Value":"sha256-nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o="},{"Name":"label","Value":"_framework/System.Security.Cryptography.OpenSsl.wasm"},{"Name":"original-resource","Value":"\"nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o=\""}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2222"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m4pzjxi3g"},{"Name":"integrity","Value":"sha256-vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM="},{"Name":"label","Value":"_framework/System.Security.Cryptography.OpenSsl.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.wasm","AssetFile":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o="}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.wasm","AssetFile":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000449842555"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2222"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o="},{"Name":"original-resource","Value":"\"nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o=\""}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2222"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM="}]},{"Route":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm","AssetFile":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7bcdd4uolu"},{"Name":"integrity","Value":"sha256-kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Primitives.wasm"}]},{"Route":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm","AssetFile":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000425894378"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2347"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7bcdd4uolu"},{"Name":"integrity","Value":"sha256-kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Primitives.wasm"},{"Name":"original-resource","Value":"\"kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0=\""}]},{"Route":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2347"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7bcdd4uolu"},{"Name":"integrity","Value":"sha256-o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Primitives.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Primitives.wasm","AssetFile":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0="}]},{"Route":"_framework/System.Security.Cryptography.Primitives.wasm","AssetFile":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000425894378"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2347"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0="},{"Name":"original-resource","Value":"\"kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0=\""}]},{"Route":"_framework/System.Security.Cryptography.Primitives.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2347"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE="}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm","AssetFile":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dmew7c9amv"},{"Name":"integrity","Value":"sha256-+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8="},{"Name":"label","Value":"_framework/System.Security.Cryptography.X509Certificates.wasm"}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm","AssetFile":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000374251497"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2671"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dmew7c9amv"},{"Name":"integrity","Value":"sha256-+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8="},{"Name":"label","Value":"_framework/System.Security.Cryptography.X509Certificates.wasm"},{"Name":"original-resource","Value":"\"+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8=\""}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2671"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dmew7c9amv"},{"Name":"integrity","Value":"sha256-KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw="},{"Name":"label","Value":"_framework/System.Security.Cryptography.X509Certificates.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.wasm","AssetFile":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8="}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.wasm","AssetFile":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000374251497"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2671"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8="},{"Name":"original-resource","Value":"\"+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8=\""}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2671"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw="}]},{"Route":"_framework/System.Security.Cryptography.wasm","AssetFile":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"642325"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM="}]},{"Route":"_framework/System.Security.Cryptography.wasm","AssetFile":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004398891"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"227329"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM="},{"Name":"original-resource","Value":"\"YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM=\""}]},{"Route":"_framework/System.Security.Cryptography.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"227329"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y="}]},{"Route":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm","AssetFile":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27413"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7ssqvw2wfy"},{"Name":"integrity","Value":"sha256-NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ="},{"Name":"label","Value":"_framework/System.Security.Principal.Windows.wasm"}]},{"Route":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm","AssetFile":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090171326"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11089"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7ssqvw2wfy"},{"Name":"integrity","Value":"sha256-NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ="},{"Name":"label","Value":"_framework/System.Security.Principal.Windows.wasm"},{"Name":"original-resource","Value":"\"NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ=\""}]},{"Route":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm.gz","AssetFile":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11089"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7ssqvw2wfy"},{"Name":"integrity","Value":"sha256-ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg="},{"Name":"label","Value":"_framework/System.Security.Principal.Windows.wasm.gz"}]},{"Route":"_framework/System.Security.Principal.Windows.wasm","AssetFile":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"27413"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ="}]},{"Route":"_framework/System.Security.Principal.Windows.wasm","AssetFile":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090171326"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11089"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ="},{"Name":"original-resource","Value":"\"NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ=\""}]},{"Route":"_framework/System.Security.Principal.Windows.wasm.gz","AssetFile":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11089"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg="}]},{"Route":"_framework/System.Security.Principal.j5dp7k8x6u.wasm","AssetFile":"_framework/System.Security.Principal.j5dp7k8x6u.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5dp7k8x6u"},{"Name":"integrity","Value":"sha256-KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no="},{"Name":"label","Value":"_framework/System.Security.Principal.wasm"}]},{"Route":"_framework/System.Security.Principal.j5dp7k8x6u.wasm","AssetFile":"_framework/System.Security.Principal.j5dp7k8x6u.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000459558824"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2175"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5dp7k8x6u"},{"Name":"integrity","Value":"sha256-KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no="},{"Name":"label","Value":"_framework/System.Security.Principal.wasm"},{"Name":"original-resource","Value":"\"KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no=\""}]},{"Route":"_framework/System.Security.Principal.j5dp7k8x6u.wasm.gz","AssetFile":"_framework/System.Security.Principal.j5dp7k8x6u.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2175"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5dp7k8x6u"},{"Name":"integrity","Value":"sha256-HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA="},{"Name":"label","Value":"_framework/System.Security.Principal.wasm.gz"}]},{"Route":"_framework/System.Security.Principal.wasm","AssetFile":"_framework/System.Security.Principal.j5dp7k8x6u.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no="}]},{"Route":"_framework/System.Security.Principal.wasm","AssetFile":"_framework/System.Security.Principal.j5dp7k8x6u.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000459558824"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2175"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no="},{"Name":"original-resource","Value":"\"KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no=\""}]},{"Route":"_framework/System.Security.Principal.wasm.gz","AssetFile":"_framework/System.Security.Principal.j5dp7k8x6u.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2175"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA="}]},{"Route":"_framework/System.Security.SecureString.7weoywtuje.wasm","AssetFile":"_framework/System.Security.SecureString.7weoywtuje.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7weoywtuje"},{"Name":"integrity","Value":"sha256-Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY="},{"Name":"label","Value":"_framework/System.Security.SecureString.wasm"}]},{"Route":"_framework/System.Security.SecureString.7weoywtuje.wasm","AssetFile":"_framework/System.Security.SecureString.7weoywtuje.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000453309157"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2205"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7weoywtuje"},{"Name":"integrity","Value":"sha256-Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY="},{"Name":"label","Value":"_framework/System.Security.SecureString.wasm"},{"Name":"original-resource","Value":"\"Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY=\""}]},{"Route":"_framework/System.Security.SecureString.7weoywtuje.wasm.gz","AssetFile":"_framework/System.Security.SecureString.7weoywtuje.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2205"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7weoywtuje"},{"Name":"integrity","Value":"sha256-z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM="},{"Name":"label","Value":"_framework/System.Security.SecureString.wasm.gz"}]},{"Route":"_framework/System.Security.SecureString.wasm","AssetFile":"_framework/System.Security.SecureString.7weoywtuje.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY="}]},{"Route":"_framework/System.Security.SecureString.wasm","AssetFile":"_framework/System.Security.SecureString.7weoywtuje.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000453309157"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2205"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY="},{"Name":"original-resource","Value":"\"Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY=\""}]},{"Route":"_framework/System.Security.SecureString.wasm.gz","AssetFile":"_framework/System.Security.SecureString.7weoywtuje.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2205"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM="}]},{"Route":"_framework/System.Security.snpv53zusk.wasm","AssetFile":"_framework/System.Security.snpv53zusk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"7957"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"snpv53zusk"},{"Name":"integrity","Value":"sha256-qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk="},{"Name":"label","Value":"_framework/System.Security.wasm"}]},{"Route":"_framework/System.Security.snpv53zusk.wasm","AssetFile":"_framework/System.Security.snpv53zusk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000336927224"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2967"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"snpv53zusk"},{"Name":"integrity","Value":"sha256-qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk="},{"Name":"label","Value":"_framework/System.Security.wasm"},{"Name":"original-resource","Value":"\"qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk=\""}]},{"Route":"_framework/System.Security.snpv53zusk.wasm.gz","AssetFile":"_framework/System.Security.snpv53zusk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2967"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"snpv53zusk"},{"Name":"integrity","Value":"sha256-l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk="},{"Name":"label","Value":"_framework/System.Security.wasm.gz"}]},{"Route":"_framework/System.Security.wasm","AssetFile":"_framework/System.Security.snpv53zusk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"7957"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk="}]},{"Route":"_framework/System.Security.wasm","AssetFile":"_framework/System.Security.snpv53zusk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000336927224"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2967"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk="},{"Name":"original-resource","Value":"\"qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk=\""}]},{"Route":"_framework/System.Security.wasm.gz","AssetFile":"_framework/System.Security.snpv53zusk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2967"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk="}]},{"Route":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm","AssetFile":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3f1khl8k32"},{"Name":"integrity","Value":"sha256-0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY="},{"Name":"label","Value":"_framework/System.ServiceModel.Web.wasm"}]},{"Route":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm","AssetFile":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000392464678"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2547"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3f1khl8k32"},{"Name":"integrity","Value":"sha256-0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY="},{"Name":"label","Value":"_framework/System.ServiceModel.Web.wasm"},{"Name":"original-resource","Value":"\"0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY=\""}]},{"Route":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm.gz","AssetFile":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2547"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3f1khl8k32"},{"Name":"integrity","Value":"sha256-E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4="},{"Name":"label","Value":"_framework/System.ServiceModel.Web.wasm.gz"}]},{"Route":"_framework/System.ServiceModel.Web.wasm","AssetFile":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY="}]},{"Route":"_framework/System.ServiceModel.Web.wasm","AssetFile":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000392464678"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2547"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY="},{"Name":"original-resource","Value":"\"0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY=\""}]},{"Route":"_framework/System.ServiceModel.Web.wasm.gz","AssetFile":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2547"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4="}]},{"Route":"_framework/System.ServiceProcess.a95c1olw0i.wasm","AssetFile":"_framework/System.ServiceProcess.a95c1olw0i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a95c1olw0i"},{"Name":"integrity","Value":"sha256-nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU="},{"Name":"label","Value":"_framework/System.ServiceProcess.wasm"}]},{"Route":"_framework/System.ServiceProcess.a95c1olw0i.wasm","AssetFile":"_framework/System.ServiceProcess.a95c1olw0i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000433275563"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a95c1olw0i"},{"Name":"integrity","Value":"sha256-nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU="},{"Name":"label","Value":"_framework/System.ServiceProcess.wasm"},{"Name":"original-resource","Value":"\"nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU=\""}]},{"Route":"_framework/System.ServiceProcess.a95c1olw0i.wasm.gz","AssetFile":"_framework/System.ServiceProcess.a95c1olw0i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a95c1olw0i"},{"Name":"integrity","Value":"sha256-EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q="},{"Name":"label","Value":"_framework/System.ServiceProcess.wasm.gz"}]},{"Route":"_framework/System.ServiceProcess.wasm","AssetFile":"_framework/System.ServiceProcess.a95c1olw0i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU="}]},{"Route":"_framework/System.ServiceProcess.wasm","AssetFile":"_framework/System.ServiceProcess.a95c1olw0i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000433275563"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU="},{"Name":"original-resource","Value":"\"nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU=\""}]},{"Route":"_framework/System.ServiceProcess.wasm.gz","AssetFile":"_framework/System.ServiceProcess.a95c1olw0i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q="}]},{"Route":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm","AssetFile":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"732437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8bhn50uz8f"},{"Name":"integrity","Value":"sha256-nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A="},{"Name":"label","Value":"_framework/System.Text.Encoding.CodePages.wasm"}]},{"Route":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm","AssetFile":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000001939067"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"515711"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8bhn50uz8f"},{"Name":"integrity","Value":"sha256-nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A="},{"Name":"label","Value":"_framework/System.Text.Encoding.CodePages.wasm"},{"Name":"original-resource","Value":"\"nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A=\""}]},{"Route":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm.gz","AssetFile":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"515711"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8bhn50uz8f"},{"Name":"integrity","Value":"sha256-hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y="},{"Name":"label","Value":"_framework/System.Text.Encoding.CodePages.wasm.gz"}]},{"Route":"_framework/System.Text.Encoding.CodePages.wasm","AssetFile":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"732437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A="}]},{"Route":"_framework/System.Text.Encoding.CodePages.wasm","AssetFile":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000001939067"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"515711"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A="},{"Name":"original-resource","Value":"\"nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A=\""}]},{"Route":"_framework/System.Text.Encoding.CodePages.wasm.gz","AssetFile":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"515711"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y="}]},{"Route":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm","AssetFile":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tqz9dyg6j7"},{"Name":"integrity","Value":"sha256-y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A="},{"Name":"label","Value":"_framework/System.Text.Encoding.Extensions.wasm"}]},{"Route":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm","AssetFile":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000442673749"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2258"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tqz9dyg6j7"},{"Name":"integrity","Value":"sha256-y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A="},{"Name":"label","Value":"_framework/System.Text.Encoding.Extensions.wasm"},{"Name":"original-resource","Value":"\"y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A=\""}]},{"Route":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm.gz","AssetFile":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2258"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tqz9dyg6j7"},{"Name":"integrity","Value":"sha256-jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k="},{"Name":"label","Value":"_framework/System.Text.Encoding.Extensions.wasm.gz"}]},{"Route":"_framework/System.Text.Encoding.Extensions.wasm","AssetFile":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A="}]},{"Route":"_framework/System.Text.Encoding.Extensions.wasm","AssetFile":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000442673749"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2258"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A="},{"Name":"original-resource","Value":"\"y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A=\""}]},{"Route":"_framework/System.Text.Encoding.Extensions.wasm.gz","AssetFile":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2258"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k="}]},{"Route":"_framework/System.Text.Encoding.s9ic8sulfi.wasm","AssetFile":"_framework/System.Text.Encoding.s9ic8sulfi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s9ic8sulfi"},{"Name":"integrity","Value":"sha256-gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg="},{"Name":"label","Value":"_framework/System.Text.Encoding.wasm"}]},{"Route":"_framework/System.Text.Encoding.s9ic8sulfi.wasm","AssetFile":"_framework/System.Text.Encoding.s9ic8sulfi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000445434298"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2244"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s9ic8sulfi"},{"Name":"integrity","Value":"sha256-gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg="},{"Name":"label","Value":"_framework/System.Text.Encoding.wasm"},{"Name":"original-resource","Value":"\"gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg=\""}]},{"Route":"_framework/System.Text.Encoding.s9ic8sulfi.wasm.gz","AssetFile":"_framework/System.Text.Encoding.s9ic8sulfi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2244"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s9ic8sulfi"},{"Name":"integrity","Value":"sha256-oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA="},{"Name":"label","Value":"_framework/System.Text.Encoding.wasm.gz"}]},{"Route":"_framework/System.Text.Encoding.wasm","AssetFile":"_framework/System.Text.Encoding.s9ic8sulfi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg="}]},{"Route":"_framework/System.Text.Encoding.wasm","AssetFile":"_framework/System.Text.Encoding.s9ic8sulfi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000445434298"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2244"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg="},{"Name":"original-resource","Value":"\"gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg=\""}]},{"Route":"_framework/System.Text.Encoding.wasm.gz","AssetFile":"_framework/System.Text.Encoding.s9ic8sulfi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2244"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA="}]},{"Route":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm","AssetFile":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"07hq35kp92"},{"Name":"integrity","Value":"sha256-dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE="},{"Name":"label","Value":"_framework/System.Text.Encodings.Web.wasm"}]},{"Route":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm","AssetFile":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000045293958"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"07hq35kp92"},{"Name":"integrity","Value":"sha256-dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE="},{"Name":"label","Value":"_framework/System.Text.Encodings.Web.wasm"},{"Name":"original-resource","Value":"\"dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE=\""}]},{"Route":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm.gz","AssetFile":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"07hq35kp92"},{"Name":"integrity","Value":"sha256-vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4="},{"Name":"label","Value":"_framework/System.Text.Encodings.Web.wasm.gz"}]},{"Route":"_framework/System.Text.Encodings.Web.wasm","AssetFile":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE="}]},{"Route":"_framework/System.Text.Encodings.Web.wasm","AssetFile":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000045293958"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE="},{"Name":"original-resource","Value":"\"dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE=\""}]},{"Route":"_framework/System.Text.Encodings.Web.wasm.gz","AssetFile":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4="}]},{"Route":"_framework/System.Text.Json.2alhj4y3bm.wasm","AssetFile":"_framework/System.Text.Json.2alhj4y3bm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"638741"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2alhj4y3bm"},{"Name":"integrity","Value":"sha256-BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY="},{"Name":"label","Value":"_framework/System.Text.Json.wasm"}]},{"Route":"_framework/System.Text.Json.2alhj4y3bm.wasm","AssetFile":"_framework/System.Text.Json.2alhj4y3bm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004372674"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"228692"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2alhj4y3bm"},{"Name":"integrity","Value":"sha256-BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY="},{"Name":"label","Value":"_framework/System.Text.Json.wasm"},{"Name":"original-resource","Value":"\"BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY=\""}]},{"Route":"_framework/System.Text.Json.2alhj4y3bm.wasm.gz","AssetFile":"_framework/System.Text.Json.2alhj4y3bm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"228692"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2alhj4y3bm"},{"Name":"integrity","Value":"sha256-L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw="},{"Name":"label","Value":"_framework/System.Text.Json.wasm.gz"}]},{"Route":"_framework/System.Text.Json.wasm","AssetFile":"_framework/System.Text.Json.2alhj4y3bm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"638741"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY="}]},{"Route":"_framework/System.Text.Json.wasm","AssetFile":"_framework/System.Text.Json.2alhj4y3bm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004372674"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"228692"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY="},{"Name":"original-resource","Value":"\"BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY=\""}]},{"Route":"_framework/System.Text.Json.wasm.gz","AssetFile":"_framework/System.Text.Json.2alhj4y3bm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"228692"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw="}]},{"Route":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm","AssetFile":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"374549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1qtkesphd"},{"Name":"integrity","Value":"sha256-FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ="},{"Name":"label","Value":"_framework/System.Text.RegularExpressions.wasm"}]},{"Route":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm","AssetFile":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006311418"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"158442"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1qtkesphd"},{"Name":"integrity","Value":"sha256-FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ="},{"Name":"label","Value":"_framework/System.Text.RegularExpressions.wasm"},{"Name":"original-resource","Value":"\"FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ=\""}]},{"Route":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm.gz","AssetFile":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"158442"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1qtkesphd"},{"Name":"integrity","Value":"sha256-BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U="},{"Name":"label","Value":"_framework/System.Text.RegularExpressions.wasm.gz"}]},{"Route":"_framework/System.Text.RegularExpressions.wasm","AssetFile":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"374549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ="}]},{"Route":"_framework/System.Text.RegularExpressions.wasm","AssetFile":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006311418"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"158442"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ="},{"Name":"original-resource","Value":"\"FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ=\""}]},{"Route":"_framework/System.Text.RegularExpressions.wasm.gz","AssetFile":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"158442"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U="}]},{"Route":"_framework/System.Threading.47ucbn1gg1.wasm","AssetFile":"_framework/System.Threading.47ucbn1gg1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"47ucbn1gg1"},{"Name":"integrity","Value":"sha256-ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts="},{"Name":"label","Value":"_framework/System.Threading.wasm"}]},{"Route":"_framework/System.Threading.47ucbn1gg1.wasm","AssetFile":"_framework/System.Threading.47ucbn1gg1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000068045727"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14695"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"47ucbn1gg1"},{"Name":"integrity","Value":"sha256-ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts="},{"Name":"label","Value":"_framework/System.Threading.wasm"},{"Name":"original-resource","Value":"\"ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts=\""}]},{"Route":"_framework/System.Threading.47ucbn1gg1.wasm.gz","AssetFile":"_framework/System.Threading.47ucbn1gg1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14695"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"47ucbn1gg1"},{"Name":"integrity","Value":"sha256-fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g="},{"Name":"label","Value":"_framework/System.Threading.wasm.gz"}]},{"Route":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm","AssetFile":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"23317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ruehy0ud5k"},{"Name":"integrity","Value":"sha256-c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s="},{"Name":"label","Value":"_framework/System.Threading.AccessControl.wasm"}]},{"Route":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm","AssetFile":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000117785630"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ruehy0ud5k"},{"Name":"integrity","Value":"sha256-c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s="},{"Name":"label","Value":"_framework/System.Threading.AccessControl.wasm"},{"Name":"original-resource","Value":"\"c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s=\""}]},{"Route":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm.gz","AssetFile":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ruehy0ud5k"},{"Name":"integrity","Value":"sha256-INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s="},{"Name":"label","Value":"_framework/System.Threading.AccessControl.wasm.gz"}]},{"Route":"_framework/System.Threading.AccessControl.wasm","AssetFile":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"23317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s="}]},{"Route":"_framework/System.Threading.AccessControl.wasm","AssetFile":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000117785630"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s="},{"Name":"original-resource","Value":"\"c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s=\""}]},{"Route":"_framework/System.Threading.AccessControl.wasm.gz","AssetFile":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s="}]},{"Route":"_framework/System.Threading.Channels.s3i62rxr2p.wasm","AssetFile":"_framework/System.Threading.Channels.s3i62rxr2p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"56085"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s3i62rxr2p"},{"Name":"integrity","Value":"sha256-2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4="},{"Name":"label","Value":"_framework/System.Threading.Channels.wasm"}]},{"Route":"_framework/System.Threading.Channels.s3i62rxr2p.wasm","AssetFile":"_framework/System.Threading.Channels.s3i62rxr2p.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040955072"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24416"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s3i62rxr2p"},{"Name":"integrity","Value":"sha256-2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4="},{"Name":"label","Value":"_framework/System.Threading.Channels.wasm"},{"Name":"original-resource","Value":"\"2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4=\""}]},{"Route":"_framework/System.Threading.Channels.s3i62rxr2p.wasm.gz","AssetFile":"_framework/System.Threading.Channels.s3i62rxr2p.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24416"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s3i62rxr2p"},{"Name":"integrity","Value":"sha256-u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo="},{"Name":"label","Value":"_framework/System.Threading.Channels.wasm.gz"}]},{"Route":"_framework/System.Threading.Channels.wasm","AssetFile":"_framework/System.Threading.Channels.s3i62rxr2p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"56085"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4="}]},{"Route":"_framework/System.Threading.Channels.wasm","AssetFile":"_framework/System.Threading.Channels.s3i62rxr2p.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040955072"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24416"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4="},{"Name":"original-resource","Value":"\"2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4=\""}]},{"Route":"_framework/System.Threading.Channels.wasm.gz","AssetFile":"_framework/System.Threading.Channels.s3i62rxr2p.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24416"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo="}]},{"Route":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm","AssetFile":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzl7igry1t"},{"Name":"integrity","Value":"sha256-ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8="},{"Name":"label","Value":"_framework/System.Threading.Overlapped.wasm"}]},{"Route":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm","AssetFile":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000431406385"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzl7igry1t"},{"Name":"integrity","Value":"sha256-ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8="},{"Name":"label","Value":"_framework/System.Threading.Overlapped.wasm"},{"Name":"original-resource","Value":"\"ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8=\""}]},{"Route":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm.gz","AssetFile":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzl7igry1t"},{"Name":"integrity","Value":"sha256-2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto="},{"Name":"label","Value":"_framework/System.Threading.Overlapped.wasm.gz"}]},{"Route":"_framework/System.Threading.Overlapped.wasm","AssetFile":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8="}]},{"Route":"_framework/System.Threading.Overlapped.wasm","AssetFile":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000431406385"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8="},{"Name":"original-resource","Value":"\"ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8=\""}]},{"Route":"_framework/System.Threading.Overlapped.wasm.gz","AssetFile":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto="}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm","AssetFile":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"175381"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"p9bjzp5pyo"},{"Name":"integrity","Value":"sha256-zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Dataflow.wasm"}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm","AssetFile":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013652623"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"73245"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"p9bjzp5pyo"},{"Name":"integrity","Value":"sha256-zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Dataflow.wasm"},{"Name":"original-resource","Value":"\"zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k=\""}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"73245"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"p9bjzp5pyo"},{"Name":"integrity","Value":"sha256-3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Dataflow.wasm.gz"}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.wasm","AssetFile":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"175381"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k="}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.wasm","AssetFile":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013652623"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"73245"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k="},{"Name":"original-resource","Value":"\"zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k=\""}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"73245"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U="}]},{"Route":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm","AssetFile":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"unp0hcfijn"},{"Name":"integrity","Value":"sha256-Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Extensions.wasm"}]},{"Route":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm","AssetFile":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000433275563"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"unp0hcfijn"},{"Name":"integrity","Value":"sha256-Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Extensions.wasm"},{"Name":"original-resource","Value":"\"Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4=\""}]},{"Route":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"unp0hcfijn"},{"Name":"integrity","Value":"sha256-+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Extensions.wasm.gz"}]},{"Route":"_framework/System.Threading.Tasks.Extensions.wasm","AssetFile":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4="}]},{"Route":"_framework/System.Threading.Tasks.Extensions.wasm","AssetFile":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000433275563"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4="},{"Name":"original-resource","Value":"\"Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4=\""}]},{"Route":"_framework/System.Threading.Tasks.Extensions.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw="}]},{"Route":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm","AssetFile":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"50965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hyku0ejwye"},{"Name":"integrity","Value":"sha256-ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Parallel.wasm"}]},{"Route":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm","AssetFile":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000047418085"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21088"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hyku0ejwye"},{"Name":"integrity","Value":"sha256-ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Parallel.wasm"},{"Name":"original-resource","Value":"\"ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo=\""}]},{"Route":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21088"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hyku0ejwye"},{"Name":"integrity","Value":"sha256-m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Parallel.wasm.gz"}]},{"Route":"_framework/System.Threading.Tasks.Parallel.wasm","AssetFile":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"50965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo="}]},{"Route":"_framework/System.Threading.Tasks.Parallel.wasm","AssetFile":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000047418085"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21088"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo="},{"Name":"original-resource","Value":"\"ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo=\""}]},{"Route":"_framework/System.Threading.Tasks.Parallel.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21088"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk="}]},{"Route":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm","AssetFile":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t0sjw89o0i"},{"Name":"integrity","Value":"sha256-YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo="},{"Name":"label","Value":"_framework/System.Threading.Tasks.wasm"}]},{"Route":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm","AssetFile":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388198758"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t0sjw89o0i"},{"Name":"integrity","Value":"sha256-YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo="},{"Name":"label","Value":"_framework/System.Threading.Tasks.wasm"},{"Name":"original-resource","Value":"\"YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo=\""}]},{"Route":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t0sjw89o0i"},{"Name":"integrity","Value":"sha256-Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE="},{"Name":"label","Value":"_framework/System.Threading.Tasks.wasm.gz"}]},{"Route":"_framework/System.Threading.Tasks.wasm","AssetFile":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo="}]},{"Route":"_framework/System.Threading.Tasks.wasm","AssetFile":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388198758"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo="},{"Name":"original-resource","Value":"\"YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo=\""}]},{"Route":"_framework/System.Threading.Tasks.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE="}]},{"Route":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm","AssetFile":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nfbg9v9bn0"},{"Name":"integrity","Value":"sha256-43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0="},{"Name":"label","Value":"_framework/System.Threading.Thread.wasm"}]},{"Route":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm","AssetFile":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000427533134"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2338"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nfbg9v9bn0"},{"Name":"integrity","Value":"sha256-43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0="},{"Name":"label","Value":"_framework/System.Threading.Thread.wasm"},{"Name":"original-resource","Value":"\"43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0=\""}]},{"Route":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm.gz","AssetFile":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2338"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nfbg9v9bn0"},{"Name":"integrity","Value":"sha256-FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE="},{"Name":"label","Value":"_framework/System.Threading.Thread.wasm.gz"}]},{"Route":"_framework/System.Threading.Thread.wasm","AssetFile":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0="}]},{"Route":"_framework/System.Threading.Thread.wasm","AssetFile":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000427533134"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2338"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0="},{"Name":"original-resource","Value":"\"43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0=\""}]},{"Route":"_framework/System.Threading.Thread.wasm.gz","AssetFile":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2338"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE="}]},{"Route":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm","AssetFile":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jrzo6stg1k"},{"Name":"integrity","Value":"sha256-D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas="},{"Name":"label","Value":"_framework/System.Threading.ThreadPool.wasm"}]},{"Route":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm","AssetFile":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000442282176"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2260"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jrzo6stg1k"},{"Name":"integrity","Value":"sha256-D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas="},{"Name":"label","Value":"_framework/System.Threading.ThreadPool.wasm"},{"Name":"original-resource","Value":"\"D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas=\""}]},{"Route":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm.gz","AssetFile":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2260"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jrzo6stg1k"},{"Name":"integrity","Value":"sha256-yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8="},{"Name":"label","Value":"_framework/System.Threading.ThreadPool.wasm.gz"}]},{"Route":"_framework/System.Threading.ThreadPool.wasm","AssetFile":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas="}]},{"Route":"_framework/System.Threading.ThreadPool.wasm","AssetFile":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000442282176"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2260"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas="},{"Name":"original-resource","Value":"\"D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas=\""}]},{"Route":"_framework/System.Threading.ThreadPool.wasm.gz","AssetFile":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2260"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8="}]},{"Route":"_framework/System.Threading.Timer.wasm","AssetFile":"_framework/System.Threading.Timer.y8l1kxazi5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0="}]},{"Route":"_framework/System.Threading.Timer.wasm","AssetFile":"_framework/System.Threading.Timer.y8l1kxazi5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000467726848"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2137"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0="},{"Name":"original-resource","Value":"\"0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0=\""}]},{"Route":"_framework/System.Threading.Timer.wasm.gz","AssetFile":"_framework/System.Threading.Timer.y8l1kxazi5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2137"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M="}]},{"Route":"_framework/System.Threading.Timer.y8l1kxazi5.wasm","AssetFile":"_framework/System.Threading.Timer.y8l1kxazi5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y8l1kxazi5"},{"Name":"integrity","Value":"sha256-0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0="},{"Name":"label","Value":"_framework/System.Threading.Timer.wasm"}]},{"Route":"_framework/System.Threading.Timer.y8l1kxazi5.wasm","AssetFile":"_framework/System.Threading.Timer.y8l1kxazi5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000467726848"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2137"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y8l1kxazi5"},{"Name":"integrity","Value":"sha256-0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0="},{"Name":"label","Value":"_framework/System.Threading.Timer.wasm"},{"Name":"original-resource","Value":"\"0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0=\""}]},{"Route":"_framework/System.Threading.Timer.y8l1kxazi5.wasm.gz","AssetFile":"_framework/System.Threading.Timer.y8l1kxazi5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2137"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y8l1kxazi5"},{"Name":"integrity","Value":"sha256-pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M="},{"Name":"label","Value":"_framework/System.Threading.Timer.wasm.gz"}]},{"Route":"_framework/System.Threading.wasm","AssetFile":"_framework/System.Threading.47ucbn1gg1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts="}]},{"Route":"_framework/System.Threading.wasm","AssetFile":"_framework/System.Threading.47ucbn1gg1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000068045727"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14695"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts="},{"Name":"original-resource","Value":"\"ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts=\""}]},{"Route":"_framework/System.Threading.wasm.gz","AssetFile":"_framework/System.Threading.47ucbn1gg1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14695"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g="}]},{"Route":"_framework/System.Transactions.Local.cig01jt23c.wasm","AssetFile":"_framework/System.Transactions.Local.cig01jt23c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"165653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cig01jt23c"},{"Name":"integrity","Value":"sha256-lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4="},{"Name":"label","Value":"_framework/System.Transactions.Local.wasm"}]},{"Route":"_framework/System.Transactions.Local.cig01jt23c.wasm","AssetFile":"_framework/System.Transactions.Local.cig01jt23c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000019435590"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"51451"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cig01jt23c"},{"Name":"integrity","Value":"sha256-lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4="},{"Name":"label","Value":"_framework/System.Transactions.Local.wasm"},{"Name":"original-resource","Value":"\"lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4=\""}]},{"Route":"_framework/System.Transactions.Local.cig01jt23c.wasm.gz","AssetFile":"_framework/System.Transactions.Local.cig01jt23c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"51451"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cig01jt23c"},{"Name":"integrity","Value":"sha256-ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8="},{"Name":"label","Value":"_framework/System.Transactions.Local.wasm.gz"}]},{"Route":"_framework/System.Transactions.Local.wasm","AssetFile":"_framework/System.Transactions.Local.cig01jt23c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"165653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4="}]},{"Route":"_framework/System.Transactions.Local.wasm","AssetFile":"_framework/System.Transactions.Local.cig01jt23c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000019435590"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"51451"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4="},{"Name":"original-resource","Value":"\"lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4=\""}]},{"Route":"_framework/System.Transactions.Local.wasm.gz","AssetFile":"_framework/System.Transactions.Local.cig01jt23c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"51451"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8="}]},{"Route":"_framework/System.Transactions.pl50n6qbg7.wasm","AssetFile":"_framework/System.Transactions.pl50n6qbg7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pl50n6qbg7"},{"Name":"integrity","Value":"sha256-XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio="},{"Name":"label","Value":"_framework/System.Transactions.wasm"}]},{"Route":"_framework/System.Transactions.pl50n6qbg7.wasm","AssetFile":"_framework/System.Transactions.pl50n6qbg7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000419287212"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2384"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pl50n6qbg7"},{"Name":"integrity","Value":"sha256-XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio="},{"Name":"label","Value":"_framework/System.Transactions.wasm"},{"Name":"original-resource","Value":"\"XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio=\""}]},{"Route":"_framework/System.Transactions.pl50n6qbg7.wasm.gz","AssetFile":"_framework/System.Transactions.pl50n6qbg7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2384"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pl50n6qbg7"},{"Name":"integrity","Value":"sha256-Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA="},{"Name":"label","Value":"_framework/System.Transactions.wasm.gz"}]},{"Route":"_framework/System.Transactions.wasm","AssetFile":"_framework/System.Transactions.pl50n6qbg7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio="}]},{"Route":"_framework/System.Transactions.wasm","AssetFile":"_framework/System.Transactions.pl50n6qbg7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000419287212"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2384"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio="},{"Name":"original-resource","Value":"\"XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio=\""}]},{"Route":"_framework/System.Transactions.wasm.gz","AssetFile":"_framework/System.Transactions.pl50n6qbg7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2384"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA="}]},{"Route":"_framework/System.ValueTuple.mj3r9p0pcw.wasm","AssetFile":"_framework/System.ValueTuple.mj3r9p0pcw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mj3r9p0pcw"},{"Name":"integrity","Value":"sha256-Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY="},{"Name":"label","Value":"_framework/System.ValueTuple.wasm"}]},{"Route":"_framework/System.ValueTuple.mj3r9p0pcw.wasm","AssetFile":"_framework/System.ValueTuple.mj3r9p0pcw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455788514"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2193"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mj3r9p0pcw"},{"Name":"integrity","Value":"sha256-Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY="},{"Name":"label","Value":"_framework/System.ValueTuple.wasm"},{"Name":"original-resource","Value":"\"Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY=\""}]},{"Route":"_framework/System.ValueTuple.mj3r9p0pcw.wasm.gz","AssetFile":"_framework/System.ValueTuple.mj3r9p0pcw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2193"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mj3r9p0pcw"},{"Name":"integrity","Value":"sha256-qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY="},{"Name":"label","Value":"_framework/System.ValueTuple.wasm.gz"}]},{"Route":"_framework/System.ValueTuple.wasm","AssetFile":"_framework/System.ValueTuple.mj3r9p0pcw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY="}]},{"Route":"_framework/System.ValueTuple.wasm","AssetFile":"_framework/System.ValueTuple.mj3r9p0pcw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455788514"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2193"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY="},{"Name":"original-resource","Value":"\"Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY=\""}]},{"Route":"_framework/System.ValueTuple.wasm.gz","AssetFile":"_framework/System.ValueTuple.mj3r9p0pcw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2193"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY="}]},{"Route":"_framework/System.Web.2a6wq9gv6d.wasm","AssetFile":"_framework/System.Web.2a6wq9gv6d.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2a6wq9gv6d"},{"Name":"integrity","Value":"sha256-Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk="},{"Name":"label","Value":"_framework/System.Web.wasm"}]},{"Route":"_framework/System.Web.2a6wq9gv6d.wasm","AssetFile":"_framework/System.Web.2a6wq9gv6d.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000469924812"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2127"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2a6wq9gv6d"},{"Name":"integrity","Value":"sha256-Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk="},{"Name":"label","Value":"_framework/System.Web.wasm"},{"Name":"original-resource","Value":"\"Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk=\""}]},{"Route":"_framework/System.Web.2a6wq9gv6d.wasm.gz","AssetFile":"_framework/System.Web.2a6wq9gv6d.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2127"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2a6wq9gv6d"},{"Name":"integrity","Value":"sha256-UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4="},{"Name":"label","Value":"_framework/System.Web.wasm.gz"}]},{"Route":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm","AssetFile":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"19733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3jfxpyq4in"},{"Name":"integrity","Value":"sha256-IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4="},{"Name":"label","Value":"_framework/System.Web.HttpUtility.wasm"}]},{"Route":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm","AssetFile":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000104766894"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9544"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3jfxpyq4in"},{"Name":"integrity","Value":"sha256-IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4="},{"Name":"label","Value":"_framework/System.Web.HttpUtility.wasm"},{"Name":"original-resource","Value":"\"IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4=\""}]},{"Route":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm.gz","AssetFile":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9544"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3jfxpyq4in"},{"Name":"integrity","Value":"sha256-eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg="},{"Name":"label","Value":"_framework/System.Web.HttpUtility.wasm.gz"}]},{"Route":"_framework/System.Web.HttpUtility.wasm","AssetFile":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"19733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4="}]},{"Route":"_framework/System.Web.HttpUtility.wasm","AssetFile":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000104766894"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9544"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4="},{"Name":"original-resource","Value":"\"IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4=\""}]},{"Route":"_framework/System.Web.HttpUtility.wasm.gz","AssetFile":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9544"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg="}]},{"Route":"_framework/System.Web.wasm","AssetFile":"_framework/System.Web.2a6wq9gv6d.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk="}]},{"Route":"_framework/System.Web.wasm","AssetFile":"_framework/System.Web.2a6wq9gv6d.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000469924812"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2127"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk="},{"Name":"original-resource","Value":"\"Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk=\""}]},{"Route":"_framework/System.Web.wasm.gz","AssetFile":"_framework/System.Web.2a6wq9gv6d.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2127"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4="}]},{"Route":"_framework/System.Windows.bw79ix589z.wasm","AssetFile":"_framework/System.Windows.bw79ix589z.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bw79ix589z"},{"Name":"integrity","Value":"sha256-O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA="},{"Name":"label","Value":"_framework/System.Windows.wasm"}]},{"Route":"_framework/System.Windows.bw79ix589z.wasm","AssetFile":"_framework/System.Windows.bw79ix589z.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438212095"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bw79ix589z"},{"Name":"integrity","Value":"sha256-O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA="},{"Name":"label","Value":"_framework/System.Windows.wasm"},{"Name":"original-resource","Value":"\"O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA=\""}]},{"Route":"_framework/System.Windows.bw79ix589z.wasm.gz","AssetFile":"_framework/System.Windows.bw79ix589z.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bw79ix589z"},{"Name":"integrity","Value":"sha256-YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs="},{"Name":"label","Value":"_framework/System.Windows.wasm.gz"}]},{"Route":"_framework/System.Windows.wasm","AssetFile":"_framework/System.Windows.bw79ix589z.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA="}]},{"Route":"_framework/System.Windows.wasm","AssetFile":"_framework/System.Windows.bw79ix589z.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438212095"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA="},{"Name":"original-resource","Value":"\"O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA=\""}]},{"Route":"_framework/System.Windows.wasm.gz","AssetFile":"_framework/System.Windows.bw79ix589z.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs="}]},{"Route":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm","AssetFile":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvnhbwdsg6"},{"Name":"integrity","Value":"sha256-I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE="},{"Name":"label","Value":"_framework/System.Xml.Linq.wasm"}]},{"Route":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm","AssetFile":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000452488688"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2209"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvnhbwdsg6"},{"Name":"integrity","Value":"sha256-I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE="},{"Name":"label","Value":"_framework/System.Xml.Linq.wasm"},{"Name":"original-resource","Value":"\"I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE=\""}]},{"Route":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm.gz","AssetFile":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2209"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvnhbwdsg6"},{"Name":"integrity","Value":"sha256-NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog="},{"Name":"label","Value":"_framework/System.Xml.Linq.wasm.gz"}]},{"Route":"_framework/System.Xml.Linq.wasm","AssetFile":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE="}]},{"Route":"_framework/System.Xml.Linq.wasm","AssetFile":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000452488688"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2209"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE="},{"Name":"original-resource","Value":"\"I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE=\""}]},{"Route":"_framework/System.Xml.Linq.wasm.gz","AssetFile":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2209"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog="}]},{"Route":"_framework/System.Xml.ReaderWriter.szsdminork.wasm","AssetFile":"_framework/System.Xml.ReaderWriter.szsdminork.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"szsdminork"},{"Name":"integrity","Value":"sha256-+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho="},{"Name":"label","Value":"_framework/System.Xml.ReaderWriter.wasm"}]},{"Route":"_framework/System.Xml.ReaderWriter.szsdminork.wasm","AssetFile":"_framework/System.Xml.ReaderWriter.szsdminork.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000248632521"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"szsdminork"},{"Name":"integrity","Value":"sha256-+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho="},{"Name":"label","Value":"_framework/System.Xml.ReaderWriter.wasm"},{"Name":"original-resource","Value":"\"+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho=\""}]},{"Route":"_framework/System.Xml.ReaderWriter.szsdminork.wasm.gz","AssetFile":"_framework/System.Xml.ReaderWriter.szsdminork.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"szsdminork"},{"Name":"integrity","Value":"sha256-v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI="},{"Name":"label","Value":"_framework/System.Xml.ReaderWriter.wasm.gz"}]},{"Route":"_framework/System.Xml.ReaderWriter.wasm","AssetFile":"_framework/System.Xml.ReaderWriter.szsdminork.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho="}]},{"Route":"_framework/System.Xml.ReaderWriter.wasm","AssetFile":"_framework/System.Xml.ReaderWriter.szsdminork.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000248632521"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho="},{"Name":"original-resource","Value":"\"+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho=\""}]},{"Route":"_framework/System.Xml.ReaderWriter.wasm.gz","AssetFile":"_framework/System.Xml.ReaderWriter.szsdminork.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI="}]},{"Route":"_framework/System.Xml.Serialization.b9imguls9w.wasm","AssetFile":"_framework/System.Xml.Serialization.b9imguls9w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b9imguls9w"},{"Name":"integrity","Value":"sha256-EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8="},{"Name":"label","Value":"_framework/System.Xml.Serialization.wasm"}]},{"Route":"_framework/System.Xml.Serialization.b9imguls9w.wasm","AssetFile":"_framework/System.Xml.Serialization.b9imguls9w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000443852641"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2252"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b9imguls9w"},{"Name":"integrity","Value":"sha256-EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8="},{"Name":"label","Value":"_framework/System.Xml.Serialization.wasm"},{"Name":"original-resource","Value":"\"EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8=\""}]},{"Route":"_framework/System.Xml.Serialization.b9imguls9w.wasm.gz","AssetFile":"_framework/System.Xml.Serialization.b9imguls9w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2252"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b9imguls9w"},{"Name":"integrity","Value":"sha256-UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M="},{"Name":"label","Value":"_framework/System.Xml.Serialization.wasm.gz"}]},{"Route":"_framework/System.Xml.Serialization.wasm","AssetFile":"_framework/System.Xml.Serialization.b9imguls9w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8="}]},{"Route":"_framework/System.Xml.Serialization.wasm","AssetFile":"_framework/System.Xml.Serialization.b9imguls9w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000443852641"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2252"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8="},{"Name":"original-resource","Value":"\"EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8=\""}]},{"Route":"_framework/System.Xml.Serialization.wasm.gz","AssetFile":"_framework/System.Xml.Serialization.b9imguls9w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2252"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M="}]},{"Route":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm","AssetFile":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8hg6c0at0c"},{"Name":"integrity","Value":"sha256-7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk="},{"Name":"label","Value":"_framework/System.Xml.XDocument.wasm"}]},{"Route":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm","AssetFile":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000417362270"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2395"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8hg6c0at0c"},{"Name":"integrity","Value":"sha256-7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk="},{"Name":"label","Value":"_framework/System.Xml.XDocument.wasm"},{"Name":"original-resource","Value":"\"7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk=\""}]},{"Route":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm.gz","AssetFile":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2395"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8hg6c0at0c"},{"Name":"integrity","Value":"sha256-JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU="},{"Name":"label","Value":"_framework/System.Xml.XDocument.wasm.gz"}]},{"Route":"_framework/System.Xml.XDocument.wasm","AssetFile":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk="}]},{"Route":"_framework/System.Xml.XDocument.wasm","AssetFile":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000417362270"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2395"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk="},{"Name":"original-resource","Value":"\"7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk=\""}]},{"Route":"_framework/System.Xml.XDocument.wasm.gz","AssetFile":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2395"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU="}]},{"Route":"_framework/System.Xml.XPath.11wk1hhnfk.wasm","AssetFile":"_framework/System.Xml.XPath.11wk1hhnfk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"11wk1hhnfk"},{"Name":"integrity","Value":"sha256-28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM="},{"Name":"label","Value":"_framework/System.Xml.XPath.wasm"}]},{"Route":"_framework/System.Xml.XPath.11wk1hhnfk.wasm","AssetFile":"_framework/System.Xml.XPath.11wk1hhnfk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000430848772"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2320"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"11wk1hhnfk"},{"Name":"integrity","Value":"sha256-28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM="},{"Name":"label","Value":"_framework/System.Xml.XPath.wasm"},{"Name":"original-resource","Value":"\"28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM=\""}]},{"Route":"_framework/System.Xml.XPath.11wk1hhnfk.wasm.gz","AssetFile":"_framework/System.Xml.XPath.11wk1hhnfk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2320"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"11wk1hhnfk"},{"Name":"integrity","Value":"sha256-5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM="},{"Name":"label","Value":"_framework/System.Xml.XPath.wasm.gz"}]},{"Route":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm","AssetFile":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g7i5gd64yo"},{"Name":"integrity","Value":"sha256-bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg="},{"Name":"label","Value":"_framework/System.Xml.XPath.XDocument.wasm"}]},{"Route":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm","AssetFile":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000401284109"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2491"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g7i5gd64yo"},{"Name":"integrity","Value":"sha256-bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg="},{"Name":"label","Value":"_framework/System.Xml.XPath.XDocument.wasm"},{"Name":"original-resource","Value":"\"bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg=\""}]},{"Route":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm.gz","AssetFile":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2491"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g7i5gd64yo"},{"Name":"integrity","Value":"sha256-6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918="},{"Name":"label","Value":"_framework/System.Xml.XPath.XDocument.wasm.gz"}]},{"Route":"_framework/System.Xml.XPath.XDocument.wasm","AssetFile":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg="}]},{"Route":"_framework/System.Xml.XPath.XDocument.wasm","AssetFile":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000401284109"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2491"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg="},{"Name":"original-resource","Value":"\"bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg=\""}]},{"Route":"_framework/System.Xml.XPath.XDocument.wasm.gz","AssetFile":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2491"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918="}]},{"Route":"_framework/System.Xml.XPath.wasm","AssetFile":"_framework/System.Xml.XPath.11wk1hhnfk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM="}]},{"Route":"_framework/System.Xml.XPath.wasm","AssetFile":"_framework/System.Xml.XPath.11wk1hhnfk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000430848772"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2320"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM="},{"Name":"original-resource","Value":"\"28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM=\""}]},{"Route":"_framework/System.Xml.XPath.wasm.gz","AssetFile":"_framework/System.Xml.XPath.11wk1hhnfk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2320"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM="}]},{"Route":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm","AssetFile":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"isetn6xlxa"},{"Name":"integrity","Value":"sha256-Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw="},{"Name":"label","Value":"_framework/System.Xml.XmlDocument.wasm"}]},{"Route":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm","AssetFile":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000423190859"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"isetn6xlxa"},{"Name":"integrity","Value":"sha256-Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw="},{"Name":"label","Value":"_framework/System.Xml.XmlDocument.wasm"},{"Name":"original-resource","Value":"\"Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw=\""}]},{"Route":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm.gz","AssetFile":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"isetn6xlxa"},{"Name":"integrity","Value":"sha256-520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs="},{"Name":"label","Value":"_framework/System.Xml.XmlDocument.wasm.gz"}]},{"Route":"_framework/System.Xml.XmlDocument.wasm","AssetFile":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw="}]},{"Route":"_framework/System.Xml.XmlDocument.wasm","AssetFile":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000423190859"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw="},{"Name":"original-resource","Value":"\"Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw=\""}]},{"Route":"_framework/System.Xml.XmlDocument.wasm.gz","AssetFile":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs="}]},{"Route":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm","AssetFile":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"7445"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"okgnp5v9bw"},{"Name":"integrity","Value":"sha256-WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U="},{"Name":"label","Value":"_framework/System.Xml.XmlSerializer.wasm"}]},{"Route":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm","AssetFile":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000349406010"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"okgnp5v9bw"},{"Name":"integrity","Value":"sha256-WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U="},{"Name":"label","Value":"_framework/System.Xml.XmlSerializer.wasm"},{"Name":"original-resource","Value":"\"WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U=\""}]},{"Route":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm.gz","AssetFile":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"okgnp5v9bw"},{"Name":"integrity","Value":"sha256-WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA="},{"Name":"label","Value":"_framework/System.Xml.XmlSerializer.wasm.gz"}]},{"Route":"_framework/System.Xml.XmlSerializer.wasm","AssetFile":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"7445"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U="}]},{"Route":"_framework/System.Xml.XmlSerializer.wasm","AssetFile":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000349406010"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U="},{"Name":"original-resource","Value":"\"WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U=\""}]},{"Route":"_framework/System.Xml.XmlSerializer.wasm.gz","AssetFile":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA="}]},{"Route":"_framework/System.Xml.wasm","AssetFile":"_framework/System.Xml.zjgi7nrlno.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas="}]},{"Route":"_framework/System.Xml.wasm","AssetFile":"_framework/System.Xml.zjgi7nrlno.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000237079184"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4217"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas="},{"Name":"original-resource","Value":"\"scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas=\""}]},{"Route":"_framework/System.Xml.wasm.gz","AssetFile":"_framework/System.Xml.zjgi7nrlno.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4217"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY="}]},{"Route":"_framework/System.Xml.zjgi7nrlno.wasm","AssetFile":"_framework/System.Xml.zjgi7nrlno.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zjgi7nrlno"},{"Name":"integrity","Value":"sha256-scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas="},{"Name":"label","Value":"_framework/System.Xml.wasm"}]},{"Route":"_framework/System.Xml.zjgi7nrlno.wasm","AssetFile":"_framework/System.Xml.zjgi7nrlno.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000237079184"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4217"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zjgi7nrlno"},{"Name":"integrity","Value":"sha256-scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas="},{"Name":"label","Value":"_framework/System.Xml.wasm"},{"Name":"original-resource","Value":"\"scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas=\""}]},{"Route":"_framework/System.Xml.zjgi7nrlno.wasm.gz","AssetFile":"_framework/System.Xml.zjgi7nrlno.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4217"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zjgi7nrlno"},{"Name":"integrity","Value":"sha256-Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY="},{"Name":"label","Value":"_framework/System.Xml.wasm.gz"}]},{"Route":"_framework/System.wasm","AssetFile":"_framework/System.7rk3uansaa.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"39701"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q="}]},{"Route":"_framework/System.wasm","AssetFile":"_framework/System.7rk3uansaa.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000084875233"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q="},{"Name":"original-resource","Value":"\"00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q=\""}]},{"Route":"_framework/System.wasm.gz","AssetFile":"_framework/System.7rk3uansaa.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI="}]},{"Route":"_framework/WindowsBase.wasm","AssetFile":"_framework/WindowsBase.wz82kkc1p3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ="}]},{"Route":"_framework/WindowsBase.wasm","AssetFile":"_framework/WindowsBase.wz82kkc1p3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000395726157"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2526"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ="},{"Name":"original-resource","Value":"\"DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ=\""}]},{"Route":"_framework/WindowsBase.wasm.gz","AssetFile":"_framework/WindowsBase.wz82kkc1p3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2526"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc="}]},{"Route":"_framework/WindowsBase.wz82kkc1p3.wasm","AssetFile":"_framework/WindowsBase.wz82kkc1p3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wz82kkc1p3"},{"Name":"integrity","Value":"sha256-DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ="},{"Name":"label","Value":"_framework/WindowsBase.wasm"}]},{"Route":"_framework/WindowsBase.wz82kkc1p3.wasm","AssetFile":"_framework/WindowsBase.wz82kkc1p3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000395726157"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2526"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wz82kkc1p3"},{"Name":"integrity","Value":"sha256-DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ="},{"Name":"label","Value":"_framework/WindowsBase.wasm"},{"Name":"original-resource","Value":"\"DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ=\""}]},{"Route":"_framework/WindowsBase.wz82kkc1p3.wasm.gz","AssetFile":"_framework/WindowsBase.wz82kkc1p3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2526"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wz82kkc1p3"},{"Name":"integrity","Value":"sha256-b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc="},{"Name":"label","Value":"_framework/WindowsBase.wasm.gz"}]},{"Route":"_framework/blazor.webassembly.js","AssetFile":"_framework/blazor.webassembly.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"60278"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3lCWrko3zwspV40aQhs2S/IMkRSarnHRKIdkHhuXIBA=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 20:10:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3lCWrko3zwspV40aQhs2S/IMkRSarnHRKIdkHhuXIBA="}]},{"Route":"_framework/blazor.webassembly.js","AssetFile":"_framework/blazor.webassembly.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053404539"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18724"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"5Igt0nmzlphL04ESrb7MBY9ts2dhz5i3UJ+aCoJbK0Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3lCWrko3zwspV40aQhs2S/IMkRSarnHRKIdkHhuXIBA="},{"Name":"original-resource","Value":"\"3lCWrko3zwspV40aQhs2S/IMkRSarnHRKIdkHhuXIBA=\""}]},{"Route":"_framework/blazor.webassembly.js.gz","AssetFile":"_framework/blazor.webassembly.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18724"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"5Igt0nmzlphL04ESrb7MBY9ts2dhz5i3UJ+aCoJbK0Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5Igt0nmzlphL04ESrb7MBY9ts2dhz5i3UJ+aCoJbK0Y="}]},{"Route":"_framework/dotnet.js","AssetFile":"_framework/dotnet.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"93305"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk="}]},{"Route":"_framework/dotnet.js","AssetFile":"_framework/dotnet.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000039508514"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25310"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk="},{"Name":"original-resource","Value":"\"WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk=\""}]},{"Route":"_framework/dotnet.js.clndu25lif.map","AssetFile":"_framework/dotnet.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"51818"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:10 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clndu25lif"},{"Name":"integrity","Value":"sha256-sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU="},{"Name":"label","Value":"_framework/dotnet.js.map"}]},{"Route":"_framework/dotnet.js.clndu25lif.map","AssetFile":"_framework/dotnet.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051805419"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19302"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clndu25lif"},{"Name":"integrity","Value":"sha256-sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU="},{"Name":"label","Value":"_framework/dotnet.js.map"},{"Name":"original-resource","Value":"\"sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU=\""}]},{"Route":"_framework/dotnet.js.clndu25lif.map.gz","AssetFile":"_framework/dotnet.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19302"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clndu25lif"},{"Name":"integrity","Value":"sha256-viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs="},{"Name":"label","Value":"_framework/dotnet.js.map.gz"}]},{"Route":"_framework/dotnet.js.gz","AssetFile":"_framework/dotnet.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25310"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I="}]},{"Route":"_framework/dotnet.js.map","AssetFile":"_framework/dotnet.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"51818"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:10 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU="}]},{"Route":"_framework/dotnet.js.map","AssetFile":"_framework/dotnet.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051805419"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19302"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU="},{"Name":"original-resource","Value":"\"sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU=\""}]},{"Route":"_framework/dotnet.js.map.gz","AssetFile":"_framework/dotnet.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19302"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs="}]},{"Route":"_framework/dotnet.kx7meqmil2.js","AssetFile":"_framework/dotnet.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"93305"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"PreloadAs","Value":"script"},{"Name":"PreloadCrossorigin","Value":"anonymous"},{"Name":"PreloadGroup","Value":"webassembly"},{"Name":"PreloadOrder","Value":"1"},{"Name":"PreloadPriority","Value":"high"},{"Name":"PreloadRel","Value":"preload"},{"Name":"fingerprint","Value":"kx7meqmil2"},{"Name":"integrity","Value":"sha256-WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk="},{"Name":"label","Value":"_framework/dotnet.js"}]},{"Route":"_framework/dotnet.kx7meqmil2.js","AssetFile":"_framework/dotnet.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000039508514"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25310"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"PreloadAs","Value":"script"},{"Name":"PreloadCrossorigin","Value":"anonymous"},{"Name":"PreloadGroup","Value":"webassembly"},{"Name":"PreloadOrder","Value":"1"},{"Name":"PreloadPriority","Value":"high"},{"Name":"PreloadRel","Value":"preload"},{"Name":"fingerprint","Value":"kx7meqmil2"},{"Name":"integrity","Value":"sha256-WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk="},{"Name":"label","Value":"_framework/dotnet.js"},{"Name":"original-resource","Value":"\"WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk=\""}]},{"Route":"_framework/dotnet.kx7meqmil2.js.gz","AssetFile":"_framework/dotnet.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25310"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kx7meqmil2"},{"Name":"integrity","Value":"sha256-Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I="},{"Name":"label","Value":"_framework/dotnet.js.gz"}]},{"Route":"_framework/dotnet.native.53ez3dx5uy.wasm","AssetFile":"_framework/dotnet.native.53ez3dx5uy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3002101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:42 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"53ez3dx5uy"},{"Name":"integrity","Value":"sha256-Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU="},{"Name":"label","Value":"_framework/dotnet.native.wasm"}]},{"Route":"_framework/dotnet.native.53ez3dx5uy.wasm","AssetFile":"_framework/dotnet.native.53ez3dx5uy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000842441"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1187026"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"53ez3dx5uy"},{"Name":"integrity","Value":"sha256-Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU="},{"Name":"label","Value":"_framework/dotnet.native.wasm"},{"Name":"original-resource","Value":"\"Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU=\""}]},{"Route":"_framework/dotnet.native.53ez3dx5uy.wasm.gz","AssetFile":"_framework/dotnet.native.53ez3dx5uy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1187026"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"53ez3dx5uy"},{"Name":"integrity","Value":"sha256-SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw="},{"Name":"label","Value":"_framework/dotnet.native.wasm.gz"}]},{"Route":"_framework/dotnet.native.js","AssetFile":"_framework/dotnet.native.ykrnppwhq2.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"145050"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:42 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U="}]},{"Route":"_framework/dotnet.native.js","AssetFile":"_framework/dotnet.native.ykrnppwhq2.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000028845876"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"34666"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U="},{"Name":"original-resource","Value":"\"nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U=\""}]},{"Route":"_framework/dotnet.native.js.gz","AssetFile":"_framework/dotnet.native.ykrnppwhq2.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"34666"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0="}]},{"Route":"_framework/dotnet.native.wasm","AssetFile":"_framework/dotnet.native.53ez3dx5uy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3002101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:42 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU="}]},{"Route":"_framework/dotnet.native.wasm","AssetFile":"_framework/dotnet.native.53ez3dx5uy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000842441"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1187026"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU="},{"Name":"original-resource","Value":"\"Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU=\""}]},{"Route":"_framework/dotnet.native.wasm.gz","AssetFile":"_framework/dotnet.native.53ez3dx5uy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1187026"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw="}]},{"Route":"_framework/dotnet.native.ykrnppwhq2.js","AssetFile":"_framework/dotnet.native.ykrnppwhq2.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"145050"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:42 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ykrnppwhq2"},{"Name":"integrity","Value":"sha256-nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U="},{"Name":"label","Value":"_framework/dotnet.native.js"}]},{"Route":"_framework/dotnet.native.ykrnppwhq2.js","AssetFile":"_framework/dotnet.native.ykrnppwhq2.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000028845876"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"34666"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ykrnppwhq2"},{"Name":"integrity","Value":"sha256-nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U="},{"Name":"label","Value":"_framework/dotnet.native.js"},{"Name":"original-resource","Value":"\"nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U=\""}]},{"Route":"_framework/dotnet.native.ykrnppwhq2.js.gz","AssetFile":"_framework/dotnet.native.ykrnppwhq2.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"34666"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ykrnppwhq2"},{"Name":"integrity","Value":"sha256-iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0="},{"Name":"label","Value":"_framework/dotnet.native.js.gz"}]},{"Route":"_framework/dotnet.runtime.js","AssetFile":"_framework/dotnet.runtime.peu2mfb29t.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"198479"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:16 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM="}]},{"Route":"_framework/dotnet.runtime.js","AssetFile":"_framework/dotnet.runtime.peu2mfb29t.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017664099"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56611"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM="},{"Name":"original-resource","Value":"\"cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM=\""}]},{"Route":"_framework/dotnet.runtime.js.gz","AssetFile":"_framework/dotnet.runtime.peu2mfb29t.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56611"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak="}]},{"Route":"_framework/dotnet.runtime.js.map","AssetFile":"_framework/dotnet.runtime.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"276757"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:16 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE="}]},{"Route":"_framework/dotnet.runtime.js.map","AssetFile":"_framework/dotnet.runtime.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011299052"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"88502"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE="},{"Name":"original-resource","Value":"\"+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE=\""}]},{"Route":"_framework/dotnet.runtime.js.map.gz","AssetFile":"_framework/dotnet.runtime.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"88502"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4="}]},{"Route":"_framework/dotnet.runtime.js.y1cse46x0j.map","AssetFile":"_framework/dotnet.runtime.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"276757"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:16 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y1cse46x0j"},{"Name":"integrity","Value":"sha256-+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE="},{"Name":"label","Value":"_framework/dotnet.runtime.js.map"}]},{"Route":"_framework/dotnet.runtime.js.y1cse46x0j.map","AssetFile":"_framework/dotnet.runtime.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011299052"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"88502"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y1cse46x0j"},{"Name":"integrity","Value":"sha256-+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE="},{"Name":"label","Value":"_framework/dotnet.runtime.js.map"},{"Name":"original-resource","Value":"\"+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE=\""}]},{"Route":"_framework/dotnet.runtime.js.y1cse46x0j.map.gz","AssetFile":"_framework/dotnet.runtime.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"88502"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y1cse46x0j"},{"Name":"integrity","Value":"sha256-8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4="},{"Name":"label","Value":"_framework/dotnet.runtime.js.map.gz"}]},{"Route":"_framework/dotnet.runtime.peu2mfb29t.js","AssetFile":"_framework/dotnet.runtime.peu2mfb29t.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"198479"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:16 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"peu2mfb29t"},{"Name":"integrity","Value":"sha256-cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM="},{"Name":"label","Value":"_framework/dotnet.runtime.js"}]},{"Route":"_framework/dotnet.runtime.peu2mfb29t.js","AssetFile":"_framework/dotnet.runtime.peu2mfb29t.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017664099"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56611"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"peu2mfb29t"},{"Name":"integrity","Value":"sha256-cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM="},{"Name":"label","Value":"_framework/dotnet.runtime.js"},{"Name":"original-resource","Value":"\"cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM=\""}]},{"Route":"_framework/dotnet.runtime.peu2mfb29t.js.gz","AssetFile":"_framework/dotnet.runtime.peu2mfb29t.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56611"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"peu2mfb29t"},{"Name":"integrity","Value":"sha256-1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak="},{"Name":"label","Value":"_framework/dotnet.runtime.js.gz"}]},{"Route":"_framework/icudt_CJK.dat","AssetFile":"_framework/icudt_CJK.tjcz0u77k5.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"956416"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk="}]},{"Route":"_framework/icudt_CJK.dat","AssetFile":"_framework/icudt_CJK.tjcz0u77k5.dat.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003002002"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"333110"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk="},{"Name":"original-resource","Value":"\"SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=\""}]},{"Route":"_framework/icudt_CJK.dat.gz","AssetFile":"_framework/icudt_CJK.tjcz0u77k5.dat.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"333110"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g="}]},{"Route":"_framework/icudt_CJK.tjcz0u77k5.dat","AssetFile":"_framework/icudt_CJK.tjcz0u77k5.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"956416"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tjcz0u77k5"},{"Name":"integrity","Value":"sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk="},{"Name":"label","Value":"_framework/icudt_CJK.dat"}]},{"Route":"_framework/icudt_CJK.tjcz0u77k5.dat","AssetFile":"_framework/icudt_CJK.tjcz0u77k5.dat.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003002002"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"333110"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tjcz0u77k5"},{"Name":"integrity","Value":"sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk="},{"Name":"label","Value":"_framework/icudt_CJK.dat"},{"Name":"original-resource","Value":"\"SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=\""}]},{"Route":"_framework/icudt_CJK.tjcz0u77k5.dat.gz","AssetFile":"_framework/icudt_CJK.tjcz0u77k5.dat.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"333110"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tjcz0u77k5"},{"Name":"integrity","Value":"sha256-JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g="},{"Name":"label","Value":"_framework/icudt_CJK.dat.gz"}]},{"Route":"_framework/icudt_EFIGS.dat","AssetFile":"_framework/icudt_EFIGS.tptq2av103.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"550832"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc="}]},{"Route":"_framework/icudt_EFIGS.dat","AssetFile":"_framework/icudt_EFIGS.tptq2av103.dat.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005101052"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196037"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc="},{"Name":"original-resource","Value":"\"8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=\""}]},{"Route":"_framework/icudt_EFIGS.dat.gz","AssetFile":"_framework/icudt_EFIGS.tptq2av103.dat.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196037"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE="}]},{"Route":"_framework/icudt_EFIGS.tptq2av103.dat","AssetFile":"_framework/icudt_EFIGS.tptq2av103.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"550832"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tptq2av103"},{"Name":"integrity","Value":"sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc="},{"Name":"label","Value":"_framework/icudt_EFIGS.dat"}]},{"Route":"_framework/icudt_EFIGS.tptq2av103.dat","AssetFile":"_framework/icudt_EFIGS.tptq2av103.dat.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005101052"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196037"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tptq2av103"},{"Name":"integrity","Value":"sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc="},{"Name":"label","Value":"_framework/icudt_EFIGS.dat"},{"Name":"original-resource","Value":"\"8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=\""}]},{"Route":"_framework/icudt_EFIGS.tptq2av103.dat.gz","AssetFile":"_framework/icudt_EFIGS.tptq2av103.dat.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196037"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tptq2av103"},{"Name":"integrity","Value":"sha256-G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE="},{"Name":"label","Value":"_framework/icudt_EFIGS.dat.gz"}]},{"Route":"_framework/icudt_no_CJK.dat","AssetFile":"_framework/icudt_no_CJK.lfu7j35m59.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1107168"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs="}]},{"Route":"_framework/icudt_no_CJK.dat","AssetFile":"_framework/icudt_no_CJK.lfu7j35m59.dat.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003148426"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"317618"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs="},{"Name":"original-resource","Value":"\"L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs=\""}]},{"Route":"_framework/icudt_no_CJK.dat.gz","AssetFile":"_framework/icudt_no_CJK.lfu7j35m59.dat.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"317618"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk="}]},{"Route":"_framework/icudt_no_CJK.lfu7j35m59.dat","AssetFile":"_framework/icudt_no_CJK.lfu7j35m59.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1107168"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lfu7j35m59"},{"Name":"integrity","Value":"sha256-L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs="},{"Name":"label","Value":"_framework/icudt_no_CJK.dat"}]},{"Route":"_framework/icudt_no_CJK.lfu7j35m59.dat","AssetFile":"_framework/icudt_no_CJK.lfu7j35m59.dat.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003148426"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"317618"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lfu7j35m59"},{"Name":"integrity","Value":"sha256-L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs="},{"Name":"label","Value":"_framework/icudt_no_CJK.dat"},{"Name":"original-resource","Value":"\"L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs=\""}]},{"Route":"_framework/icudt_no_CJK.lfu7j35m59.dat.gz","AssetFile":"_framework/icudt_no_CJK.lfu7j35m59.dat.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"317618"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lfu7j35m59"},{"Name":"integrity","Value":"sha256-S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk="},{"Name":"label","Value":"_framework/icudt_no_CJK.dat.gz"}]},{"Route":"_framework/mscorlib.555t1ekkz8.wasm","AssetFile":"_framework/mscorlib.555t1ekkz8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"49429"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"555t1ekkz8"},{"Name":"integrity","Value":"sha256-SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M="},{"Name":"label","Value":"_framework/mscorlib.wasm"}]},{"Route":"_framework/mscorlib.555t1ekkz8.wasm","AssetFile":"_framework/mscorlib.555t1ekkz8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067417245"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"555t1ekkz8"},{"Name":"integrity","Value":"sha256-SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M="},{"Name":"label","Value":"_framework/mscorlib.wasm"},{"Name":"original-resource","Value":"\"SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M=\""}]},{"Route":"_framework/mscorlib.555t1ekkz8.wasm.gz","AssetFile":"_framework/mscorlib.555t1ekkz8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"555t1ekkz8"},{"Name":"integrity","Value":"sha256-qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4="},{"Name":"label","Value":"_framework/mscorlib.wasm.gz"}]},{"Route":"_framework/mscorlib.wasm","AssetFile":"_framework/mscorlib.555t1ekkz8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"49429"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M="}]},{"Route":"_framework/mscorlib.wasm","AssetFile":"_framework/mscorlib.555t1ekkz8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067417245"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M="},{"Name":"original-resource","Value":"\"SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M=\""}]},{"Route":"_framework/mscorlib.wasm.gz","AssetFile":"_framework/mscorlib.555t1ekkz8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4="}]},{"Route":"_framework/netstandard.0e3bjkca9m.wasm","AssetFile":"_framework/netstandard.0e3bjkca9m.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"90389"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0e3bjkca9m"},{"Name":"integrity","Value":"sha256-6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs="},{"Name":"label","Value":"_framework/netstandard.wasm"}]},{"Route":"_framework/netstandard.0e3bjkca9m.wasm","AssetFile":"_framework/netstandard.0e3bjkca9m.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038333269"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26086"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0e3bjkca9m"},{"Name":"integrity","Value":"sha256-6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs="},{"Name":"label","Value":"_framework/netstandard.wasm"},{"Name":"original-resource","Value":"\"6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs=\""}]},{"Route":"_framework/netstandard.0e3bjkca9m.wasm.gz","AssetFile":"_framework/netstandard.0e3bjkca9m.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26086"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0e3bjkca9m"},{"Name":"integrity","Value":"sha256-GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE="},{"Name":"label","Value":"_framework/netstandard.wasm.gz"}]},{"Route":"_framework/netstandard.wasm","AssetFile":"_framework/netstandard.0e3bjkca9m.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"90389"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs="}]},{"Route":"_framework/netstandard.wasm","AssetFile":"_framework/netstandard.0e3bjkca9m.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038333269"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26086"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs="},{"Name":"original-resource","Value":"\"6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs=\""}]},{"Route":"_framework/netstandard.wasm.gz","AssetFile":"_framework/netstandard.0e3bjkca9m.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26086"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE="}]},{"Route":"appsettings.Development.json","AssetFile":"appsettings.Development.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009174311927"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"original-resource","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""}]},{"Route":"appsettings.Development.json","AssetFile":"appsettings.Development.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="}]},{"Route":"appsettings.Development.json.gz","AssetFile":"appsettings.Development.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4="}]},{"Route":"appsettings.Development.x0ueugt8gp.json","AssetFile":"appsettings.Development.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009174311927"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"label","Value":"appsettings.Development.json"},{"Name":"original-resource","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""}]},{"Route":"appsettings.Development.x0ueugt8gp.json","AssetFile":"appsettings.Development.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"label","Value":"appsettings.Development.json"}]},{"Route":"appsettings.Development.x0ueugt8gp.json.gz","AssetFile":"appsettings.Development.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4="},{"Name":"label","Value":"appsettings.Development.json.gz"}]},{"Route":"appsettings.json","AssetFile":"appsettings.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009174311927"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"original-resource","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""}]},{"Route":"appsettings.json","AssetFile":"appsettings.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="}]},{"Route":"appsettings.json.gz","AssetFile":"appsettings.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4="}]},{"Route":"appsettings.x0ueugt8gp.json","AssetFile":"appsettings.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009174311927"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"label","Value":"appsettings.json"},{"Name":"original-resource","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""}]},{"Route":"appsettings.x0ueugt8gp.json","AssetFile":"appsettings.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"label","Value":"appsettings.json"}]},{"Route":"appsettings.x0ueugt8gp.json.gz","AssetFile":"appsettings.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4="},{"Name":"label","Value":"appsettings.json.gz"}]}]} \ No newline at end of file diff --git a/OnProfNext.Client/obj/Debug/net10.0/staticwebassets.build.json b/OnProfNext.Client/obj/Debug/net10.0/staticwebassets.build.json new file mode 100644 index 0000000..d52fd4f --- /dev/null +++ b/OnProfNext.Client/obj/Debug/net10.0/staticwebassets.build.json @@ -0,0 +1 @@ +{"Version":1,"Hash":"jnQ5nBcjiM0WdZUX5i6J8hoA0opFfV4/h+zPae7jdyM=","Source":"OnProfNext.Client","BasePath":"/","Mode":"Default","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[{"Name":"OnProfNext.Client\\wwwroot","Source":"OnProfNext.Client","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\","BasePath":"/","Pattern":"**"}],"Assets":[{"Identity":"C:\\Users\\wiela\\.nuget\\packages\\microsoft.dotnet.hotreload.webassembly.browser\\10.0.201\\staticwebassets\\Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js","SourceId":"Microsoft.DotNet.HotReload.WebAssembly.Browser","SourceType":"Package","ContentRoot":"C:\\Users\\wiela\\.nuget\\packages\\microsoft.dotnet.hotreload.webassembly.browser\\10.0.201\\staticwebassets\\","BasePath":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser","RelativePath":"Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"JSModule","AssetTraitValue":"JSLibraryModule","Fingerprint":"99zm1jdh75","Integrity":"A8e6zZwhOqf7lDQqbbCYcAUv4wGE9aQxOo4WyYxR//0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\wiela\\.nuget\\packages\\microsoft.dotnet.hotreload.webassembly.browser\\10.0.201\\staticwebassets\\Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js","FileLength":1862,"LastWriteTime":"2026-03-04T01:26:18+00:00"},{"Identity":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\MudBlazor.min.css","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"o2b68hjqqd","Integrity":"kBmVfU2BqUZUT8HPz7NUnkObDjxYKbSWXF5q33paHM0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\MudBlazor.min.css","FileLength":607258,"LastWriteTime":"2026-03-18T01:03:28+00:00"},{"Identity":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\MudBlazor.min.js","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"8dleymzaev","Integrity":"VHJcGholtUHNobadpTrhyE/VCi90X4p12vYD83bzI04=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\MudBlazor.min.js","FileLength":64944,"LastWriteTime":"2026-03-18T01:03:27+00:00"},{"Identity":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\MudBlazor.min.js.map","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.js.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"0ykner63ol","Integrity":"yAPYxO0UcV5YvjmoVWBh8O+tMbwO9AMZv1RMPdpxE0Q=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\MudBlazor.min.js.map","FileLength":236222,"LastWriteTime":"2026-03-18T01:03:27+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\Layout\\ReconnectModal.razor.js","SourceId":"OnProfNext.Client","SourceType":"Discovered","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\","BasePath":"/","RelativePath":"Layout/ReconnectModal#[.{fingerprint}]?.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ycbzh0sbjd","Integrity":"QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"Layout\\ReconnectModal.razor.js","FileLength":2746,"LastWriteTime":"2026-03-18T16:33:32+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.AspNetCore.Authorization#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"roqc1km2rj","Integrity":"G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.AspNetCore.Authorization.wasm","FileLength":45333,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.AspNetCore.Components.Forms#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"zrueb40r85","Integrity":"sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.AspNetCore.Components.Forms.wasm","FileLength":37653,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.AspNetCore.Components.Web#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"g5qdp1mxha","Integrity":"XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.AspNetCore.Components.Web.wasm","FileLength":178965,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.AspNetCore.Components.WebAssembly#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"9mjwvs1qyp","Integrity":"r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.AspNetCore.Components.WebAssembly.wasm","FileLength":155925,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.uddsvpv1sv.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.AspNetCore.Components#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"uddsvpv1sv","Integrity":"wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.AspNetCore.Components.wasm","FileLength":388885,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.AspNetCore.Metadata#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"m3mxap0jif","Integrity":"3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.AspNetCore.Metadata.wasm","FileLength":5909,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.CSharp.452y5fjxmv.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.CSharp#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"452y5fjxmv","Integrity":"qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.CSharp.wasm","FileLength":301333,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"hrhwg3a64c","Integrity":"7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm","FileLength":56085,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Configuration.Abstractions#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"thew1o6jcx","Integrity":"YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.Configuration.Abstractions.wasm","FileLength":18197,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Configuration.Binder#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"7o70008j8o","Integrity":"KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.Configuration.Binder.wasm","FileLength":33045,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Configuration.FileExtensions#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"ouivavlhyy","Integrity":"MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.Configuration.FileExtensions.wasm","FileLength":18197,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Configuration.Json#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"giv4t23za9","Integrity":"iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.Configuration.Json.wasm","FileLength":17685,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Configuration#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"fgwnqtu7qk","Integrity":"D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.Configuration.wasm","FileLength":34581,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"ud13mwbta3","Integrity":"PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm","FileLength":55573,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.DependencyInjection#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"vs620n44bv","Integrity":"EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.DependencyInjection.wasm","FileLength":85269,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Diagnostics.Abstractions#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"v59ymogeuz","Integrity":"4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.Diagnostics.Abstractions.wasm","FileLength":20757,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Diagnostics#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"jnogfbng3i","Integrity":"MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.Diagnostics.wasm","FileLength":25877,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.FileProviders.Abstractions#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"ssv83rveyv","Integrity":"/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.FileProviders.Abstractions.wasm","FileLength":13077,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.FileProviders.Physical#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"8gz29xpyh3","Integrity":"CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.FileProviders.Physical.wasm","FileLength":35093,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.FileSystemGlobbing#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"ozuva4e3vv","Integrity":"pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.FileSystemGlobbing.wasm","FileLength":37653,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Localization.Abstractions#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"6jkolue1ka","Integrity":"8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.Localization.Abstractions.wasm","FileLength":8981,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Localization.xcslyy3nju.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Localization#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"xcslyy3nju","Integrity":"L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.Localization.wasm","FileLength":21269,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Logging.Abstractions#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"1q3x7vre4l","Integrity":"5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.Logging.Abstractions.wasm","FileLength":56597,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Logging.y4ydx3rk2c.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Logging#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"y4ydx3rk2c","Integrity":"7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.Logging.wasm","FileLength":41237,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Options.2rz5zbidnd.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Options#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"2rz5zbidnd","Integrity":"PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.Options.wasm","FileLength":55061,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"zmb03w0weu","Integrity":"652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.Options.ConfigurationExtensions.wasm","FileLength":11541,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.bd164v6l3f.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Primitives#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"bd164v6l3f","Integrity":"b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.Primitives.wasm","FileLength":34581,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Validation.r1sv3m5lsf.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Validation#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"r1sv3m5lsf","Integrity":"QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.Validation.wasm","FileLength":33045,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.JSInterop.1r0ampr2q1.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.JSInterop#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"1r0ampr2q1","Integrity":"TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.JSInterop.wasm","FileLength":64789,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.JSInterop.WebAssembly#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"oz8fkrrrd6","Integrity":"vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.JSInterop.WebAssembly.wasm","FileLength":14613,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.VisualBasic.91iw3j3d9p.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.VisualBasic#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"91iw3j3d9p","Integrity":"TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.VisualBasic.wasm","FileLength":6933,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.re3geseai5.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.VisualBasic.Core#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"re3geseai5","Integrity":"vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.VisualBasic.Core.wasm","FileLength":418581,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Win32.Primitives.2mjytoh92q.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Win32.Primitives#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"2mjytoh92q","Integrity":"NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Win32.Primitives.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Win32.Registry.yz8nt3ycsq.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Win32.Registry#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"yz8nt3ycsq","Integrity":"sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Win32.Registry.wasm","FileLength":22805,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\MudBlazor.k6079czmkm.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/MudBlazor#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"k6079czmkm","Integrity":"rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\MudBlazor.wasm","FileLength":10119449,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\OnProfNext.Client.lplk7v275j.pdb","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/OnProfNext.Client#[.{fingerprint}]!.pdb","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"symbol","Fingerprint":"lplk7v275j","Integrity":"FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"obj\\Debug\\net10.0\\OnProfNext.Client.pdb","FileLength":33624,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\OnProfNext.Client.xhq6acanj0.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/OnProfNext.Client#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"xhq6acanj0","Integrity":"pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\OnProfNext.Client.wasm","FileLength":42261,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.7rk3uansaa.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"7rk3uansaa","Integrity":"00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.wasm","FileLength":39701,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.AppContext.uwq3fpef1w.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.AppContext#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"uwq3fpef1w","Integrity":"/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.AppContext.wasm","FileLength":4885,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Buffers.m4yhcvz2y2.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Buffers#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"m4yhcvz2y2","Integrity":"+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Buffers.wasm","FileLength":4885,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.63jrcion39.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Collections#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"63jrcion39","Integrity":"Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Collections.wasm","FileLength":102677,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.Concurrent.1zv6wuzklu.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Collections.Concurrent#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"1zv6wuzklu","Integrity":"XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Collections.Concurrent.wasm","FileLength":78613,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.Immutable.6uzpuv4o5d.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Collections.Immutable#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"6uzpuv4o5d","Integrity":"UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Collections.Immutable.wasm","FileLength":240917,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.NonGeneric.k5rgagff9o.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Collections.NonGeneric#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"k5rgagff9o","Integrity":"eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Collections.NonGeneric.wasm","FileLength":37653,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.Specialized.84wojkejb4.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Collections.Specialized#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"84wojkejb4","Integrity":"mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Collections.Specialized.wasm","FileLength":37653,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.Annotations.cjsvkufomv.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.ComponentModel.Annotations#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"cjsvkufomv","Integrity":"yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.ComponentModel.Annotations.wasm","FileLength":92437,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.ComponentModel.DataAnnotations#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"vpng0qt4u6","Integrity":"7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.ComponentModel.DataAnnotations.wasm","FileLength":6421,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.ComponentModel.EventBasedAsync#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"en4q13ibd5","Integrity":"9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.ComponentModel.EventBasedAsync.wasm","FileLength":16149,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.Primitives.u0y5oi3qdg.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.ComponentModel.Primitives#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"u0y5oi3qdg","Integrity":"fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.ComponentModel.Primitives.wasm","FileLength":32021,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.e2hbv9lola.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.ComponentModel.TypeConverter#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"e2hbv9lola","Integrity":"Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.ComponentModel.TypeConverter.wasm","FileLength":306453,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.m11rh1qn2x.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.ComponentModel#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"m11rh1qn2x","Integrity":"9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.ComponentModel.wasm","FileLength":5909,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Configuration.j8qjkqg593.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Configuration#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"j8qjkqg593","Integrity":"bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Configuration.wasm","FileLength":8981,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Console.x9at0eh4vs.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Console#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"x9at0eh4vs","Integrity":"ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Console.wasm","FileLength":43797,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Core.ickp29885z.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Core#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"ickp29885z","Integrity":"vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Core.wasm","FileLength":13077,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Data.0h75nr7qqd.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Data#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"0h75nr7qqd","Integrity":"7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Data.wasm","FileLength":15125,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Data.Common.4wisaz8pj4.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Data.Common#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"4wisaz8pj4","Integrity":"pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Data.Common.wasm","FileLength":1007893,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Data.DataSetExtensions.904tnen1ot.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Data.DataSetExtensions#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"904tnen1ot","Integrity":"dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Data.DataSetExtensions.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Contracts.z1eotzj35n.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.Contracts#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"z1eotzj35n","Integrity":"2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Diagnostics.Contracts.wasm","FileLength":5909,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Debug.aeh9b1tcuc.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.Debug#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"aeh9b1tcuc","Integrity":"Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Diagnostics.Debug.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.DiagnosticSource#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"ou2dt7nfo2","Integrity":"sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Diagnostics.DiagnosticSource.wasm","FileLength":192277,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.FileVersionInfo#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"kv9gl8mgag","Integrity":"ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Diagnostics.FileVersionInfo.wasm","FileLength":12565,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Process.lqtqkmw274.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.Process#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"lqtqkmw274","Integrity":"87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Diagnostics.Process.wasm","FileLength":46357,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.StackTrace.wvlboxd9cz.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.StackTrace#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"wvlboxd9cz","Integrity":"jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Diagnostics.StackTrace.wasm","FileLength":15637,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.TextWriterTraceListener#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"mx5w1z1p6w","Integrity":"9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Diagnostics.TextWriterTraceListener.wasm","FileLength":21269,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Tools.862j1ozg5o.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.Tools#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"862j1ozg5o","Integrity":"wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Diagnostics.Tools.wasm","FileLength":4885,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.TraceSource.j08okd90mo.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.TraceSource#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"j08okd90mo","Integrity":"k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Diagnostics.TraceSource.wasm","FileLength":48405,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Tracing.bnz7jo4op8.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.Tracing#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"bnz7jo4op8","Integrity":"ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Diagnostics.Tracing.wasm","FileLength":5909,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Drawing.Primitives.k3z431p3v7.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Drawing.Primitives#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"k3z431p3v7","Integrity":"sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Drawing.Primitives.wasm","FileLength":54549,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Drawing.v0usa2s224.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Drawing#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"v0usa2s224","Integrity":"/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Drawing.wasm","FileLength":10005,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Dynamic.Runtime.iktlm0yhdx.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Dynamic.Runtime#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"iktlm0yhdx","Integrity":"8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Dynamic.Runtime.wasm","FileLength":5909,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Formats.Asn1.9iyl1hnh76.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Formats.Asn1#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"9iyl1hnh76","Integrity":"8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Formats.Asn1.wasm","FileLength":86805,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Formats.Tar.9ikmelhi7g.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Formats.Tar#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"9ikmelhi7g","Integrity":"rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Formats.Tar.wasm","FileLength":28437,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Globalization.4ulc930few.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Globalization#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"4ulc930few","Integrity":"jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Globalization.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Globalization.Calendars.e8yl47y6cv.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Globalization.Calendars#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"e8yl47y6cv","Integrity":"jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Globalization.Calendars.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Globalization.Extensions.fvxkfs32tv.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Globalization.Extensions#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"fvxkfs32tv","Integrity":"e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Globalization.Extensions.wasm","FileLength":4885,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.Brotli.ibxx4kh8c6.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.IO.Compression.Brotli#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"ibxx4kh8c6","Integrity":"7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.IO.Compression.Brotli.wasm","FileLength":18197,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.FileSystem.bselp9vv9w.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.IO.Compression.FileSystem#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"bselp9vv9w","Integrity":"5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.IO.Compression.FileSystem.wasm","FileLength":4885,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.ZipFile.b0ha8vyo8i.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.IO.Compression.ZipFile#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"b0ha8vyo8i","Integrity":"m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.IO.Compression.ZipFile.wasm","FileLength":43285,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.sgbc42zrd8.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.IO.Compression#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"sgbc42zrd8","Integrity":"DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.IO.Compression.wasm","FileLength":157461,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.IO.FileSystem.AccessControl#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"oi9xn5s0h3","Integrity":"kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.IO.FileSystem.AccessControl.wasm","FileLength":21781,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.IO.FileSystem.DriveInfo#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"fi1uhp9255","Integrity":"2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.IO.FileSystem.DriveInfo.wasm","FileLength":13589,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.6j2ed42ac7.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.IO.FileSystem.Primitives#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"6j2ed42ac7","Integrity":"UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.IO.FileSystem.Primitives.wasm","FileLength":4885,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.v9i07bnq2k.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.IO.FileSystem.Watcher#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"v9i07bnq2k","Integrity":"g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.IO.FileSystem.Watcher.wasm","FileLength":22805,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.fktu0k4b93.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.IO.FileSystem#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"fktu0k4b93","Integrity":"L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.IO.FileSystem.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.IsolatedStorage.8ll4gxwfs1.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.IO.IsolatedStorage#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"8ll4gxwfs1","Integrity":"TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.IO.IsolatedStorage.wasm","FileLength":24853,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.6do4olk7ib.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.IO.MemoryMappedFiles#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"6do4olk7ib","Integrity":"WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.IO.MemoryMappedFiles.wasm","FileLength":39701,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Pipelines.21z0t9w6sq.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.IO.Pipelines#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"21z0t9w6sq","Integrity":"VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.IO.Pipelines.wasm","FileLength":67861,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.5lvzz4lks7.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.IO.Pipes.AccessControl#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"5lvzz4lks7","Integrity":"qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.IO.Pipes.AccessControl.wasm","FileLength":13077,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Pipes.xosph8vk4a.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.IO.Pipes#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"xosph8vk4a","Integrity":"gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.IO.Pipes.wasm","FileLength":32021,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.IO.UnmanagedMemoryStream#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"d1pja42pyi","Integrity":"gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.IO.UnmanagedMemoryStream.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.i9g92fmb9y.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.IO#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"i9g92fmb9y","Integrity":"akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.IO.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.AsyncEnumerable.4m1mh525k0.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Linq.AsyncEnumerable#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"4m1mh525k0","Integrity":"VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Linq.AsyncEnumerable.wasm","FileLength":446229,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.Expressions.4nat0rber0.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Linq.Expressions#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"4nat0rber0","Integrity":"IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Linq.Expressions.wasm","FileLength":565013,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.Parallel.qf7zemz9aw.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Linq.Parallel#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"qf7zemz9aw","Integrity":"ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Linq.Parallel.wasm","FileLength":212757,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.Queryable.vwinf8twbn.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Linq.Queryable#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"vwinf8twbn","Integrity":"geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Linq.Queryable.wasm","FileLength":68373,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.rp2jklkmsi.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Linq#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"rp2jklkmsi","Integrity":"f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Linq.wasm","FileLength":190741,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Memory.3r0soomurg.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Memory#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"3r0soomurg","Integrity":"z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Memory.wasm","FileLength":45333,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Http.9rl4gopayw.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net.Http#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"9rl4gopayw","Integrity":"JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.Http.wasm","FileLength":285973,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Http.Json.t9gqpmtbpb.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net.Http.Json#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"t9gqpmtbpb","Integrity":"H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.Http.Json.wasm","FileLength":45845,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.HttpListener.zg37o92yol.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net.HttpListener#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"zg37o92yol","Integrity":"rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.HttpListener.wasm","FileLength":45845,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Mail.qk214miut2.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net.Mail#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"qk214miut2","Integrity":"tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.Mail.wasm","FileLength":94997,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.NameResolution.50dzekuu9x.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net.NameResolution#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"50dzekuu9x","Integrity":"a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.NameResolution.wasm","FileLength":14101,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.NetworkInformation.k8343mqust.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net.NetworkInformation#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"k8343mqust","Integrity":"ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.NetworkInformation.wasm","FileLength":32021,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Ping.00vh2kvsiz.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net.Ping#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"00vh2kvsiz","Integrity":"MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.Ping.wasm","FileLength":17685,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Primitives.whs5oed1wm.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net.Primitives#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"whs5oed1wm","Integrity":"fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.Primitives.wasm","FileLength":97045,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Quic.grloe2ix5j.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net.Quic#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"grloe2ix5j","Integrity":"1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.Quic.wasm","FileLength":28949,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Requests.r8ar2pd94c.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net.Requests#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"r8ar2pd94c","Integrity":"ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.Requests.wasm","FileLength":55573,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Security.yn3zcskz4j.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net.Security#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"yn3zcskz4j","Integrity":"TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.Security.wasm","FileLength":104213,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.ServerSentEvents.37wbq4jfsy.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net.ServerSentEvents#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"37wbq4jfsy","Integrity":"Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.ServerSentEvents.wasm","FileLength":30485,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.ServicePoint.j436yqvrg9.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net.ServicePoint#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"j436yqvrg9","Integrity":"rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.ServicePoint.wasm","FileLength":4885,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Sockets.utzdm9sw2p.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net.Sockets#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"utzdm9sw2p","Integrity":"olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.Sockets.wasm","FileLength":64277,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebClient.e5a4gx4ylt.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net.WebClient#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"e5a4gx4ylt","Integrity":"YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.WebClient.wasm","FileLength":45845,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebHeaderCollection.rbzkmij005.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net.WebHeaderCollection#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"rbzkmij005","Integrity":"132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.WebHeaderCollection.wasm","FileLength":22805,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebProxy.38jcv8jeeu.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net.WebProxy#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"38jcv8jeeu","Integrity":"UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.WebProxy.wasm","FileLength":11541,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebSockets.Client.nv5izr3rt6.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net.WebSockets.Client#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"nv5izr3rt6","Integrity":"vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.WebSockets.Client.wasm","FileLength":42261,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebSockets.hdzn84g6uh.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net.WebSockets#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"hdzn84g6uh","Integrity":"1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.WebSockets.wasm","FileLength":98581,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.zku96ychk7.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"zku96ychk7","Integrity":"E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.wasm","FileLength":6933,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Numerics.Vectors.1l8xruz8uh.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Numerics.Vectors#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"1l8xruz8uh","Integrity":"tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Numerics.Vectors.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Numerics.on9qk50okp.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Numerics#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"on9qk50okp","Integrity":"ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Numerics.wasm","FileLength":4885,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ObjectModel.4omhtq90sd.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.ObjectModel#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"4omhtq90sd","Integrity":"BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.ObjectModel.wasm","FileLength":30997,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.CoreLib.koxlwnosh6.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Private.CoreLib#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"koxlwnosh6","Integrity":"xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Private.CoreLib.wasm","FileLength":4869401,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.DataContractSerialization.zlwtcvnuqv.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Private.DataContractSerialization#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"zlwtcvnuqv","Integrity":"qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Private.DataContractSerialization.wasm","FileLength":849173,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.Uri.clehp4avpy.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Private.Uri#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"clehp4avpy","Integrity":"IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Private.Uri.wasm","FileLength":95509,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.Xml.Linq.ga3n3gh9b6.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Private.Xml.Linq#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"ga3n3gh9b6","Integrity":"aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Private.Xml.Linq.wasm","FileLength":143637,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.Xml.g9rvjereoe.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Private.Xml#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"g9rvjereoe","Integrity":"xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Private.Xml.wasm","FileLength":3095833,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.DispatchProxy.b7qn4zpc0q.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Reflection.DispatchProxy#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"b7qn4zpc0q","Integrity":"mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Reflection.DispatchProxy.wasm","FileLength":27925,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Emit.3t7flfwg7o.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Reflection.Emit#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"3t7flfwg7o","Integrity":"uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Reflection.Emit.wasm","FileLength":122645,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Reflection.Emit.ILGeneration#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"x0vkqyycss","Integrity":"ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Reflection.Emit.ILGeneration.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.3tzjd7znni.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Reflection.Emit.Lightweight#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"3tzjd7znni","Integrity":"B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Reflection.Emit.Lightweight.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Extensions.ymwga5opgl.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Reflection.Extensions#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"ymwga5opgl","Integrity":"xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Reflection.Extensions.wasm","FileLength":4885,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Metadata.9lgg9wjd2a.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Reflection.Metadata#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"9lgg9wjd2a","Integrity":"/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Reflection.Metadata.wasm","FileLength":493333,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Primitives.n2ngq6as7g.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Reflection.Primitives#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"n2ngq6as7g","Integrity":"z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Reflection.Primitives.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.TypeExtensions.ivmzcfvrc6.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Reflection.TypeExtensions#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"ivmzcfvrc6","Integrity":"jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Reflection.TypeExtensions.wasm","FileLength":14101,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.v4mfyzbte8.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Reflection#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"v4mfyzbte8","Integrity":"MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Reflection.wasm","FileLength":5909,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Resources.Reader.c9z9nieytf.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Resources.Reader#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"c9z9nieytf","Integrity":"QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Resources.Reader.wasm","FileLength":4885,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Resources.ResourceManager.f3fiwdwb50.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Resources.ResourceManager#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"f3fiwdwb50","Integrity":"61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Resources.ResourceManager.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Resources.Writer.tx9namivq6.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Resources.Writer#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"tx9namivq6","Integrity":"EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Resources.Writer.wasm","FileLength":16661,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Runtime.CompilerServices.Unsafe#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"5yw8jyjkyt","Integrity":"M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Runtime.CompilerServices.Unsafe.wasm","FileLength":4885,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Runtime.CompilerServices.VisualC#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"ddbsai2xh9","Integrity":"b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Runtime.CompilerServices.VisualC.wasm","FileLength":6933,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Extensions.f4fqaba1oz.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Extensions#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"f4fqaba1oz","Integrity":"8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Runtime.Extensions.wasm","FileLength":7445,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Handles.kpe61fymig.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Handles#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"kpe61fymig","Integrity":"+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Runtime.Handles.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.InteropServices.02r2ubft18.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Runtime.InteropServices#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"02r2ubft18","Integrity":"iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Runtime.InteropServices.wasm","FileLength":54549,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Runtime.InteropServices.JavaScript#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"ythr5w8c2e","Integrity":"BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Runtime.InteropServices.JavaScript.wasm","FileLength":79637,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Runtime.InteropServices.RuntimeInformation#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"esodb2rpbi","Integrity":"Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Runtime.InteropServices.RuntimeInformation.wasm","FileLength":4885,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Intrinsics.j8lrpban8m.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Intrinsics#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"j8lrpban8m","Integrity":"vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Runtime.Intrinsics.wasm","FileLength":6933,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Loader.bm8d2pac0a.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Loader#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"bm8d2pac0a","Integrity":"Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Runtime.Loader.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Numerics.e3fl2oogjk.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Numerics#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"e3fl2oogjk","Integrity":"Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Runtime.Numerics.wasm","FileLength":134933,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.a0v88kqnif.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Serialization.Formatters#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"a0v88kqnif","Integrity":"Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Runtime.Serialization.Formatters.wasm","FileLength":55573,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Json.pez04wd9mo.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Serialization.Json#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"pez04wd9mo","Integrity":"vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Runtime.Serialization.Json.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Serialization.Primitives#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"xy5d3j3dn1","Integrity":"hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Runtime.Serialization.Primitives.wasm","FileLength":13077,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.mmwsbcsgly.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Serialization.Xml#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"mmwsbcsgly","Integrity":"0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Runtime.Serialization.Xml.wasm","FileLength":6421,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.qfpmfujegm.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Serialization#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"qfpmfujegm","Integrity":"un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Runtime.Serialization.wasm","FileLength":6933,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.k6ze2203p2.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Runtime#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"k6ze2203p2","Integrity":"ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Runtime.wasm","FileLength":34581,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.AccessControl.4mxo8hy5cn.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Security.AccessControl#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"4mxo8hy5cn","Integrity":"1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Security.AccessControl.wasm","FileLength":47893,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Claims.9n1yusa5e5.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Security.Claims#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"9n1yusa5e5","Integrity":"KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Security.Claims.wasm","FileLength":44821,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.5rp84ijz8t.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"5rp84ijz8t","Integrity":"YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Security.Cryptography.wasm","FileLength":642325,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography.Algorithms#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"4dnz7b15a9","Integrity":"CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Security.Cryptography.Algorithms.wasm","FileLength":6933,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dyaxkkx3lb.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography.Cng#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"dyaxkkx3lb","Integrity":"SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Security.Cryptography.Cng.wasm","FileLength":5909,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Csp.20t5iw27a6.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography.Csp#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"20t5iw27a6","Integrity":"EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Security.Cryptography.Csp.wasm","FileLength":5909,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography.Encoding#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"0lu5m0tfx2","Integrity":"7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Security.Cryptography.Encoding.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography.OpenSsl#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"4m4pzjxi3g","Integrity":"nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Security.Cryptography.OpenSsl.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.7bcdd4uolu.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography.Primitives#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"7bcdd4uolu","Integrity":"kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Security.Cryptography.Primitives.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography.X509Certificates#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"dmew7c9amv","Integrity":"+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Security.Cryptography.X509Certificates.wasm","FileLength":6421,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Principal.Windows.7ssqvw2wfy.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Security.Principal.Windows#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"7ssqvw2wfy","Integrity":"NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Security.Principal.Windows.wasm","FileLength":27413,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Principal.j5dp7k8x6u.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Security.Principal#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"j5dp7k8x6u","Integrity":"KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Security.Principal.wasm","FileLength":4885,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.SecureString.7weoywtuje.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Security.SecureString#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"7weoywtuje","Integrity":"Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Security.SecureString.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.snpv53zusk.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Security#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"snpv53zusk","Integrity":"qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Security.wasm","FileLength":7957,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ServiceModel.Web.3f1khl8k32.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.ServiceModel.Web#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"3f1khl8k32","Integrity":"0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.ServiceModel.Web.wasm","FileLength":6421,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ServiceProcess.a95c1olw0i.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.ServiceProcess#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"a95c1olw0i","Integrity":"nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.ServiceProcess.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encoding.CodePages.8bhn50uz8f.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Text.Encoding.CodePages#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"8bhn50uz8f","Integrity":"nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Text.Encoding.CodePages.wasm","FileLength":732437,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encoding.Extensions.tqz9dyg6j7.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Text.Encoding.Extensions#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"tqz9dyg6j7","Integrity":"y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Text.Encoding.Extensions.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encoding.s9ic8sulfi.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Text.Encoding#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"s9ic8sulfi","Integrity":"gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Text.Encoding.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encodings.Web.07hq35kp92.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Text.Encodings.Web#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"07hq35kp92","Integrity":"dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Text.Encodings.Web.wasm","FileLength":55573,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Json.2alhj4y3bm.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Text.Json#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"2alhj4y3bm","Integrity":"BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Text.Json.wasm","FileLength":638741,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.RegularExpressions.h1qtkesphd.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Text.RegularExpressions#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"h1qtkesphd","Integrity":"FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Text.RegularExpressions.wasm","FileLength":374549,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.47ucbn1gg1.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Threading#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"47ucbn1gg1","Integrity":"ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Threading.wasm","FileLength":34581,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.AccessControl.ruehy0ud5k.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Threading.AccessControl#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"ruehy0ud5k","Integrity":"c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Threading.AccessControl.wasm","FileLength":23317,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Channels.s3i62rxr2p.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Threading.Channels#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"s3i62rxr2p","Integrity":"2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Threading.Channels.wasm","FileLength":56085,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Overlapped.lzl7igry1t.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Threading.Overlapped#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"lzl7igry1t","Integrity":"ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Threading.Overlapped.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Threading.Tasks.Dataflow#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"p9bjzp5pyo","Integrity":"zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Threading.Tasks.Dataflow.wasm","FileLength":175381,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.unp0hcfijn.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Threading.Tasks.Extensions#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"unp0hcfijn","Integrity":"Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Threading.Tasks.Extensions.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.hyku0ejwye.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Threading.Tasks.Parallel#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"hyku0ejwye","Integrity":"ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Threading.Tasks.Parallel.wasm","FileLength":50965,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.t0sjw89o0i.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Threading.Tasks#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"t0sjw89o0i","Integrity":"YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Threading.Tasks.wasm","FileLength":6421,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Thread.nfbg9v9bn0.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Threading.Thread#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"nfbg9v9bn0","Integrity":"43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Threading.Thread.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.ThreadPool.jrzo6stg1k.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Threading.ThreadPool#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"jrzo6stg1k","Integrity":"D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Threading.ThreadPool.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Timer.y8l1kxazi5.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Threading.Timer#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"y8l1kxazi5","Integrity":"0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Threading.Timer.wasm","FileLength":4885,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Transactions.Local.cig01jt23c.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Transactions.Local#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"cig01jt23c","Integrity":"lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Transactions.Local.wasm","FileLength":165653,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Transactions.pl50n6qbg7.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Transactions#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"pl50n6qbg7","Integrity":"XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Transactions.wasm","FileLength":6421,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ValueTuple.mj3r9p0pcw.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.ValueTuple#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"mj3r9p0pcw","Integrity":"Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.ValueTuple.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Web.2a6wq9gv6d.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Web#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"2a6wq9gv6d","Integrity":"Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Web.wasm","FileLength":4885,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Web.HttpUtility.3jfxpyq4in.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Web.HttpUtility#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"3jfxpyq4in","Integrity":"IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Web.HttpUtility.wasm","FileLength":19733,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Windows.bw79ix589z.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Windows#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"bw79ix589z","Integrity":"O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Windows.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.Linq.nvnhbwdsg6.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Xml.Linq#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"nvnhbwdsg6","Integrity":"I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Xml.Linq.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.ReaderWriter.szsdminork.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Xml.ReaderWriter#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"szsdminork","Integrity":"+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Xml.ReaderWriter.wasm","FileLength":11541,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.Serialization.b9imguls9w.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Xml.Serialization#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"b9imguls9w","Integrity":"EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Xml.Serialization.wasm","FileLength":5909,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XDocument.8hg6c0at0c.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Xml.XDocument#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"8hg6c0at0c","Integrity":"7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Xml.XDocument.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XPath.11wk1hhnfk.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Xml.XPath#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"11wk1hhnfk","Integrity":"28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Xml.XPath.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XPath.XDocument.g7i5gd64yo.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Xml.XPath.XDocument#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"g7i5gd64yo","Integrity":"bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Xml.XPath.XDocument.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XmlDocument.isetn6xlxa.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Xml.XmlDocument#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"isetn6xlxa","Integrity":"Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Xml.XmlDocument.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XmlSerializer.okgnp5v9bw.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Xml.XmlSerializer#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"okgnp5v9bw","Integrity":"WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Xml.XmlSerializer.wasm","FileLength":7445,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.zjgi7nrlno.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Xml#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"zjgi7nrlno","Integrity":"scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Xml.wasm","FileLength":13077,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\WindowsBase.wz82kkc1p3.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/WindowsBase#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"wz82kkc1p3","Integrity":"DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\WindowsBase.wasm","FileLength":5909,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\blazor.webassembly.js","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/blazor.webassembly.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"boot","Fingerprint":"66stpp682q","Integrity":"3lCWrko3zwspV40aQhs2S/IMkRSarnHRKIdkHhuXIBA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\wiela\\.nuget\\packages\\microsoft.aspnetcore.components.webassembly\\10.0.5\\build\\net10.0\\blazor.webassembly.js","FileLength":60278,"LastWriteTime":"2026-03-03T20:10:58+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.js","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/dotnet#[.{fingerprint}]?.js","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"manifest","Fingerprint":"kx7meqmil2","Integrity":"WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"obj\\Debug\\net10.0\\dotnet.js","FileLength":93305,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.js.map","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/dotnet.js#[.{fingerprint}]?.map","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"clndu25lif","Integrity":"sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Runtime.Mono.browser-wasm\\10.0.5\\runtimes\\browser-wasm\\native\\dotnet.js.map","FileLength":51818,"LastWriteTime":"2026-03-03T17:21:10+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.native.53ez3dx5uy.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/dotnet.native#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"native","Fingerprint":"53ez3dx5uy","Integrity":"Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Runtime.Mono.browser-wasm\\10.0.5\\runtimes\\browser-wasm\\native\\dotnet.native.wasm","FileLength":3002101,"LastWriteTime":"2026-03-03T17:21:42+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.native.ykrnppwhq2.js","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/dotnet.native#[.{fingerprint}]!.js","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"native","Fingerprint":"ykrnppwhq2","Integrity":"nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Runtime.Mono.browser-wasm\\10.0.5\\runtimes\\browser-wasm\\native\\dotnet.native.js","FileLength":145050,"LastWriteTime":"2026-03-03T17:21:42+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.runtime.js.map","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/dotnet.runtime.js#[.{fingerprint}]?.map","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"y1cse46x0j","Integrity":"+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Runtime.Mono.browser-wasm\\10.0.5\\runtimes\\browser-wasm\\native\\dotnet.runtime.js.map","FileLength":276757,"LastWriteTime":"2026-03-03T17:21:16+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.runtime.peu2mfb29t.js","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/dotnet.runtime#[.{fingerprint}]!.js","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"native","Fingerprint":"peu2mfb29t","Integrity":"cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Runtime.Mono.browser-wasm\\10.0.5\\runtimes\\browser-wasm\\native\\dotnet.runtime.js","FileLength":198479,"LastWriteTime":"2026-03-03T17:21:16+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\icudt_CJK.tjcz0u77k5.dat","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/icudt_CJK#[.{fingerprint}]!.dat","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"native","Fingerprint":"tjcz0u77k5","Integrity":"SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Runtime.Mono.browser-wasm\\10.0.5\\runtimes\\browser-wasm\\native\\icudt_CJK.dat","FileLength":956416,"LastWriteTime":"2026-02-04T17:40:56+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\icudt_EFIGS.tptq2av103.dat","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/icudt_EFIGS#[.{fingerprint}]!.dat","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"native","Fingerprint":"tptq2av103","Integrity":"8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Runtime.Mono.browser-wasm\\10.0.5\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat","FileLength":550832,"LastWriteTime":"2026-02-04T17:40:56+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\icudt_no_CJK.lfu7j35m59.dat","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/icudt_no_CJK#[.{fingerprint}]!.dat","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"native","Fingerprint":"lfu7j35m59","Integrity":"L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Runtime.Mono.browser-wasm\\10.0.5\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat","FileLength":1107168,"LastWriteTime":"2026-02-04T17:40:56+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\mscorlib.555t1ekkz8.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/mscorlib#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"555t1ekkz8","Integrity":"SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\mscorlib.wasm","FileLength":49429,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\netstandard.0e3bjkca9m.wasm","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/netstandard#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"0e3bjkca9m","Integrity":"6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\netstandard.wasm","FileLength":90389,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0064fe6uur-{0}-2alhj4y3bm-2alhj4y3bm.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Text.Json#[.{fingerprint=2alhj4y3bm}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Json.2alhj4y3bm.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9e91cyfosn","Integrity":"L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Json.2alhj4y3bm.wasm","FileLength":228692,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\019ldzgpk2-{0}-qk214miut2-qk214miut2.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.Mail#[.{fingerprint=qk214miut2}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Mail.qk214miut2.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"vwbkysdtgf","Integrity":"T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Mail.qk214miut2.wasm","FileLength":42440,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\06jmrwgemt-{0}-bm8d2pac0a-bm8d2pac0a.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Loader#[.{fingerprint=bm8d2pac0a}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Loader.bm8d2pac0a.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"u8iepuojih","Integrity":"InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Loader.bm8d2pac0a.wasm","FileLength":2330,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0o3yap4xcv-{0}-v59ymogeuz-v59ymogeuz.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Diagnostics.Abstractions#[.{fingerprint=v59ymogeuz}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"1d4dr8p0gt","Integrity":"q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm","FileLength":8585,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0qximx7h6w-{0}-e5a4gx4ylt-e5a4gx4ylt.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.WebClient#[.{fingerprint=e5a4gx4ylt}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebClient.e5a4gx4ylt.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"71c4zcajqa","Integrity":"FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebClient.e5a4gx4ylt.wasm","FileLength":14733,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0st0knthx5-{0}-02r2ubft18-02r2ubft18.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.InteropServices#[.{fingerprint=02r2ubft18}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.InteropServices.02r2ubft18.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"a0n0ubbzpl","Integrity":"hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.InteropServices.02r2ubft18.wasm","FileLength":23552,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\10vfj5e8p2-{0}-wz82kkc1p3-wz82kkc1p3.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/WindowsBase#[.{fingerprint=wz82kkc1p3}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\WindowsBase.wz82kkc1p3.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"f8gt6nt5v1","Integrity":"b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\WindowsBase.wz82kkc1p3.wasm","FileLength":2526,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\11oooy7jd2-{0}-7o70008j8o-7o70008j8o.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Configuration.Binder#[.{fingerprint=7o70008j8o}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"tc4mjf07ok","Integrity":"c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm","FileLength":14172,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\12m83h5a1i-{0}-4m4pzjxi3g-4m4pzjxi3g.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography.OpenSsl#[.{fingerprint=4m4pzjxi3g}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"rdx3jhokd5","Integrity":"vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm","FileLength":2222,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\1u9lol5zjk-{0}-4m1mh525k0-4m1mh525k0.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Linq.AsyncEnumerable#[.{fingerprint=4m1mh525k0}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.AsyncEnumerable.4m1mh525k0.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ui9j0r4hxl","Integrity":"Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.AsyncEnumerable.4m1mh525k0.wasm","FileLength":143644,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\2eqyybz3l2-{0}-9iyl1hnh76-9iyl1hnh76.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Formats.Asn1#[.{fingerprint=9iyl1hnh76}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Formats.Asn1.9iyl1hnh76.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0fd9ispd0f","Integrity":"LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Formats.Asn1.9iyl1hnh76.wasm","FileLength":35706,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\2noakrdf2j-{0}-tjcz0u77k5-tjcz0u77k5.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/icudt_CJK#[.{fingerprint=tjcz0u77k5}]!.dat.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\icudt_CJK.tjcz0u77k5.dat","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"su9h2nea1m","Integrity":"JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\icudt_CJK.tjcz0u77k5.dat","FileLength":333110,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\35llacexwm-{0}-qf7zemz9aw-qf7zemz9aw.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Linq.Parallel#[.{fingerprint=qf7zemz9aw}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.Parallel.qf7zemz9aw.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"15geimm1az","Integrity":"NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.Parallel.qf7zemz9aw.wasm","FileLength":86417,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3hvscw4lq4-{0}-x0ueugt8gp-x0ueugt8gp.gz","SourceId":"OnProfNext.Client","SourceType":"Discovered","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"appsettings#[.{fingerprint=x0ueugt8gp}]?.json.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\appsettings.json","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"zt9ktt9z9k","Integrity":"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\appsettings.json","FileLength":108,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3k0w0ci5df-{0}-6uzpuv4o5d-6uzpuv4o5d.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Collections.Immutable#[.{fingerprint=6uzpuv4o5d}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.Immutable.6uzpuv4o5d.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"qgpgqsl74x","Integrity":"FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.Immutable.6uzpuv4o5d.wasm","FileLength":98053,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3of7h5c6n8-{0}-hrhwg3a64c-hrhwg3a64c.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser#[.{fingerprint=hrhwg3a64c}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"1it2uduzuc","Integrity":"2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm","FileLength":24419,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3rwukvhyra-{0}-jnogfbng3i-jnogfbng3i.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Diagnostics#[.{fingerprint=jnogfbng3i}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9y06osgqhd","Integrity":"UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm","FileLength":12090,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3txc49hfsy-{0}-5yw8jyjkyt-5yw8jyjkyt.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.CompilerServices.Unsafe#[.{fingerprint=5yw8jyjkyt}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bh824og9pz","Integrity":"b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm","FileLength":2135,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3zhncs8zdy-{0}-63jrcion39-63jrcion39.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Collections#[.{fingerprint=63jrcion39}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.63jrcion39.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"2jtttpxj8w","Integrity":"vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.63jrcion39.wasm","FileLength":43289,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3zyfvkhmnk-{0}-koxlwnosh6-koxlwnosh6.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Private.CoreLib#[.{fingerprint=koxlwnosh6}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.CoreLib.koxlwnosh6.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"u4ey83ooeo","Integrity":"8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.CoreLib.koxlwnosh6.wasm","FileLength":1552335,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4131vl2c0u-{0}-ykrnppwhq2-ykrnppwhq2.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/dotnet.native#[.{fingerprint=ykrnppwhq2}]!.js.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.native.ykrnppwhq2.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"xmtmurkslm","Integrity":"iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.native.ykrnppwhq2.js","FileLength":34666,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4gmvxkcg2g-{0}-53ez3dx5uy-53ez3dx5uy.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/dotnet.native#[.{fingerprint=53ez3dx5uy}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.native.53ez3dx5uy.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"wev1umwx52","Integrity":"SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.native.53ez3dx5uy.wasm","FileLength":1187026,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4k92vl8md2-{0}-a0v88kqnif-a0v88kqnif.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Serialization.Formatters#[.{fingerprint=a0v88kqnif}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.a0v88kqnif.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"pdepispd6w","Integrity":"89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.a0v88kqnif.wasm","FileLength":24114,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4syo1xqmc8-{0}-f4fqaba1oz-f4fqaba1oz.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Extensions#[.{fingerprint=f4fqaba1oz}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Extensions.f4fqaba1oz.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"txhuzt8zv6","Integrity":"UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Extensions.f4fqaba1oz.wasm","FileLength":2997,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\553rwsqb4a-{0}-yz8nt3ycsq-yz8nt3ycsq.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Win32.Registry#[.{fingerprint=yz8nt3ycsq}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Win32.Registry.yz8nt3ycsq.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"6vmzj7j11v","Integrity":"gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Win32.Registry.yz8nt3ycsq.wasm","FileLength":9112,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5g3srlr8jx-{0}-roqc1km2rj-roqc1km2rj.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.AspNetCore.Authorization#[.{fingerprint=roqc1km2rj}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"dnuvacvqw8","Integrity":"6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm","FileLength":19732,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5g4i44bi6s-{0}-jrzo6stg1k-jrzo6stg1k.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Threading.ThreadPool#[.{fingerprint=jrzo6stg1k}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.ThreadPool.jrzo6stg1k.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"6hixptdyye","Integrity":"yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.ThreadPool.jrzo6stg1k.wasm","FileLength":2260,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5onvg4v1ie-{0}-7rk3uansaa-7rk3uansaa.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System#[.{fingerprint=7rk3uansaa}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.7rk3uansaa.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"c3f3hm8or8","Integrity":"KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.7rk3uansaa.wasm","FileLength":11781,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5psn88uayv-{0}-mx5w1z1p6w-mx5w1z1p6w.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.TextWriterTraceListener#[.{fingerprint=mx5w1z1p6w}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"of2hbj3jtu","Integrity":"bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm","FileLength":9390,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\67s0zux9y9-{0}-lqtqkmw274-lqtqkmw274.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.Process#[.{fingerprint=lqtqkmw274}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Process.lqtqkmw274.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"3ago6fw6i6","Integrity":"a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Process.lqtqkmw274.wasm","FileLength":16197,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\68hq2gv5cb-{0}-4wisaz8pj4-4wisaz8pj4.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Data.Common#[.{fingerprint=4wisaz8pj4}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Data.Common.4wisaz8pj4.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"s1468k0u99","Integrity":"ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Data.Common.4wisaz8pj4.wasm","FileLength":375378,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\69vphje66t-{0}-giv4t23za9-giv4t23za9.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Configuration.Json#[.{fingerprint=giv4t23za9}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"d4992121ss","Integrity":"kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm","FileLength":7862,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6fczie0f1k-{0}-y1cse46x0j-y1cse46x0j.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/dotnet.runtime.js#[.{fingerprint=y1cse46x0j}]?.map.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.runtime.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"k3l5g6t8d3","Integrity":"8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.runtime.js.map","FileLength":88502,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6ixuumt5h1-{0}-555t1ekkz8-555t1ekkz8.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/mscorlib#[.{fingerprint=555t1ekkz8}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\mscorlib.555t1ekkz8.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"cf3kfqyddt","Integrity":"qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\mscorlib.555t1ekkz8.wasm","FileLength":14832,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6mv5cent6u-{0}-oz8fkrrrd6-oz8fkrrrd6.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.JSInterop.WebAssembly#[.{fingerprint=oz8fkrrrd6}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"vqm70abvg2","Integrity":"50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm","FileLength":6861,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6yvil548ai-{0}-862j1ozg5o-862j1ozg5o.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.Tools#[.{fingerprint=862j1ozg5o}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Tools.862j1ozg5o.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"e8yn8tx9b6","Integrity":"Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Tools.862j1ozg5o.wasm","FileLength":2194,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\79deazooef-{0}-nvnhbwdsg6-nvnhbwdsg6.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Xml.Linq#[.{fingerprint=nvnhbwdsg6}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.Linq.nvnhbwdsg6.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"u344kyov9m","Integrity":"NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.Linq.nvnhbwdsg6.wasm","FileLength":2209,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\7d15z782y2-{0}-h1qtkesphd-h1qtkesphd.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Text.RegularExpressions#[.{fingerprint=h1qtkesphd}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.RegularExpressions.h1qtkesphd.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ejgp754x7r","Integrity":"BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.RegularExpressions.h1qtkesphd.wasm","FileLength":158442,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\7o4w0lfocu-{0}-unp0hcfijn-unp0hcfijn.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Threading.Tasks.Extensions#[.{fingerprint=unp0hcfijn}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.unp0hcfijn.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"qwyx5haebb","Integrity":"+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.unp0hcfijn.wasm","FileLength":2307,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\7yd9j54hd0-{0}-j8lrpban8m-j8lrpban8m.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Intrinsics#[.{fingerprint=j8lrpban8m}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Intrinsics.j8lrpban8m.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bbrcg1brto","Integrity":"RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Intrinsics.j8lrpban8m.wasm","FileLength":2843,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\808kb9dz89-{0}-uzl7ca9j9c-uzl7ca9j9c.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"OnProfNext.Client#[.{fingerprint=uzl7ca9j9c}]!.bundle.scp.css.gz","AssetKind":"All","AssetMode":"Reference","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\scopedcss\\projectbundle\\OnProfNext.Client.bundle.scp.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"8ygq2qmxxz","Integrity":"UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\scopedcss\\projectbundle\\OnProfNext.Client.bundle.scp.css","FileLength":1448,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\84jx0dmgdc-{0}-xcslyy3nju-xcslyy3nju.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Localization#[.{fingerprint=xcslyy3nju}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Localization.xcslyy3nju.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"t8f4qjkh0j","Integrity":"LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Localization.xcslyy3nju.wasm","FileLength":9994,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8dl34ipw8j-{0}-0e3bjkca9m-0e3bjkca9m.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/netstandard#[.{fingerprint=0e3bjkca9m}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\netstandard.0e3bjkca9m.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"a7ek15y8at","Integrity":"GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\netstandard.0e3bjkca9m.wasm","FileLength":26086,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8i8whn9pm1-{0}-fi1uhp9255-fi1uhp9255.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.FileSystem.DriveInfo#[.{fingerprint=fi1uhp9255}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"7hebj64a57","Integrity":"9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm","FileLength":6033,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8pmauzinw9-{0}-mmwsbcsgly-mmwsbcsgly.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Serialization.Xml#[.{fingerprint=mmwsbcsgly}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.mmwsbcsgly.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"stzn0dpvhw","Integrity":"ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.mmwsbcsgly.wasm","FileLength":2570,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8rrnar5gtv-{0}-t0sjw89o0i-t0sjw89o0i.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Threading.Tasks#[.{fingerprint=t0sjw89o0i}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.t0sjw89o0i.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ih31xgx7gx","Integrity":"Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.t0sjw89o0i.wasm","FileLength":2575,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8srr1acehr-{0}-snpv53zusk-snpv53zusk.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security#[.{fingerprint=snpv53zusk}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.snpv53zusk.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"rrzajs05pn","Integrity":"l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.snpv53zusk.wasm","FileLength":2967,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8u2rup9szd-{0}-m4yhcvz2y2-m4yhcvz2y2.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Buffers#[.{fingerprint=m4yhcvz2y2}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Buffers.m4yhcvz2y2.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"mmzbmsscku","Integrity":"Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Buffers.m4yhcvz2y2.wasm","FileLength":2117,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8ynwqwcefg-{0}-j5dp7k8x6u-j5dp7k8x6u.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security.Principal#[.{fingerprint=j5dp7k8x6u}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Principal.j5dp7k8x6u.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"t59yqcarie","Integrity":"HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Principal.j5dp7k8x6u.wasm","FileLength":2175,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\93opzeh57b-{0}-ga3n3gh9b6-ga3n3gh9b6.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Private.Xml.Linq#[.{fingerprint=ga3n3gh9b6}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.Xml.Linq.ga3n3gh9b6.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"z02ij3rv9o","Integrity":"wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.Xml.Linq.ga3n3gh9b6.wasm","FileLength":58633,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\95o3q4uwxv-{0}-iktlm0yhdx-iktlm0yhdx.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Dynamic.Runtime#[.{fingerprint=iktlm0yhdx}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Dynamic.Runtime.iktlm0yhdx.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"jwqvny79hr","Integrity":"DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Dynamic.Runtime.iktlm0yhdx.wasm","FileLength":2444,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\9n1qe841ua-{0}-4mxo8hy5cn-4mxo8hy5cn.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security.AccessControl#[.{fingerprint=4mxo8hy5cn}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.AccessControl.4mxo8hy5cn.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bgmvr02kn5","Integrity":"lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.AccessControl.4mxo8hy5cn.wasm","FileLength":16828,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\9ru0gm9zti-{0}-k6ze2203p2-k6ze2203p2.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime#[.{fingerprint=k6ze2203p2}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.k6ze2203p2.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ey60xjxn2s","Integrity":"yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.k6ze2203p2.wasm","FileLength":10833,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\a99cqvh69a-{0}-b0ha8vyo8i-b0ha8vyo8i.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.Compression.ZipFile#[.{fingerprint=b0ha8vyo8i}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.ZipFile.b0ha8vyo8i.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9vm9g5dkex","Integrity":"+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.ZipFile.b0ha8vyo8i.wasm","FileLength":18694,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\aawrgxq7b9-{0}-9ikmelhi7g-9ikmelhi7g.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Formats.Tar#[.{fingerprint=9ikmelhi7g}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Formats.Tar.9ikmelhi7g.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"pw9bxbzc7p","Integrity":"F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Formats.Tar.9ikmelhi7g.wasm","FileLength":10493,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ae1qv5wfu3-{0}-wvlboxd9cz-wvlboxd9cz.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.StackTrace#[.{fingerprint=wvlboxd9cz}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.StackTrace.wvlboxd9cz.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"6h9497gan2","Integrity":"+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.StackTrace.wvlboxd9cz.wasm","FileLength":7365,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\akapjt0sxo-{0}-91iw3j3d9p-91iw3j3d9p.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.VisualBasic#[.{fingerprint=91iw3j3d9p}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.VisualBasic.91iw3j3d9p.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"h1hqahv7du","Integrity":"O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.VisualBasic.91iw3j3d9p.wasm","FileLength":2863,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\arn1xqjw1x-{0}-peu2mfb29t-peu2mfb29t.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/dotnet.runtime#[.{fingerprint=peu2mfb29t}]!.js.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.runtime.peu2mfb29t.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"iavj8wyhfn","Integrity":"1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.runtime.peu2mfb29t.js","FileLength":56611,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\awwlmj7zy5-{0}-9n1yusa5e5-9n1yusa5e5.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security.Claims#[.{fingerprint=9n1yusa5e5}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Claims.9n1yusa5e5.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"lcn83o9k5m","Integrity":"ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Claims.9n1yusa5e5.wasm","FileLength":16556,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\b1pqie8d42-{0}-e3fl2oogjk-e3fl2oogjk.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Numerics#[.{fingerprint=e3fl2oogjk}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Numerics.e3fl2oogjk.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"og1ky6ahsr","Integrity":"aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Numerics.e3fl2oogjk.wasm","FileLength":52773,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\beyjjw9nw7-{0}-k3z431p3v7-k3z431p3v7.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Drawing.Primitives#[.{fingerprint=k3z431p3v7}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Drawing.Primitives.k3z431p3v7.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"j4p6zyk3r4","Integrity":"s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Drawing.Primitives.k3z431p3v7.wasm","FileLength":24043,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\bfkt9xtjsh-{0}-x0ueugt8gp-x0ueugt8gp.gz","SourceId":"OnProfNext.Client","SourceType":"Discovered","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"appsettings.Development#[.{fingerprint=x0ueugt8gp}]?.json.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\appsettings.Development.json","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"zt9ktt9z9k","Integrity":"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\appsettings.Development.json","FileLength":108,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\blwck2749u-{0}-8hg6c0at0c-8hg6c0at0c.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Xml.XDocument#[.{fingerprint=8hg6c0at0c}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XDocument.8hg6c0at0c.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"4o0fiht1d3","Integrity":"JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XDocument.8hg6c0at0c.wasm","FileLength":2395,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\bm4t56k5pn-{0}-v0usa2s224-v0usa2s224.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Drawing#[.{fingerprint=v0usa2s224}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Drawing.v0usa2s224.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"r4neytsin0","Integrity":"ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Drawing.v0usa2s224.wasm","FileLength":3864,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\byxake4xdz-{0}-g9rvjereoe-g9rvjereoe.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Private.Xml#[.{fingerprint=g9rvjereoe}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.Xml.g9rvjereoe.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"daids8fpga","Integrity":"K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.Xml.g9rvjereoe.wasm","FileLength":1053126,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\cagt9idkdm-{0}-b9imguls9w-b9imguls9w.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Xml.Serialization#[.{fingerprint=b9imguls9w}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.Serialization.b9imguls9w.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"2gx8hets28","Integrity":"UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.Serialization.b9imguls9w.wasm","FileLength":2252,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\co27dkpaxa-{0}-bd164v6l3f-bd164v6l3f.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Primitives#[.{fingerprint=bd164v6l3f}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.bd164v6l3f.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bj7ikxinm7","Integrity":"WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.bd164v6l3f.wasm","FileLength":15247,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\cycczivqx5-{0}-lplk7v275j-lplk7v275j.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/OnProfNext.Client#[.{fingerprint=lplk7v275j}]!.pdb.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\OnProfNext.Client.lplk7v275j.pdb","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"2v0j1pjbhw","Integrity":"4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\OnProfNext.Client.lplk7v275j.pdb","FileLength":26158,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\d2kqqmb0bv-{0}-8bhn50uz8f-8bhn50uz8f.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Text.Encoding.CodePages#[.{fingerprint=8bhn50uz8f}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encoding.CodePages.8bhn50uz8f.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"mdh6jg86ph","Integrity":"hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encoding.CodePages.8bhn50uz8f.wasm","FileLength":515711,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\dnrp0xl7wy-{0}-fgwnqtu7qk-fgwnqtu7qk.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Configuration#[.{fingerprint=fgwnqtu7qk}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"midc3whqfr","Integrity":"bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm","FileLength":15475,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\du4skpg5oq-{0}-re3geseai5-re3geseai5.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.VisualBasic.Core#[.{fingerprint=re3geseai5}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.re3geseai5.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"dwyqqei2y4","Integrity":"09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.re3geseai5.wasm","FileLength":166913,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\dy6tcjmb9q-{0}-mj3r9p0pcw-mj3r9p0pcw.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.ValueTuple#[.{fingerprint=mj3r9p0pcw}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ValueTuple.mj3r9p0pcw.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"iqz39h2edb","Integrity":"qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ValueTuple.mj3r9p0pcw.wasm","FileLength":2193,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\dzqyarawy9-{0}-d1pja42pyi-d1pja42pyi.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.UnmanagedMemoryStream#[.{fingerprint=d1pja42pyi}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"vdo10os1fk","Integrity":"TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm","FileLength":2221,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\e2kh1woy2q-{0}-whs5oed1wm-whs5oed1wm.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.Primitives#[.{fingerprint=whs5oed1wm}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Primitives.whs5oed1wm.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9izefwu8g8","Integrity":"v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Primitives.whs5oed1wm.wasm","FileLength":45890,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\e2ypaal8k2-{0}-47ucbn1gg1-47ucbn1gg1.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Threading#[.{fingerprint=47ucbn1gg1}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.47ucbn1gg1.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ulv66c32nm","Integrity":"fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.47ucbn1gg1.wasm","FileLength":14695,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\e67ma35du3-{0}-clehp4avpy-clehp4avpy.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Private.Uri#[.{fingerprint=clehp4avpy}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.Uri.clehp4avpy.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ppfsjc24fs","Integrity":"jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.Uri.clehp4avpy.wasm","FileLength":42319,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ea8uo6cwb8-{0}-x9at0eh4vs-x9at0eh4vs.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Console#[.{fingerprint=x9at0eh4vs}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Console.x9at0eh4vs.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"uojdvkwt3s","Integrity":"EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Console.x9at0eh4vs.wasm","FileLength":19390,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\edgswerp4g-{0}-ickp29885z-ickp29885z.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Core#[.{fingerprint=ickp29885z}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Core.ickp29885z.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"79fagkdleb","Integrity":"RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Core.ickp29885z.wasm","FileLength":4558,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\epsgnejg6l-{0}-vs620n44bv-vs620n44bv.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.DependencyInjection#[.{fingerprint=vs620n44bv}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"tffkpdcxi8","Integrity":"KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm","FileLength":36541,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ezxlu8d1x1-{0}-ssv83rveyv-ssv83rveyv.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.FileProviders.Abstractions#[.{fingerprint=ssv83rveyv}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ggs2562wfp","Integrity":"kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm","FileLength":5652,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\f62yejuwjc-{0}-4omhtq90sd-4omhtq90sd.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.ObjectModel#[.{fingerprint=4omhtq90sd}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ObjectModel.4omhtq90sd.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"qwqekt33jv","Integrity":"RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ObjectModel.4omhtq90sd.wasm","FileLength":13356,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\f6u1msztxb-{0}-xhq6acanj0-xhq6acanj0.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/OnProfNext.Client#[.{fingerprint=xhq6acanj0}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\OnProfNext.Client.xhq6acanj0.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"mqrlhu4nlf","Integrity":"UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\OnProfNext.Client.xhq6acanj0.wasm","FileLength":14848,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fappprmifz-{0}-r1sv3m5lsf-r1sv3m5lsf.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Validation#[.{fingerprint=r1sv3m5lsf}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Validation.r1sv3m5lsf.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"uctmea5fo6","Integrity":"4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Validation.r1sv3m5lsf.wasm","FileLength":14443,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ffagyufl1o-{0}-bselp9vv9w-bselp9vv9w.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.Compression.FileSystem#[.{fingerprint=bselp9vv9w}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.FileSystem.bselp9vv9w.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"5ohw841xcg","Integrity":"dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.FileSystem.bselp9vv9w.wasm","FileLength":2005,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ffumllgt4m-{0}-m11rh1qn2x-m11rh1qn2x.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.ComponentModel#[.{fingerprint=m11rh1qn2x}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.m11rh1qn2x.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"aipvp5fgnc","Integrity":"4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.m11rh1qn2x.wasm","FileLength":2572,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\flmzbagm0p-{0}-ibxx4kh8c6-ibxx4kh8c6.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.Compression.Brotli#[.{fingerprint=ibxx4kh8c6}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.Brotli.ibxx4kh8c6.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"5w5ohwyzbs","Integrity":"1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.Brotli.ibxx4kh8c6.wasm","FileLength":6944,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fmcag5xdn2-{0}-on9qk50okp-on9qk50okp.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Numerics#[.{fingerprint=on9qk50okp}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Numerics.on9qk50okp.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"yf0mwfai6t","Integrity":"voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Numerics.on9qk50okp.wasm","FileLength":2037,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fs9spivh8g-{0}-uddsvpv1sv-uddsvpv1sv.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.AspNetCore.Components#[.{fingerprint=uddsvpv1sv}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.uddsvpv1sv.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"kkn2n533lj","Integrity":"1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.uddsvpv1sv.wasm","FileLength":154281,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fz4pecsmjf-{0}-kpe61fymig-kpe61fymig.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Handles#[.{fingerprint=kpe61fymig}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Handles.kpe61fymig.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"l3c23v44di","Integrity":"P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Handles.kpe61fymig.wasm","FileLength":2214,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\g0qzdert85-{0}-zlwtcvnuqv-zlwtcvnuqv.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Private.DataContractSerialization#[.{fingerprint=zlwtcvnuqv}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.DataContractSerialization.zlwtcvnuqv.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"b2kfnzp5bc","Integrity":"U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.DataContractSerialization.zlwtcvnuqv.wasm","FileLength":301793,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\g3b5a282rj-{0}-fvxkfs32tv-fvxkfs32tv.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Globalization.Extensions#[.{fingerprint=fvxkfs32tv}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Globalization.Extensions.fvxkfs32tv.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"02ayb7artg","Integrity":"mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Globalization.Extensions.fvxkfs32tv.wasm","FileLength":2190,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\g4w42juzkx-{0}-e8yl47y6cv-e8yl47y6cv.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Globalization.Calendars#[.{fingerprint=e8yl47y6cv}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Globalization.Calendars.e8yl47y6cv.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9lrv8us0bl","Integrity":"bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Globalization.Calendars.e8yl47y6cv.wasm","FileLength":2298,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gnkv5k3g9v-{0}-lfu7j35m59-lfu7j35m59.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/icudt_no_CJK#[.{fingerprint=lfu7j35m59}]!.dat.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\icudt_no_CJK.lfu7j35m59.dat","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"v385ycndre","Integrity":"S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\icudt_no_CJK.lfu7j35m59.dat","FileLength":317618,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gpzobq46fp-{0}-e2hbv9lola-e2hbv9lola.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.ComponentModel.TypeConverter#[.{fingerprint=e2hbv9lola}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.e2hbv9lola.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"otvdjow6va","Integrity":"pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.e2hbv9lola.wasm","FileLength":122798,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gqmneoqstx-{0}-5rp84ijz8t-5rp84ijz8t.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography#[.{fingerprint=5rp84ijz8t}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.5rp84ijz8t.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"zdpmmy3hvx","Integrity":"+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.5rp84ijz8t.wasm","FileLength":227329,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gremm5qhcr-{0}-3tzjd7znni-3tzjd7znni.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Reflection.Emit.Lightweight#[.{fingerprint=3tzjd7znni}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.3tzjd7znni.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"8l6oh4glwo","Integrity":"XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.3tzjd7znni.wasm","FileLength":2237,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gsr2zhdiud-{0}-g7i5gd64yo-g7i5gd64yo.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Xml.XPath.XDocument#[.{fingerprint=g7i5gd64yo}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XPath.XDocument.g7i5gd64yo.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"kdk317qr42","Integrity":"6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XPath.XDocument.g7i5gd64yo.wasm","FileLength":2491,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gx4y3aoczp-{0}-g5qdp1mxha-g5qdp1mxha.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.AspNetCore.Components.Web#[.{fingerprint=g5qdp1mxha}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"7joby0gmhk","Integrity":"Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm","FileLength":71572,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\h9925thw3k-{0}-ythr5w8c2e-ythr5w8c2e.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.InteropServices.JavaScript#[.{fingerprint=ythr5w8c2e}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ajxd2v6lfp","Integrity":"BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm","FileLength":31832,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hd2b1ihltm-{0}-uzl7ca9j9c-uzl7ca9j9c.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"OnProfNext.Client#[.{fingerprint=uzl7ca9j9c}]?.styles.css.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\scopedcss\\bundle\\OnProfNext.Client.styles.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"8ygq2qmxxz","Integrity":"UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\scopedcss\\bundle\\OnProfNext.Client.styles.css","FileLength":1448,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hoalsbog2o-{0}-ivmzcfvrc6-ivmzcfvrc6.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Reflection.TypeExtensions#[.{fingerprint=ivmzcfvrc6}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.TypeExtensions.ivmzcfvrc6.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"4jyu10wr5a","Integrity":"UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.TypeExtensions.ivmzcfvrc6.wasm","FileLength":5862,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hq538hfxem-{0}-y8l1kxazi5-y8l1kxazi5.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Threading.Timer#[.{fingerprint=y8l1kxazi5}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Timer.y8l1kxazi5.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"o794zzlysj","Integrity":"pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Timer.y8l1kxazi5.wasm","FileLength":2137,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hylqczc46z-{0}-vwinf8twbn-vwinf8twbn.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Linq.Queryable#[.{fingerprint=vwinf8twbn}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.Queryable.vwinf8twbn.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bklodz3kxf","Integrity":"K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.Queryable.vwinf8twbn.wasm","FileLength":21387,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hz1tpel2o0-{0}-9rl4gopayw-9rl4gopayw.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.Http#[.{fingerprint=9rl4gopayw}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Http.9rl4gopayw.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"u8euvk1cpm","Integrity":"Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Http.9rl4gopayw.wasm","FileLength":117194,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i30lqfoca8-{0}-3f1khl8k32-3f1khl8k32.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.ServiceModel.Web#[.{fingerprint=3f1khl8k32}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ServiceModel.Web.3f1khl8k32.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"lav6j5stx6","Integrity":"E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ServiceModel.Web.3f1khl8k32.wasm","FileLength":2547,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i7dsezujyr-{0}-kv9gl8mgag-kv9gl8mgag.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.FileVersionInfo#[.{fingerprint=kv9gl8mgag}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"j4wrreo1h8","Integrity":"Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm","FileLength":5132,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i7n8kqec4e-{0}-2mjytoh92q-2mjytoh92q.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Win32.Primitives#[.{fingerprint=2mjytoh92q}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Win32.Primitives.2mjytoh92q.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"4eibfa0pj4","Integrity":"JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Win32.Primitives.2mjytoh92q.wasm","FileLength":2216,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i8msa0z88m-{0}-x0vkqyycss-x0vkqyycss.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Reflection.Emit.ILGeneration#[.{fingerprint=x0vkqyycss}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"o2w8yjk0oz","Integrity":"YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm","FileLength":2283,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i9mn6d27vy-{0}-aeh9b1tcuc-aeh9b1tcuc.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.Debug#[.{fingerprint=aeh9b1tcuc}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Debug.aeh9b1tcuc.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0bwmu5jjo7","Integrity":"DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Debug.aeh9b1tcuc.wasm","FileLength":2284,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\iem13k4n35-{0}-yn3zcskz4j-yn3zcskz4j.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.Security#[.{fingerprint=yn3zcskz4j}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Security.yn3zcskz4j.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"cyh7fwwt9g","Integrity":"pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Security.yn3zcskz4j.wasm","FileLength":33688,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\iok845swr0-{0}-2a6wq9gv6d-2a6wq9gv6d.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Web#[.{fingerprint=2a6wq9gv6d}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Web.2a6wq9gv6d.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"jo2b7bl28x","Integrity":"UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Web.2a6wq9gv6d.wasm","FileLength":2127,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ixx2bqnfah-{0}-en4q13ibd5-en4q13ibd5.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.ComponentModel.EventBasedAsync#[.{fingerprint=en4q13ibd5}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"1t9lhk7tl2","Integrity":"G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm","FileLength":6777,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\j81tt1y6rj-{0}-xy5d3j3dn1-xy5d3j3dn1.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Serialization.Primitives#[.{fingerprint=xy5d3j3dn1}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"c44nsj5fc5","Integrity":"nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm","FileLength":5419,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jcwxb5s78i-{0}-uwq3fpef1w-uwq3fpef1w.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.AppContext#[.{fingerprint=uwq3fpef1w}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.AppContext.uwq3fpef1w.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ubhhfy85j7","Integrity":"Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.AppContext.uwq3fpef1w.wasm","FileLength":2115,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jg5bcwzjkb-{0}-clndu25lif-clndu25lif.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/dotnet.js#[.{fingerprint=clndu25lif}]?.map.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"i4y67pcvny","Integrity":"viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.js.map","FileLength":19302,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jhjpqkptaq-{0}-dyaxkkx3lb-dyaxkkx3lb.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography.Cng#[.{fingerprint=dyaxkkx3lb}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dyaxkkx3lb.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"y5vw5769bq","Integrity":"xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dyaxkkx3lb.wasm","FileLength":2476,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jimv6lw5j5-{0}-vpng0qt4u6-vpng0qt4u6.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.ComponentModel.DataAnnotations#[.{fingerprint=vpng0qt4u6}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"4mahw0a2fi","Integrity":"BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm","FileLength":2583,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jjcxq3ejac-{0}-b7qn4zpc0q-b7qn4zpc0q.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Reflection.DispatchProxy#[.{fingerprint=b7qn4zpc0q}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.DispatchProxy.b7qn4zpc0q.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"eqyyjrpmbo","Integrity":"VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.DispatchProxy.b7qn4zpc0q.wasm","FileLength":12687,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\k6k7jlyl2f-{0}-9lgg9wjd2a-9lgg9wjd2a.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Reflection.Metadata#[.{fingerprint=9lgg9wjd2a}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Metadata.9lgg9wjd2a.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"5mtud3umo5","Integrity":"bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Metadata.9lgg9wjd2a.wasm","FileLength":192211,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\keeokmerp8-{0}-8gz29xpyh3-8gz29xpyh3.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.FileProviders.Physical#[.{fingerprint=8gz29xpyh3}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"05hyyioq0r","Integrity":"RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm","FileLength":16448,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kmdzqqqt27-{0}-pl50n6qbg7-pl50n6qbg7.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Transactions#[.{fingerprint=pl50n6qbg7}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Transactions.pl50n6qbg7.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"llh2keu3u7","Integrity":"Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Transactions.pl50n6qbg7.wasm","FileLength":2384,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kmp1cwjk7f-{0}-szsdminork-szsdminork.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Xml.ReaderWriter#[.{fingerprint=szsdminork}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.ReaderWriter.szsdminork.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9ad0wbobz3","Integrity":"v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.ReaderWriter.szsdminork.wasm","FileLength":4021,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kstk0dzyw1-{0}-ud13mwbta3-ud13mwbta3.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions#[.{fingerprint=ud13mwbta3}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"w0dzf4xi6r","Integrity":"UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm","FileLength":21732,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kukm29h8dt-{0}-i9g92fmb9y-i9g92fmb9y.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO#[.{fingerprint=i9g92fmb9y}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.i9g92fmb9y.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"icnv0lnc0i","Integrity":"DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.i9g92fmb9y.wasm","FileLength":2280,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kwztau0oyy-{0}-38jcv8jeeu-38jcv8jeeu.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.WebProxy#[.{fingerprint=38jcv8jeeu}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebProxy.38jcv8jeeu.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"x8z2lgf060","Integrity":"8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebProxy.38jcv8jeeu.wasm","FileLength":5621,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kzc385ysv6-{0}-6j2ed42ac7-6j2ed42ac7.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.FileSystem.Primitives#[.{fingerprint=6j2ed42ac7}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.6j2ed42ac7.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"2e3l0cy7lg","Integrity":"apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.6j2ed42ac7.wasm","FileLength":2192,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\l2v44xhbzj-{0}-ozuva4e3vv-ozuva4e3vv.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.FileSystemGlobbing#[.{fingerprint=ozuva4e3vv}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"4zdwe30v1x","Integrity":"QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm","FileLength":16965,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\lbcric48ji-{0}-ruehy0ud5k-ruehy0ud5k.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Threading.AccessControl#[.{fingerprint=ruehy0ud5k}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.AccessControl.ruehy0ud5k.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"sxqijfks4m","Integrity":"INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.AccessControl.ruehy0ud5k.wasm","FileLength":8489,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\lgx6p69ons-{0}-ou2dt7nfo2-ou2dt7nfo2.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.DiagnosticSource#[.{fingerprint=ou2dt7nfo2}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ehzhw0b8x3","Integrity":"4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm","FileLength":81033,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\luuq2ppq8r-{0}-k8343mqust-k8343mqust.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.NetworkInformation#[.{fingerprint=k8343mqust}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.NetworkInformation.k8343mqust.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"fconal7ces","Integrity":"Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.NetworkInformation.k8343mqust.wasm","FileLength":12728,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\lvyasyre47-{0}-5lvzz4lks7-5lvzz4lks7.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.Pipes.AccessControl#[.{fingerprint=5lvzz4lks7}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.5lvzz4lks7.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"gekrupgc08","Integrity":"+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.5lvzz4lks7.wasm","FileLength":5567,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ly70359tb6-{0}-7bcdd4uolu-7bcdd4uolu.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography.Primitives#[.{fingerprint=7bcdd4uolu}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.7bcdd4uolu.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"h32r6tttj6","Integrity":"o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.7bcdd4uolu.wasm","FileLength":2347,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m02xm5ue7p-{0}-4dnz7b15a9-4dnz7b15a9.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography.Algorithms#[.{fingerprint=4dnz7b15a9}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ybki534pum","Integrity":"kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm","FileLength":2712,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m0i5wjywsx-{0}-v4mfyzbte8-v4mfyzbte8.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Reflection#[.{fingerprint=v4mfyzbte8}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.v4mfyzbte8.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"c0fw9fozii","Integrity":"/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.v4mfyzbte8.wasm","FileLength":2471,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m10se0yx1g-{0}-tqz9dyg6j7-tqz9dyg6j7.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Text.Encoding.Extensions#[.{fingerprint=tqz9dyg6j7}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encoding.Extensions.tqz9dyg6j7.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"2opuvzttkl","Integrity":"jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encoding.Extensions.tqz9dyg6j7.wasm","FileLength":2258,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m3i6jtsneo-{0}-oi9xn5s0h3-oi9xn5s0h3.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.FileSystem.AccessControl#[.{fingerprint=oi9xn5s0h3}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"g9qipdfnsf","Integrity":"dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm","FileLength":8474,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m428rlfc87-{0}-v9i07bnq2k-v9i07bnq2k.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.FileSystem.Watcher#[.{fingerprint=v9i07bnq2k}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.v9i07bnq2k.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"8n2p85wzfo","Integrity":"XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.v9i07bnq2k.wasm","FileLength":8751,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\me1or200pv-{0}-ddbsai2xh9-ddbsai2xh9.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.CompilerServices.VisualC#[.{fingerprint=ddbsai2xh9}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"v9gpkfoy8o","Integrity":"XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm","FileLength":3049,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mk5261bq2v-{0}-sgbc42zrd8-sgbc42zrd8.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.Compression#[.{fingerprint=sgbc42zrd8}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.sgbc42zrd8.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"66qmqm0jtr","Integrity":"/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.sgbc42zrd8.wasm","FileLength":64786,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mkj61d469a-{0}-qfpmfujegm-qfpmfujegm.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Serialization#[.{fingerprint=qfpmfujegm}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.qfpmfujegm.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"1z5o61ix8q","Integrity":"wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.qfpmfujegm.wasm","FileLength":2505,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mkyh3erkm9-{0}-zg37o92yol-zg37o92yol.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.HttpListener#[.{fingerprint=zg37o92yol}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.HttpListener.zg37o92yol.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"qfnuawkynh","Integrity":"2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.HttpListener.zg37o92yol.wasm","FileLength":16053,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mwxs9jgpi5-{0}-zku96ychk7-zku96ychk7.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net#[.{fingerprint=zku96ychk7}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.zku96ychk7.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ir1et9ocs2","Integrity":"boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.zku96ychk7.wasm","FileLength":2754,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mx4r46cpu7-{0}-9mjwvs1qyp-9mjwvs1qyp.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.AspNetCore.Components.WebAssembly#[.{fingerprint=9mjwvs1qyp}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"n094wzgwgi","Integrity":"WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm","FileLength":61540,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\na7pgc18jv-{0}-8ll4gxwfs1-8ll4gxwfs1.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.IsolatedStorage#[.{fingerprint=8ll4gxwfs1}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.IsolatedStorage.8ll4gxwfs1.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"huqxar7psw","Integrity":"KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.IsolatedStorage.8ll4gxwfs1.wasm","FileLength":9369,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\niv8zsbxhl-{0}-1zv6wuzklu-1zv6wuzklu.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Collections.Concurrent#[.{fingerprint=1zv6wuzklu}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.Concurrent.1zv6wuzklu.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bq2g07ai1i","Integrity":"LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.Concurrent.1zv6wuzklu.wasm","FileLength":33673,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\nu73pdet4t-{0}-u0y5oi3qdg-u0y5oi3qdg.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.ComponentModel.Primitives#[.{fingerprint=u0y5oi3qdg}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.Primitives.u0y5oi3qdg.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"8scmms1euz","Integrity":"yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.Primitives.u0y5oi3qdg.wasm","FileLength":13423,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\nvjr9jta08-{0}-4ulc930few-4ulc930few.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Globalization#[.{fingerprint=4ulc930few}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Globalization.4ulc930few.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0y2gwsj5of","Integrity":"GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Globalization.4ulc930few.wasm","FileLength":2275,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\o9xpqh7wzb-{0}-j8qjkqg593-j8qjkqg593.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Configuration#[.{fingerprint=j8qjkqg593}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Configuration.j8qjkqg593.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ipksztdpap","Integrity":"KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Configuration.j8qjkqg593.wasm","FileLength":3122,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ogcs9ucvrf-{0}-7weoywtuje-7weoywtuje.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security.SecureString#[.{fingerprint=7weoywtuje}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.SecureString.7weoywtuje.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"tplt9bq51t","Integrity":"z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.SecureString.7weoywtuje.wasm","FileLength":2205,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ohlfbgu01g-{0}-hyku0ejwye-hyku0ejwye.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Threading.Tasks.Parallel#[.{fingerprint=hyku0ejwye}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.hyku0ejwye.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ze0qpj2ft1","Integrity":"m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.hyku0ejwye.wasm","FileLength":21088,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\oix89w3uk2-{0}-y4ydx3rk2c-y4ydx3rk2c.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Logging#[.{fingerprint=y4ydx3rk2c}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Logging.y4ydx3rk2c.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"mwqfamp4zc","Integrity":"CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Logging.y4ydx3rk2c.wasm","FileLength":18618,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ozc2mb3rdz-{0}-zmb03w0weu-zmb03w0weu.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions#[.{fingerprint=zmb03w0weu}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"dqcssuy61d","Integrity":"i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm","FileLength":5101,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ozd9l95cy8-{0}-utzdm9sw2p-utzdm9sw2p.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.Sockets#[.{fingerprint=utzdm9sw2p}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Sockets.utzdm9sw2p.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"46c7yu1zqk","Integrity":"XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Sockets.utzdm9sw2p.wasm","FileLength":22918,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\p0pe0blimm-{0}-rp2jklkmsi-rp2jklkmsi.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Linq#[.{fingerprint=rp2jklkmsi}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.rp2jklkmsi.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"npq7r9d4h5","Integrity":"+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.rp2jklkmsi.wasm","FileLength":74838,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\p1p1dduoka-{0}-3t7flfwg7o-3t7flfwg7o.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Reflection.Emit#[.{fingerprint=3t7flfwg7o}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Emit.3t7flfwg7o.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"7klo5pzc4x","Integrity":"2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Emit.3t7flfwg7o.wasm","FileLength":53251,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\pfi56k79hn-{0}-3jfxpyq4in-3jfxpyq4in.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Web.HttpUtility#[.{fingerprint=3jfxpyq4in}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Web.HttpUtility.3jfxpyq4in.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"028nsingxa","Integrity":"eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Web.HttpUtility.3jfxpyq4in.wasm","FileLength":9544,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\pro4ajsvfg-{0}-1r0ampr2q1-1r0ampr2q1.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.JSInterop#[.{fingerprint=1r0ampr2q1}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.JSInterop.1r0ampr2q1.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"83n0xwuttg","Integrity":"5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.JSInterop.1r0ampr2q1.wasm","FileLength":27523,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\pxy8xfz0ow-{0}-21z0t9w6sq-21z0t9w6sq.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.Pipelines#[.{fingerprint=21z0t9w6sq}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Pipelines.21z0t9w6sq.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"qhvaeyhv35","Integrity":"7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Pipelines.21z0t9w6sq.wasm","FileLength":30368,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\q6am3o85wz-{0}-84wojkejb4-84wojkejb4.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Collections.Specialized#[.{fingerprint=84wojkejb4}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.Specialized.84wojkejb4.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0egm0291ft","Integrity":"iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.Specialized.84wojkejb4.wasm","FileLength":16334,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qlfvznror3-{0}-zrueb40r85-zrueb40r85.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.AspNetCore.Components.Forms#[.{fingerprint=zrueb40r85}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"83yupvvf0z","Integrity":"FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm","FileLength":17376,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qrheoix2ig-{0}-f3fiwdwb50-f3fiwdwb50.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Resources.ResourceManager#[.{fingerprint=f3fiwdwb50}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Resources.ResourceManager.f3fiwdwb50.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0mnxpc9lyj","Integrity":"yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Resources.ResourceManager.f3fiwdwb50.wasm","FileLength":2248,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qt3o35adbl-{0}-okgnp5v9bw-okgnp5v9bw.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Xml.XmlSerializer#[.{fingerprint=okgnp5v9bw}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XmlSerializer.okgnp5v9bw.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"tjd36i6n6w","Integrity":"WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XmlSerializer.okgnp5v9bw.wasm","FileLength":2861,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qz9h56e7z8-{0}-kx7meqmil2-kx7meqmil2.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/dotnet#[.{fingerprint=kx7meqmil2}]?.js.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9d4679pf7x","Integrity":"Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.js","FileLength":25310,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\r0xa1dsvvu-{0}-4nat0rber0-4nat0rber0.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Linq.Expressions#[.{fingerprint=4nat0rber0}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.Expressions.4nat0rber0.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9tived7r2w","Integrity":"Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.Expressions.4nat0rber0.wasm","FileLength":213264,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\r1c02csw1u-{0}-k5rgagff9o-k5rgagff9o.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Collections.NonGeneric#[.{fingerprint=k5rgagff9o}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.NonGeneric.k5rgagff9o.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"dvlsa6rrt1","Integrity":"RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.NonGeneric.k5rgagff9o.wasm","FileLength":14717,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ra6e7v46m5-{0}-zjgi7nrlno-zjgi7nrlno.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Xml#[.{fingerprint=zjgi7nrlno}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.zjgi7nrlno.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"7bphnl6e9l","Integrity":"Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.zjgi7nrlno.wasm","FileLength":4217,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\rma0vjtbld-{0}-s3i62rxr2p-s3i62rxr2p.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Threading.Channels#[.{fingerprint=s3i62rxr2p}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Channels.s3i62rxr2p.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"p7z829j3zv","Integrity":"u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Channels.s3i62rxr2p.wasm","FileLength":24416,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\rsffl3vumf-{0}-6do4olk7ib-6do4olk7ib.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.MemoryMappedFiles#[.{fingerprint=6do4olk7ib}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.6do4olk7ib.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"4dma9hit54","Integrity":"uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.6do4olk7ib.wasm","FileLength":17013,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\rz1qtq0z6d-{0}-dmew7c9amv-dmew7c9amv.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography.X509Certificates#[.{fingerprint=dmew7c9amv}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"qcmgapxu82","Integrity":"KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm","FileLength":2671,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\s4opith0ak-{0}-thew1o6jcx-thew1o6jcx.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Configuration.Abstractions#[.{fingerprint=thew1o6jcx}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ghofgzfbll","Integrity":"TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm","FileLength":8096,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sl0sft7bkv-{0}-7ssqvw2wfy-7ssqvw2wfy.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security.Principal.Windows#[.{fingerprint=7ssqvw2wfy}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Principal.Windows.7ssqvw2wfy.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"isx6bre34i","Integrity":"ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Principal.Windows.7ssqvw2wfy.wasm","FileLength":11089,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sm8o0gwk5g-{0}-904tnen1ot-904tnen1ot.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Data.DataSetExtensions#[.{fingerprint=904tnen1ot}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Data.DataSetExtensions.904tnen1ot.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"52ipu6ljxy","Integrity":"re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Data.DataSetExtensions.904tnen1ot.wasm","FileLength":2081,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sn0mpm6uvc-{0}-1q3x7vre4l-1q3x7vre4l.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Logging.Abstractions#[.{fingerprint=1q3x7vre4l}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"vw2uqtemv2","Integrity":"wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm","FileLength":24489,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sz4qmwa0cz-{0}-j436yqvrg9-j436yqvrg9.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.ServicePoint#[.{fingerprint=j436yqvrg9}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.ServicePoint.j436yqvrg9.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0t2wur1hsg","Integrity":"NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.ServicePoint.j436yqvrg9.wasm","FileLength":2179,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\szit2ufpnx-{0}-tx9namivq6-tx9namivq6.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Resources.Writer#[.{fingerprint=tx9namivq6}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Resources.Writer.tx9namivq6.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"3pift1if2v","Integrity":"mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Resources.Writer.tx9namivq6.wasm","FileLength":7584,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\t2mopjsgs5-{0}-37wbq4jfsy-37wbq4jfsy.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.ServerSentEvents#[.{fingerprint=37wbq4jfsy}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.ServerSentEvents.37wbq4jfsy.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"6ojmnuk21h","Integrity":"FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.ServerSentEvents.37wbq4jfsy.wasm","FileLength":14667,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\t7lpa3lwov-{0}-grloe2ix5j-grloe2ix5j.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.Quic#[.{fingerprint=grloe2ix5j}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Quic.grloe2ix5j.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"3nqwdf9vdo","Integrity":"IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Quic.grloe2ix5j.wasm","FileLength":10934,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tdpp3qw974-{0}-n2ngq6as7g-n2ngq6as7g.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Reflection.Primitives#[.{fingerprint=n2ngq6as7g}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Primitives.n2ngq6as7g.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"lahejca87r","Integrity":"DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Primitives.n2ngq6as7g.wasm","FileLength":2362,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tezhiquus4-{0}-6jkolue1ka-6jkolue1ka.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Localization.Abstractions#[.{fingerprint=6jkolue1ka}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"zynb14uzz8","Integrity":"5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm","FileLength":3828,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tmgotixosa-{0}-1l8xruz8uh-1l8xruz8uh.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Numerics.Vectors#[.{fingerprint=1l8xruz8uh}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Numerics.Vectors.1l8xruz8uh.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"1zn0i5c3ic","Integrity":"XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Numerics.Vectors.1l8xruz8uh.wasm","FileLength":2275,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\to8tkrj8cc-{0}-p9bjzp5pyo-p9bjzp5pyo.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Threading.Tasks.Dataflow#[.{fingerprint=p9bjzp5pyo}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"42hyvsnaqu","Integrity":"3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm","FileLength":73245,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ttu14uxg7m-{0}-hdzn84g6uh-hdzn84g6uh.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.WebSockets#[.{fingerprint=hdzn84g6uh}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebSockets.hdzn84g6uh.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"rwv4qr12j8","Integrity":"dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebSockets.hdzn84g6uh.wasm","FileLength":40574,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tvvpa50077-{0}-bw79ix589z-bw79ix589z.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Windows#[.{fingerprint=bw79ix589z}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Windows.bw79ix589z.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"24566f8mt4","Integrity":"YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Windows.bw79ix589z.wasm","FileLength":2281,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\u4abyqnekj-{0}-2rz5zbidnd-2rz5zbidnd.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Options#[.{fingerprint=2rz5zbidnd}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Options.2rz5zbidnd.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"v0o0qd5zi3","Integrity":"nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Options.2rz5zbidnd.wasm","FileLength":23512,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ug9ge1behf-{0}-ycbzh0sbjd-ycbzh0sbjd.gz","SourceId":"OnProfNext.Client","SourceType":"Discovered","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"Layout/ReconnectModal#[.{fingerprint=ycbzh0sbjd}]?.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\Layout\\ReconnectModal.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"e94n4p5e08","Integrity":"rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\Layout\\ReconnectModal.razor.js","FileLength":787,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ui1ul8tpby-{0}-50dzekuu9x-50dzekuu9x.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.NameResolution#[.{fingerprint=50dzekuu9x}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.NameResolution.50dzekuu9x.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"3k34wxzq9g","Integrity":"A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.NameResolution.50dzekuu9x.wasm","FileLength":5933,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\uu7wfp4do2-{0}-0lu5m0tfx2-0lu5m0tfx2.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography.Encoding#[.{fingerprint=0lu5m0tfx2}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"fw6kh8k1tw","Integrity":"EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm","FileLength":2280,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\uz6wr238mp-{0}-cig01jt23c-cig01jt23c.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Transactions.Local#[.{fingerprint=cig01jt23c}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Transactions.Local.cig01jt23c.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"vj5q1xzbda","Integrity":"ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Transactions.Local.cig01jt23c.wasm","FileLength":51451,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\v9jar86jna-{0}-20t5iw27a6-20t5iw27a6.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography.Csp#[.{fingerprint=20t5iw27a6}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Csp.20t5iw27a6.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ye9z1wtmih","Integrity":"lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Csp.20t5iw27a6.wasm","FileLength":2335,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vbwtfewq79-{0}-66stpp682q-66stpp682q.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/blazor.webassembly.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\blazor.webassembly.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ob0lsmap0j","Integrity":"5Igt0nmzlphL04ESrb7MBY9ts2dhz5i3UJ+aCoJbK0Y=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\blazor.webassembly.js","FileLength":18724,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vhumncwy1p-{0}-ouivavlhyy-ouivavlhyy.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Configuration.FileExtensions#[.{fingerprint=ouivavlhyy}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"7xgfmwx4a3","Integrity":"a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm","FileLength":7985,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vjl93wt59v-{0}-xosph8vk4a-xosph8vk4a.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.Pipes#[.{fingerprint=xosph8vk4a}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Pipes.xosph8vk4a.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"cwn8d6c7ve","Integrity":"BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Pipes.xosph8vk4a.wasm","FileLength":11401,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vnqjd4ny0q-{0}-fktu0k4b93-fktu0k4b93.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.FileSystem#[.{fingerprint=fktu0k4b93}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.fktu0k4b93.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"gx6nm5qbny","Integrity":"1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.fktu0k4b93.wasm","FileLength":2303,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vtgrfa0p11-{0}-ymwga5opgl-ymwga5opgl.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Reflection.Extensions#[.{fingerprint=ymwga5opgl}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Extensions.ymwga5opgl.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"cx1gfip5ma","Integrity":"QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Extensions.ymwga5opgl.wasm","FileLength":2163,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\w2iaa8sc3u-{0}-k6079czmkm-k6079czmkm.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/MudBlazor#[.{fingerprint=k6079czmkm}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\MudBlazor.k6079czmkm.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"pzzlmu9pfo","Integrity":"dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\MudBlazor.k6079czmkm.wasm","FileLength":2249638,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\w4xw0gq3pj-{0}-s9ic8sulfi-s9ic8sulfi.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Text.Encoding#[.{fingerprint=s9ic8sulfi}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encoding.s9ic8sulfi.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"wkro82bmx3","Integrity":"oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encoding.s9ic8sulfi.wasm","FileLength":2244,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\w9uuhprkgr-{0}-j08okd90mo-j08okd90mo.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.TraceSource#[.{fingerprint=j08okd90mo}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.TraceSource.j08okd90mo.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"298gstgzqo","Integrity":"xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.TraceSource.j08okd90mo.wasm","FileLength":20119,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wgdliulfxe-{0}-z1eotzj35n-z1eotzj35n.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.Contracts#[.{fingerprint=z1eotzj35n}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Contracts.z1eotzj35n.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"33jofr2vn1","Integrity":"Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Contracts.z1eotzj35n.wasm","FileLength":2392,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wi7nbv7im4-{0}-nfbg9v9bn0-nfbg9v9bn0.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Threading.Thread#[.{fingerprint=nfbg9v9bn0}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Thread.nfbg9v9bn0.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"mdkrp4y6nu","Integrity":"FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Thread.nfbg9v9bn0.wasm","FileLength":2338,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wj9cgpvw17-{0}-cjsvkufomv-cjsvkufomv.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.ComponentModel.Annotations#[.{fingerprint=cjsvkufomv}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.Annotations.cjsvkufomv.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"vvzp0orytg","Integrity":"6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.Annotations.cjsvkufomv.wasm","FileLength":35777,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wqsee81gb1-{0}-07hq35kp92-07hq35kp92.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Text.Encodings.Web#[.{fingerprint=07hq35kp92}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encodings.Web.07hq35kp92.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"uo8zg9bp7s","Integrity":"vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encodings.Web.07hq35kp92.wasm","FileLength":22077,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ww3wnv8b6s-{0}-isetn6xlxa-isetn6xlxa.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Xml.XmlDocument#[.{fingerprint=isetn6xlxa}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XmlDocument.isetn6xlxa.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"dz24ujiuy1","Integrity":"520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XmlDocument.isetn6xlxa.wasm","FileLength":2362,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wxwyng4xk0-{0}-pez04wd9mo-pez04wd9mo.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Serialization.Json#[.{fingerprint=pez04wd9mo}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Json.pez04wd9mo.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"llewqzbb1s","Integrity":"F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Json.pez04wd9mo.wasm","FileLength":2264,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\xfyu8pi705-{0}-rbzkmij005-rbzkmij005.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.WebHeaderCollection#[.{fingerprint=rbzkmij005}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebHeaderCollection.rbzkmij005.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"pnu0ylbmbp","Integrity":"y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebHeaderCollection.rbzkmij005.wasm","FileLength":10208,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\xo45czuveq-{0}-11wk1hhnfk-11wk1hhnfk.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Xml.XPath#[.{fingerprint=11wk1hhnfk}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XPath.11wk1hhnfk.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"214is7vbw1","Integrity":"5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XPath.11wk1hhnfk.wasm","FileLength":2320,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\xtefui8dpc-{0}-c9z9nieytf-c9z9nieytf.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Resources.Reader#[.{fingerprint=c9z9nieytf}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Resources.Reader.c9z9nieytf.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"6sus8qhlnm","Integrity":"1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Resources.Reader.c9z9nieytf.wasm","FileLength":2131,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\y20kxtztgi-{0}-0h75nr7qqd-0h75nr7qqd.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Data#[.{fingerprint=0h75nr7qqd}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Data.0h75nr7qqd.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"xg9obt7g2f","Integrity":"8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Data.0h75nr7qqd.wasm","FileLength":5022,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\yee81ivl95-{0}-tptq2av103-tptq2av103.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/icudt_EFIGS#[.{fingerprint=tptq2av103}]!.dat.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\icudt_EFIGS.tptq2av103.dat","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"fnxfkgr4e8","Integrity":"G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\icudt_EFIGS.tptq2av103.dat","FileLength":196037,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ymz6pz7ujf-{0}-bnz7jo4op8-bnz7jo4op8.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.Tracing#[.{fingerprint=bnz7jo4op8}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Tracing.bnz7jo4op8.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"agm35xp769","Integrity":"ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Tracing.bnz7jo4op8.wasm","FileLength":2509,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\yswenxxy60-{0}-00vh2kvsiz-00vh2kvsiz.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.Ping#[.{fingerprint=00vh2kvsiz}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Ping.00vh2kvsiz.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"4r6k7kj18g","Integrity":"MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Ping.00vh2kvsiz.wasm","FileLength":7542,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\yva5srnvsu-{0}-452y5fjxmv-452y5fjxmv.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.CSharp#[.{fingerprint=452y5fjxmv}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.CSharp.452y5fjxmv.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"xagztf6a3s","Integrity":"SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.CSharp.452y5fjxmv.wasm","FileLength":131862,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ywpa2qpg55-{0}-lzl7igry1t-lzl7igry1t.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Threading.Overlapped#[.{fingerprint=lzl7igry1t}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Overlapped.lzl7igry1t.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"qzi45nrx8u","Integrity":"2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Overlapped.lzl7igry1t.wasm","FileLength":2317,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zc08r46902-{0}-nv5izr3rt6-nv5izr3rt6.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.WebSockets.Client#[.{fingerprint=nv5izr3rt6}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebSockets.Client.nv5izr3rt6.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"whi0oxky18","Integrity":"XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebSockets.Client.nv5izr3rt6.wasm","FileLength":17919,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zip5atfnk1-{0}-3r0soomurg-3r0soomurg.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Memory#[.{fingerprint=3r0soomurg}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Memory.3r0soomurg.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"npdk29xyk6","Integrity":"lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Memory.3r0soomurg.wasm","FileLength":20575,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zlxnfbxifc-{0}-a95c1olw0i-a95c1olw0i.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.ServiceProcess#[.{fingerprint=a95c1olw0i}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ServiceProcess.a95c1olw0i.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"me2z6mjve0","Integrity":"EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ServiceProcess.a95c1olw0i.wasm","FileLength":2307,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zpx4nb1yyz-{0}-m3mxap0jif-m3mxap0jif.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.AspNetCore.Metadata#[.{fingerprint=m3mxap0jif}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ervw32usw9","Integrity":"NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm","FileLength":2466,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zx6kj3xmnr-{0}-esodb2rpbi-esodb2rpbi.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.InteropServices.RuntimeInformation#[.{fingerprint=esodb2rpbi}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"hjiemymc38","Integrity":"XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm","FileLength":2159,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zxgtro8yo7-{0}-t9gqpmtbpb-t9gqpmtbpb.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.Http.Json#[.{fingerprint=t9gqpmtbpb}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Http.Json.t9gqpmtbpb.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"brrohyqrst","Integrity":"h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Http.Json.t9gqpmtbpb.wasm","FileLength":19382,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zy4nys0fbm-{0}-r8ar2pd94c-r8ar2pd94c.gz","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.Requests#[.{fingerprint=r8ar2pd94c}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Requests.r8ar2pd94c.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"72b6rw0q6a","Integrity":"gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Requests.r8ar2pd94c.wasm","FileLength":20293,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\scopedcss\\bundle\\OnProfNext.Client.styles.css","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\scopedcss\\bundle\\","BasePath":"/","RelativePath":"OnProfNext.Client#[.{fingerprint}]?.styles.css","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"ScopedCss","AssetTraitValue":"ApplicationBundle","Fingerprint":"uzl7ca9j9c","Integrity":"5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\scopedcss\\bundle\\OnProfNext.Client.styles.css","FileLength":6834,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\scopedcss\\projectbundle\\OnProfNext.Client.bundle.scp.css","SourceId":"OnProfNext.Client","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\scopedcss\\projectbundle\\","BasePath":"/","RelativePath":"OnProfNext.Client#[.{fingerprint}]!.bundle.scp.css","AssetKind":"All","AssetMode":"Reference","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"ScopedCss","AssetTraitValue":"ProjectBundle","Fingerprint":"uzl7ca9j9c","Integrity":"5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\scopedcss\\projectbundle\\OnProfNext.Client.bundle.scp.css","FileLength":6834,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\appsettings.Development.json","SourceId":"OnProfNext.Client","SourceType":"Discovered","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\","BasePath":"/","RelativePath":"appsettings.Development#[.{fingerprint}]?.json","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"settings","Fingerprint":"x0ueugt8gp","Integrity":"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\appsettings.Development.json","FileLength":119,"LastWriteTime":"2026-03-18T16:33:32+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\appsettings.json","SourceId":"OnProfNext.Client","SourceType":"Discovered","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\","BasePath":"/","RelativePath":"appsettings#[.{fingerprint}]?.json","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"settings","Fingerprint":"x0ueugt8gp","Integrity":"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\appsettings.json","FileLength":119,"LastWriteTime":"2026-03-18T16:33:32+00:00"}],"Endpoints":[{"Route":"Layout/ReconnectModal.razor.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\Layout\\ReconnectModal.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2746"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4="},{"Name":"script-type","Value":"module"}]},{"Route":"Layout/ReconnectModal.razor.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ug9ge1behf-{0}-ycbzh0sbjd-ycbzh0sbjd.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001269035533"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"787"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4="},{"Name":"original-resource","Value":"\"QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4=\""},{"Name":"script-type","Value":"module"}]},{"Route":"Layout/ReconnectModal.razor.js.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ug9ge1behf-{0}-ycbzh0sbjd-ycbzh0sbjd.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"787"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA="}]},{"Route":"Layout/ReconnectModal.ycbzh0sbjd.razor.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\Layout\\ReconnectModal.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2746"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ycbzh0sbjd"},{"Name":"integrity","Value":"sha256-QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4="},{"Name":"label","Value":"Layout/ReconnectModal.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"Layout/ReconnectModal.ycbzh0sbjd.razor.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ug9ge1behf-{0}-ycbzh0sbjd-ycbzh0sbjd.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001269035533"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"787"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ycbzh0sbjd"},{"Name":"integrity","Value":"sha256-QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4="},{"Name":"label","Value":"Layout/ReconnectModal.razor.js"},{"Name":"original-resource","Value":"\"QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4=\""},{"Name":"script-type","Value":"module"}]},{"Route":"Layout/ReconnectModal.ycbzh0sbjd.razor.js.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ug9ge1behf-{0}-ycbzh0sbjd-ycbzh0sbjd.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"787"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ycbzh0sbjd"},{"Name":"integrity","Value":"sha256-rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA="},{"Name":"label","Value":"Layout/ReconnectModal.razor.js.gz"}]},{"Route":"OnProfNext.Client.bundle.scp.css","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\808kb9dz89-{0}-uzl7ca9j9c-uzl7ca9j9c.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000690131125"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1448"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4="},{"Name":"original-resource","Value":"\"5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4=\""}]},{"Route":"OnProfNext.Client.bundle.scp.css","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\scopedcss\\projectbundle\\OnProfNext.Client.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6834"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4="}]},{"Route":"OnProfNext.Client.bundle.scp.css.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\808kb9dz89-{0}-uzl7ca9j9c-uzl7ca9j9c.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1448"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o="}]},{"Route":"OnProfNext.Client.styles.css","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hd2b1ihltm-{0}-uzl7ca9j9c-uzl7ca9j9c.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000690131125"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1448"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4="},{"Name":"original-resource","Value":"\"5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4=\""}]},{"Route":"OnProfNext.Client.styles.css","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\scopedcss\\bundle\\OnProfNext.Client.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6834"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4="}]},{"Route":"OnProfNext.Client.styles.css.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hd2b1ihltm-{0}-uzl7ca9j9c-uzl7ca9j9c.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1448"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o="}]},{"Route":"OnProfNext.Client.uzl7ca9j9c.bundle.scp.css","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\808kb9dz89-{0}-uzl7ca9j9c-uzl7ca9j9c.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000690131125"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1448"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uzl7ca9j9c"},{"Name":"integrity","Value":"sha256-5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4="},{"Name":"label","Value":"OnProfNext.Client.bundle.scp.css"},{"Name":"original-resource","Value":"\"5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4=\""}]},{"Route":"OnProfNext.Client.uzl7ca9j9c.bundle.scp.css","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\scopedcss\\projectbundle\\OnProfNext.Client.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6834"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uzl7ca9j9c"},{"Name":"integrity","Value":"sha256-5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4="},{"Name":"label","Value":"OnProfNext.Client.bundle.scp.css"}]},{"Route":"OnProfNext.Client.uzl7ca9j9c.bundle.scp.css.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\808kb9dz89-{0}-uzl7ca9j9c-uzl7ca9j9c.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1448"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uzl7ca9j9c"},{"Name":"integrity","Value":"sha256-UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o="},{"Name":"label","Value":"OnProfNext.Client.bundle.scp.css.gz"}]},{"Route":"OnProfNext.Client.uzl7ca9j9c.styles.css","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hd2b1ihltm-{0}-uzl7ca9j9c-uzl7ca9j9c.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000690131125"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1448"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uzl7ca9j9c"},{"Name":"integrity","Value":"sha256-5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4="},{"Name":"label","Value":"OnProfNext.Client.styles.css"},{"Name":"original-resource","Value":"\"5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4=\""}]},{"Route":"OnProfNext.Client.uzl7ca9j9c.styles.css","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\scopedcss\\bundle\\OnProfNext.Client.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6834"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uzl7ca9j9c"},{"Name":"integrity","Value":"sha256-5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4="},{"Name":"label","Value":"OnProfNext.Client.styles.css"}]},{"Route":"OnProfNext.Client.uzl7ca9j9c.styles.css.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hd2b1ihltm-{0}-uzl7ca9j9c-uzl7ca9j9c.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1448"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uzl7ca9j9c"},{"Name":"integrity","Value":"sha256-UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o="},{"Name":"label","Value":"OnProfNext.Client.styles.css.gz"}]},{"Route":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js","AssetFile":"C:\\Users\\wiela\\.nuget\\packages\\microsoft.dotnet.hotreload.webassembly.browser\\10.0.201\\staticwebassets\\Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1862"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"A8e6zZwhOqf7lDQqbbCYcAUv4wGE9aQxOo4WyYxR//0=\""},{"Name":"Last-Modified","Value":"Wed, 04 Mar 2026 01:26:18 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"dependency-group","Value":"js-initializer"},{"Name":"fingerprint","Value":"99zm1jdh75"},{"Name":"integrity","Value":"sha256-A8e6zZwhOqf7lDQqbbCYcAUv4wGE9aQxOo4WyYxR//0="},{"Name":"label","Value":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js","AssetFile":"C:\\Users\\wiela\\.nuget\\packages\\microsoft.dotnet.hotreload.webassembly.browser\\10.0.201\\staticwebassets\\Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1862"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"A8e6zZwhOqf7lDQqbbCYcAUv4wGE9aQxOo4WyYxR//0=\""},{"Name":"Last-Modified","Value":"Wed, 04 Mar 2026 01:26:18 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"dependency-group","Value":"js-initializer"},{"Name":"integrity","Value":"sha256-A8e6zZwhOqf7lDQqbbCYcAUv4wGE9aQxOo4WyYxR//0="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/MudBlazor/MudBlazor.min.8dleymzaev.js","AssetFile":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"64944"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"VHJcGholtUHNobadpTrhyE/VCi90X4p12vYD83bzI04=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:27 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8dleymzaev"},{"Name":"integrity","Value":"sha256-VHJcGholtUHNobadpTrhyE/VCi90X4p12vYD83bzI04="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js"}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"607258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"kBmVfU2BqUZUT8HPz7NUnkObDjxYKbSWXF5q33paHM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:28 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kBmVfU2BqUZUT8HPz7NUnkObDjxYKbSWXF5q33paHM0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"64944"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"VHJcGholtUHNobadpTrhyE/VCi90X4p12vYD83bzI04=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:27 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VHJcGholtUHNobadpTrhyE/VCi90X4p12vYD83bzI04="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.0ykner63ol.map","AssetFile":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\MudBlazor.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"236222"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"yAPYxO0UcV5YvjmoVWBh8O+tMbwO9AMZv1RMPdpxE0Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:27 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0ykner63ol"},{"Name":"integrity","Value":"sha256-yAPYxO0UcV5YvjmoVWBh8O+tMbwO9AMZv1RMPdpxE0Q="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js.map"}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.map","AssetFile":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\MudBlazor.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"236222"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"yAPYxO0UcV5YvjmoVWBh8O+tMbwO9AMZv1RMPdpxE0Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:27 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yAPYxO0UcV5YvjmoVWBh8O+tMbwO9AMZv1RMPdpxE0Q="}]},{"Route":"_content/MudBlazor/MudBlazor.min.o2b68hjqqd.css","AssetFile":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"607258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"kBmVfU2BqUZUT8HPz7NUnkObDjxYKbSWXF5q33paHM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:28 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"o2b68hjqqd"},{"Name":"integrity","Value":"sha256-kBmVfU2BqUZUT8HPz7NUnkObDjxYKbSWXF5q33paHM0="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.css"}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"45333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"roqc1km2rj"},{"Name":"integrity","Value":"sha256-G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Authorization.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5g3srlr8jx-{0}-roqc1km2rj-roqc1km2rj.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000050676532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"roqc1km2rj"},{"Name":"integrity","Value":"sha256-G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Authorization.wasm"},{"Name":"original-resource","Value":"\"G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5g3srlr8jx-{0}-roqc1km2rj-roqc1km2rj.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"roqc1km2rj"},{"Name":"integrity","Value":"sha256-6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Authorization.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"45333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc="}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5g3srlr8jx-{0}-roqc1km2rj-roqc1km2rj.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000050676532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc="},{"Name":"original-resource","Value":"\"G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5g3srlr8jx-{0}-roqc1km2rj-roqc1km2rj.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qlfvznror3-{0}-zrueb40r85-zrueb40r85.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000057547333"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17376"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ="},{"Name":"original-resource","Value":"\"sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qlfvznror3-{0}-zrueb40r85-zrueb40r85.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17376"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zrueb40r85"},{"Name":"integrity","Value":"sha256-sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Forms.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qlfvznror3-{0}-zrueb40r85-zrueb40r85.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000057547333"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17376"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zrueb40r85"},{"Name":"integrity","Value":"sha256-sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Forms.wasm"},{"Name":"original-resource","Value":"\"sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qlfvznror3-{0}-zrueb40r85-zrueb40r85.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17376"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zrueb40r85"},{"Name":"integrity","Value":"sha256-FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Forms.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"178965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g5qdp1mxha"},{"Name":"integrity","Value":"sha256-XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Web.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gx4y3aoczp-{0}-g5qdp1mxha-g5qdp1mxha.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013971749"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"71572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g5qdp1mxha"},{"Name":"integrity","Value":"sha256-XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Web.wasm"},{"Name":"original-resource","Value":"\"XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gx4y3aoczp-{0}-g5qdp1mxha-g5qdp1mxha.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"71572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g5qdp1mxha"},{"Name":"integrity","Value":"sha256-Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Web.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"178965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gx4y3aoczp-{0}-g5qdp1mxha-g5qdp1mxha.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013971749"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"71572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU="},{"Name":"original-resource","Value":"\"XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gx4y3aoczp-{0}-g5qdp1mxha-g5qdp1mxha.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"71572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"155925"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9mjwvs1qyp"},{"Name":"integrity","Value":"sha256-r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mx4r46cpu7-{0}-9mjwvs1qyp-9mjwvs1qyp.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000016249330"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"61540"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9mjwvs1qyp"},{"Name":"integrity","Value":"sha256-r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm"},{"Name":"original-resource","Value":"\"r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mx4r46cpu7-{0}-9mjwvs1qyp-9mjwvs1qyp.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"61540"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9mjwvs1qyp"},{"Name":"integrity","Value":"sha256-WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"155925"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mx4r46cpu7-{0}-9mjwvs1qyp-9mjwvs1qyp.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000016249330"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"61540"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4="},{"Name":"original-resource","Value":"\"r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mx4r46cpu7-{0}-9mjwvs1qyp-9mjwvs1qyp.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"61540"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.uddsvpv1sv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"388885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uddsvpv1sv"},{"Name":"integrity","Value":"sha256-wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fs9spivh8g-{0}-uddsvpv1sv-uddsvpv1sv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006481638"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"154281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uddsvpv1sv"},{"Name":"integrity","Value":"sha256-wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.wasm"},{"Name":"original-resource","Value":"\"wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fs9spivh8g-{0}-uddsvpv1sv-uddsvpv1sv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"154281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uddsvpv1sv"},{"Name":"integrity","Value":"sha256-1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.uddsvpv1sv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"388885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fs9spivh8g-{0}-uddsvpv1sv-uddsvpv1sv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006481638"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"154281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4="},{"Name":"original-resource","Value":"\"wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fs9spivh8g-{0}-uddsvpv1sv-uddsvpv1sv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"154281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk="}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m3mxap0jif"},{"Name":"integrity","Value":"sha256-3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Metadata.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zpx4nb1yyz-{0}-m3mxap0jif-m3mxap0jif.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000405350628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2466"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m3mxap0jif"},{"Name":"integrity","Value":"sha256-3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Metadata.wasm"},{"Name":"original-resource","Value":"\"3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zpx4nb1yyz-{0}-m3mxap0jif-m3mxap0jif.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2466"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m3mxap0jif"},{"Name":"integrity","Value":"sha256-NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Metadata.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ="}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zpx4nb1yyz-{0}-m3mxap0jif-m3mxap0jif.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000405350628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2466"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ="},{"Name":"original-resource","Value":"\"3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zpx4nb1yyz-{0}-m3mxap0jif-m3mxap0jif.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2466"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU="}]},{"Route":"_framework/Microsoft.CSharp.452y5fjxmv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.CSharp.452y5fjxmv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"301333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"452y5fjxmv"},{"Name":"integrity","Value":"sha256-qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g="},{"Name":"label","Value":"_framework/Microsoft.CSharp.wasm"}]},{"Route":"_framework/Microsoft.CSharp.452y5fjxmv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\yva5srnvsu-{0}-452y5fjxmv-452y5fjxmv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000007583628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"131862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"452y5fjxmv"},{"Name":"integrity","Value":"sha256-qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g="},{"Name":"label","Value":"_framework/Microsoft.CSharp.wasm"},{"Name":"original-resource","Value":"\"qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g=\""}]},{"Route":"_framework/Microsoft.CSharp.452y5fjxmv.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\yva5srnvsu-{0}-452y5fjxmv-452y5fjxmv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"131862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"452y5fjxmv"},{"Name":"integrity","Value":"sha256-SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU="},{"Name":"label","Value":"_framework/Microsoft.CSharp.wasm.gz"}]},{"Route":"_framework/Microsoft.CSharp.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.CSharp.452y5fjxmv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"301333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g="}]},{"Route":"_framework/Microsoft.CSharp.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\yva5srnvsu-{0}-452y5fjxmv-452y5fjxmv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000007583628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"131862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g="},{"Name":"original-resource","Value":"\"qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g=\""}]},{"Route":"_framework/Microsoft.CSharp.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\yva5srnvsu-{0}-452y5fjxmv-452y5fjxmv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"131862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU="}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"56085"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrhwg3a64c"},{"Name":"integrity","Value":"sha256-7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU="},{"Name":"label","Value":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm"}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3of7h5c6n8-{0}-hrhwg3a64c-hrhwg3a64c.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040950041"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrhwg3a64c"},{"Name":"integrity","Value":"sha256-7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU="},{"Name":"label","Value":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm"},{"Name":"original-resource","Value":"\"7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU=\""}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3of7h5c6n8-{0}-hrhwg3a64c-hrhwg3a64c.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrhwg3a64c"},{"Name":"integrity","Value":"sha256-2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw="},{"Name":"label","Value":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz"}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"56085"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU="}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3of7h5c6n8-{0}-hrhwg3a64c-hrhwg3a64c.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040950041"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU="},{"Name":"original-resource","Value":"\"7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU=\""}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3of7h5c6n8-{0}-hrhwg3a64c-hrhwg3a64c.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"thew1o6jcx"},{"Name":"integrity","Value":"sha256-YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\s4opith0ak-{0}-thew1o6jcx-thew1o6jcx.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000123502532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8096"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"thew1o6jcx"},{"Name":"integrity","Value":"sha256-YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm"},{"Name":"original-resource","Value":"\"YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\s4opith0ak-{0}-thew1o6jcx-thew1o6jcx.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8096"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"thew1o6jcx"},{"Name":"integrity","Value":"sha256-TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\s4opith0ak-{0}-thew1o6jcx-thew1o6jcx.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000123502532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8096"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0="},{"Name":"original-resource","Value":"\"YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\s4opith0ak-{0}-thew1o6jcx-thew1o6jcx.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8096"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"33045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7o70008j8o"},{"Name":"integrity","Value":"sha256-KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Binder.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\11oooy7jd2-{0}-7o70008j8o-7o70008j8o.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000070556692"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14172"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7o70008j8o"},{"Name":"integrity","Value":"sha256-KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Binder.wasm"},{"Name":"original-resource","Value":"\"KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\11oooy7jd2-{0}-7o70008j8o-7o70008j8o.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14172"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7o70008j8o"},{"Name":"integrity","Value":"sha256-c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Binder.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"33045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\11oooy7jd2-{0}-7o70008j8o-7o70008j8o.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000070556692"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14172"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70="},{"Name":"original-resource","Value":"\"KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\11oooy7jd2-{0}-7o70008j8o-7o70008j8o.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14172"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ouivavlhyy"},{"Name":"integrity","Value":"sha256-MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vhumncwy1p-{0}-ouivavlhyy-ouivavlhyy.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000125219133"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7985"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ouivavlhyy"},{"Name":"integrity","Value":"sha256-MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm"},{"Name":"original-resource","Value":"\"MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vhumncwy1p-{0}-ouivavlhyy-ouivavlhyy.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7985"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ouivavlhyy"},{"Name":"integrity","Value":"sha256-a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vhumncwy1p-{0}-ouivavlhyy-ouivavlhyy.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000125219133"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7985"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8="},{"Name":"original-resource","Value":"\"MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vhumncwy1p-{0}-ouivavlhyy-ouivavlhyy.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7985"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"17685"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"giv4t23za9"},{"Name":"integrity","Value":"sha256-iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Json.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\69vphje66t-{0}-giv4t23za9-giv4t23za9.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000127177922"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"giv4t23za9"},{"Name":"integrity","Value":"sha256-iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Json.wasm"},{"Name":"original-resource","Value":"\"iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\69vphje66t-{0}-giv4t23za9-giv4t23za9.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"giv4t23za9"},{"Name":"integrity","Value":"sha256-kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Json.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"17685"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\69vphje66t-{0}-giv4t23za9-giv4t23za9.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000127177922"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg="},{"Name":"original-resource","Value":"\"iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\69vphje66t-{0}-giv4t23za9-giv4t23za9.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fgwnqtu7qk"},{"Name":"integrity","Value":"sha256-D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\dnrp0xl7wy-{0}-fgwnqtu7qk-fgwnqtu7qk.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000064616180"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15475"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fgwnqtu7qk"},{"Name":"integrity","Value":"sha256-D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.wasm"},{"Name":"original-resource","Value":"\"D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\dnrp0xl7wy-{0}-fgwnqtu7qk-fgwnqtu7qk.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15475"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fgwnqtu7qk"},{"Name":"integrity","Value":"sha256-bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\dnrp0xl7wy-{0}-fgwnqtu7qk-fgwnqtu7qk.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000064616180"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15475"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY="},{"Name":"original-resource","Value":"\"D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\dnrp0xl7wy-{0}-fgwnqtu7qk-fgwnqtu7qk.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15475"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0="}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ud13mwbta3"},{"Name":"integrity","Value":"sha256-PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kstk0dzyw1-{0}-ud13mwbta3-ud13mwbta3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000046012976"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ud13mwbta3"},{"Name":"integrity","Value":"sha256-PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm"},{"Name":"original-resource","Value":"\"PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM=\""}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kstk0dzyw1-{0}-ud13mwbta3-ud13mwbta3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ud13mwbta3"},{"Name":"integrity","Value":"sha256-UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM="}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kstk0dzyw1-{0}-ud13mwbta3-ud13mwbta3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000046012976"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM="},{"Name":"original-resource","Value":"\"PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM=\""}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kstk0dzyw1-{0}-ud13mwbta3-ud13mwbta3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU="}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"85269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vs620n44bv"},{"Name":"integrity","Value":"sha256-EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.wasm"}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\epsgnejg6l-{0}-vs620n44bv-vs620n44bv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000027365771"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"36541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vs620n44bv"},{"Name":"integrity","Value":"sha256-EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.wasm"},{"Name":"original-resource","Value":"\"EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ=\""}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\epsgnejg6l-{0}-vs620n44bv-vs620n44bv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"36541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vs620n44bv"},{"Name":"integrity","Value":"sha256-KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"85269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ="}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\epsgnejg6l-{0}-vs620n44bv-vs620n44bv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000027365771"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"36541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ="},{"Name":"original-resource","Value":"\"EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ=\""}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\epsgnejg6l-{0}-vs620n44bv-vs620n44bv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"36541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA="}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"20757"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v59ymogeuz"},{"Name":"integrity","Value":"sha256-4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0o3yap4xcv-{0}-v59ymogeuz-v59ymogeuz.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000116468670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8585"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v59ymogeuz"},{"Name":"integrity","Value":"sha256-4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm"},{"Name":"original-resource","Value":"\"4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA=\""}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0o3yap4xcv-{0}-v59ymogeuz-v59ymogeuz.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8585"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v59ymogeuz"},{"Name":"integrity","Value":"sha256-q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"20757"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA="}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0o3yap4xcv-{0}-v59ymogeuz-v59ymogeuz.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000116468670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8585"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA="},{"Name":"original-resource","Value":"\"4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA=\""}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0o3yap4xcv-{0}-v59ymogeuz-v59ymogeuz.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8585"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4="}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"25877"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jnogfbng3i"},{"Name":"integrity","Value":"sha256-MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3rwukvhyra-{0}-jnogfbng3i-jnogfbng3i.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000082706145"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12090"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jnogfbng3i"},{"Name":"integrity","Value":"sha256-MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.wasm"},{"Name":"original-resource","Value":"\"MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo=\""}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3rwukvhyra-{0}-jnogfbng3i-jnogfbng3i.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12090"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jnogfbng3i"},{"Name":"integrity","Value":"sha256-UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"25877"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo="}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3rwukvhyra-{0}-jnogfbng3i-jnogfbng3i.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000082706145"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12090"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo="},{"Name":"original-resource","Value":"\"MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo=\""}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3rwukvhyra-{0}-jnogfbng3i-jnogfbng3i.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12090"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk="}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ssv83rveyv"},{"Name":"integrity","Value":"sha256-/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ezxlu8d1x1-{0}-ssv83rveyv-ssv83rveyv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000176897223"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5652"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ssv83rveyv"},{"Name":"integrity","Value":"sha256-/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm"},{"Name":"original-resource","Value":"\"/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8=\""}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ezxlu8d1x1-{0}-ssv83rveyv-ssv83rveyv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5652"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ssv83rveyv"},{"Name":"integrity","Value":"sha256-kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8="}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ezxlu8d1x1-{0}-ssv83rveyv-ssv83rveyv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000176897223"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5652"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8="},{"Name":"original-resource","Value":"\"/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8=\""}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ezxlu8d1x1-{0}-ssv83rveyv-ssv83rveyv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5652"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4="}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"35093"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8gz29xpyh3"},{"Name":"integrity","Value":"sha256-CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm"}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\keeokmerp8-{0}-8gz29xpyh3-8gz29xpyh3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060793969"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16448"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8gz29xpyh3"},{"Name":"integrity","Value":"sha256-CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm"},{"Name":"original-resource","Value":"\"CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0=\""}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\keeokmerp8-{0}-8gz29xpyh3-8gz29xpyh3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16448"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8gz29xpyh3"},{"Name":"integrity","Value":"sha256-RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"35093"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0="}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\keeokmerp8-{0}-8gz29xpyh3-8gz29xpyh3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060793969"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16448"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0="},{"Name":"original-resource","Value":"\"CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0=\""}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\keeokmerp8-{0}-8gz29xpyh3-8gz29xpyh3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16448"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo="}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozuva4e3vv"},{"Name":"integrity","Value":"sha256-pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm"}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\l2v44xhbzj-{0}-ozuva4e3vv-ozuva4e3vv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000058941412"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozuva4e3vv"},{"Name":"integrity","Value":"sha256-pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm"},{"Name":"original-resource","Value":"\"pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI=\""}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\l2v44xhbzj-{0}-ozuva4e3vv-ozuva4e3vv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozuva4e3vv"},{"Name":"integrity","Value":"sha256-QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI="}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\l2v44xhbzj-{0}-ozuva4e3vv-ozuva4e3vv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000058941412"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI="},{"Name":"original-resource","Value":"\"pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI=\""}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\l2v44xhbzj-{0}-ozuva4e3vv-ozuva4e3vv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY="}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"8981"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6jkolue1ka"},{"Name":"integrity","Value":"sha256-8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tezhiquus4-{0}-6jkolue1ka-6jkolue1ka.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000261164795"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6jkolue1ka"},{"Name":"integrity","Value":"sha256-8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm"},{"Name":"original-resource","Value":"\"8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4=\""}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tezhiquus4-{0}-6jkolue1ka-6jkolue1ka.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6jkolue1ka"},{"Name":"integrity","Value":"sha256-5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"8981"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4="}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tezhiquus4-{0}-6jkolue1ka-6jkolue1ka.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000261164795"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4="},{"Name":"original-resource","Value":"\"8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4=\""}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tezhiquus4-{0}-6jkolue1ka-6jkolue1ka.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8="}]},{"Route":"_framework/Microsoft.Extensions.Localization.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Localization.xcslyy3nju.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"21269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs="}]},{"Route":"_framework/Microsoft.Extensions.Localization.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\84jx0dmgdc-{0}-xcslyy3nju-xcslyy3nju.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000100050025"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9994"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs="},{"Name":"original-resource","Value":"\"L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs=\""}]},{"Route":"_framework/Microsoft.Extensions.Localization.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\84jx0dmgdc-{0}-xcslyy3nju-xcslyy3nju.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9994"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM="}]},{"Route":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Localization.xcslyy3nju.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"21269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xcslyy3nju"},{"Name":"integrity","Value":"sha256-L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\84jx0dmgdc-{0}-xcslyy3nju-xcslyy3nju.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000100050025"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9994"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xcslyy3nju"},{"Name":"integrity","Value":"sha256-L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.wasm"},{"Name":"original-resource","Value":"\"L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs=\""}]},{"Route":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\84jx0dmgdc-{0}-xcslyy3nju-xcslyy3nju.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9994"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xcslyy3nju"},{"Name":"integrity","Value":"sha256-LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"56597"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1q3x7vre4l"},{"Name":"integrity","Value":"sha256-5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sn0mpm6uvc-{0}-1q3x7vre4l-1q3x7vre4l.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040832993"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1q3x7vre4l"},{"Name":"integrity","Value":"sha256-5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm"},{"Name":"original-resource","Value":"\"5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI=\""}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sn0mpm6uvc-{0}-1q3x7vre4l-1q3x7vre4l.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1q3x7vre4l"},{"Name":"integrity","Value":"sha256-wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"56597"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI="}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sn0mpm6uvc-{0}-1q3x7vre4l-1q3x7vre4l.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040832993"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI="},{"Name":"original-resource","Value":"\"5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI=\""}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sn0mpm6uvc-{0}-1q3x7vre4l-1q3x7vre4l.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo="}]},{"Route":"_framework/Microsoft.Extensions.Logging.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Logging.y4ydx3rk2c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"41237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis="}]},{"Route":"_framework/Microsoft.Extensions.Logging.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\oix89w3uk2-{0}-y4ydx3rk2c-y4ydx3rk2c.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053708577"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18618"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis="},{"Name":"original-resource","Value":"\"7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis=\""}]},{"Route":"_framework/Microsoft.Extensions.Logging.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\oix89w3uk2-{0}-y4ydx3rk2c-y4ydx3rk2c.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18618"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q="}]},{"Route":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Logging.y4ydx3rk2c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"41237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y4ydx3rk2c"},{"Name":"integrity","Value":"sha256-7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\oix89w3uk2-{0}-y4ydx3rk2c-y4ydx3rk2c.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053708577"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18618"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y4ydx3rk2c"},{"Name":"integrity","Value":"sha256-7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.wasm"},{"Name":"original-resource","Value":"\"7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis=\""}]},{"Route":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\oix89w3uk2-{0}-y4ydx3rk2c-y4ydx3rk2c.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18618"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y4ydx3rk2c"},{"Name":"integrity","Value":"sha256-CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Options.2rz5zbidnd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55061"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2rz5zbidnd"},{"Name":"integrity","Value":"sha256-PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\u4abyqnekj-{0}-2rz5zbidnd-2rz5zbidnd.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000042529664"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23512"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2rz5zbidnd"},{"Name":"integrity","Value":"sha256-PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.wasm"},{"Name":"original-resource","Value":"\"PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY=\""}]},{"Route":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\u4abyqnekj-{0}-2rz5zbidnd-2rz5zbidnd.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23512"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2rz5zbidnd"},{"Name":"integrity","Value":"sha256-nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U="}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ozc2mb3rdz-{0}-zmb03w0weu-zmb03w0weu.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000196001568"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U="},{"Name":"original-resource","Value":"\"652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U=\""}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ozc2mb3rdz-{0}-zmb03w0weu-zmb03w0weu.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I="}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zmb03w0weu"},{"Name":"integrity","Value":"sha256-652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ozc2mb3rdz-{0}-zmb03w0weu-zmb03w0weu.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000196001568"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zmb03w0weu"},{"Name":"integrity","Value":"sha256-652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm"},{"Name":"original-resource","Value":"\"652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U=\""}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ozc2mb3rdz-{0}-zmb03w0weu-zmb03w0weu.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zmb03w0weu"},{"Name":"integrity","Value":"sha256-i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Options.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Options.2rz5zbidnd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"55061"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY="}]},{"Route":"_framework/Microsoft.Extensions.Options.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\u4abyqnekj-{0}-2rz5zbidnd-2rz5zbidnd.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000042529664"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23512"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY="},{"Name":"original-resource","Value":"\"PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY=\""}]},{"Route":"_framework/Microsoft.Extensions.Options.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\u4abyqnekj-{0}-2rz5zbidnd-2rz5zbidnd.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23512"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4="}]},{"Route":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.bd164v6l3f.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bd164v6l3f"},{"Name":"integrity","Value":"sha256-b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Primitives.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\co27dkpaxa-{0}-bd164v6l3f-bd164v6l3f.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000065582371"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15247"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bd164v6l3f"},{"Name":"integrity","Value":"sha256-b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Primitives.wasm"},{"Name":"original-resource","Value":"\"b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo=\""}]},{"Route":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\co27dkpaxa-{0}-bd164v6l3f-bd164v6l3f.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15247"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bd164v6l3f"},{"Name":"integrity","Value":"sha256-WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Primitives.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Primitives.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.bd164v6l3f.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo="}]},{"Route":"_framework/Microsoft.Extensions.Primitives.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\co27dkpaxa-{0}-bd164v6l3f-bd164v6l3f.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000065582371"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15247"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo="},{"Name":"original-resource","Value":"\"b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo=\""}]},{"Route":"_framework/Microsoft.Extensions.Primitives.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\co27dkpaxa-{0}-bd164v6l3f-bd164v6l3f.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15247"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8="}]},{"Route":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Validation.r1sv3m5lsf.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"33045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r1sv3m5lsf"},{"Name":"integrity","Value":"sha256-QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Validation.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fappprmifz-{0}-r1sv3m5lsf-r1sv3m5lsf.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000069232899"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14443"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r1sv3m5lsf"},{"Name":"integrity","Value":"sha256-QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Validation.wasm"},{"Name":"original-resource","Value":"\"QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk=\""}]},{"Route":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fappprmifz-{0}-r1sv3m5lsf-r1sv3m5lsf.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14443"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r1sv3m5lsf"},{"Name":"integrity","Value":"sha256-4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Validation.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Validation.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Validation.r1sv3m5lsf.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"33045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk="}]},{"Route":"_framework/Microsoft.Extensions.Validation.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fappprmifz-{0}-r1sv3m5lsf-r1sv3m5lsf.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000069232899"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14443"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk="},{"Name":"original-resource","Value":"\"QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk=\""}]},{"Route":"_framework/Microsoft.Extensions.Validation.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fappprmifz-{0}-r1sv3m5lsf-r1sv3m5lsf.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14443"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0="}]},{"Route":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.JSInterop.1r0ampr2q1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"64789"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1r0ampr2q1"},{"Name":"integrity","Value":"sha256-TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.wasm"}]},{"Route":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\pro4ajsvfg-{0}-1r0ampr2q1-1r0ampr2q1.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000036331928"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"27523"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1r0ampr2q1"},{"Name":"integrity","Value":"sha256-TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.wasm"},{"Name":"original-resource","Value":"\"TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA=\""}]},{"Route":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\pro4ajsvfg-{0}-1r0ampr2q1-1r0ampr2q1.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"27523"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1r0ampr2q1"},{"Name":"integrity","Value":"sha256-5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.wasm.gz"}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"14613"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oz8fkrrrd6"},{"Name":"integrity","Value":"sha256-vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.WebAssembly.wasm"}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6mv5cent6u-{0}-oz8fkrrrd6-oz8fkrrrd6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000145730108"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oz8fkrrrd6"},{"Name":"integrity","Value":"sha256-vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.WebAssembly.wasm"},{"Name":"original-resource","Value":"\"vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU=\""}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6mv5cent6u-{0}-oz8fkrrrd6-oz8fkrrrd6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oz8fkrrrd6"},{"Name":"integrity","Value":"sha256-50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.WebAssembly.wasm.gz"}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"14613"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU="}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6mv5cent6u-{0}-oz8fkrrrd6-oz8fkrrrd6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000145730108"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU="},{"Name":"original-resource","Value":"\"vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU=\""}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6mv5cent6u-{0}-oz8fkrrrd6-oz8fkrrrd6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA="}]},{"Route":"_framework/Microsoft.JSInterop.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.JSInterop.1r0ampr2q1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"64789"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA="}]},{"Route":"_framework/Microsoft.JSInterop.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\pro4ajsvfg-{0}-1r0ampr2q1-1r0ampr2q1.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000036331928"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"27523"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA="},{"Name":"original-resource","Value":"\"TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA=\""}]},{"Route":"_framework/Microsoft.JSInterop.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\pro4ajsvfg-{0}-1r0ampr2q1-1r0ampr2q1.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"27523"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0="}]},{"Route":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.VisualBasic.91iw3j3d9p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"91iw3j3d9p"},{"Name":"integrity","Value":"sha256-TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.wasm"}]},{"Route":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\akapjt0sxo-{0}-91iw3j3d9p-91iw3j3d9p.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000349162011"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2863"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"91iw3j3d9p"},{"Name":"integrity","Value":"sha256-TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.wasm"},{"Name":"original-resource","Value":"\"TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM=\""}]},{"Route":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\akapjt0sxo-{0}-91iw3j3d9p-91iw3j3d9p.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2863"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"91iw3j3d9p"},{"Name":"integrity","Value":"sha256-O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.wasm.gz"}]},{"Route":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.re3geseai5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"418581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"re3geseai5"},{"Name":"integrity","Value":"sha256-vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.Core.wasm"}]},{"Route":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\du4skpg5oq-{0}-re3geseai5-re3geseai5.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005991109"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"166913"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"re3geseai5"},{"Name":"integrity","Value":"sha256-vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.Core.wasm"},{"Name":"original-resource","Value":"\"vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0=\""}]},{"Route":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\du4skpg5oq-{0}-re3geseai5-re3geseai5.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"166913"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"re3geseai5"},{"Name":"integrity","Value":"sha256-09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.Core.wasm.gz"}]},{"Route":"_framework/Microsoft.VisualBasic.Core.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.re3geseai5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"418581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0="}]},{"Route":"_framework/Microsoft.VisualBasic.Core.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\du4skpg5oq-{0}-re3geseai5-re3geseai5.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005991109"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"166913"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0="},{"Name":"original-resource","Value":"\"vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0=\""}]},{"Route":"_framework/Microsoft.VisualBasic.Core.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\du4skpg5oq-{0}-re3geseai5-re3geseai5.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"166913"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc="}]},{"Route":"_framework/Microsoft.VisualBasic.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.VisualBasic.91iw3j3d9p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM="}]},{"Route":"_framework/Microsoft.VisualBasic.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\akapjt0sxo-{0}-91iw3j3d9p-91iw3j3d9p.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000349162011"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2863"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM="},{"Name":"original-resource","Value":"\"TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM=\""}]},{"Route":"_framework/Microsoft.VisualBasic.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\akapjt0sxo-{0}-91iw3j3d9p-91iw3j3d9p.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2863"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as="}]},{"Route":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Win32.Primitives.2mjytoh92q.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mjytoh92q"},{"Name":"integrity","Value":"sha256-NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM="},{"Name":"label","Value":"_framework/Microsoft.Win32.Primitives.wasm"}]},{"Route":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i7n8kqec4e-{0}-2mjytoh92q-2mjytoh92q.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000451059991"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2216"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mjytoh92q"},{"Name":"integrity","Value":"sha256-NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM="},{"Name":"label","Value":"_framework/Microsoft.Win32.Primitives.wasm"},{"Name":"original-resource","Value":"\"NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM=\""}]},{"Route":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i7n8kqec4e-{0}-2mjytoh92q-2mjytoh92q.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2216"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mjytoh92q"},{"Name":"integrity","Value":"sha256-JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As="},{"Name":"label","Value":"_framework/Microsoft.Win32.Primitives.wasm.gz"}]},{"Route":"_framework/Microsoft.Win32.Primitives.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Win32.Primitives.2mjytoh92q.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM="}]},{"Route":"_framework/Microsoft.Win32.Primitives.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i7n8kqec4e-{0}-2mjytoh92q-2mjytoh92q.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000451059991"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2216"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM="},{"Name":"original-resource","Value":"\"NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM=\""}]},{"Route":"_framework/Microsoft.Win32.Primitives.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i7n8kqec4e-{0}-2mjytoh92q-2mjytoh92q.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2216"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As="}]},{"Route":"_framework/Microsoft.Win32.Registry.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Win32.Registry.yz8nt3ycsq.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU="}]},{"Route":"_framework/Microsoft.Win32.Registry.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\553rwsqb4a-{0}-yz8nt3ycsq-yz8nt3ycsq.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000109733348"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9112"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU="},{"Name":"original-resource","Value":"\"sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU=\""}]},{"Route":"_framework/Microsoft.Win32.Registry.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\553rwsqb4a-{0}-yz8nt3ycsq-yz8nt3ycsq.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9112"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk="}]},{"Route":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Win32.Registry.yz8nt3ycsq.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yz8nt3ycsq"},{"Name":"integrity","Value":"sha256-sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU="},{"Name":"label","Value":"_framework/Microsoft.Win32.Registry.wasm"}]},{"Route":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\553rwsqb4a-{0}-yz8nt3ycsq-yz8nt3ycsq.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000109733348"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9112"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yz8nt3ycsq"},{"Name":"integrity","Value":"sha256-sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU="},{"Name":"label","Value":"_framework/Microsoft.Win32.Registry.wasm"},{"Name":"original-resource","Value":"\"sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU=\""}]},{"Route":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\553rwsqb4a-{0}-yz8nt3ycsq-yz8nt3ycsq.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9112"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yz8nt3ycsq"},{"Name":"integrity","Value":"sha256-gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk="},{"Name":"label","Value":"_framework/Microsoft.Win32.Registry.wasm.gz"}]},{"Route":"_framework/MudBlazor.k6079czmkm.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\MudBlazor.k6079czmkm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10119449"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6079czmkm"},{"Name":"integrity","Value":"sha256-rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI="},{"Name":"label","Value":"_framework/MudBlazor.wasm"}]},{"Route":"_framework/MudBlazor.k6079czmkm.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\w2iaa8sc3u-{0}-k6079czmkm-k6079czmkm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000444516"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2249638"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6079czmkm"},{"Name":"integrity","Value":"sha256-rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI="},{"Name":"label","Value":"_framework/MudBlazor.wasm"},{"Name":"original-resource","Value":"\"rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI=\""}]},{"Route":"_framework/MudBlazor.k6079czmkm.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\w2iaa8sc3u-{0}-k6079czmkm-k6079czmkm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2249638"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6079czmkm"},{"Name":"integrity","Value":"sha256-dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM="},{"Name":"label","Value":"_framework/MudBlazor.wasm.gz"}]},{"Route":"_framework/MudBlazor.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\MudBlazor.k6079czmkm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10119449"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI="}]},{"Route":"_framework/MudBlazor.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\w2iaa8sc3u-{0}-k6079czmkm-k6079czmkm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000444516"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2249638"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI="},{"Name":"original-resource","Value":"\"rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI=\""}]},{"Route":"_framework/MudBlazor.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\w2iaa8sc3u-{0}-k6079czmkm-k6079czmkm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2249638"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM="}]},{"Route":"_framework/OnProfNext.Client.lplk7v275j.pdb","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\OnProfNext.Client.lplk7v275j.pdb","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"33624"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lplk7v275j"},{"Name":"integrity","Value":"sha256-FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0="},{"Name":"label","Value":"_framework/OnProfNext.Client.pdb"}]},{"Route":"_framework/OnProfNext.Client.lplk7v275j.pdb","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\cycczivqx5-{0}-lplk7v275j-lplk7v275j.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038227761"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26158"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lplk7v275j"},{"Name":"integrity","Value":"sha256-FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0="},{"Name":"label","Value":"_framework/OnProfNext.Client.pdb"},{"Name":"original-resource","Value":"\"FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0=\""}]},{"Route":"_framework/OnProfNext.Client.lplk7v275j.pdb.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\cycczivqx5-{0}-lplk7v275j-lplk7v275j.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26158"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lplk7v275j"},{"Name":"integrity","Value":"sha256-4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU="},{"Name":"label","Value":"_framework/OnProfNext.Client.pdb.gz"}]},{"Route":"_framework/OnProfNext.Client.pdb","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\OnProfNext.Client.lplk7v275j.pdb","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"33624"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0="}]},{"Route":"_framework/OnProfNext.Client.pdb","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\cycczivqx5-{0}-lplk7v275j-lplk7v275j.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038227761"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26158"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0="},{"Name":"original-resource","Value":"\"FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0=\""}]},{"Route":"_framework/OnProfNext.Client.pdb.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\cycczivqx5-{0}-lplk7v275j-lplk7v275j.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26158"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU="}]},{"Route":"_framework/OnProfNext.Client.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\OnProfNext.Client.xhq6acanj0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"42261"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc="}]},{"Route":"_framework/OnProfNext.Client.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\f6u1msztxb-{0}-xhq6acanj0-xhq6acanj0.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067344602"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14848"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc="},{"Name":"original-resource","Value":"\"pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc=\""}]},{"Route":"_framework/OnProfNext.Client.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\f6u1msztxb-{0}-xhq6acanj0-xhq6acanj0.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14848"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA="}]},{"Route":"_framework/OnProfNext.Client.xhq6acanj0.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\OnProfNext.Client.xhq6acanj0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"42261"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xhq6acanj0"},{"Name":"integrity","Value":"sha256-pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc="},{"Name":"label","Value":"_framework/OnProfNext.Client.wasm"}]},{"Route":"_framework/OnProfNext.Client.xhq6acanj0.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\f6u1msztxb-{0}-xhq6acanj0-xhq6acanj0.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067344602"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14848"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xhq6acanj0"},{"Name":"integrity","Value":"sha256-pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc="},{"Name":"label","Value":"_framework/OnProfNext.Client.wasm"},{"Name":"original-resource","Value":"\"pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc=\""}]},{"Route":"_framework/OnProfNext.Client.xhq6acanj0.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\f6u1msztxb-{0}-xhq6acanj0-xhq6acanj0.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14848"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xhq6acanj0"},{"Name":"integrity","Value":"sha256-UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA="},{"Name":"label","Value":"_framework/OnProfNext.Client.wasm.gz"}]},{"Route":"_framework/System.7rk3uansaa.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.7rk3uansaa.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"39701"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7rk3uansaa"},{"Name":"integrity","Value":"sha256-00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q="},{"Name":"label","Value":"_framework/System.wasm"}]},{"Route":"_framework/System.7rk3uansaa.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5onvg4v1ie-{0}-7rk3uansaa-7rk3uansaa.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000084875233"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7rk3uansaa"},{"Name":"integrity","Value":"sha256-00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q="},{"Name":"label","Value":"_framework/System.wasm"},{"Name":"original-resource","Value":"\"00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q=\""}]},{"Route":"_framework/System.7rk3uansaa.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5onvg4v1ie-{0}-7rk3uansaa-7rk3uansaa.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7rk3uansaa"},{"Name":"integrity","Value":"sha256-KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI="},{"Name":"label","Value":"_framework/System.wasm.gz"}]},{"Route":"_framework/System.AppContext.uwq3fpef1w.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.AppContext.uwq3fpef1w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uwq3fpef1w"},{"Name":"integrity","Value":"sha256-/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA="},{"Name":"label","Value":"_framework/System.AppContext.wasm"}]},{"Route":"_framework/System.AppContext.uwq3fpef1w.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jcwxb5s78i-{0}-uwq3fpef1w-uwq3fpef1w.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000472589792"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2115"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uwq3fpef1w"},{"Name":"integrity","Value":"sha256-/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA="},{"Name":"label","Value":"_framework/System.AppContext.wasm"},{"Name":"original-resource","Value":"\"/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA=\""}]},{"Route":"_framework/System.AppContext.uwq3fpef1w.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jcwxb5s78i-{0}-uwq3fpef1w-uwq3fpef1w.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2115"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uwq3fpef1w"},{"Name":"integrity","Value":"sha256-Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8="},{"Name":"label","Value":"_framework/System.AppContext.wasm.gz"}]},{"Route":"_framework/System.AppContext.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.AppContext.uwq3fpef1w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA="}]},{"Route":"_framework/System.AppContext.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jcwxb5s78i-{0}-uwq3fpef1w-uwq3fpef1w.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000472589792"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2115"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA="},{"Name":"original-resource","Value":"\"/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA=\""}]},{"Route":"_framework/System.AppContext.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jcwxb5s78i-{0}-uwq3fpef1w-uwq3fpef1w.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2115"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8="}]},{"Route":"_framework/System.Buffers.m4yhcvz2y2.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Buffers.m4yhcvz2y2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m4yhcvz2y2"},{"Name":"integrity","Value":"sha256-+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g="},{"Name":"label","Value":"_framework/System.Buffers.wasm"}]},{"Route":"_framework/System.Buffers.m4yhcvz2y2.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8u2rup9szd-{0}-m4yhcvz2y2-m4yhcvz2y2.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000472143532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2117"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m4yhcvz2y2"},{"Name":"integrity","Value":"sha256-+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g="},{"Name":"label","Value":"_framework/System.Buffers.wasm"},{"Name":"original-resource","Value":"\"+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g=\""}]},{"Route":"_framework/System.Buffers.m4yhcvz2y2.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8u2rup9szd-{0}-m4yhcvz2y2-m4yhcvz2y2.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2117"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m4yhcvz2y2"},{"Name":"integrity","Value":"sha256-Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g="},{"Name":"label","Value":"_framework/System.Buffers.wasm.gz"}]},{"Route":"_framework/System.Buffers.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Buffers.m4yhcvz2y2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g="}]},{"Route":"_framework/System.Buffers.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8u2rup9szd-{0}-m4yhcvz2y2-m4yhcvz2y2.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000472143532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2117"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g="},{"Name":"original-resource","Value":"\"+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g=\""}]},{"Route":"_framework/System.Buffers.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8u2rup9szd-{0}-m4yhcvz2y2-m4yhcvz2y2.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2117"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g="}]},{"Route":"_framework/System.Collections.63jrcion39.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.63jrcion39.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"102677"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63jrcion39"},{"Name":"integrity","Value":"sha256-Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg="},{"Name":"label","Value":"_framework/System.Collections.wasm"}]},{"Route":"_framework/System.Collections.63jrcion39.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3zhncs8zdy-{0}-63jrcion39-63jrcion39.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023100023"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"43289"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63jrcion39"},{"Name":"integrity","Value":"sha256-Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg="},{"Name":"label","Value":"_framework/System.Collections.wasm"},{"Name":"original-resource","Value":"\"Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg=\""}]},{"Route":"_framework/System.Collections.63jrcion39.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3zhncs8zdy-{0}-63jrcion39-63jrcion39.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"43289"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63jrcion39"},{"Name":"integrity","Value":"sha256-vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU="},{"Name":"label","Value":"_framework/System.Collections.wasm.gz"}]},{"Route":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.Concurrent.1zv6wuzklu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"78613"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1zv6wuzklu"},{"Name":"integrity","Value":"sha256-XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw="},{"Name":"label","Value":"_framework/System.Collections.Concurrent.wasm"}]},{"Route":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\niv8zsbxhl-{0}-1zv6wuzklu-1zv6wuzklu.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029696502"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33673"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1zv6wuzklu"},{"Name":"integrity","Value":"sha256-XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw="},{"Name":"label","Value":"_framework/System.Collections.Concurrent.wasm"},{"Name":"original-resource","Value":"\"XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw=\""}]},{"Route":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\niv8zsbxhl-{0}-1zv6wuzklu-1zv6wuzklu.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33673"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1zv6wuzklu"},{"Name":"integrity","Value":"sha256-LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU="},{"Name":"label","Value":"_framework/System.Collections.Concurrent.wasm.gz"}]},{"Route":"_framework/System.Collections.Concurrent.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.Concurrent.1zv6wuzklu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"78613"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw="}]},{"Route":"_framework/System.Collections.Concurrent.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\niv8zsbxhl-{0}-1zv6wuzklu-1zv6wuzklu.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029696502"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33673"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw="},{"Name":"original-resource","Value":"\"XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw=\""}]},{"Route":"_framework/System.Collections.Concurrent.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\niv8zsbxhl-{0}-1zv6wuzklu-1zv6wuzklu.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33673"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU="}]},{"Route":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.Immutable.6uzpuv4o5d.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"240917"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6uzpuv4o5d"},{"Name":"integrity","Value":"sha256-UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE="},{"Name":"label","Value":"_framework/System.Collections.Immutable.wasm"}]},{"Route":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3k0w0ci5df-{0}-6uzpuv4o5d-6uzpuv4o5d.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010198462"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"98053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6uzpuv4o5d"},{"Name":"integrity","Value":"sha256-UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE="},{"Name":"label","Value":"_framework/System.Collections.Immutable.wasm"},{"Name":"original-resource","Value":"\"UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE=\""}]},{"Route":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3k0w0ci5df-{0}-6uzpuv4o5d-6uzpuv4o5d.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"98053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6uzpuv4o5d"},{"Name":"integrity","Value":"sha256-FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI="},{"Name":"label","Value":"_framework/System.Collections.Immutable.wasm.gz"}]},{"Route":"_framework/System.Collections.Immutable.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.Immutable.6uzpuv4o5d.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"240917"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE="}]},{"Route":"_framework/System.Collections.Immutable.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3k0w0ci5df-{0}-6uzpuv4o5d-6uzpuv4o5d.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010198462"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"98053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE="},{"Name":"original-resource","Value":"\"UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE=\""}]},{"Route":"_framework/System.Collections.Immutable.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3k0w0ci5df-{0}-6uzpuv4o5d-6uzpuv4o5d.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"98053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI="}]},{"Route":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.NonGeneric.k5rgagff9o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k5rgagff9o"},{"Name":"integrity","Value":"sha256-eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q="},{"Name":"label","Value":"_framework/System.Collections.NonGeneric.wasm"}]},{"Route":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\r1c02csw1u-{0}-k5rgagff9o-k5rgagff9o.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067944014"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14717"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k5rgagff9o"},{"Name":"integrity","Value":"sha256-eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q="},{"Name":"label","Value":"_framework/System.Collections.NonGeneric.wasm"},{"Name":"original-resource","Value":"\"eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q=\""}]},{"Route":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\r1c02csw1u-{0}-k5rgagff9o-k5rgagff9o.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14717"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k5rgagff9o"},{"Name":"integrity","Value":"sha256-RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M="},{"Name":"label","Value":"_framework/System.Collections.NonGeneric.wasm.gz"}]},{"Route":"_framework/System.Collections.NonGeneric.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.NonGeneric.k5rgagff9o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q="}]},{"Route":"_framework/System.Collections.NonGeneric.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\r1c02csw1u-{0}-k5rgagff9o-k5rgagff9o.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067944014"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14717"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q="},{"Name":"original-resource","Value":"\"eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q=\""}]},{"Route":"_framework/System.Collections.NonGeneric.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\r1c02csw1u-{0}-k5rgagff9o-k5rgagff9o.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14717"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M="}]},{"Route":"_framework/System.Collections.Specialized.84wojkejb4.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.Specialized.84wojkejb4.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"84wojkejb4"},{"Name":"integrity","Value":"sha256-mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74="},{"Name":"label","Value":"_framework/System.Collections.Specialized.wasm"}]},{"Route":"_framework/System.Collections.Specialized.84wojkejb4.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\q6am3o85wz-{0}-84wojkejb4-84wojkejb4.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061218243"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16334"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"84wojkejb4"},{"Name":"integrity","Value":"sha256-mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74="},{"Name":"label","Value":"_framework/System.Collections.Specialized.wasm"},{"Name":"original-resource","Value":"\"mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74=\""}]},{"Route":"_framework/System.Collections.Specialized.84wojkejb4.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\q6am3o85wz-{0}-84wojkejb4-84wojkejb4.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16334"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"84wojkejb4"},{"Name":"integrity","Value":"sha256-iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0="},{"Name":"label","Value":"_framework/System.Collections.Specialized.wasm.gz"}]},{"Route":"_framework/System.Collections.Specialized.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.Specialized.84wojkejb4.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74="}]},{"Route":"_framework/System.Collections.Specialized.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\q6am3o85wz-{0}-84wojkejb4-84wojkejb4.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061218243"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16334"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74="},{"Name":"original-resource","Value":"\"mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74=\""}]},{"Route":"_framework/System.Collections.Specialized.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\q6am3o85wz-{0}-84wojkejb4-84wojkejb4.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16334"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0="}]},{"Route":"_framework/System.Collections.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.63jrcion39.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"102677"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg="}]},{"Route":"_framework/System.Collections.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3zhncs8zdy-{0}-63jrcion39-63jrcion39.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023100023"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"43289"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg="},{"Name":"original-resource","Value":"\"Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg=\""}]},{"Route":"_framework/System.Collections.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3zhncs8zdy-{0}-63jrcion39-63jrcion39.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"43289"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU="}]},{"Route":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.Annotations.cjsvkufomv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"92437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cjsvkufomv"},{"Name":"integrity","Value":"sha256-yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg="},{"Name":"label","Value":"_framework/System.ComponentModel.Annotations.wasm"}]},{"Route":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wj9cgpvw17-{0}-cjsvkufomv-cjsvkufomv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000027950137"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cjsvkufomv"},{"Name":"integrity","Value":"sha256-yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg="},{"Name":"label","Value":"_framework/System.ComponentModel.Annotations.wasm"},{"Name":"original-resource","Value":"\"yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg=\""}]},{"Route":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wj9cgpvw17-{0}-cjsvkufomv-cjsvkufomv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cjsvkufomv"},{"Name":"integrity","Value":"sha256-6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM="},{"Name":"label","Value":"_framework/System.ComponentModel.Annotations.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.Annotations.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.Annotations.cjsvkufomv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"92437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg="}]},{"Route":"_framework/System.ComponentModel.Annotations.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wj9cgpvw17-{0}-cjsvkufomv-cjsvkufomv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000027950137"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg="},{"Name":"original-resource","Value":"\"yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg=\""}]},{"Route":"_framework/System.ComponentModel.Annotations.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wj9cgpvw17-{0}-cjsvkufomv-cjsvkufomv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM="}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vpng0qt4u6"},{"Name":"integrity","Value":"sha256-7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o="},{"Name":"label","Value":"_framework/System.ComponentModel.DataAnnotations.wasm"}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jimv6lw5j5-{0}-vpng0qt4u6-vpng0qt4u6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000386996904"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2583"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vpng0qt4u6"},{"Name":"integrity","Value":"sha256-7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o="},{"Name":"label","Value":"_framework/System.ComponentModel.DataAnnotations.wasm"},{"Name":"original-resource","Value":"\"7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o=\""}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jimv6lw5j5-{0}-vpng0qt4u6-vpng0qt4u6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2583"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vpng0qt4u6"},{"Name":"integrity","Value":"sha256-BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs="},{"Name":"label","Value":"_framework/System.ComponentModel.DataAnnotations.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o="}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jimv6lw5j5-{0}-vpng0qt4u6-vpng0qt4u6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000386996904"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2583"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o="},{"Name":"original-resource","Value":"\"7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o=\""}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jimv6lw5j5-{0}-vpng0qt4u6-vpng0qt4u6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2583"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs="}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"16149"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"en4q13ibd5"},{"Name":"integrity","Value":"sha256-9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38="},{"Name":"label","Value":"_framework/System.ComponentModel.EventBasedAsync.wasm"}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ixx2bqnfah-{0}-en4q13ibd5-en4q13ibd5.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000147536146"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"en4q13ibd5"},{"Name":"integrity","Value":"sha256-9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38="},{"Name":"label","Value":"_framework/System.ComponentModel.EventBasedAsync.wasm"},{"Name":"original-resource","Value":"\"9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38=\""}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ixx2bqnfah-{0}-en4q13ibd5-en4q13ibd5.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"en4q13ibd5"},{"Name":"integrity","Value":"sha256-G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU="},{"Name":"label","Value":"_framework/System.ComponentModel.EventBasedAsync.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"16149"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38="}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ixx2bqnfah-{0}-en4q13ibd5-en4q13ibd5.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000147536146"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38="},{"Name":"original-resource","Value":"\"9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38=\""}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ixx2bqnfah-{0}-en4q13ibd5-en4q13ibd5.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU="}]},{"Route":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.Primitives.u0y5oi3qdg.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u0y5oi3qdg"},{"Name":"integrity","Value":"sha256-fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4="},{"Name":"label","Value":"_framework/System.ComponentModel.Primitives.wasm"}]},{"Route":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\nu73pdet4t-{0}-u0y5oi3qdg-u0y5oi3qdg.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000074493445"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13423"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u0y5oi3qdg"},{"Name":"integrity","Value":"sha256-fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4="},{"Name":"label","Value":"_framework/System.ComponentModel.Primitives.wasm"},{"Name":"original-resource","Value":"\"fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4=\""}]},{"Route":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\nu73pdet4t-{0}-u0y5oi3qdg-u0y5oi3qdg.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13423"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u0y5oi3qdg"},{"Name":"integrity","Value":"sha256-yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM="},{"Name":"label","Value":"_framework/System.ComponentModel.Primitives.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.Primitives.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.Primitives.u0y5oi3qdg.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4="}]},{"Route":"_framework/System.ComponentModel.Primitives.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\nu73pdet4t-{0}-u0y5oi3qdg-u0y5oi3qdg.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000074493445"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13423"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4="},{"Name":"original-resource","Value":"\"fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4=\""}]},{"Route":"_framework/System.ComponentModel.Primitives.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\nu73pdet4t-{0}-u0y5oi3qdg-u0y5oi3qdg.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13423"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM="}]},{"Route":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.e2hbv9lola.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"306453"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e2hbv9lola"},{"Name":"integrity","Value":"sha256-Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco="},{"Name":"label","Value":"_framework/System.ComponentModel.TypeConverter.wasm"}]},{"Route":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gpzobq46fp-{0}-e2hbv9lola-e2hbv9lola.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008143389"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"122798"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e2hbv9lola"},{"Name":"integrity","Value":"sha256-Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco="},{"Name":"label","Value":"_framework/System.ComponentModel.TypeConverter.wasm"},{"Name":"original-resource","Value":"\"Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco=\""}]},{"Route":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gpzobq46fp-{0}-e2hbv9lola-e2hbv9lola.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"122798"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e2hbv9lola"},{"Name":"integrity","Value":"sha256-pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs="},{"Name":"label","Value":"_framework/System.ComponentModel.TypeConverter.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.TypeConverter.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.e2hbv9lola.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"306453"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco="}]},{"Route":"_framework/System.ComponentModel.TypeConverter.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gpzobq46fp-{0}-e2hbv9lola-e2hbv9lola.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008143389"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"122798"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco="},{"Name":"original-resource","Value":"\"Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco=\""}]},{"Route":"_framework/System.ComponentModel.TypeConverter.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gpzobq46fp-{0}-e2hbv9lola-e2hbv9lola.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"122798"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs="}]},{"Route":"_framework/System.ComponentModel.m11rh1qn2x.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.m11rh1qn2x.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m11rh1qn2x"},{"Name":"integrity","Value":"sha256-9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ="},{"Name":"label","Value":"_framework/System.ComponentModel.wasm"}]},{"Route":"_framework/System.ComponentModel.m11rh1qn2x.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ffumllgt4m-{0}-m11rh1qn2x-m11rh1qn2x.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388651380"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m11rh1qn2x"},{"Name":"integrity","Value":"sha256-9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ="},{"Name":"label","Value":"_framework/System.ComponentModel.wasm"},{"Name":"original-resource","Value":"\"9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ=\""}]},{"Route":"_framework/System.ComponentModel.m11rh1qn2x.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ffumllgt4m-{0}-m11rh1qn2x-m11rh1qn2x.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m11rh1qn2x"},{"Name":"integrity","Value":"sha256-4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4="},{"Name":"label","Value":"_framework/System.ComponentModel.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.m11rh1qn2x.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ="}]},{"Route":"_framework/System.ComponentModel.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ffumllgt4m-{0}-m11rh1qn2x-m11rh1qn2x.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388651380"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ="},{"Name":"original-resource","Value":"\"9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ=\""}]},{"Route":"_framework/System.ComponentModel.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ffumllgt4m-{0}-m11rh1qn2x-m11rh1qn2x.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4="}]},{"Route":"_framework/System.Configuration.j8qjkqg593.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Configuration.j8qjkqg593.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"8981"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8qjkqg593"},{"Name":"integrity","Value":"sha256-bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU="},{"Name":"label","Value":"_framework/System.Configuration.wasm"}]},{"Route":"_framework/System.Configuration.j8qjkqg593.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\o9xpqh7wzb-{0}-j8qjkqg593-j8qjkqg593.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000320204931"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3122"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8qjkqg593"},{"Name":"integrity","Value":"sha256-bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU="},{"Name":"label","Value":"_framework/System.Configuration.wasm"},{"Name":"original-resource","Value":"\"bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU=\""}]},{"Route":"_framework/System.Configuration.j8qjkqg593.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\o9xpqh7wzb-{0}-j8qjkqg593-j8qjkqg593.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3122"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8qjkqg593"},{"Name":"integrity","Value":"sha256-KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA="},{"Name":"label","Value":"_framework/System.Configuration.wasm.gz"}]},{"Route":"_framework/System.Configuration.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Configuration.j8qjkqg593.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"8981"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU="}]},{"Route":"_framework/System.Configuration.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\o9xpqh7wzb-{0}-j8qjkqg593-j8qjkqg593.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000320204931"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3122"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU="},{"Name":"original-resource","Value":"\"bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU=\""}]},{"Route":"_framework/System.Configuration.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\o9xpqh7wzb-{0}-j8qjkqg593-j8qjkqg593.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3122"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA="}]},{"Route":"_framework/System.Console.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Console.x9at0eh4vs.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"43797"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI="}]},{"Route":"_framework/System.Console.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ea8uo6cwb8-{0}-x9at0eh4vs-x9at0eh4vs.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051570316"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI="},{"Name":"original-resource","Value":"\"ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI=\""}]},{"Route":"_framework/System.Console.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ea8uo6cwb8-{0}-x9at0eh4vs-x9at0eh4vs.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM="}]},{"Route":"_framework/System.Console.x9at0eh4vs.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Console.x9at0eh4vs.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"43797"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x9at0eh4vs"},{"Name":"integrity","Value":"sha256-ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI="},{"Name":"label","Value":"_framework/System.Console.wasm"}]},{"Route":"_framework/System.Console.x9at0eh4vs.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ea8uo6cwb8-{0}-x9at0eh4vs-x9at0eh4vs.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051570316"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x9at0eh4vs"},{"Name":"integrity","Value":"sha256-ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI="},{"Name":"label","Value":"_framework/System.Console.wasm"},{"Name":"original-resource","Value":"\"ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI=\""}]},{"Route":"_framework/System.Console.x9at0eh4vs.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ea8uo6cwb8-{0}-x9at0eh4vs-x9at0eh4vs.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x9at0eh4vs"},{"Name":"integrity","Value":"sha256-EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM="},{"Name":"label","Value":"_framework/System.Console.wasm.gz"}]},{"Route":"_framework/System.Core.ickp29885z.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Core.ickp29885z.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ickp29885z"},{"Name":"integrity","Value":"sha256-vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU="},{"Name":"label","Value":"_framework/System.Core.wasm"}]},{"Route":"_framework/System.Core.ickp29885z.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\edgswerp4g-{0}-ickp29885z-ickp29885z.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000219346348"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ickp29885z"},{"Name":"integrity","Value":"sha256-vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU="},{"Name":"label","Value":"_framework/System.Core.wasm"},{"Name":"original-resource","Value":"\"vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU=\""}]},{"Route":"_framework/System.Core.ickp29885z.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\edgswerp4g-{0}-ickp29885z-ickp29885z.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ickp29885z"},{"Name":"integrity","Value":"sha256-RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4="},{"Name":"label","Value":"_framework/System.Core.wasm.gz"}]},{"Route":"_framework/System.Core.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Core.ickp29885z.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU="}]},{"Route":"_framework/System.Core.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\edgswerp4g-{0}-ickp29885z-ickp29885z.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000219346348"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU="},{"Name":"original-resource","Value":"\"vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU=\""}]},{"Route":"_framework/System.Core.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\edgswerp4g-{0}-ickp29885z-ickp29885z.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4="}]},{"Route":"_framework/System.Data.0h75nr7qqd.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Data.0h75nr7qqd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"15125"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0h75nr7qqd"},{"Name":"integrity","Value":"sha256-7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg="},{"Name":"label","Value":"_framework/System.Data.wasm"}]},{"Route":"_framework/System.Data.0h75nr7qqd.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\y20kxtztgi-{0}-0h75nr7qqd-0h75nr7qqd.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000199084213"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5022"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0h75nr7qqd"},{"Name":"integrity","Value":"sha256-7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg="},{"Name":"label","Value":"_framework/System.Data.wasm"},{"Name":"original-resource","Value":"\"7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg=\""}]},{"Route":"_framework/System.Data.0h75nr7qqd.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\y20kxtztgi-{0}-0h75nr7qqd-0h75nr7qqd.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5022"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0h75nr7qqd"},{"Name":"integrity","Value":"sha256-8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE="},{"Name":"label","Value":"_framework/System.Data.wasm.gz"}]},{"Route":"_framework/System.Data.Common.4wisaz8pj4.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Data.Common.4wisaz8pj4.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1007893"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4wisaz8pj4"},{"Name":"integrity","Value":"sha256-pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q="},{"Name":"label","Value":"_framework/System.Data.Common.wasm"}]},{"Route":"_framework/System.Data.Common.4wisaz8pj4.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\68hq2gv5cb-{0}-4wisaz8pj4-4wisaz8pj4.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000002663974"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"375378"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4wisaz8pj4"},{"Name":"integrity","Value":"sha256-pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q="},{"Name":"label","Value":"_framework/System.Data.Common.wasm"},{"Name":"original-resource","Value":"\"pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q=\""}]},{"Route":"_framework/System.Data.Common.4wisaz8pj4.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\68hq2gv5cb-{0}-4wisaz8pj4-4wisaz8pj4.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"375378"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4wisaz8pj4"},{"Name":"integrity","Value":"sha256-ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A="},{"Name":"label","Value":"_framework/System.Data.Common.wasm.gz"}]},{"Route":"_framework/System.Data.Common.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Data.Common.4wisaz8pj4.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1007893"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q="}]},{"Route":"_framework/System.Data.Common.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\68hq2gv5cb-{0}-4wisaz8pj4-4wisaz8pj4.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000002663974"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"375378"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q="},{"Name":"original-resource","Value":"\"pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q=\""}]},{"Route":"_framework/System.Data.Common.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\68hq2gv5cb-{0}-4wisaz8pj4-4wisaz8pj4.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"375378"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A="}]},{"Route":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Data.DataSetExtensions.904tnen1ot.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"904tnen1ot"},{"Name":"integrity","Value":"sha256-dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A="},{"Name":"label","Value":"_framework/System.Data.DataSetExtensions.wasm"}]},{"Route":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sm8o0gwk5g-{0}-904tnen1ot-904tnen1ot.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000480307397"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2081"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"904tnen1ot"},{"Name":"integrity","Value":"sha256-dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A="},{"Name":"label","Value":"_framework/System.Data.DataSetExtensions.wasm"},{"Name":"original-resource","Value":"\"dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A=\""}]},{"Route":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sm8o0gwk5g-{0}-904tnen1ot-904tnen1ot.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2081"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"904tnen1ot"},{"Name":"integrity","Value":"sha256-re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY="},{"Name":"label","Value":"_framework/System.Data.DataSetExtensions.wasm.gz"}]},{"Route":"_framework/System.Data.DataSetExtensions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Data.DataSetExtensions.904tnen1ot.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A="}]},{"Route":"_framework/System.Data.DataSetExtensions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sm8o0gwk5g-{0}-904tnen1ot-904tnen1ot.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000480307397"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2081"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A="},{"Name":"original-resource","Value":"\"dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A=\""}]},{"Route":"_framework/System.Data.DataSetExtensions.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sm8o0gwk5g-{0}-904tnen1ot-904tnen1ot.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2081"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY="}]},{"Route":"_framework/System.Data.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Data.0h75nr7qqd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"15125"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg="}]},{"Route":"_framework/System.Data.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\y20kxtztgi-{0}-0h75nr7qqd-0h75nr7qqd.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000199084213"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5022"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg="},{"Name":"original-resource","Value":"\"7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg=\""}]},{"Route":"_framework/System.Data.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\y20kxtztgi-{0}-0h75nr7qqd-0h75nr7qqd.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5022"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE="}]},{"Route":"_framework/System.Diagnostics.Contracts.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Contracts.z1eotzj35n.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I="}]},{"Route":"_framework/System.Diagnostics.Contracts.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wgdliulfxe-{0}-z1eotzj35n-z1eotzj35n.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000417885499"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2392"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I="},{"Name":"original-resource","Value":"\"2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I=\""}]},{"Route":"_framework/System.Diagnostics.Contracts.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wgdliulfxe-{0}-z1eotzj35n-z1eotzj35n.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2392"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY="}]},{"Route":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Contracts.z1eotzj35n.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z1eotzj35n"},{"Name":"integrity","Value":"sha256-2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I="},{"Name":"label","Value":"_framework/System.Diagnostics.Contracts.wasm"}]},{"Route":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wgdliulfxe-{0}-z1eotzj35n-z1eotzj35n.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000417885499"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2392"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z1eotzj35n"},{"Name":"integrity","Value":"sha256-2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I="},{"Name":"label","Value":"_framework/System.Diagnostics.Contracts.wasm"},{"Name":"original-resource","Value":"\"2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I=\""}]},{"Route":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wgdliulfxe-{0}-z1eotzj35n-z1eotzj35n.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2392"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z1eotzj35n"},{"Name":"integrity","Value":"sha256-Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY="},{"Name":"label","Value":"_framework/System.Diagnostics.Contracts.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Debug.aeh9b1tcuc.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aeh9b1tcuc"},{"Name":"integrity","Value":"sha256-Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g="},{"Name":"label","Value":"_framework/System.Diagnostics.Debug.wasm"}]},{"Route":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i9mn6d27vy-{0}-aeh9b1tcuc-aeh9b1tcuc.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000437636761"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2284"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aeh9b1tcuc"},{"Name":"integrity","Value":"sha256-Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g="},{"Name":"label","Value":"_framework/System.Diagnostics.Debug.wasm"},{"Name":"original-resource","Value":"\"Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g=\""}]},{"Route":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i9mn6d27vy-{0}-aeh9b1tcuc-aeh9b1tcuc.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2284"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aeh9b1tcuc"},{"Name":"integrity","Value":"sha256-DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk="},{"Name":"label","Value":"_framework/System.Diagnostics.Debug.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.Debug.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Debug.aeh9b1tcuc.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g="}]},{"Route":"_framework/System.Diagnostics.Debug.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i9mn6d27vy-{0}-aeh9b1tcuc-aeh9b1tcuc.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000437636761"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2284"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g="},{"Name":"original-resource","Value":"\"Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g=\""}]},{"Route":"_framework/System.Diagnostics.Debug.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i9mn6d27vy-{0}-aeh9b1tcuc-aeh9b1tcuc.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2284"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk="}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"192277"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ou2dt7nfo2"},{"Name":"integrity","Value":"sha256-sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc="},{"Name":"label","Value":"_framework/System.Diagnostics.DiagnosticSource.wasm"}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\lgx6p69ons-{0}-ou2dt7nfo2-ou2dt7nfo2.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000012340499"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"81033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ou2dt7nfo2"},{"Name":"integrity","Value":"sha256-sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc="},{"Name":"label","Value":"_framework/System.Diagnostics.DiagnosticSource.wasm"},{"Name":"original-resource","Value":"\"sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc=\""}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\lgx6p69ons-{0}-ou2dt7nfo2-ou2dt7nfo2.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"81033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ou2dt7nfo2"},{"Name":"integrity","Value":"sha256-4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs="},{"Name":"label","Value":"_framework/System.Diagnostics.DiagnosticSource.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"192277"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc="}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\lgx6p69ons-{0}-ou2dt7nfo2-ou2dt7nfo2.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000012340499"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"81033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc="},{"Name":"original-resource","Value":"\"sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc=\""}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\lgx6p69ons-{0}-ou2dt7nfo2-ou2dt7nfo2.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"81033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs="}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"12565"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kv9gl8mgag"},{"Name":"integrity","Value":"sha256-ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4="},{"Name":"label","Value":"_framework/System.Diagnostics.FileVersionInfo.wasm"}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i7dsezujyr-{0}-kv9gl8mgag-kv9gl8mgag.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000194817845"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5132"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kv9gl8mgag"},{"Name":"integrity","Value":"sha256-ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4="},{"Name":"label","Value":"_framework/System.Diagnostics.FileVersionInfo.wasm"},{"Name":"original-resource","Value":"\"ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4=\""}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i7dsezujyr-{0}-kv9gl8mgag-kv9gl8mgag.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5132"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kv9gl8mgag"},{"Name":"integrity","Value":"sha256-Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA="},{"Name":"label","Value":"_framework/System.Diagnostics.FileVersionInfo.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"12565"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4="}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i7dsezujyr-{0}-kv9gl8mgag-kv9gl8mgag.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000194817845"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5132"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4="},{"Name":"original-resource","Value":"\"ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4=\""}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i7dsezujyr-{0}-kv9gl8mgag-kv9gl8mgag.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5132"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA="}]},{"Route":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Process.lqtqkmw274.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"46357"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lqtqkmw274"},{"Name":"integrity","Value":"sha256-87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk="},{"Name":"label","Value":"_framework/System.Diagnostics.Process.wasm"}]},{"Route":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\67s0zux9y9-{0}-lqtqkmw274-lqtqkmw274.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061736017"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lqtqkmw274"},{"Name":"integrity","Value":"sha256-87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk="},{"Name":"label","Value":"_framework/System.Diagnostics.Process.wasm"},{"Name":"original-resource","Value":"\"87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk=\""}]},{"Route":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\67s0zux9y9-{0}-lqtqkmw274-lqtqkmw274.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lqtqkmw274"},{"Name":"integrity","Value":"sha256-a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0="},{"Name":"label","Value":"_framework/System.Diagnostics.Process.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.Process.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Process.lqtqkmw274.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"46357"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk="}]},{"Route":"_framework/System.Diagnostics.Process.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\67s0zux9y9-{0}-lqtqkmw274-lqtqkmw274.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061736017"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk="},{"Name":"original-resource","Value":"\"87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk=\""}]},{"Route":"_framework/System.Diagnostics.Process.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\67s0zux9y9-{0}-lqtqkmw274-lqtqkmw274.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0="}]},{"Route":"_framework/System.Diagnostics.StackTrace.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.StackTrace.wvlboxd9cz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"15637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls="}]},{"Route":"_framework/System.Diagnostics.StackTrace.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ae1qv5wfu3-{0}-wvlboxd9cz-wvlboxd9cz.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000135758892"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7365"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls="},{"Name":"original-resource","Value":"\"jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls=\""}]},{"Route":"_framework/System.Diagnostics.StackTrace.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ae1qv5wfu3-{0}-wvlboxd9cz-wvlboxd9cz.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7365"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg="}]},{"Route":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.StackTrace.wvlboxd9cz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"15637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wvlboxd9cz"},{"Name":"integrity","Value":"sha256-jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls="},{"Name":"label","Value":"_framework/System.Diagnostics.StackTrace.wasm"}]},{"Route":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ae1qv5wfu3-{0}-wvlboxd9cz-wvlboxd9cz.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000135758892"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7365"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wvlboxd9cz"},{"Name":"integrity","Value":"sha256-jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls="},{"Name":"label","Value":"_framework/System.Diagnostics.StackTrace.wasm"},{"Name":"original-resource","Value":"\"jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls=\""}]},{"Route":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ae1qv5wfu3-{0}-wvlboxd9cz-wvlboxd9cz.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7365"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wvlboxd9cz"},{"Name":"integrity","Value":"sha256-+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg="},{"Name":"label","Value":"_framework/System.Diagnostics.StackTrace.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"21269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mx5w1z1p6w"},{"Name":"integrity","Value":"sha256-9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8="},{"Name":"label","Value":"_framework/System.Diagnostics.TextWriterTraceListener.wasm"}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5psn88uayv-{0}-mx5w1z1p6w-mx5w1z1p6w.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000106484932"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mx5w1z1p6w"},{"Name":"integrity","Value":"sha256-9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8="},{"Name":"label","Value":"_framework/System.Diagnostics.TextWriterTraceListener.wasm"},{"Name":"original-resource","Value":"\"9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8=\""}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5psn88uayv-{0}-mx5w1z1p6w-mx5w1z1p6w.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mx5w1z1p6w"},{"Name":"integrity","Value":"sha256-bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY="},{"Name":"label","Value":"_framework/System.Diagnostics.TextWriterTraceListener.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"21269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8="}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5psn88uayv-{0}-mx5w1z1p6w-mx5w1z1p6w.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000106484932"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8="},{"Name":"original-resource","Value":"\"9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8=\""}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5psn88uayv-{0}-mx5w1z1p6w-mx5w1z1p6w.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY="}]},{"Route":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Tools.862j1ozg5o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"862j1ozg5o"},{"Name":"integrity","Value":"sha256-wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE="},{"Name":"label","Value":"_framework/System.Diagnostics.Tools.wasm"}]},{"Route":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6yvil548ai-{0}-862j1ozg5o-862j1ozg5o.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455580866"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"862j1ozg5o"},{"Name":"integrity","Value":"sha256-wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE="},{"Name":"label","Value":"_framework/System.Diagnostics.Tools.wasm"},{"Name":"original-resource","Value":"\"wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE=\""}]},{"Route":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6yvil548ai-{0}-862j1ozg5o-862j1ozg5o.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"862j1ozg5o"},{"Name":"integrity","Value":"sha256-Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0="},{"Name":"label","Value":"_framework/System.Diagnostics.Tools.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.Tools.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Tools.862j1ozg5o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE="}]},{"Route":"_framework/System.Diagnostics.Tools.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6yvil548ai-{0}-862j1ozg5o-862j1ozg5o.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455580866"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE="},{"Name":"original-resource","Value":"\"wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE=\""}]},{"Route":"_framework/System.Diagnostics.Tools.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6yvil548ai-{0}-862j1ozg5o-862j1ozg5o.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0="}]},{"Route":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.TraceSource.j08okd90mo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"48405"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j08okd90mo"},{"Name":"integrity","Value":"sha256-k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc="},{"Name":"label","Value":"_framework/System.Diagnostics.TraceSource.wasm"}]},{"Route":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\w9uuhprkgr-{0}-j08okd90mo-j08okd90mo.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000049701789"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20119"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j08okd90mo"},{"Name":"integrity","Value":"sha256-k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc="},{"Name":"label","Value":"_framework/System.Diagnostics.TraceSource.wasm"},{"Name":"original-resource","Value":"\"k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc=\""}]},{"Route":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\w9uuhprkgr-{0}-j08okd90mo-j08okd90mo.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20119"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j08okd90mo"},{"Name":"integrity","Value":"sha256-xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM="},{"Name":"label","Value":"_framework/System.Diagnostics.TraceSource.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.TraceSource.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.TraceSource.j08okd90mo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"48405"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc="}]},{"Route":"_framework/System.Diagnostics.TraceSource.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\w9uuhprkgr-{0}-j08okd90mo-j08okd90mo.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000049701789"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20119"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc="},{"Name":"original-resource","Value":"\"k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc=\""}]},{"Route":"_framework/System.Diagnostics.TraceSource.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\w9uuhprkgr-{0}-j08okd90mo-j08okd90mo.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20119"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM="}]},{"Route":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Tracing.bnz7jo4op8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bnz7jo4op8"},{"Name":"integrity","Value":"sha256-ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg="},{"Name":"label","Value":"_framework/System.Diagnostics.Tracing.wasm"}]},{"Route":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ymz6pz7ujf-{0}-bnz7jo4op8-bnz7jo4op8.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000398406375"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bnz7jo4op8"},{"Name":"integrity","Value":"sha256-ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg="},{"Name":"label","Value":"_framework/System.Diagnostics.Tracing.wasm"},{"Name":"original-resource","Value":"\"ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg=\""}]},{"Route":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ymz6pz7ujf-{0}-bnz7jo4op8-bnz7jo4op8.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bnz7jo4op8"},{"Name":"integrity","Value":"sha256-ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI="},{"Name":"label","Value":"_framework/System.Diagnostics.Tracing.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.Tracing.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Tracing.bnz7jo4op8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg="}]},{"Route":"_framework/System.Diagnostics.Tracing.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ymz6pz7ujf-{0}-bnz7jo4op8-bnz7jo4op8.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000398406375"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg="},{"Name":"original-resource","Value":"\"ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg=\""}]},{"Route":"_framework/System.Diagnostics.Tracing.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ymz6pz7ujf-{0}-bnz7jo4op8-bnz7jo4op8.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI="}]},{"Route":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Drawing.Primitives.k3z431p3v7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"54549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k3z431p3v7"},{"Name":"integrity","Value":"sha256-sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U="},{"Name":"label","Value":"_framework/System.Drawing.Primitives.wasm"}]},{"Route":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\beyjjw9nw7-{0}-k3z431p3v7-k3z431p3v7.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041590418"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24043"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k3z431p3v7"},{"Name":"integrity","Value":"sha256-sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U="},{"Name":"label","Value":"_framework/System.Drawing.Primitives.wasm"},{"Name":"original-resource","Value":"\"sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U=\""}]},{"Route":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\beyjjw9nw7-{0}-k3z431p3v7-k3z431p3v7.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24043"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k3z431p3v7"},{"Name":"integrity","Value":"sha256-s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto="},{"Name":"label","Value":"_framework/System.Drawing.Primitives.wasm.gz"}]},{"Route":"_framework/System.Drawing.Primitives.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Drawing.Primitives.k3z431p3v7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"54549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U="}]},{"Route":"_framework/System.Drawing.Primitives.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\beyjjw9nw7-{0}-k3z431p3v7-k3z431p3v7.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041590418"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24043"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U="},{"Name":"original-resource","Value":"\"sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U=\""}]},{"Route":"_framework/System.Drawing.Primitives.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\beyjjw9nw7-{0}-k3z431p3v7-k3z431p3v7.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24043"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto="}]},{"Route":"_framework/System.Drawing.v0usa2s224.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Drawing.v0usa2s224.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0usa2s224"},{"Name":"integrity","Value":"sha256-/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I="},{"Name":"label","Value":"_framework/System.Drawing.wasm"}]},{"Route":"_framework/System.Drawing.v0usa2s224.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\bm4t56k5pn-{0}-v0usa2s224-v0usa2s224.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000258732212"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3864"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0usa2s224"},{"Name":"integrity","Value":"sha256-/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I="},{"Name":"label","Value":"_framework/System.Drawing.wasm"},{"Name":"original-resource","Value":"\"/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I=\""}]},{"Route":"_framework/System.Drawing.v0usa2s224.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\bm4t56k5pn-{0}-v0usa2s224-v0usa2s224.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3864"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0usa2s224"},{"Name":"integrity","Value":"sha256-ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c="},{"Name":"label","Value":"_framework/System.Drawing.wasm.gz"}]},{"Route":"_framework/System.Drawing.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Drawing.v0usa2s224.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I="}]},{"Route":"_framework/System.Drawing.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\bm4t56k5pn-{0}-v0usa2s224-v0usa2s224.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000258732212"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3864"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I="},{"Name":"original-resource","Value":"\"/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I=\""}]},{"Route":"_framework/System.Drawing.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\bm4t56k5pn-{0}-v0usa2s224-v0usa2s224.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3864"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c="}]},{"Route":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Dynamic.Runtime.iktlm0yhdx.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iktlm0yhdx"},{"Name":"integrity","Value":"sha256-8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ="},{"Name":"label","Value":"_framework/System.Dynamic.Runtime.wasm"}]},{"Route":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\95o3q4uwxv-{0}-iktlm0yhdx-iktlm0yhdx.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000408997955"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2444"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iktlm0yhdx"},{"Name":"integrity","Value":"sha256-8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ="},{"Name":"label","Value":"_framework/System.Dynamic.Runtime.wasm"},{"Name":"original-resource","Value":"\"8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ=\""}]},{"Route":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\95o3q4uwxv-{0}-iktlm0yhdx-iktlm0yhdx.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2444"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iktlm0yhdx"},{"Name":"integrity","Value":"sha256-DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A="},{"Name":"label","Value":"_framework/System.Dynamic.Runtime.wasm.gz"}]},{"Route":"_framework/System.Dynamic.Runtime.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Dynamic.Runtime.iktlm0yhdx.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ="}]},{"Route":"_framework/System.Dynamic.Runtime.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\95o3q4uwxv-{0}-iktlm0yhdx-iktlm0yhdx.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000408997955"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2444"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ="},{"Name":"original-resource","Value":"\"8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ=\""}]},{"Route":"_framework/System.Dynamic.Runtime.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\95o3q4uwxv-{0}-iktlm0yhdx-iktlm0yhdx.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2444"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A="}]},{"Route":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Formats.Asn1.9iyl1hnh76.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"86805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9iyl1hnh76"},{"Name":"integrity","Value":"sha256-8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0="},{"Name":"label","Value":"_framework/System.Formats.Asn1.wasm"}]},{"Route":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\2eqyybz3l2-{0}-9iyl1hnh76-9iyl1hnh76.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000028005713"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35706"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9iyl1hnh76"},{"Name":"integrity","Value":"sha256-8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0="},{"Name":"label","Value":"_framework/System.Formats.Asn1.wasm"},{"Name":"original-resource","Value":"\"8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0=\""}]},{"Route":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\2eqyybz3l2-{0}-9iyl1hnh76-9iyl1hnh76.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35706"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9iyl1hnh76"},{"Name":"integrity","Value":"sha256-LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw="},{"Name":"label","Value":"_framework/System.Formats.Asn1.wasm.gz"}]},{"Route":"_framework/System.Formats.Asn1.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Formats.Asn1.9iyl1hnh76.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"86805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0="}]},{"Route":"_framework/System.Formats.Asn1.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\2eqyybz3l2-{0}-9iyl1hnh76-9iyl1hnh76.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000028005713"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35706"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0="},{"Name":"original-resource","Value":"\"8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0=\""}]},{"Route":"_framework/System.Formats.Asn1.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\2eqyybz3l2-{0}-9iyl1hnh76-9iyl1hnh76.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35706"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw="}]},{"Route":"_framework/System.Formats.Tar.9ikmelhi7g.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Formats.Tar.9ikmelhi7g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"28437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ikmelhi7g"},{"Name":"integrity","Value":"sha256-rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE="},{"Name":"label","Value":"_framework/System.Formats.Tar.wasm"}]},{"Route":"_framework/System.Formats.Tar.9ikmelhi7g.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\aawrgxq7b9-{0}-9ikmelhi7g-9ikmelhi7g.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000095292548"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10493"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ikmelhi7g"},{"Name":"integrity","Value":"sha256-rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE="},{"Name":"label","Value":"_framework/System.Formats.Tar.wasm"},{"Name":"original-resource","Value":"\"rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE=\""}]},{"Route":"_framework/System.Formats.Tar.9ikmelhi7g.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\aawrgxq7b9-{0}-9ikmelhi7g-9ikmelhi7g.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10493"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ikmelhi7g"},{"Name":"integrity","Value":"sha256-F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k="},{"Name":"label","Value":"_framework/System.Formats.Tar.wasm.gz"}]},{"Route":"_framework/System.Formats.Tar.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Formats.Tar.9ikmelhi7g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"28437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE="}]},{"Route":"_framework/System.Formats.Tar.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\aawrgxq7b9-{0}-9ikmelhi7g-9ikmelhi7g.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000095292548"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10493"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE="},{"Name":"original-resource","Value":"\"rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE=\""}]},{"Route":"_framework/System.Formats.Tar.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\aawrgxq7b9-{0}-9ikmelhi7g-9ikmelhi7g.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10493"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k="}]},{"Route":"_framework/System.Globalization.4ulc930few.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Globalization.4ulc930few.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4ulc930few"},{"Name":"integrity","Value":"sha256-jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I="},{"Name":"label","Value":"_framework/System.Globalization.wasm"}]},{"Route":"_framework/System.Globalization.4ulc930few.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\nvjr9jta08-{0}-4ulc930few-4ulc930few.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000439367311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4ulc930few"},{"Name":"integrity","Value":"sha256-jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I="},{"Name":"label","Value":"_framework/System.Globalization.wasm"},{"Name":"original-resource","Value":"\"jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I=\""}]},{"Route":"_framework/System.Globalization.4ulc930few.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\nvjr9jta08-{0}-4ulc930few-4ulc930few.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4ulc930few"},{"Name":"integrity","Value":"sha256-GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA="},{"Name":"label","Value":"_framework/System.Globalization.wasm.gz"}]},{"Route":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Globalization.Calendars.e8yl47y6cv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e8yl47y6cv"},{"Name":"integrity","Value":"sha256-jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo="},{"Name":"label","Value":"_framework/System.Globalization.Calendars.wasm"}]},{"Route":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\g4w42juzkx-{0}-e8yl47y6cv-e8yl47y6cv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000434971727"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2298"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e8yl47y6cv"},{"Name":"integrity","Value":"sha256-jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo="},{"Name":"label","Value":"_framework/System.Globalization.Calendars.wasm"},{"Name":"original-resource","Value":"\"jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo=\""}]},{"Route":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\g4w42juzkx-{0}-e8yl47y6cv-e8yl47y6cv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2298"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e8yl47y6cv"},{"Name":"integrity","Value":"sha256-bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A="},{"Name":"label","Value":"_framework/System.Globalization.Calendars.wasm.gz"}]},{"Route":"_framework/System.Globalization.Calendars.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Globalization.Calendars.e8yl47y6cv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo="}]},{"Route":"_framework/System.Globalization.Calendars.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\g4w42juzkx-{0}-e8yl47y6cv-e8yl47y6cv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000434971727"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2298"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo="},{"Name":"original-resource","Value":"\"jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo=\""}]},{"Route":"_framework/System.Globalization.Calendars.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\g4w42juzkx-{0}-e8yl47y6cv-e8yl47y6cv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2298"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A="}]},{"Route":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Globalization.Extensions.fvxkfs32tv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvxkfs32tv"},{"Name":"integrity","Value":"sha256-e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ="},{"Name":"label","Value":"_framework/System.Globalization.Extensions.wasm"}]},{"Route":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\g3b5a282rj-{0}-fvxkfs32tv-fvxkfs32tv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000456412597"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2190"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvxkfs32tv"},{"Name":"integrity","Value":"sha256-e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ="},{"Name":"label","Value":"_framework/System.Globalization.Extensions.wasm"},{"Name":"original-resource","Value":"\"e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ=\""}]},{"Route":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\g3b5a282rj-{0}-fvxkfs32tv-fvxkfs32tv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2190"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvxkfs32tv"},{"Name":"integrity","Value":"sha256-mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o="},{"Name":"label","Value":"_framework/System.Globalization.Extensions.wasm.gz"}]},{"Route":"_framework/System.Globalization.Extensions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Globalization.Extensions.fvxkfs32tv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ="}]},{"Route":"_framework/System.Globalization.Extensions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\g3b5a282rj-{0}-fvxkfs32tv-fvxkfs32tv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000456412597"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2190"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ="},{"Name":"original-resource","Value":"\"e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ=\""}]},{"Route":"_framework/System.Globalization.Extensions.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\g3b5a282rj-{0}-fvxkfs32tv-fvxkfs32tv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2190"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o="}]},{"Route":"_framework/System.Globalization.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Globalization.4ulc930few.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I="}]},{"Route":"_framework/System.Globalization.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\nvjr9jta08-{0}-4ulc930few-4ulc930few.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000439367311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I="},{"Name":"original-resource","Value":"\"jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I=\""}]},{"Route":"_framework/System.Globalization.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\nvjr9jta08-{0}-4ulc930few-4ulc930few.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA="}]},{"Route":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.Brotli.ibxx4kh8c6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ibxx4kh8c6"},{"Name":"integrity","Value":"sha256-7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY="},{"Name":"label","Value":"_framework/System.IO.Compression.Brotli.wasm"}]},{"Route":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\flmzbagm0p-{0}-ibxx4kh8c6-ibxx4kh8c6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000143988481"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6944"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ibxx4kh8c6"},{"Name":"integrity","Value":"sha256-7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY="},{"Name":"label","Value":"_framework/System.IO.Compression.Brotli.wasm"},{"Name":"original-resource","Value":"\"7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY=\""}]},{"Route":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\flmzbagm0p-{0}-ibxx4kh8c6-ibxx4kh8c6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6944"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ibxx4kh8c6"},{"Name":"integrity","Value":"sha256-1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw="},{"Name":"label","Value":"_framework/System.IO.Compression.Brotli.wasm.gz"}]},{"Route":"_framework/System.IO.Compression.Brotli.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.Brotli.ibxx4kh8c6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY="}]},{"Route":"_framework/System.IO.Compression.Brotli.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\flmzbagm0p-{0}-ibxx4kh8c6-ibxx4kh8c6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000143988481"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6944"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY="},{"Name":"original-resource","Value":"\"7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY=\""}]},{"Route":"_framework/System.IO.Compression.Brotli.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\flmzbagm0p-{0}-ibxx4kh8c6-ibxx4kh8c6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6944"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw="}]},{"Route":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.FileSystem.bselp9vv9w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bselp9vv9w"},{"Name":"integrity","Value":"sha256-5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM="},{"Name":"label","Value":"_framework/System.IO.Compression.FileSystem.wasm"}]},{"Route":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ffagyufl1o-{0}-bselp9vv9w-bselp9vv9w.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000498504487"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bselp9vv9w"},{"Name":"integrity","Value":"sha256-5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM="},{"Name":"label","Value":"_framework/System.IO.Compression.FileSystem.wasm"},{"Name":"original-resource","Value":"\"5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM=\""}]},{"Route":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ffagyufl1o-{0}-bselp9vv9w-bselp9vv9w.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bselp9vv9w"},{"Name":"integrity","Value":"sha256-dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI="},{"Name":"label","Value":"_framework/System.IO.Compression.FileSystem.wasm.gz"}]},{"Route":"_framework/System.IO.Compression.FileSystem.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.FileSystem.bselp9vv9w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM="}]},{"Route":"_framework/System.IO.Compression.FileSystem.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ffagyufl1o-{0}-bselp9vv9w-bselp9vv9w.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000498504487"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM="},{"Name":"original-resource","Value":"\"5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM=\""}]},{"Route":"_framework/System.IO.Compression.FileSystem.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ffagyufl1o-{0}-bselp9vv9w-bselp9vv9w.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI="}]},{"Route":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.ZipFile.b0ha8vyo8i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"43285"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b0ha8vyo8i"},{"Name":"integrity","Value":"sha256-m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk="},{"Name":"label","Value":"_framework/System.IO.Compression.ZipFile.wasm"}]},{"Route":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\a99cqvh69a-{0}-b0ha8vyo8i-b0ha8vyo8i.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053490238"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18694"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b0ha8vyo8i"},{"Name":"integrity","Value":"sha256-m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk="},{"Name":"label","Value":"_framework/System.IO.Compression.ZipFile.wasm"},{"Name":"original-resource","Value":"\"m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk=\""}]},{"Route":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\a99cqvh69a-{0}-b0ha8vyo8i-b0ha8vyo8i.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18694"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b0ha8vyo8i"},{"Name":"integrity","Value":"sha256-+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc="},{"Name":"label","Value":"_framework/System.IO.Compression.ZipFile.wasm.gz"}]},{"Route":"_framework/System.IO.Compression.ZipFile.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.ZipFile.b0ha8vyo8i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"43285"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk="}]},{"Route":"_framework/System.IO.Compression.ZipFile.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\a99cqvh69a-{0}-b0ha8vyo8i-b0ha8vyo8i.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053490238"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18694"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk="},{"Name":"original-resource","Value":"\"m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk=\""}]},{"Route":"_framework/System.IO.Compression.ZipFile.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\a99cqvh69a-{0}-b0ha8vyo8i-b0ha8vyo8i.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18694"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc="}]},{"Route":"_framework/System.IO.Compression.sgbc42zrd8.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.sgbc42zrd8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"157461"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sgbc42zrd8"},{"Name":"integrity","Value":"sha256-DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY="},{"Name":"label","Value":"_framework/System.IO.Compression.wasm"}]},{"Route":"_framework/System.IO.Compression.sgbc42zrd8.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mk5261bq2v-{0}-sgbc42zrd8-sgbc42zrd8.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015435195"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64786"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sgbc42zrd8"},{"Name":"integrity","Value":"sha256-DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY="},{"Name":"label","Value":"_framework/System.IO.Compression.wasm"},{"Name":"original-resource","Value":"\"DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY=\""}]},{"Route":"_framework/System.IO.Compression.sgbc42zrd8.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mk5261bq2v-{0}-sgbc42zrd8-sgbc42zrd8.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64786"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sgbc42zrd8"},{"Name":"integrity","Value":"sha256-/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28="},{"Name":"label","Value":"_framework/System.IO.Compression.wasm.gz"}]},{"Route":"_framework/System.IO.Compression.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.sgbc42zrd8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"157461"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY="}]},{"Route":"_framework/System.IO.Compression.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mk5261bq2v-{0}-sgbc42zrd8-sgbc42zrd8.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015435195"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64786"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY="},{"Name":"original-resource","Value":"\"DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY=\""}]},{"Route":"_framework/System.IO.Compression.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mk5261bq2v-{0}-sgbc42zrd8-sgbc42zrd8.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64786"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28="}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"21781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oi9xn5s0h3"},{"Name":"integrity","Value":"sha256-kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg="},{"Name":"label","Value":"_framework/System.IO.FileSystem.AccessControl.wasm"}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m3i6jtsneo-{0}-oi9xn5s0h3-oi9xn5s0h3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000117994100"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8474"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oi9xn5s0h3"},{"Name":"integrity","Value":"sha256-kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg="},{"Name":"label","Value":"_framework/System.IO.FileSystem.AccessControl.wasm"},{"Name":"original-resource","Value":"\"kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg=\""}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m3i6jtsneo-{0}-oi9xn5s0h3-oi9xn5s0h3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8474"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oi9xn5s0h3"},{"Name":"integrity","Value":"sha256-dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A="},{"Name":"label","Value":"_framework/System.IO.FileSystem.AccessControl.wasm.gz"}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"21781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg="}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m3i6jtsneo-{0}-oi9xn5s0h3-oi9xn5s0h3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000117994100"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8474"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg="},{"Name":"original-resource","Value":"\"kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg=\""}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m3i6jtsneo-{0}-oi9xn5s0h3-oi9xn5s0h3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8474"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A="}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13589"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fi1uhp9255"},{"Name":"integrity","Value":"sha256-2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU="},{"Name":"label","Value":"_framework/System.IO.FileSystem.DriveInfo.wasm"}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8i8whn9pm1-{0}-fi1uhp9255-fi1uhp9255.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000165727544"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fi1uhp9255"},{"Name":"integrity","Value":"sha256-2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU="},{"Name":"label","Value":"_framework/System.IO.FileSystem.DriveInfo.wasm"},{"Name":"original-resource","Value":"\"2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU=\""}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8i8whn9pm1-{0}-fi1uhp9255-fi1uhp9255.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fi1uhp9255"},{"Name":"integrity","Value":"sha256-9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4="},{"Name":"label","Value":"_framework/System.IO.FileSystem.DriveInfo.wasm.gz"}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13589"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU="}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8i8whn9pm1-{0}-fi1uhp9255-fi1uhp9255.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000165727544"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU="},{"Name":"original-resource","Value":"\"2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU=\""}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8i8whn9pm1-{0}-fi1uhp9255-fi1uhp9255.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4="}]},{"Route":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.6j2ed42ac7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6j2ed42ac7"},{"Name":"integrity","Value":"sha256-UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Primitives.wasm"}]},{"Route":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kzc385ysv6-{0}-6j2ed42ac7-6j2ed42ac7.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455996352"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2192"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6j2ed42ac7"},{"Name":"integrity","Value":"sha256-UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Primitives.wasm"},{"Name":"original-resource","Value":"\"UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI=\""}]},{"Route":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kzc385ysv6-{0}-6j2ed42ac7-6j2ed42ac7.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2192"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6j2ed42ac7"},{"Name":"integrity","Value":"sha256-apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Primitives.wasm.gz"}]},{"Route":"_framework/System.IO.FileSystem.Primitives.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.6j2ed42ac7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI="}]},{"Route":"_framework/System.IO.FileSystem.Primitives.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kzc385ysv6-{0}-6j2ed42ac7-6j2ed42ac7.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455996352"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2192"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI="},{"Name":"original-resource","Value":"\"UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI=\""}]},{"Route":"_framework/System.IO.FileSystem.Primitives.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kzc385ysv6-{0}-6j2ed42ac7-6j2ed42ac7.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2192"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg="}]},{"Route":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.v9i07bnq2k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v9i07bnq2k"},{"Name":"integrity","Value":"sha256-g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Watcher.wasm"}]},{"Route":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m428rlfc87-{0}-v9i07bnq2k-v9i07bnq2k.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000114259598"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8751"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v9i07bnq2k"},{"Name":"integrity","Value":"sha256-g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Watcher.wasm"},{"Name":"original-resource","Value":"\"g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg=\""}]},{"Route":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m428rlfc87-{0}-v9i07bnq2k-v9i07bnq2k.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8751"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v9i07bnq2k"},{"Name":"integrity","Value":"sha256-XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Watcher.wasm.gz"}]},{"Route":"_framework/System.IO.FileSystem.Watcher.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.v9i07bnq2k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg="}]},{"Route":"_framework/System.IO.FileSystem.Watcher.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m428rlfc87-{0}-v9i07bnq2k-v9i07bnq2k.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000114259598"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8751"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg="},{"Name":"original-resource","Value":"\"g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg=\""}]},{"Route":"_framework/System.IO.FileSystem.Watcher.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m428rlfc87-{0}-v9i07bnq2k-v9i07bnq2k.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8751"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ="}]},{"Route":"_framework/System.IO.FileSystem.fktu0k4b93.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.fktu0k4b93.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fktu0k4b93"},{"Name":"integrity","Value":"sha256-L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM="},{"Name":"label","Value":"_framework/System.IO.FileSystem.wasm"}]},{"Route":"_framework/System.IO.FileSystem.fktu0k4b93.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vnqjd4ny0q-{0}-fktu0k4b93-fktu0k4b93.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000434027778"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2303"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fktu0k4b93"},{"Name":"integrity","Value":"sha256-L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM="},{"Name":"label","Value":"_framework/System.IO.FileSystem.wasm"},{"Name":"original-resource","Value":"\"L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM=\""}]},{"Route":"_framework/System.IO.FileSystem.fktu0k4b93.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vnqjd4ny0q-{0}-fktu0k4b93-fktu0k4b93.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2303"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fktu0k4b93"},{"Name":"integrity","Value":"sha256-1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ="},{"Name":"label","Value":"_framework/System.IO.FileSystem.wasm.gz"}]},{"Route":"_framework/System.IO.FileSystem.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.fktu0k4b93.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM="}]},{"Route":"_framework/System.IO.FileSystem.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vnqjd4ny0q-{0}-fktu0k4b93-fktu0k4b93.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000434027778"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2303"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM="},{"Name":"original-resource","Value":"\"L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM=\""}]},{"Route":"_framework/System.IO.FileSystem.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vnqjd4ny0q-{0}-fktu0k4b93-fktu0k4b93.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2303"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ="}]},{"Route":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.IsolatedStorage.8ll4gxwfs1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"24853"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8ll4gxwfs1"},{"Name":"integrity","Value":"sha256-TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4="},{"Name":"label","Value":"_framework/System.IO.IsolatedStorage.wasm"}]},{"Route":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\na7pgc18jv-{0}-8ll4gxwfs1-8ll4gxwfs1.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000106723586"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9369"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8ll4gxwfs1"},{"Name":"integrity","Value":"sha256-TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4="},{"Name":"label","Value":"_framework/System.IO.IsolatedStorage.wasm"},{"Name":"original-resource","Value":"\"TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4=\""}]},{"Route":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\na7pgc18jv-{0}-8ll4gxwfs1-8ll4gxwfs1.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9369"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8ll4gxwfs1"},{"Name":"integrity","Value":"sha256-KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ="},{"Name":"label","Value":"_framework/System.IO.IsolatedStorage.wasm.gz"}]},{"Route":"_framework/System.IO.IsolatedStorage.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.IsolatedStorage.8ll4gxwfs1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"24853"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4="}]},{"Route":"_framework/System.IO.IsolatedStorage.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\na7pgc18jv-{0}-8ll4gxwfs1-8ll4gxwfs1.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000106723586"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9369"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4="},{"Name":"original-resource","Value":"\"TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4=\""}]},{"Route":"_framework/System.IO.IsolatedStorage.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\na7pgc18jv-{0}-8ll4gxwfs1-8ll4gxwfs1.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9369"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ="}]},{"Route":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.6do4olk7ib.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"39701"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6do4olk7ib"},{"Name":"integrity","Value":"sha256-WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk="},{"Name":"label","Value":"_framework/System.IO.MemoryMappedFiles.wasm"}]},{"Route":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\rsffl3vumf-{0}-6do4olk7ib-6do4olk7ib.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000058775126"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6do4olk7ib"},{"Name":"integrity","Value":"sha256-WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk="},{"Name":"label","Value":"_framework/System.IO.MemoryMappedFiles.wasm"},{"Name":"original-resource","Value":"\"WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk=\""}]},{"Route":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\rsffl3vumf-{0}-6do4olk7ib-6do4olk7ib.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6do4olk7ib"},{"Name":"integrity","Value":"sha256-uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk="},{"Name":"label","Value":"_framework/System.IO.MemoryMappedFiles.wasm.gz"}]},{"Route":"_framework/System.IO.MemoryMappedFiles.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.6do4olk7ib.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"39701"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk="}]},{"Route":"_framework/System.IO.MemoryMappedFiles.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\rsffl3vumf-{0}-6do4olk7ib-6do4olk7ib.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000058775126"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk="},{"Name":"original-resource","Value":"\"WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk=\""}]},{"Route":"_framework/System.IO.MemoryMappedFiles.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\rsffl3vumf-{0}-6do4olk7ib-6do4olk7ib.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk="}]},{"Route":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Pipelines.21z0t9w6sq.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"67861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"21z0t9w6sq"},{"Name":"integrity","Value":"sha256-VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM="},{"Name":"label","Value":"_framework/System.IO.Pipelines.wasm"}]},{"Route":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\pxy8xfz0ow-{0}-21z0t9w6sq-21z0t9w6sq.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032928315"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30368"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"21z0t9w6sq"},{"Name":"integrity","Value":"sha256-VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM="},{"Name":"label","Value":"_framework/System.IO.Pipelines.wasm"},{"Name":"original-resource","Value":"\"VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM=\""}]},{"Route":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\pxy8xfz0ow-{0}-21z0t9w6sq-21z0t9w6sq.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30368"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"21z0t9w6sq"},{"Name":"integrity","Value":"sha256-7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8="},{"Name":"label","Value":"_framework/System.IO.Pipelines.wasm.gz"}]},{"Route":"_framework/System.IO.Pipelines.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Pipelines.21z0t9w6sq.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"67861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM="}]},{"Route":"_framework/System.IO.Pipelines.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\pxy8xfz0ow-{0}-21z0t9w6sq-21z0t9w6sq.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032928315"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30368"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM="},{"Name":"original-resource","Value":"\"VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM=\""}]},{"Route":"_framework/System.IO.Pipelines.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\pxy8xfz0ow-{0}-21z0t9w6sq-21z0t9w6sq.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30368"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8="}]},{"Route":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.5lvzz4lks7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5lvzz4lks7"},{"Name":"integrity","Value":"sha256-qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE="},{"Name":"label","Value":"_framework/System.IO.Pipes.AccessControl.wasm"}]},{"Route":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\lvyasyre47-{0}-5lvzz4lks7-5lvzz4lks7.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000179597701"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5567"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5lvzz4lks7"},{"Name":"integrity","Value":"sha256-qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE="},{"Name":"label","Value":"_framework/System.IO.Pipes.AccessControl.wasm"},{"Name":"original-resource","Value":"\"qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE=\""}]},{"Route":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\lvyasyre47-{0}-5lvzz4lks7-5lvzz4lks7.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5567"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5lvzz4lks7"},{"Name":"integrity","Value":"sha256-+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4="},{"Name":"label","Value":"_framework/System.IO.Pipes.AccessControl.wasm.gz"}]},{"Route":"_framework/System.IO.Pipes.AccessControl.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.5lvzz4lks7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE="}]},{"Route":"_framework/System.IO.Pipes.AccessControl.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\lvyasyre47-{0}-5lvzz4lks7-5lvzz4lks7.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000179597701"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5567"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE="},{"Name":"original-resource","Value":"\"qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE=\""}]},{"Route":"_framework/System.IO.Pipes.AccessControl.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\lvyasyre47-{0}-5lvzz4lks7-5lvzz4lks7.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5567"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4="}]},{"Route":"_framework/System.IO.Pipes.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Pipes.xosph8vk4a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg="}]},{"Route":"_framework/System.IO.Pipes.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vjl93wt59v-{0}-xosph8vk4a-xosph8vk4a.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000087703912"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg="},{"Name":"original-resource","Value":"\"gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg=\""}]},{"Route":"_framework/System.IO.Pipes.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vjl93wt59v-{0}-xosph8vk4a-xosph8vk4a.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE="}]},{"Route":"_framework/System.IO.Pipes.xosph8vk4a.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Pipes.xosph8vk4a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xosph8vk4a"},{"Name":"integrity","Value":"sha256-gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg="},{"Name":"label","Value":"_framework/System.IO.Pipes.wasm"}]},{"Route":"_framework/System.IO.Pipes.xosph8vk4a.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vjl93wt59v-{0}-xosph8vk4a-xosph8vk4a.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000087703912"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xosph8vk4a"},{"Name":"integrity","Value":"sha256-gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg="},{"Name":"label","Value":"_framework/System.IO.Pipes.wasm"},{"Name":"original-resource","Value":"\"gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg=\""}]},{"Route":"_framework/System.IO.Pipes.xosph8vk4a.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vjl93wt59v-{0}-xosph8vk4a-xosph8vk4a.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xosph8vk4a"},{"Name":"integrity","Value":"sha256-BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE="},{"Name":"label","Value":"_framework/System.IO.Pipes.wasm.gz"}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d1pja42pyi"},{"Name":"integrity","Value":"sha256-gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4="},{"Name":"label","Value":"_framework/System.IO.UnmanagedMemoryStream.wasm"}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\dzqyarawy9-{0}-d1pja42pyi-d1pja42pyi.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000450045005"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2221"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d1pja42pyi"},{"Name":"integrity","Value":"sha256-gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4="},{"Name":"label","Value":"_framework/System.IO.UnmanagedMemoryStream.wasm"},{"Name":"original-resource","Value":"\"gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4=\""}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\dzqyarawy9-{0}-d1pja42pyi-d1pja42pyi.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2221"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d1pja42pyi"},{"Name":"integrity","Value":"sha256-TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU="},{"Name":"label","Value":"_framework/System.IO.UnmanagedMemoryStream.wasm.gz"}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4="}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\dzqyarawy9-{0}-d1pja42pyi-d1pja42pyi.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000450045005"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2221"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4="},{"Name":"original-resource","Value":"\"gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4=\""}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\dzqyarawy9-{0}-d1pja42pyi-d1pja42pyi.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2221"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU="}]},{"Route":"_framework/System.IO.i9g92fmb9y.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.i9g92fmb9y.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"i9g92fmb9y"},{"Name":"integrity","Value":"sha256-akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw="},{"Name":"label","Value":"_framework/System.IO.wasm"}]},{"Route":"_framework/System.IO.i9g92fmb9y.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kukm29h8dt-{0}-i9g92fmb9y-i9g92fmb9y.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438404209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"i9g92fmb9y"},{"Name":"integrity","Value":"sha256-akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw="},{"Name":"label","Value":"_framework/System.IO.wasm"},{"Name":"original-resource","Value":"\"akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw=\""}]},{"Route":"_framework/System.IO.i9g92fmb9y.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kukm29h8dt-{0}-i9g92fmb9y-i9g92fmb9y.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"i9g92fmb9y"},{"Name":"integrity","Value":"sha256-DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM="},{"Name":"label","Value":"_framework/System.IO.wasm.gz"}]},{"Route":"_framework/System.IO.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.i9g92fmb9y.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw="}]},{"Route":"_framework/System.IO.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kukm29h8dt-{0}-i9g92fmb9y-i9g92fmb9y.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438404209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw="},{"Name":"original-resource","Value":"\"akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw=\""}]},{"Route":"_framework/System.IO.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kukm29h8dt-{0}-i9g92fmb9y-i9g92fmb9y.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM="}]},{"Route":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.AsyncEnumerable.4m1mh525k0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"446229"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m1mh525k0"},{"Name":"integrity","Value":"sha256-VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48="},{"Name":"label","Value":"_framework/System.Linq.AsyncEnumerable.wasm"}]},{"Route":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\1u9lol5zjk-{0}-4m1mh525k0-4m1mh525k0.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006961607"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"143644"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m1mh525k0"},{"Name":"integrity","Value":"sha256-VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48="},{"Name":"label","Value":"_framework/System.Linq.AsyncEnumerable.wasm"},{"Name":"original-resource","Value":"\"VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48=\""}]},{"Route":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\1u9lol5zjk-{0}-4m1mh525k0-4m1mh525k0.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"143644"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m1mh525k0"},{"Name":"integrity","Value":"sha256-Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8="},{"Name":"label","Value":"_framework/System.Linq.AsyncEnumerable.wasm.gz"}]},{"Route":"_framework/System.Linq.AsyncEnumerable.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.AsyncEnumerable.4m1mh525k0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"446229"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48="}]},{"Route":"_framework/System.Linq.AsyncEnumerable.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\1u9lol5zjk-{0}-4m1mh525k0-4m1mh525k0.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006961607"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"143644"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48="},{"Name":"original-resource","Value":"\"VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48=\""}]},{"Route":"_framework/System.Linq.AsyncEnumerable.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\1u9lol5zjk-{0}-4m1mh525k0-4m1mh525k0.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"143644"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8="}]},{"Route":"_framework/System.Linq.Expressions.4nat0rber0.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.Expressions.4nat0rber0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"565013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4nat0rber0"},{"Name":"integrity","Value":"sha256-IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA="},{"Name":"label","Value":"_framework/System.Linq.Expressions.wasm"}]},{"Route":"_framework/System.Linq.Expressions.4nat0rber0.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\r0xa1dsvvu-{0}-4nat0rber0-4nat0rber0.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004689002"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"213264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4nat0rber0"},{"Name":"integrity","Value":"sha256-IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA="},{"Name":"label","Value":"_framework/System.Linq.Expressions.wasm"},{"Name":"original-resource","Value":"\"IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA=\""}]},{"Route":"_framework/System.Linq.Expressions.4nat0rber0.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\r0xa1dsvvu-{0}-4nat0rber0-4nat0rber0.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"213264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4nat0rber0"},{"Name":"integrity","Value":"sha256-Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0="},{"Name":"label","Value":"_framework/System.Linq.Expressions.wasm.gz"}]},{"Route":"_framework/System.Linq.Expressions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.Expressions.4nat0rber0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"565013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA="}]},{"Route":"_framework/System.Linq.Expressions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\r0xa1dsvvu-{0}-4nat0rber0-4nat0rber0.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004689002"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"213264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA="},{"Name":"original-resource","Value":"\"IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA=\""}]},{"Route":"_framework/System.Linq.Expressions.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\r0xa1dsvvu-{0}-4nat0rber0-4nat0rber0.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"213264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0="}]},{"Route":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.Parallel.qf7zemz9aw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"212757"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qf7zemz9aw"},{"Name":"integrity","Value":"sha256-ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18="},{"Name":"label","Value":"_framework/System.Linq.Parallel.wasm"}]},{"Route":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\35llacexwm-{0}-qf7zemz9aw-qf7zemz9aw.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011571663"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86417"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qf7zemz9aw"},{"Name":"integrity","Value":"sha256-ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18="},{"Name":"label","Value":"_framework/System.Linq.Parallel.wasm"},{"Name":"original-resource","Value":"\"ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18=\""}]},{"Route":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\35llacexwm-{0}-qf7zemz9aw-qf7zemz9aw.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86417"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qf7zemz9aw"},{"Name":"integrity","Value":"sha256-NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo="},{"Name":"label","Value":"_framework/System.Linq.Parallel.wasm.gz"}]},{"Route":"_framework/System.Linq.Parallel.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.Parallel.qf7zemz9aw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"212757"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18="}]},{"Route":"_framework/System.Linq.Parallel.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\35llacexwm-{0}-qf7zemz9aw-qf7zemz9aw.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011571663"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86417"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18="},{"Name":"original-resource","Value":"\"ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18=\""}]},{"Route":"_framework/System.Linq.Parallel.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\35llacexwm-{0}-qf7zemz9aw-qf7zemz9aw.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86417"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo="}]},{"Route":"_framework/System.Linq.Queryable.vwinf8twbn.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.Queryable.vwinf8twbn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"68373"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vwinf8twbn"},{"Name":"integrity","Value":"sha256-geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM="},{"Name":"label","Value":"_framework/System.Linq.Queryable.wasm"}]},{"Route":"_framework/System.Linq.Queryable.vwinf8twbn.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hylqczc46z-{0}-vwinf8twbn-vwinf8twbn.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000046755190"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21387"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vwinf8twbn"},{"Name":"integrity","Value":"sha256-geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM="},{"Name":"label","Value":"_framework/System.Linq.Queryable.wasm"},{"Name":"original-resource","Value":"\"geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM=\""}]},{"Route":"_framework/System.Linq.Queryable.vwinf8twbn.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hylqczc46z-{0}-vwinf8twbn-vwinf8twbn.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21387"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vwinf8twbn"},{"Name":"integrity","Value":"sha256-K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts="},{"Name":"label","Value":"_framework/System.Linq.Queryable.wasm.gz"}]},{"Route":"_framework/System.Linq.Queryable.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.Queryable.vwinf8twbn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"68373"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM="}]},{"Route":"_framework/System.Linq.Queryable.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hylqczc46z-{0}-vwinf8twbn-vwinf8twbn.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000046755190"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21387"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM="},{"Name":"original-resource","Value":"\"geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM=\""}]},{"Route":"_framework/System.Linq.Queryable.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hylqczc46z-{0}-vwinf8twbn-vwinf8twbn.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21387"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts="}]},{"Route":"_framework/System.Linq.rp2jklkmsi.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.rp2jklkmsi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"190741"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rp2jklkmsi"},{"Name":"integrity","Value":"sha256-f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA="},{"Name":"label","Value":"_framework/System.Linq.wasm"}]},{"Route":"_framework/System.Linq.rp2jklkmsi.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\p0pe0blimm-{0}-rp2jklkmsi-rp2jklkmsi.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013362017"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"74838"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rp2jklkmsi"},{"Name":"integrity","Value":"sha256-f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA="},{"Name":"label","Value":"_framework/System.Linq.wasm"},{"Name":"original-resource","Value":"\"f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA=\""}]},{"Route":"_framework/System.Linq.rp2jklkmsi.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\p0pe0blimm-{0}-rp2jklkmsi-rp2jklkmsi.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"74838"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rp2jklkmsi"},{"Name":"integrity","Value":"sha256-+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw="},{"Name":"label","Value":"_framework/System.Linq.wasm.gz"}]},{"Route":"_framework/System.Linq.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.rp2jklkmsi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"190741"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA="}]},{"Route":"_framework/System.Linq.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\p0pe0blimm-{0}-rp2jklkmsi-rp2jklkmsi.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013362017"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"74838"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA="},{"Name":"original-resource","Value":"\"f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA=\""}]},{"Route":"_framework/System.Linq.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\p0pe0blimm-{0}-rp2jklkmsi-rp2jklkmsi.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"74838"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw="}]},{"Route":"_framework/System.Memory.3r0soomurg.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Memory.3r0soomurg.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"45333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3r0soomurg"},{"Name":"integrity","Value":"sha256-z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc="},{"Name":"label","Value":"_framework/System.Memory.wasm"}]},{"Route":"_framework/System.Memory.3r0soomurg.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zip5atfnk1-{0}-3r0soomurg-3r0soomurg.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000048600311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3r0soomurg"},{"Name":"integrity","Value":"sha256-z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc="},{"Name":"label","Value":"_framework/System.Memory.wasm"},{"Name":"original-resource","Value":"\"z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc=\""}]},{"Route":"_framework/System.Memory.3r0soomurg.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zip5atfnk1-{0}-3r0soomurg-3r0soomurg.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3r0soomurg"},{"Name":"integrity","Value":"sha256-lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60="},{"Name":"label","Value":"_framework/System.Memory.wasm.gz"}]},{"Route":"_framework/System.Memory.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Memory.3r0soomurg.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"45333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc="}]},{"Route":"_framework/System.Memory.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zip5atfnk1-{0}-3r0soomurg-3r0soomurg.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000048600311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc="},{"Name":"original-resource","Value":"\"z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc=\""}]},{"Route":"_framework/System.Memory.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zip5atfnk1-{0}-3r0soomurg-3r0soomurg.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60="}]},{"Route":"_framework/System.Net.Http.9rl4gopayw.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Http.9rl4gopayw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"285973"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9rl4gopayw"},{"Name":"integrity","Value":"sha256-JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU="},{"Name":"label","Value":"_framework/System.Net.Http.wasm"}]},{"Route":"_framework/System.Net.Http.9rl4gopayw.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hz1tpel2o0-{0}-9rl4gopayw-9rl4gopayw.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008532787"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"117194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9rl4gopayw"},{"Name":"integrity","Value":"sha256-JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU="},{"Name":"label","Value":"_framework/System.Net.Http.wasm"},{"Name":"original-resource","Value":"\"JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU=\""}]},{"Route":"_framework/System.Net.Http.9rl4gopayw.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hz1tpel2o0-{0}-9rl4gopayw-9rl4gopayw.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"117194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9rl4gopayw"},{"Name":"integrity","Value":"sha256-Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc="},{"Name":"label","Value":"_framework/System.Net.Http.wasm.gz"}]},{"Route":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Http.Json.t9gqpmtbpb.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t9gqpmtbpb"},{"Name":"integrity","Value":"sha256-H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0="},{"Name":"label","Value":"_framework/System.Net.Http.Json.wasm"}]},{"Route":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zxgtro8yo7-{0}-t9gqpmtbpb-t9gqpmtbpb.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051591601"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19382"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t9gqpmtbpb"},{"Name":"integrity","Value":"sha256-H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0="},{"Name":"label","Value":"_framework/System.Net.Http.Json.wasm"},{"Name":"original-resource","Value":"\"H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0=\""}]},{"Route":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zxgtro8yo7-{0}-t9gqpmtbpb-t9gqpmtbpb.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19382"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t9gqpmtbpb"},{"Name":"integrity","Value":"sha256-h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg="},{"Name":"label","Value":"_framework/System.Net.Http.Json.wasm.gz"}]},{"Route":"_framework/System.Net.Http.Json.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Http.Json.t9gqpmtbpb.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0="}]},{"Route":"_framework/System.Net.Http.Json.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zxgtro8yo7-{0}-t9gqpmtbpb-t9gqpmtbpb.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051591601"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19382"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0="},{"Name":"original-resource","Value":"\"H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0=\""}]},{"Route":"_framework/System.Net.Http.Json.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zxgtro8yo7-{0}-t9gqpmtbpb-t9gqpmtbpb.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19382"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg="}]},{"Route":"_framework/System.Net.Http.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Http.9rl4gopayw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"285973"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU="}]},{"Route":"_framework/System.Net.Http.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hz1tpel2o0-{0}-9rl4gopayw-9rl4gopayw.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008532787"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"117194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU="},{"Name":"original-resource","Value":"\"JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU=\""}]},{"Route":"_framework/System.Net.Http.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hz1tpel2o0-{0}-9rl4gopayw-9rl4gopayw.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"117194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc="}]},{"Route":"_framework/System.Net.HttpListener.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.HttpListener.zg37o92yol.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE="}]},{"Route":"_framework/System.Net.HttpListener.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mkyh3erkm9-{0}-zg37o92yol-zg37o92yol.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000062289772"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE="},{"Name":"original-resource","Value":"\"rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE=\""}]},{"Route":"_framework/System.Net.HttpListener.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mkyh3erkm9-{0}-zg37o92yol-zg37o92yol.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs="}]},{"Route":"_framework/System.Net.HttpListener.zg37o92yol.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.HttpListener.zg37o92yol.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zg37o92yol"},{"Name":"integrity","Value":"sha256-rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE="},{"Name":"label","Value":"_framework/System.Net.HttpListener.wasm"}]},{"Route":"_framework/System.Net.HttpListener.zg37o92yol.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mkyh3erkm9-{0}-zg37o92yol-zg37o92yol.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000062289772"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zg37o92yol"},{"Name":"integrity","Value":"sha256-rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE="},{"Name":"label","Value":"_framework/System.Net.HttpListener.wasm"},{"Name":"original-resource","Value":"\"rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE=\""}]},{"Route":"_framework/System.Net.HttpListener.zg37o92yol.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mkyh3erkm9-{0}-zg37o92yol-zg37o92yol.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zg37o92yol"},{"Name":"integrity","Value":"sha256-2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs="},{"Name":"label","Value":"_framework/System.Net.HttpListener.wasm.gz"}]},{"Route":"_framework/System.Net.Mail.qk214miut2.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Mail.qk214miut2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"94997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qk214miut2"},{"Name":"integrity","Value":"sha256-tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk="},{"Name":"label","Value":"_framework/System.Net.Mail.wasm"}]},{"Route":"_framework/System.Net.Mail.qk214miut2.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\019ldzgpk2-{0}-qk214miut2-qk214miut2.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023562122"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42440"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qk214miut2"},{"Name":"integrity","Value":"sha256-tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk="},{"Name":"label","Value":"_framework/System.Net.Mail.wasm"},{"Name":"original-resource","Value":"\"tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk=\""}]},{"Route":"_framework/System.Net.Mail.qk214miut2.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\019ldzgpk2-{0}-qk214miut2-qk214miut2.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42440"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qk214miut2"},{"Name":"integrity","Value":"sha256-T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys="},{"Name":"label","Value":"_framework/System.Net.Mail.wasm.gz"}]},{"Route":"_framework/System.Net.Mail.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Mail.qk214miut2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"94997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk="}]},{"Route":"_framework/System.Net.Mail.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\019ldzgpk2-{0}-qk214miut2-qk214miut2.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023562122"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42440"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk="},{"Name":"original-resource","Value":"\"tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk=\""}]},{"Route":"_framework/System.Net.Mail.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\019ldzgpk2-{0}-qk214miut2-qk214miut2.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42440"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys="}]},{"Route":"_framework/System.Net.NameResolution.50dzekuu9x.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.NameResolution.50dzekuu9x.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"14101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"50dzekuu9x"},{"Name":"integrity","Value":"sha256-a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs="},{"Name":"label","Value":"_framework/System.Net.NameResolution.wasm"}]},{"Route":"_framework/System.Net.NameResolution.50dzekuu9x.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ui1ul8tpby-{0}-50dzekuu9x-50dzekuu9x.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000168520391"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"50dzekuu9x"},{"Name":"integrity","Value":"sha256-a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs="},{"Name":"label","Value":"_framework/System.Net.NameResolution.wasm"},{"Name":"original-resource","Value":"\"a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs=\""}]},{"Route":"_framework/System.Net.NameResolution.50dzekuu9x.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ui1ul8tpby-{0}-50dzekuu9x-50dzekuu9x.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"50dzekuu9x"},{"Name":"integrity","Value":"sha256-A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI="},{"Name":"label","Value":"_framework/System.Net.NameResolution.wasm.gz"}]},{"Route":"_framework/System.Net.NameResolution.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.NameResolution.50dzekuu9x.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"14101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs="}]},{"Route":"_framework/System.Net.NameResolution.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ui1ul8tpby-{0}-50dzekuu9x-50dzekuu9x.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000168520391"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs="},{"Name":"original-resource","Value":"\"a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs=\""}]},{"Route":"_framework/System.Net.NameResolution.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ui1ul8tpby-{0}-50dzekuu9x-50dzekuu9x.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI="}]},{"Route":"_framework/System.Net.NetworkInformation.k8343mqust.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.NetworkInformation.k8343mqust.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8343mqust"},{"Name":"integrity","Value":"sha256-ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8="},{"Name":"label","Value":"_framework/System.Net.NetworkInformation.wasm"}]},{"Route":"_framework/System.Net.NetworkInformation.k8343mqust.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\luuq2ppq8r-{0}-k8343mqust-k8343mqust.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000078560767"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12728"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8343mqust"},{"Name":"integrity","Value":"sha256-ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8="},{"Name":"label","Value":"_framework/System.Net.NetworkInformation.wasm"},{"Name":"original-resource","Value":"\"ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8=\""}]},{"Route":"_framework/System.Net.NetworkInformation.k8343mqust.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\luuq2ppq8r-{0}-k8343mqust-k8343mqust.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12728"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8343mqust"},{"Name":"integrity","Value":"sha256-Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0="},{"Name":"label","Value":"_framework/System.Net.NetworkInformation.wasm.gz"}]},{"Route":"_framework/System.Net.NetworkInformation.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.NetworkInformation.k8343mqust.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8="}]},{"Route":"_framework/System.Net.NetworkInformation.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\luuq2ppq8r-{0}-k8343mqust-k8343mqust.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000078560767"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12728"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8="},{"Name":"original-resource","Value":"\"ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8=\""}]},{"Route":"_framework/System.Net.NetworkInformation.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\luuq2ppq8r-{0}-k8343mqust-k8343mqust.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12728"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0="}]},{"Route":"_framework/System.Net.Ping.00vh2kvsiz.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Ping.00vh2kvsiz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"17685"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"00vh2kvsiz"},{"Name":"integrity","Value":"sha256-MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s="},{"Name":"label","Value":"_framework/System.Net.Ping.wasm"}]},{"Route":"_framework/System.Net.Ping.00vh2kvsiz.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\yswenxxy60-{0}-00vh2kvsiz-00vh2kvsiz.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000132573247"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7542"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"00vh2kvsiz"},{"Name":"integrity","Value":"sha256-MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s="},{"Name":"label","Value":"_framework/System.Net.Ping.wasm"},{"Name":"original-resource","Value":"\"MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s=\""}]},{"Route":"_framework/System.Net.Ping.00vh2kvsiz.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\yswenxxy60-{0}-00vh2kvsiz-00vh2kvsiz.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7542"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"00vh2kvsiz"},{"Name":"integrity","Value":"sha256-MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM="},{"Name":"label","Value":"_framework/System.Net.Ping.wasm.gz"}]},{"Route":"_framework/System.Net.Ping.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Ping.00vh2kvsiz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"17685"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s="}]},{"Route":"_framework/System.Net.Ping.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\yswenxxy60-{0}-00vh2kvsiz-00vh2kvsiz.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000132573247"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7542"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s="},{"Name":"original-resource","Value":"\"MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s=\""}]},{"Route":"_framework/System.Net.Ping.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\yswenxxy60-{0}-00vh2kvsiz-00vh2kvsiz.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7542"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM="}]},{"Route":"_framework/System.Net.Primitives.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Primitives.whs5oed1wm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"97045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s="}]},{"Route":"_framework/System.Net.Primitives.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\e2kh1woy2q-{0}-whs5oed1wm-whs5oed1wm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000021790765"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"45890"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s="},{"Name":"original-resource","Value":"\"fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s=\""}]},{"Route":"_framework/System.Net.Primitives.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\e2kh1woy2q-{0}-whs5oed1wm-whs5oed1wm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"45890"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0="}]},{"Route":"_framework/System.Net.Primitives.whs5oed1wm.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Primitives.whs5oed1wm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"97045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"whs5oed1wm"},{"Name":"integrity","Value":"sha256-fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s="},{"Name":"label","Value":"_framework/System.Net.Primitives.wasm"}]},{"Route":"_framework/System.Net.Primitives.whs5oed1wm.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\e2kh1woy2q-{0}-whs5oed1wm-whs5oed1wm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000021790765"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"45890"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"whs5oed1wm"},{"Name":"integrity","Value":"sha256-fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s="},{"Name":"label","Value":"_framework/System.Net.Primitives.wasm"},{"Name":"original-resource","Value":"\"fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s=\""}]},{"Route":"_framework/System.Net.Primitives.whs5oed1wm.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\e2kh1woy2q-{0}-whs5oed1wm-whs5oed1wm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"45890"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"whs5oed1wm"},{"Name":"integrity","Value":"sha256-v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0="},{"Name":"label","Value":"_framework/System.Net.Primitives.wasm.gz"}]},{"Route":"_framework/System.Net.Quic.grloe2ix5j.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Quic.grloe2ix5j.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"28949"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"grloe2ix5j"},{"Name":"integrity","Value":"sha256-1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA="},{"Name":"label","Value":"_framework/System.Net.Quic.wasm"}]},{"Route":"_framework/System.Net.Quic.grloe2ix5j.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\t7lpa3lwov-{0}-grloe2ix5j-grloe2ix5j.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000091449474"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10934"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"grloe2ix5j"},{"Name":"integrity","Value":"sha256-1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA="},{"Name":"label","Value":"_framework/System.Net.Quic.wasm"},{"Name":"original-resource","Value":"\"1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA=\""}]},{"Route":"_framework/System.Net.Quic.grloe2ix5j.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\t7lpa3lwov-{0}-grloe2ix5j-grloe2ix5j.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10934"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"grloe2ix5j"},{"Name":"integrity","Value":"sha256-IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8="},{"Name":"label","Value":"_framework/System.Net.Quic.wasm.gz"}]},{"Route":"_framework/System.Net.Quic.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Quic.grloe2ix5j.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"28949"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA="}]},{"Route":"_framework/System.Net.Quic.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\t7lpa3lwov-{0}-grloe2ix5j-grloe2ix5j.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000091449474"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10934"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA="},{"Name":"original-resource","Value":"\"1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA=\""}]},{"Route":"_framework/System.Net.Quic.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\t7lpa3lwov-{0}-grloe2ix5j-grloe2ix5j.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10934"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8="}]},{"Route":"_framework/System.Net.Requests.r8ar2pd94c.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Requests.r8ar2pd94c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r8ar2pd94c"},{"Name":"integrity","Value":"sha256-ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88="},{"Name":"label","Value":"_framework/System.Net.Requests.wasm"}]},{"Route":"_framework/System.Net.Requests.r8ar2pd94c.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zy4nys0fbm-{0}-r8ar2pd94c-r8ar2pd94c.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000049275648"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20293"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r8ar2pd94c"},{"Name":"integrity","Value":"sha256-ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88="},{"Name":"label","Value":"_framework/System.Net.Requests.wasm"},{"Name":"original-resource","Value":"\"ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88=\""}]},{"Route":"_framework/System.Net.Requests.r8ar2pd94c.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zy4nys0fbm-{0}-r8ar2pd94c-r8ar2pd94c.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20293"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r8ar2pd94c"},{"Name":"integrity","Value":"sha256-gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA="},{"Name":"label","Value":"_framework/System.Net.Requests.wasm.gz"}]},{"Route":"_framework/System.Net.Requests.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Requests.r8ar2pd94c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88="}]},{"Route":"_framework/System.Net.Requests.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zy4nys0fbm-{0}-r8ar2pd94c-r8ar2pd94c.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000049275648"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20293"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88="},{"Name":"original-resource","Value":"\"ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88=\""}]},{"Route":"_framework/System.Net.Requests.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zy4nys0fbm-{0}-r8ar2pd94c-r8ar2pd94c.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20293"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA="}]},{"Route":"_framework/System.Net.Security.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Security.yn3zcskz4j.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"104213"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ="}]},{"Route":"_framework/System.Net.Security.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\iem13k4n35-{0}-yn3zcskz4j-yn3zcskz4j.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029683279"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33688"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ="},{"Name":"original-resource","Value":"\"TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ=\""}]},{"Route":"_framework/System.Net.Security.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\iem13k4n35-{0}-yn3zcskz4j-yn3zcskz4j.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33688"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ="}]},{"Route":"_framework/System.Net.Security.yn3zcskz4j.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Security.yn3zcskz4j.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"104213"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yn3zcskz4j"},{"Name":"integrity","Value":"sha256-TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ="},{"Name":"label","Value":"_framework/System.Net.Security.wasm"}]},{"Route":"_framework/System.Net.Security.yn3zcskz4j.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\iem13k4n35-{0}-yn3zcskz4j-yn3zcskz4j.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029683279"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33688"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yn3zcskz4j"},{"Name":"integrity","Value":"sha256-TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ="},{"Name":"label","Value":"_framework/System.Net.Security.wasm"},{"Name":"original-resource","Value":"\"TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ=\""}]},{"Route":"_framework/System.Net.Security.yn3zcskz4j.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\iem13k4n35-{0}-yn3zcskz4j-yn3zcskz4j.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33688"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yn3zcskz4j"},{"Name":"integrity","Value":"sha256-pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ="},{"Name":"label","Value":"_framework/System.Net.Security.wasm.gz"}]},{"Route":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.ServerSentEvents.37wbq4jfsy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"30485"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37wbq4jfsy"},{"Name":"integrity","Value":"sha256-Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho="},{"Name":"label","Value":"_framework/System.Net.ServerSentEvents.wasm"}]},{"Route":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\t2mopjsgs5-{0}-37wbq4jfsy-37wbq4jfsy.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000068175620"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14667"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37wbq4jfsy"},{"Name":"integrity","Value":"sha256-Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho="},{"Name":"label","Value":"_framework/System.Net.ServerSentEvents.wasm"},{"Name":"original-resource","Value":"\"Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho=\""}]},{"Route":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\t2mopjsgs5-{0}-37wbq4jfsy-37wbq4jfsy.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14667"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37wbq4jfsy"},{"Name":"integrity","Value":"sha256-FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o="},{"Name":"label","Value":"_framework/System.Net.ServerSentEvents.wasm.gz"}]},{"Route":"_framework/System.Net.ServerSentEvents.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.ServerSentEvents.37wbq4jfsy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"30485"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho="}]},{"Route":"_framework/System.Net.ServerSentEvents.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\t2mopjsgs5-{0}-37wbq4jfsy-37wbq4jfsy.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000068175620"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14667"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho="},{"Name":"original-resource","Value":"\"Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho=\""}]},{"Route":"_framework/System.Net.ServerSentEvents.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\t2mopjsgs5-{0}-37wbq4jfsy-37wbq4jfsy.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14667"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o="}]},{"Route":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.ServicePoint.j436yqvrg9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j436yqvrg9"},{"Name":"integrity","Value":"sha256-rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg="},{"Name":"label","Value":"_framework/System.Net.ServicePoint.wasm"}]},{"Route":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sz4qmwa0cz-{0}-j436yqvrg9-j436yqvrg9.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000458715596"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2179"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j436yqvrg9"},{"Name":"integrity","Value":"sha256-rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg="},{"Name":"label","Value":"_framework/System.Net.ServicePoint.wasm"},{"Name":"original-resource","Value":"\"rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg=\""}]},{"Route":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sz4qmwa0cz-{0}-j436yqvrg9-j436yqvrg9.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2179"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j436yqvrg9"},{"Name":"integrity","Value":"sha256-NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI="},{"Name":"label","Value":"_framework/System.Net.ServicePoint.wasm.gz"}]},{"Route":"_framework/System.Net.ServicePoint.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.ServicePoint.j436yqvrg9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg="}]},{"Route":"_framework/System.Net.ServicePoint.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sz4qmwa0cz-{0}-j436yqvrg9-j436yqvrg9.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000458715596"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2179"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg="},{"Name":"original-resource","Value":"\"rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg=\""}]},{"Route":"_framework/System.Net.ServicePoint.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sz4qmwa0cz-{0}-j436yqvrg9-j436yqvrg9.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2179"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI="}]},{"Route":"_framework/System.Net.Sockets.utzdm9sw2p.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Sockets.utzdm9sw2p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"64277"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"utzdm9sw2p"},{"Name":"integrity","Value":"sha256-olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo="},{"Name":"label","Value":"_framework/System.Net.Sockets.wasm"}]},{"Route":"_framework/System.Net.Sockets.utzdm9sw2p.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ozd9l95cy8-{0}-utzdm9sw2p-utzdm9sw2p.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000043631921"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22918"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"utzdm9sw2p"},{"Name":"integrity","Value":"sha256-olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo="},{"Name":"label","Value":"_framework/System.Net.Sockets.wasm"},{"Name":"original-resource","Value":"\"olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo=\""}]},{"Route":"_framework/System.Net.Sockets.utzdm9sw2p.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ozd9l95cy8-{0}-utzdm9sw2p-utzdm9sw2p.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22918"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"utzdm9sw2p"},{"Name":"integrity","Value":"sha256-XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI="},{"Name":"label","Value":"_framework/System.Net.Sockets.wasm.gz"}]},{"Route":"_framework/System.Net.Sockets.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Sockets.utzdm9sw2p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"64277"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo="}]},{"Route":"_framework/System.Net.Sockets.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ozd9l95cy8-{0}-utzdm9sw2p-utzdm9sw2p.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000043631921"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22918"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo="},{"Name":"original-resource","Value":"\"olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo=\""}]},{"Route":"_framework/System.Net.Sockets.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ozd9l95cy8-{0}-utzdm9sw2p-utzdm9sw2p.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22918"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI="}]},{"Route":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebClient.e5a4gx4ylt.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e5a4gx4ylt"},{"Name":"integrity","Value":"sha256-YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk="},{"Name":"label","Value":"_framework/System.Net.WebClient.wasm"}]},{"Route":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0qximx7h6w-{0}-e5a4gx4ylt-e5a4gx4ylt.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067870232"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e5a4gx4ylt"},{"Name":"integrity","Value":"sha256-YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk="},{"Name":"label","Value":"_framework/System.Net.WebClient.wasm"},{"Name":"original-resource","Value":"\"YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk=\""}]},{"Route":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0qximx7h6w-{0}-e5a4gx4ylt-e5a4gx4ylt.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e5a4gx4ylt"},{"Name":"integrity","Value":"sha256-FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI="},{"Name":"label","Value":"_framework/System.Net.WebClient.wasm.gz"}]},{"Route":"_framework/System.Net.WebClient.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebClient.e5a4gx4ylt.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk="}]},{"Route":"_framework/System.Net.WebClient.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0qximx7h6w-{0}-e5a4gx4ylt-e5a4gx4ylt.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067870232"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk="},{"Name":"original-resource","Value":"\"YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk=\""}]},{"Route":"_framework/System.Net.WebClient.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0qximx7h6w-{0}-e5a4gx4ylt-e5a4gx4ylt.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI="}]},{"Route":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebHeaderCollection.rbzkmij005.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rbzkmij005"},{"Name":"integrity","Value":"sha256-132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE="},{"Name":"label","Value":"_framework/System.Net.WebHeaderCollection.wasm"}]},{"Route":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\xfyu8pi705-{0}-rbzkmij005-rbzkmij005.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000097952787"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10208"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rbzkmij005"},{"Name":"integrity","Value":"sha256-132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE="},{"Name":"label","Value":"_framework/System.Net.WebHeaderCollection.wasm"},{"Name":"original-resource","Value":"\"132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE=\""}]},{"Route":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\xfyu8pi705-{0}-rbzkmij005-rbzkmij005.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10208"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rbzkmij005"},{"Name":"integrity","Value":"sha256-y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU="},{"Name":"label","Value":"_framework/System.Net.WebHeaderCollection.wasm.gz"}]},{"Route":"_framework/System.Net.WebHeaderCollection.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebHeaderCollection.rbzkmij005.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE="}]},{"Route":"_framework/System.Net.WebHeaderCollection.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\xfyu8pi705-{0}-rbzkmij005-rbzkmij005.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000097952787"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10208"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE="},{"Name":"original-resource","Value":"\"132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE=\""}]},{"Route":"_framework/System.Net.WebHeaderCollection.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\xfyu8pi705-{0}-rbzkmij005-rbzkmij005.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10208"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU="}]},{"Route":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebProxy.38jcv8jeeu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"38jcv8jeeu"},{"Name":"integrity","Value":"sha256-UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok="},{"Name":"label","Value":"_framework/System.Net.WebProxy.wasm"}]},{"Route":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kwztau0oyy-{0}-38jcv8jeeu-38jcv8jeeu.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000177872643"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5621"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"38jcv8jeeu"},{"Name":"integrity","Value":"sha256-UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok="},{"Name":"label","Value":"_framework/System.Net.WebProxy.wasm"},{"Name":"original-resource","Value":"\"UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok=\""}]},{"Route":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kwztau0oyy-{0}-38jcv8jeeu-38jcv8jeeu.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5621"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"38jcv8jeeu"},{"Name":"integrity","Value":"sha256-8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA="},{"Name":"label","Value":"_framework/System.Net.WebProxy.wasm.gz"}]},{"Route":"_framework/System.Net.WebProxy.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebProxy.38jcv8jeeu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok="}]},{"Route":"_framework/System.Net.WebProxy.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kwztau0oyy-{0}-38jcv8jeeu-38jcv8jeeu.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000177872643"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5621"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok="},{"Name":"original-resource","Value":"\"UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok=\""}]},{"Route":"_framework/System.Net.WebProxy.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kwztau0oyy-{0}-38jcv8jeeu-38jcv8jeeu.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5621"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA="}]},{"Route":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebSockets.Client.nv5izr3rt6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"42261"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nv5izr3rt6"},{"Name":"integrity","Value":"sha256-vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc="},{"Name":"label","Value":"_framework/System.Net.WebSockets.Client.wasm"}]},{"Route":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zc08r46902-{0}-nv5izr3rt6-nv5izr3rt6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000055803571"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17919"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nv5izr3rt6"},{"Name":"integrity","Value":"sha256-vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc="},{"Name":"label","Value":"_framework/System.Net.WebSockets.Client.wasm"},{"Name":"original-resource","Value":"\"vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc=\""}]},{"Route":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zc08r46902-{0}-nv5izr3rt6-nv5izr3rt6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17919"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nv5izr3rt6"},{"Name":"integrity","Value":"sha256-XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY="},{"Name":"label","Value":"_framework/System.Net.WebSockets.Client.wasm.gz"}]},{"Route":"_framework/System.Net.WebSockets.Client.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebSockets.Client.nv5izr3rt6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"42261"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc="}]},{"Route":"_framework/System.Net.WebSockets.Client.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zc08r46902-{0}-nv5izr3rt6-nv5izr3rt6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000055803571"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17919"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc="},{"Name":"original-resource","Value":"\"vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc=\""}]},{"Route":"_framework/System.Net.WebSockets.Client.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zc08r46902-{0}-nv5izr3rt6-nv5izr3rt6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17919"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY="}]},{"Route":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebSockets.hdzn84g6uh.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"98581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hdzn84g6uh"},{"Name":"integrity","Value":"sha256-1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE="},{"Name":"label","Value":"_framework/System.Net.WebSockets.wasm"}]},{"Route":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ttu14uxg7m-{0}-hdzn84g6uh-hdzn84g6uh.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000024645718"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"40574"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hdzn84g6uh"},{"Name":"integrity","Value":"sha256-1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE="},{"Name":"label","Value":"_framework/System.Net.WebSockets.wasm"},{"Name":"original-resource","Value":"\"1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE=\""}]},{"Route":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ttu14uxg7m-{0}-hdzn84g6uh-hdzn84g6uh.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"40574"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hdzn84g6uh"},{"Name":"integrity","Value":"sha256-dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo="},{"Name":"label","Value":"_framework/System.Net.WebSockets.wasm.gz"}]},{"Route":"_framework/System.Net.WebSockets.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebSockets.hdzn84g6uh.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"98581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE="}]},{"Route":"_framework/System.Net.WebSockets.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ttu14uxg7m-{0}-hdzn84g6uh-hdzn84g6uh.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000024645718"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"40574"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE="},{"Name":"original-resource","Value":"\"1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE=\""}]},{"Route":"_framework/System.Net.WebSockets.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ttu14uxg7m-{0}-hdzn84g6uh-hdzn84g6uh.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"40574"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo="}]},{"Route":"_framework/System.Net.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.zku96ychk7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU="}]},{"Route":"_framework/System.Net.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mwxs9jgpi5-{0}-zku96ychk7-zku96ychk7.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000362976407"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2754"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU="},{"Name":"original-resource","Value":"\"E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU=\""}]},{"Route":"_framework/System.Net.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mwxs9jgpi5-{0}-zku96ychk7-zku96ychk7.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2754"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY="}]},{"Route":"_framework/System.Net.zku96ychk7.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.zku96ychk7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zku96ychk7"},{"Name":"integrity","Value":"sha256-E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU="},{"Name":"label","Value":"_framework/System.Net.wasm"}]},{"Route":"_framework/System.Net.zku96ychk7.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mwxs9jgpi5-{0}-zku96ychk7-zku96ychk7.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000362976407"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2754"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zku96ychk7"},{"Name":"integrity","Value":"sha256-E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU="},{"Name":"label","Value":"_framework/System.Net.wasm"},{"Name":"original-resource","Value":"\"E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU=\""}]},{"Route":"_framework/System.Net.zku96ychk7.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mwxs9jgpi5-{0}-zku96ychk7-zku96ychk7.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2754"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zku96ychk7"},{"Name":"integrity","Value":"sha256-boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY="},{"Name":"label","Value":"_framework/System.Net.wasm.gz"}]},{"Route":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Numerics.Vectors.1l8xruz8uh.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1l8xruz8uh"},{"Name":"integrity","Value":"sha256-tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg="},{"Name":"label","Value":"_framework/System.Numerics.Vectors.wasm"}]},{"Route":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tmgotixosa-{0}-1l8xruz8uh-1l8xruz8uh.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000439367311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1l8xruz8uh"},{"Name":"integrity","Value":"sha256-tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg="},{"Name":"label","Value":"_framework/System.Numerics.Vectors.wasm"},{"Name":"original-resource","Value":"\"tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg=\""}]},{"Route":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tmgotixosa-{0}-1l8xruz8uh-1l8xruz8uh.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1l8xruz8uh"},{"Name":"integrity","Value":"sha256-XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q="},{"Name":"label","Value":"_framework/System.Numerics.Vectors.wasm.gz"}]},{"Route":"_framework/System.Numerics.Vectors.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Numerics.Vectors.1l8xruz8uh.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg="}]},{"Route":"_framework/System.Numerics.Vectors.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tmgotixosa-{0}-1l8xruz8uh-1l8xruz8uh.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000439367311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg="},{"Name":"original-resource","Value":"\"tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg=\""}]},{"Route":"_framework/System.Numerics.Vectors.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tmgotixosa-{0}-1l8xruz8uh-1l8xruz8uh.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q="}]},{"Route":"_framework/System.Numerics.on9qk50okp.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Numerics.on9qk50okp.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"on9qk50okp"},{"Name":"integrity","Value":"sha256-ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk="},{"Name":"label","Value":"_framework/System.Numerics.wasm"}]},{"Route":"_framework/System.Numerics.on9qk50okp.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fmcag5xdn2-{0}-on9qk50okp-on9qk50okp.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000490677134"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2037"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"on9qk50okp"},{"Name":"integrity","Value":"sha256-ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk="},{"Name":"label","Value":"_framework/System.Numerics.wasm"},{"Name":"original-resource","Value":"\"ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk=\""}]},{"Route":"_framework/System.Numerics.on9qk50okp.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fmcag5xdn2-{0}-on9qk50okp-on9qk50okp.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2037"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"on9qk50okp"},{"Name":"integrity","Value":"sha256-voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ="},{"Name":"label","Value":"_framework/System.Numerics.wasm.gz"}]},{"Route":"_framework/System.Numerics.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Numerics.on9qk50okp.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk="}]},{"Route":"_framework/System.Numerics.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fmcag5xdn2-{0}-on9qk50okp-on9qk50okp.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000490677134"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2037"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk="},{"Name":"original-resource","Value":"\"ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk=\""}]},{"Route":"_framework/System.Numerics.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fmcag5xdn2-{0}-on9qk50okp-on9qk50okp.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2037"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ="}]},{"Route":"_framework/System.ObjectModel.4omhtq90sd.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ObjectModel.4omhtq90sd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"30997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4omhtq90sd"},{"Name":"integrity","Value":"sha256-BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU="},{"Name":"label","Value":"_framework/System.ObjectModel.wasm"}]},{"Route":"_framework/System.ObjectModel.4omhtq90sd.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\f62yejuwjc-{0}-4omhtq90sd-4omhtq90sd.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000074867111"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13356"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4omhtq90sd"},{"Name":"integrity","Value":"sha256-BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU="},{"Name":"label","Value":"_framework/System.ObjectModel.wasm"},{"Name":"original-resource","Value":"\"BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU=\""}]},{"Route":"_framework/System.ObjectModel.4omhtq90sd.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\f62yejuwjc-{0}-4omhtq90sd-4omhtq90sd.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13356"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4omhtq90sd"},{"Name":"integrity","Value":"sha256-RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw="},{"Name":"label","Value":"_framework/System.ObjectModel.wasm.gz"}]},{"Route":"_framework/System.ObjectModel.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ObjectModel.4omhtq90sd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"30997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU="}]},{"Route":"_framework/System.ObjectModel.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\f62yejuwjc-{0}-4omhtq90sd-4omhtq90sd.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000074867111"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13356"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU="},{"Name":"original-resource","Value":"\"BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU=\""}]},{"Route":"_framework/System.ObjectModel.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\f62yejuwjc-{0}-4omhtq90sd-4omhtq90sd.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13356"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw="}]},{"Route":"_framework/System.Private.CoreLib.koxlwnosh6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.CoreLib.koxlwnosh6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4869401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"koxlwnosh6"},{"Name":"integrity","Value":"sha256-xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg="},{"Name":"label","Value":"_framework/System.Private.CoreLib.wasm"}]},{"Route":"_framework/System.Private.CoreLib.koxlwnosh6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3zyfvkhmnk-{0}-koxlwnosh6-koxlwnosh6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000644190"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1552335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"koxlwnosh6"},{"Name":"integrity","Value":"sha256-xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg="},{"Name":"label","Value":"_framework/System.Private.CoreLib.wasm"},{"Name":"original-resource","Value":"\"xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg=\""}]},{"Route":"_framework/System.Private.CoreLib.koxlwnosh6.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3zyfvkhmnk-{0}-koxlwnosh6-koxlwnosh6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1552335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"koxlwnosh6"},{"Name":"integrity","Value":"sha256-8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw="},{"Name":"label","Value":"_framework/System.Private.CoreLib.wasm.gz"}]},{"Route":"_framework/System.Private.CoreLib.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.CoreLib.koxlwnosh6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4869401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg="}]},{"Route":"_framework/System.Private.CoreLib.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3zyfvkhmnk-{0}-koxlwnosh6-koxlwnosh6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000644190"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1552335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg="},{"Name":"original-resource","Value":"\"xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg=\""}]},{"Route":"_framework/System.Private.CoreLib.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3zyfvkhmnk-{0}-koxlwnosh6-koxlwnosh6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1552335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw="}]},{"Route":"_framework/System.Private.DataContractSerialization.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.DataContractSerialization.zlwtcvnuqv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"849173"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs="}]},{"Route":"_framework/System.Private.DataContractSerialization.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\g0qzdert85-{0}-zlwtcvnuqv-zlwtcvnuqv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003313518"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"301793"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs="},{"Name":"original-resource","Value":"\"qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs=\""}]},{"Route":"_framework/System.Private.DataContractSerialization.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\g0qzdert85-{0}-zlwtcvnuqv-zlwtcvnuqv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"301793"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E="}]},{"Route":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.DataContractSerialization.zlwtcvnuqv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"849173"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zlwtcvnuqv"},{"Name":"integrity","Value":"sha256-qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs="},{"Name":"label","Value":"_framework/System.Private.DataContractSerialization.wasm"}]},{"Route":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\g0qzdert85-{0}-zlwtcvnuqv-zlwtcvnuqv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003313518"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"301793"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zlwtcvnuqv"},{"Name":"integrity","Value":"sha256-qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs="},{"Name":"label","Value":"_framework/System.Private.DataContractSerialization.wasm"},{"Name":"original-resource","Value":"\"qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs=\""}]},{"Route":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\g0qzdert85-{0}-zlwtcvnuqv-zlwtcvnuqv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"301793"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zlwtcvnuqv"},{"Name":"integrity","Value":"sha256-U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E="},{"Name":"label","Value":"_framework/System.Private.DataContractSerialization.wasm.gz"}]},{"Route":"_framework/System.Private.Uri.clehp4avpy.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.Uri.clehp4avpy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"95509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clehp4avpy"},{"Name":"integrity","Value":"sha256-IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU="},{"Name":"label","Value":"_framework/System.Private.Uri.wasm"}]},{"Route":"_framework/System.Private.Uri.clehp4avpy.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\e67ma35du3-{0}-clehp4avpy-clehp4avpy.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023629490"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42319"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clehp4avpy"},{"Name":"integrity","Value":"sha256-IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU="},{"Name":"label","Value":"_framework/System.Private.Uri.wasm"},{"Name":"original-resource","Value":"\"IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU=\""}]},{"Route":"_framework/System.Private.Uri.clehp4avpy.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\e67ma35du3-{0}-clehp4avpy-clehp4avpy.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42319"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clehp4avpy"},{"Name":"integrity","Value":"sha256-jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8="},{"Name":"label","Value":"_framework/System.Private.Uri.wasm.gz"}]},{"Route":"_framework/System.Private.Uri.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.Uri.clehp4avpy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"95509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU="}]},{"Route":"_framework/System.Private.Uri.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\e67ma35du3-{0}-clehp4avpy-clehp4avpy.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023629490"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42319"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU="},{"Name":"original-resource","Value":"\"IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU=\""}]},{"Route":"_framework/System.Private.Uri.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\e67ma35du3-{0}-clehp4avpy-clehp4avpy.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42319"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8="}]},{"Route":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.Xml.Linq.ga3n3gh9b6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"143637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ga3n3gh9b6"},{"Name":"integrity","Value":"sha256-aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0="},{"Name":"label","Value":"_framework/System.Private.Xml.Linq.wasm"}]},{"Route":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\93opzeh57b-{0}-ga3n3gh9b6-ga3n3gh9b6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017054951"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"58633"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ga3n3gh9b6"},{"Name":"integrity","Value":"sha256-aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0="},{"Name":"label","Value":"_framework/System.Private.Xml.Linq.wasm"},{"Name":"original-resource","Value":"\"aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0=\""}]},{"Route":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\93opzeh57b-{0}-ga3n3gh9b6-ga3n3gh9b6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"58633"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ga3n3gh9b6"},{"Name":"integrity","Value":"sha256-wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g="},{"Name":"label","Value":"_framework/System.Private.Xml.Linq.wasm.gz"}]},{"Route":"_framework/System.Private.Xml.Linq.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.Xml.Linq.ga3n3gh9b6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"143637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0="}]},{"Route":"_framework/System.Private.Xml.Linq.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\93opzeh57b-{0}-ga3n3gh9b6-ga3n3gh9b6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017054951"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"58633"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0="},{"Name":"original-resource","Value":"\"aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0=\""}]},{"Route":"_framework/System.Private.Xml.Linq.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\93opzeh57b-{0}-ga3n3gh9b6-ga3n3gh9b6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"58633"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g="}]},{"Route":"_framework/System.Private.Xml.g9rvjereoe.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.Xml.g9rvjereoe.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3095833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g9rvjereoe"},{"Name":"integrity","Value":"sha256-xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0="},{"Name":"label","Value":"_framework/System.Private.Xml.wasm"}]},{"Route":"_framework/System.Private.Xml.g9rvjereoe.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\byxake4xdz-{0}-g9rvjereoe-g9rvjereoe.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000949553"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1053126"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g9rvjereoe"},{"Name":"integrity","Value":"sha256-xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0="},{"Name":"label","Value":"_framework/System.Private.Xml.wasm"},{"Name":"original-resource","Value":"\"xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0=\""}]},{"Route":"_framework/System.Private.Xml.g9rvjereoe.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\byxake4xdz-{0}-g9rvjereoe-g9rvjereoe.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1053126"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g9rvjereoe"},{"Name":"integrity","Value":"sha256-K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw="},{"Name":"label","Value":"_framework/System.Private.Xml.wasm.gz"}]},{"Route":"_framework/System.Private.Xml.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.Xml.g9rvjereoe.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3095833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0="}]},{"Route":"_framework/System.Private.Xml.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\byxake4xdz-{0}-g9rvjereoe-g9rvjereoe.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000949553"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1053126"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0="},{"Name":"original-resource","Value":"\"xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0=\""}]},{"Route":"_framework/System.Private.Xml.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\byxake4xdz-{0}-g9rvjereoe-g9rvjereoe.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1053126"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw="}]},{"Route":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.DispatchProxy.b7qn4zpc0q.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27925"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7qn4zpc0q"},{"Name":"integrity","Value":"sha256-mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME="},{"Name":"label","Value":"_framework/System.Reflection.DispatchProxy.wasm"}]},{"Route":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jjcxq3ejac-{0}-b7qn4zpc0q-b7qn4zpc0q.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000078814628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12687"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7qn4zpc0q"},{"Name":"integrity","Value":"sha256-mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME="},{"Name":"label","Value":"_framework/System.Reflection.DispatchProxy.wasm"},{"Name":"original-resource","Value":"\"mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME=\""}]},{"Route":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jjcxq3ejac-{0}-b7qn4zpc0q-b7qn4zpc0q.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12687"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7qn4zpc0q"},{"Name":"integrity","Value":"sha256-VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w="},{"Name":"label","Value":"_framework/System.Reflection.DispatchProxy.wasm.gz"}]},{"Route":"_framework/System.Reflection.DispatchProxy.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.DispatchProxy.b7qn4zpc0q.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"27925"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME="}]},{"Route":"_framework/System.Reflection.DispatchProxy.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jjcxq3ejac-{0}-b7qn4zpc0q-b7qn4zpc0q.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000078814628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12687"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME="},{"Name":"original-resource","Value":"\"mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME=\""}]},{"Route":"_framework/System.Reflection.DispatchProxy.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jjcxq3ejac-{0}-b7qn4zpc0q-b7qn4zpc0q.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12687"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w="}]},{"Route":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Emit.3t7flfwg7o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"122645"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3t7flfwg7o"},{"Name":"integrity","Value":"sha256-uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8="},{"Name":"label","Value":"_framework/System.Reflection.Emit.wasm"}]},{"Route":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\p1p1dduoka-{0}-3t7flfwg7o-3t7flfwg7o.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018778637"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"53251"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3t7flfwg7o"},{"Name":"integrity","Value":"sha256-uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8="},{"Name":"label","Value":"_framework/System.Reflection.Emit.wasm"},{"Name":"original-resource","Value":"\"uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8=\""}]},{"Route":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\p1p1dduoka-{0}-3t7flfwg7o-3t7flfwg7o.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"53251"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3t7flfwg7o"},{"Name":"integrity","Value":"sha256-2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ="},{"Name":"label","Value":"_framework/System.Reflection.Emit.wasm.gz"}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80="}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i8msa0z88m-{0}-x0vkqyycss-x0vkqyycss.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000437828371"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2283"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80="},{"Name":"original-resource","Value":"\"ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80=\""}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i8msa0z88m-{0}-x0vkqyycss-x0vkqyycss.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2283"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE="}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0vkqyycss"},{"Name":"integrity","Value":"sha256-ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80="},{"Name":"label","Value":"_framework/System.Reflection.Emit.ILGeneration.wasm"}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i8msa0z88m-{0}-x0vkqyycss-x0vkqyycss.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000437828371"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2283"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0vkqyycss"},{"Name":"integrity","Value":"sha256-ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80="},{"Name":"label","Value":"_framework/System.Reflection.Emit.ILGeneration.wasm"},{"Name":"original-resource","Value":"\"ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80=\""}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i8msa0z88m-{0}-x0vkqyycss-x0vkqyycss.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2283"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0vkqyycss"},{"Name":"integrity","Value":"sha256-YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE="},{"Name":"label","Value":"_framework/System.Reflection.Emit.ILGeneration.wasm.gz"}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.3tzjd7znni.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3tzjd7znni"},{"Name":"integrity","Value":"sha256-B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k="},{"Name":"label","Value":"_framework/System.Reflection.Emit.Lightweight.wasm"}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gremm5qhcr-{0}-3tzjd7znni-3tzjd7znni.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000446827525"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3tzjd7znni"},{"Name":"integrity","Value":"sha256-B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k="},{"Name":"label","Value":"_framework/System.Reflection.Emit.Lightweight.wasm"},{"Name":"original-resource","Value":"\"B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k=\""}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gremm5qhcr-{0}-3tzjd7znni-3tzjd7znni.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3tzjd7znni"},{"Name":"integrity","Value":"sha256-XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk="},{"Name":"label","Value":"_framework/System.Reflection.Emit.Lightweight.wasm.gz"}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.3tzjd7znni.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k="}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gremm5qhcr-{0}-3tzjd7znni-3tzjd7znni.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000446827525"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k="},{"Name":"original-resource","Value":"\"B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k=\""}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gremm5qhcr-{0}-3tzjd7znni-3tzjd7znni.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk="}]},{"Route":"_framework/System.Reflection.Emit.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Emit.3t7flfwg7o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"122645"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8="}]},{"Route":"_framework/System.Reflection.Emit.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\p1p1dduoka-{0}-3t7flfwg7o-3t7flfwg7o.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018778637"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"53251"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8="},{"Name":"original-resource","Value":"\"uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8=\""}]},{"Route":"_framework/System.Reflection.Emit.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\p1p1dduoka-{0}-3t7flfwg7o-3t7flfwg7o.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"53251"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ="}]},{"Route":"_framework/System.Reflection.Extensions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Extensions.ymwga5opgl.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo="}]},{"Route":"_framework/System.Reflection.Extensions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vtgrfa0p11-{0}-ymwga5opgl-ymwga5opgl.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000462107209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2163"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo="},{"Name":"original-resource","Value":"\"xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo=\""}]},{"Route":"_framework/System.Reflection.Extensions.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vtgrfa0p11-{0}-ymwga5opgl-ymwga5opgl.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2163"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4="}]},{"Route":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Extensions.ymwga5opgl.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ymwga5opgl"},{"Name":"integrity","Value":"sha256-xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo="},{"Name":"label","Value":"_framework/System.Reflection.Extensions.wasm"}]},{"Route":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vtgrfa0p11-{0}-ymwga5opgl-ymwga5opgl.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000462107209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2163"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ymwga5opgl"},{"Name":"integrity","Value":"sha256-xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo="},{"Name":"label","Value":"_framework/System.Reflection.Extensions.wasm"},{"Name":"original-resource","Value":"\"xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo=\""}]},{"Route":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vtgrfa0p11-{0}-ymwga5opgl-ymwga5opgl.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2163"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ymwga5opgl"},{"Name":"integrity","Value":"sha256-QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4="},{"Name":"label","Value":"_framework/System.Reflection.Extensions.wasm.gz"}]},{"Route":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Metadata.9lgg9wjd2a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"493333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9lgg9wjd2a"},{"Name":"integrity","Value":"sha256-/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0="},{"Name":"label","Value":"_framework/System.Reflection.Metadata.wasm"}]},{"Route":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\k6k7jlyl2f-{0}-9lgg9wjd2a-9lgg9wjd2a.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005202589"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"192211"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9lgg9wjd2a"},{"Name":"integrity","Value":"sha256-/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0="},{"Name":"label","Value":"_framework/System.Reflection.Metadata.wasm"},{"Name":"original-resource","Value":"\"/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0=\""}]},{"Route":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\k6k7jlyl2f-{0}-9lgg9wjd2a-9lgg9wjd2a.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"192211"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9lgg9wjd2a"},{"Name":"integrity","Value":"sha256-bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM="},{"Name":"label","Value":"_framework/System.Reflection.Metadata.wasm.gz"}]},{"Route":"_framework/System.Reflection.Metadata.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Metadata.9lgg9wjd2a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"493333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0="}]},{"Route":"_framework/System.Reflection.Metadata.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\k6k7jlyl2f-{0}-9lgg9wjd2a-9lgg9wjd2a.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005202589"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"192211"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0="},{"Name":"original-resource","Value":"\"/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0=\""}]},{"Route":"_framework/System.Reflection.Metadata.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\k6k7jlyl2f-{0}-9lgg9wjd2a-9lgg9wjd2a.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"192211"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM="}]},{"Route":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Primitives.n2ngq6as7g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"n2ngq6as7g"},{"Name":"integrity","Value":"sha256-z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY="},{"Name":"label","Value":"_framework/System.Reflection.Primitives.wasm"}]},{"Route":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tdpp3qw974-{0}-n2ngq6as7g-n2ngq6as7g.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000423190859"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"n2ngq6as7g"},{"Name":"integrity","Value":"sha256-z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY="},{"Name":"label","Value":"_framework/System.Reflection.Primitives.wasm"},{"Name":"original-resource","Value":"\"z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY=\""}]},{"Route":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tdpp3qw974-{0}-n2ngq6as7g-n2ngq6as7g.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"n2ngq6as7g"},{"Name":"integrity","Value":"sha256-DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac="},{"Name":"label","Value":"_framework/System.Reflection.Primitives.wasm.gz"}]},{"Route":"_framework/System.Reflection.Primitives.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Primitives.n2ngq6as7g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY="}]},{"Route":"_framework/System.Reflection.Primitives.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tdpp3qw974-{0}-n2ngq6as7g-n2ngq6as7g.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000423190859"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY="},{"Name":"original-resource","Value":"\"z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY=\""}]},{"Route":"_framework/System.Reflection.Primitives.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tdpp3qw974-{0}-n2ngq6as7g-n2ngq6as7g.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac="}]},{"Route":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.TypeExtensions.ivmzcfvrc6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"14101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ivmzcfvrc6"},{"Name":"integrity","Value":"sha256-jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0="},{"Name":"label","Value":"_framework/System.Reflection.TypeExtensions.wasm"}]},{"Route":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hoalsbog2o-{0}-ivmzcfvrc6-ivmzcfvrc6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000170561146"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ivmzcfvrc6"},{"Name":"integrity","Value":"sha256-jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0="},{"Name":"label","Value":"_framework/System.Reflection.TypeExtensions.wasm"},{"Name":"original-resource","Value":"\"jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0=\""}]},{"Route":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hoalsbog2o-{0}-ivmzcfvrc6-ivmzcfvrc6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ivmzcfvrc6"},{"Name":"integrity","Value":"sha256-UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY="},{"Name":"label","Value":"_framework/System.Reflection.TypeExtensions.wasm.gz"}]},{"Route":"_framework/System.Reflection.TypeExtensions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.TypeExtensions.ivmzcfvrc6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"14101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0="}]},{"Route":"_framework/System.Reflection.TypeExtensions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hoalsbog2o-{0}-ivmzcfvrc6-ivmzcfvrc6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000170561146"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0="},{"Name":"original-resource","Value":"\"jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0=\""}]},{"Route":"_framework/System.Reflection.TypeExtensions.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hoalsbog2o-{0}-ivmzcfvrc6-ivmzcfvrc6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY="}]},{"Route":"_framework/System.Reflection.v4mfyzbte8.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.v4mfyzbte8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v4mfyzbte8"},{"Name":"integrity","Value":"sha256-MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw="},{"Name":"label","Value":"_framework/System.Reflection.wasm"}]},{"Route":"_framework/System.Reflection.v4mfyzbte8.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m0i5wjywsx-{0}-v4mfyzbte8-v4mfyzbte8.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000404530744"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2471"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v4mfyzbte8"},{"Name":"integrity","Value":"sha256-MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw="},{"Name":"label","Value":"_framework/System.Reflection.wasm"},{"Name":"original-resource","Value":"\"MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw=\""}]},{"Route":"_framework/System.Reflection.v4mfyzbte8.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m0i5wjywsx-{0}-v4mfyzbte8-v4mfyzbte8.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2471"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v4mfyzbte8"},{"Name":"integrity","Value":"sha256-/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng="},{"Name":"label","Value":"_framework/System.Reflection.wasm.gz"}]},{"Route":"_framework/System.Reflection.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.v4mfyzbte8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw="}]},{"Route":"_framework/System.Reflection.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m0i5wjywsx-{0}-v4mfyzbte8-v4mfyzbte8.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000404530744"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2471"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw="},{"Name":"original-resource","Value":"\"MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw=\""}]},{"Route":"_framework/System.Reflection.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m0i5wjywsx-{0}-v4mfyzbte8-v4mfyzbte8.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2471"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng="}]},{"Route":"_framework/System.Resources.Reader.c9z9nieytf.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Resources.Reader.c9z9nieytf.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c9z9nieytf"},{"Name":"integrity","Value":"sha256-QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8="},{"Name":"label","Value":"_framework/System.Resources.Reader.wasm"}]},{"Route":"_framework/System.Resources.Reader.c9z9nieytf.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\xtefui8dpc-{0}-c9z9nieytf-c9z9nieytf.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000469043152"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2131"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c9z9nieytf"},{"Name":"integrity","Value":"sha256-QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8="},{"Name":"label","Value":"_framework/System.Resources.Reader.wasm"},{"Name":"original-resource","Value":"\"QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8=\""}]},{"Route":"_framework/System.Resources.Reader.c9z9nieytf.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\xtefui8dpc-{0}-c9z9nieytf-c9z9nieytf.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2131"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c9z9nieytf"},{"Name":"integrity","Value":"sha256-1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI="},{"Name":"label","Value":"_framework/System.Resources.Reader.wasm.gz"}]},{"Route":"_framework/System.Resources.Reader.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Resources.Reader.c9z9nieytf.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8="}]},{"Route":"_framework/System.Resources.Reader.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\xtefui8dpc-{0}-c9z9nieytf-c9z9nieytf.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000469043152"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2131"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8="},{"Name":"original-resource","Value":"\"QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8=\""}]},{"Route":"_framework/System.Resources.Reader.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\xtefui8dpc-{0}-c9z9nieytf-c9z9nieytf.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2131"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI="}]},{"Route":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Resources.ResourceManager.f3fiwdwb50.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f3fiwdwb50"},{"Name":"integrity","Value":"sha256-61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw="},{"Name":"label","Value":"_framework/System.Resources.ResourceManager.wasm"}]},{"Route":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qrheoix2ig-{0}-f3fiwdwb50-f3fiwdwb50.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000444642063"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2248"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f3fiwdwb50"},{"Name":"integrity","Value":"sha256-61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw="},{"Name":"label","Value":"_framework/System.Resources.ResourceManager.wasm"},{"Name":"original-resource","Value":"\"61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw=\""}]},{"Route":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qrheoix2ig-{0}-f3fiwdwb50-f3fiwdwb50.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2248"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f3fiwdwb50"},{"Name":"integrity","Value":"sha256-yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg="},{"Name":"label","Value":"_framework/System.Resources.ResourceManager.wasm.gz"}]},{"Route":"_framework/System.Resources.ResourceManager.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Resources.ResourceManager.f3fiwdwb50.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw="}]},{"Route":"_framework/System.Resources.ResourceManager.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qrheoix2ig-{0}-f3fiwdwb50-f3fiwdwb50.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000444642063"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2248"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw="},{"Name":"original-resource","Value":"\"61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw=\""}]},{"Route":"_framework/System.Resources.ResourceManager.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qrheoix2ig-{0}-f3fiwdwb50-f3fiwdwb50.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2248"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg="}]},{"Route":"_framework/System.Resources.Writer.tx9namivq6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Resources.Writer.tx9namivq6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"16661"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tx9namivq6"},{"Name":"integrity","Value":"sha256-EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw="},{"Name":"label","Value":"_framework/System.Resources.Writer.wasm"}]},{"Route":"_framework/System.Resources.Writer.tx9namivq6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\szit2ufpnx-{0}-tx9namivq6-tx9namivq6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000131839156"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7584"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tx9namivq6"},{"Name":"integrity","Value":"sha256-EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw="},{"Name":"label","Value":"_framework/System.Resources.Writer.wasm"},{"Name":"original-resource","Value":"\"EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw=\""}]},{"Route":"_framework/System.Resources.Writer.tx9namivq6.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\szit2ufpnx-{0}-tx9namivq6-tx9namivq6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7584"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tx9namivq6"},{"Name":"integrity","Value":"sha256-mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw="},{"Name":"label","Value":"_framework/System.Resources.Writer.wasm.gz"}]},{"Route":"_framework/System.Resources.Writer.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Resources.Writer.tx9namivq6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"16661"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw="}]},{"Route":"_framework/System.Resources.Writer.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\szit2ufpnx-{0}-tx9namivq6-tx9namivq6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000131839156"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7584"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw="},{"Name":"original-resource","Value":"\"EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw=\""}]},{"Route":"_framework/System.Resources.Writer.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\szit2ufpnx-{0}-tx9namivq6-tx9namivq6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7584"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw="}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5yw8jyjkyt"},{"Name":"integrity","Value":"sha256-M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.Unsafe.wasm"}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3txc49hfsy-{0}-5yw8jyjkyt-5yw8jyjkyt.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000468164794"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2135"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5yw8jyjkyt"},{"Name":"integrity","Value":"sha256-M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.Unsafe.wasm"},{"Name":"original-resource","Value":"\"M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc=\""}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3txc49hfsy-{0}-5yw8jyjkyt-5yw8jyjkyt.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2135"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5yw8jyjkyt"},{"Name":"integrity","Value":"sha256-b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.Unsafe.wasm.gz"}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc="}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3txc49hfsy-{0}-5yw8jyjkyt-5yw8jyjkyt.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000468164794"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2135"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc="},{"Name":"original-resource","Value":"\"M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc=\""}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3txc49hfsy-{0}-5yw8jyjkyt-5yw8jyjkyt.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2135"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks="}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ddbsai2xh9"},{"Name":"integrity","Value":"sha256-b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.VisualC.wasm"}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\me1or200pv-{0}-ddbsai2xh9-ddbsai2xh9.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000327868852"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3049"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ddbsai2xh9"},{"Name":"integrity","Value":"sha256-b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.VisualC.wasm"},{"Name":"original-resource","Value":"\"b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM=\""}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\me1or200pv-{0}-ddbsai2xh9-ddbsai2xh9.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3049"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ddbsai2xh9"},{"Name":"integrity","Value":"sha256-XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.VisualC.wasm.gz"}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM="}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\me1or200pv-{0}-ddbsai2xh9-ddbsai2xh9.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000327868852"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3049"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM="},{"Name":"original-resource","Value":"\"b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM=\""}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\me1or200pv-{0}-ddbsai2xh9-ddbsai2xh9.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3049"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo="}]},{"Route":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Extensions.f4fqaba1oz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"7445"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f4fqaba1oz"},{"Name":"integrity","Value":"sha256-8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8="},{"Name":"label","Value":"_framework/System.Runtime.Extensions.wasm"}]},{"Route":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4syo1xqmc8-{0}-f4fqaba1oz-f4fqaba1oz.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000333555704"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f4fqaba1oz"},{"Name":"integrity","Value":"sha256-8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8="},{"Name":"label","Value":"_framework/System.Runtime.Extensions.wasm"},{"Name":"original-resource","Value":"\"8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8=\""}]},{"Route":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4syo1xqmc8-{0}-f4fqaba1oz-f4fqaba1oz.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f4fqaba1oz"},{"Name":"integrity","Value":"sha256-UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM="},{"Name":"label","Value":"_framework/System.Runtime.Extensions.wasm.gz"}]},{"Route":"_framework/System.Runtime.Extensions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Extensions.f4fqaba1oz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"7445"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8="}]},{"Route":"_framework/System.Runtime.Extensions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4syo1xqmc8-{0}-f4fqaba1oz-f4fqaba1oz.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000333555704"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8="},{"Name":"original-resource","Value":"\"8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8=\""}]},{"Route":"_framework/System.Runtime.Extensions.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4syo1xqmc8-{0}-f4fqaba1oz-f4fqaba1oz.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM="}]},{"Route":"_framework/System.Runtime.Handles.kpe61fymig.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Handles.kpe61fymig.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kpe61fymig"},{"Name":"integrity","Value":"sha256-+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ="},{"Name":"label","Value":"_framework/System.Runtime.Handles.wasm"}]},{"Route":"_framework/System.Runtime.Handles.kpe61fymig.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fz4pecsmjf-{0}-kpe61fymig-kpe61fymig.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000451467269"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2214"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kpe61fymig"},{"Name":"integrity","Value":"sha256-+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ="},{"Name":"label","Value":"_framework/System.Runtime.Handles.wasm"},{"Name":"original-resource","Value":"\"+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ=\""}]},{"Route":"_framework/System.Runtime.Handles.kpe61fymig.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fz4pecsmjf-{0}-kpe61fymig-kpe61fymig.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2214"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kpe61fymig"},{"Name":"integrity","Value":"sha256-P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8="},{"Name":"label","Value":"_framework/System.Runtime.Handles.wasm.gz"}]},{"Route":"_framework/System.Runtime.Handles.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Handles.kpe61fymig.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ="}]},{"Route":"_framework/System.Runtime.Handles.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fz4pecsmjf-{0}-kpe61fymig-kpe61fymig.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000451467269"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2214"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ="},{"Name":"original-resource","Value":"\"+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ=\""}]},{"Route":"_framework/System.Runtime.Handles.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fz4pecsmjf-{0}-kpe61fymig-kpe61fymig.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2214"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8="}]},{"Route":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.InteropServices.02r2ubft18.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"54549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"02r2ubft18"},{"Name":"integrity","Value":"sha256-iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.wasm"}]},{"Route":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0st0knthx5-{0}-02r2ubft18-02r2ubft18.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000042457436"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23552"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"02r2ubft18"},{"Name":"integrity","Value":"sha256-iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.wasm"},{"Name":"original-resource","Value":"\"iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI=\""}]},{"Route":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0st0knthx5-{0}-02r2ubft18-02r2ubft18.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23552"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"02r2ubft18"},{"Name":"integrity","Value":"sha256-hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.wasm.gz"}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"79637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk="}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\h9925thw3k-{0}-ythr5w8c2e-ythr5w8c2e.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000031413942"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk="},{"Name":"original-resource","Value":"\"BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk=\""}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\h9925thw3k-{0}-ythr5w8c2e-ythr5w8c2e.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A="}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"79637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ythr5w8c2e"},{"Name":"integrity","Value":"sha256-BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.JavaScript.wasm"}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\h9925thw3k-{0}-ythr5w8c2e-ythr5w8c2e.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000031413942"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ythr5w8c2e"},{"Name":"integrity","Value":"sha256-BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.JavaScript.wasm"},{"Name":"original-resource","Value":"\"BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk=\""}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\h9925thw3k-{0}-ythr5w8c2e-ythr5w8c2e.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ythr5w8c2e"},{"Name":"integrity","Value":"sha256-BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.JavaScript.wasm.gz"}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"esodb2rpbi"},{"Name":"integrity","Value":"sha256-Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm"}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zx6kj3xmnr-{0}-esodb2rpbi-esodb2rpbi.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000462962963"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2159"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"esodb2rpbi"},{"Name":"integrity","Value":"sha256-Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm"},{"Name":"original-resource","Value":"\"Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s=\""}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zx6kj3xmnr-{0}-esodb2rpbi-esodb2rpbi.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2159"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"esodb2rpbi"},{"Name":"integrity","Value":"sha256-XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm.gz"}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s="}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zx6kj3xmnr-{0}-esodb2rpbi-esodb2rpbi.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000462962963"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2159"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s="},{"Name":"original-resource","Value":"\"Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s=\""}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zx6kj3xmnr-{0}-esodb2rpbi-esodb2rpbi.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2159"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA="}]},{"Route":"_framework/System.Runtime.InteropServices.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.InteropServices.02r2ubft18.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"54549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI="}]},{"Route":"_framework/System.Runtime.InteropServices.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0st0knthx5-{0}-02r2ubft18-02r2ubft18.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000042457436"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23552"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI="},{"Name":"original-resource","Value":"\"iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI=\""}]},{"Route":"_framework/System.Runtime.InteropServices.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0st0knthx5-{0}-02r2ubft18-02r2ubft18.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23552"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs="}]},{"Route":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Intrinsics.j8lrpban8m.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8lrpban8m"},{"Name":"integrity","Value":"sha256-vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk="},{"Name":"label","Value":"_framework/System.Runtime.Intrinsics.wasm"}]},{"Route":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\7yd9j54hd0-{0}-j8lrpban8m-j8lrpban8m.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000351617440"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2843"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8lrpban8m"},{"Name":"integrity","Value":"sha256-vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk="},{"Name":"label","Value":"_framework/System.Runtime.Intrinsics.wasm"},{"Name":"original-resource","Value":"\"vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk=\""}]},{"Route":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\7yd9j54hd0-{0}-j8lrpban8m-j8lrpban8m.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2843"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8lrpban8m"},{"Name":"integrity","Value":"sha256-RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4="},{"Name":"label","Value":"_framework/System.Runtime.Intrinsics.wasm.gz"}]},{"Route":"_framework/System.Runtime.Intrinsics.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Intrinsics.j8lrpban8m.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk="}]},{"Route":"_framework/System.Runtime.Intrinsics.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\7yd9j54hd0-{0}-j8lrpban8m-j8lrpban8m.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000351617440"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2843"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk="},{"Name":"original-resource","Value":"\"vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk=\""}]},{"Route":"_framework/System.Runtime.Intrinsics.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\7yd9j54hd0-{0}-j8lrpban8m-j8lrpban8m.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2843"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4="}]},{"Route":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Loader.bm8d2pac0a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bm8d2pac0a"},{"Name":"integrity","Value":"sha256-Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4="},{"Name":"label","Value":"_framework/System.Runtime.Loader.wasm"}]},{"Route":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\06jmrwgemt-{0}-bm8d2pac0a-bm8d2pac0a.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000429000429"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2330"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bm8d2pac0a"},{"Name":"integrity","Value":"sha256-Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4="},{"Name":"label","Value":"_framework/System.Runtime.Loader.wasm"},{"Name":"original-resource","Value":"\"Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4=\""}]},{"Route":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\06jmrwgemt-{0}-bm8d2pac0a-bm8d2pac0a.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2330"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bm8d2pac0a"},{"Name":"integrity","Value":"sha256-InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns="},{"Name":"label","Value":"_framework/System.Runtime.Loader.wasm.gz"}]},{"Route":"_framework/System.Runtime.Loader.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Loader.bm8d2pac0a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4="}]},{"Route":"_framework/System.Runtime.Loader.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\06jmrwgemt-{0}-bm8d2pac0a-bm8d2pac0a.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000429000429"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2330"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4="},{"Name":"original-resource","Value":"\"Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4=\""}]},{"Route":"_framework/System.Runtime.Loader.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\06jmrwgemt-{0}-bm8d2pac0a-bm8d2pac0a.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2330"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns="}]},{"Route":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Numerics.e3fl2oogjk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"134933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e3fl2oogjk"},{"Name":"integrity","Value":"sha256-Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4="},{"Name":"label","Value":"_framework/System.Runtime.Numerics.wasm"}]},{"Route":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\b1pqie8d42-{0}-e3fl2oogjk-e3fl2oogjk.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018948725"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"52773"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e3fl2oogjk"},{"Name":"integrity","Value":"sha256-Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4="},{"Name":"label","Value":"_framework/System.Runtime.Numerics.wasm"},{"Name":"original-resource","Value":"\"Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4=\""}]},{"Route":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\b1pqie8d42-{0}-e3fl2oogjk-e3fl2oogjk.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"52773"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e3fl2oogjk"},{"Name":"integrity","Value":"sha256-aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs="},{"Name":"label","Value":"_framework/System.Runtime.Numerics.wasm.gz"}]},{"Route":"_framework/System.Runtime.Numerics.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Numerics.e3fl2oogjk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"134933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4="}]},{"Route":"_framework/System.Runtime.Numerics.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\b1pqie8d42-{0}-e3fl2oogjk-e3fl2oogjk.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018948725"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"52773"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4="},{"Name":"original-resource","Value":"\"Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4=\""}]},{"Route":"_framework/System.Runtime.Numerics.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\b1pqie8d42-{0}-e3fl2oogjk-e3fl2oogjk.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"52773"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs="}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.a0v88kqnif.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a0v88kqnif"},{"Name":"integrity","Value":"sha256-Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Formatters.wasm"}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4k92vl8md2-{0}-a0v88kqnif-a0v88kqnif.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041467966"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24114"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a0v88kqnif"},{"Name":"integrity","Value":"sha256-Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Formatters.wasm"},{"Name":"original-resource","Value":"\"Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU=\""}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4k92vl8md2-{0}-a0v88kqnif-a0v88kqnif.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24114"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a0v88kqnif"},{"Name":"integrity","Value":"sha256-89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Formatters.wasm.gz"}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.a0v88kqnif.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU="}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4k92vl8md2-{0}-a0v88kqnif-a0v88kqnif.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041467966"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24114"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU="},{"Name":"original-resource","Value":"\"Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU=\""}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4k92vl8md2-{0}-a0v88kqnif-a0v88kqnif.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24114"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4="}]},{"Route":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Json.pez04wd9mo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pez04wd9mo"},{"Name":"integrity","Value":"sha256-vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Json.wasm"}]},{"Route":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wxwyng4xk0-{0}-pez04wd9mo-pez04wd9mo.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000441501104"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pez04wd9mo"},{"Name":"integrity","Value":"sha256-vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Json.wasm"},{"Name":"original-resource","Value":"\"vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw=\""}]},{"Route":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wxwyng4xk0-{0}-pez04wd9mo-pez04wd9mo.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pez04wd9mo"},{"Name":"integrity","Value":"sha256-F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Json.wasm.gz"}]},{"Route":"_framework/System.Runtime.Serialization.Json.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Json.pez04wd9mo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw="}]},{"Route":"_framework/System.Runtime.Serialization.Json.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wxwyng4xk0-{0}-pez04wd9mo-pez04wd9mo.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000441501104"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw="},{"Name":"original-resource","Value":"\"vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw=\""}]},{"Route":"_framework/System.Runtime.Serialization.Json.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wxwyng4xk0-{0}-pez04wd9mo-pez04wd9mo.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM="}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY="}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\j81tt1y6rj-{0}-xy5d3j3dn1-xy5d3j3dn1.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000184501845"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY="},{"Name":"original-resource","Value":"\"hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY=\""}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\j81tt1y6rj-{0}-xy5d3j3dn1-xy5d3j3dn1.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g="}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xy5d3j3dn1"},{"Name":"integrity","Value":"sha256-hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Primitives.wasm"}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\j81tt1y6rj-{0}-xy5d3j3dn1-xy5d3j3dn1.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000184501845"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xy5d3j3dn1"},{"Name":"integrity","Value":"sha256-hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Primitives.wasm"},{"Name":"original-resource","Value":"\"hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY=\""}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\j81tt1y6rj-{0}-xy5d3j3dn1-xy5d3j3dn1.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xy5d3j3dn1"},{"Name":"integrity","Value":"sha256-nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Primitives.wasm.gz"}]},{"Route":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.mmwsbcsgly.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mmwsbcsgly"},{"Name":"integrity","Value":"sha256-0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Xml.wasm"}]},{"Route":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8pmauzinw9-{0}-mmwsbcsgly-mmwsbcsgly.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388953715"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2570"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mmwsbcsgly"},{"Name":"integrity","Value":"sha256-0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Xml.wasm"},{"Name":"original-resource","Value":"\"0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0=\""}]},{"Route":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8pmauzinw9-{0}-mmwsbcsgly-mmwsbcsgly.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2570"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mmwsbcsgly"},{"Name":"integrity","Value":"sha256-ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Xml.wasm.gz"}]},{"Route":"_framework/System.Runtime.Serialization.Xml.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.mmwsbcsgly.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0="}]},{"Route":"_framework/System.Runtime.Serialization.Xml.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8pmauzinw9-{0}-mmwsbcsgly-mmwsbcsgly.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388953715"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2570"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0="},{"Name":"original-resource","Value":"\"0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0=\""}]},{"Route":"_framework/System.Runtime.Serialization.Xml.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8pmauzinw9-{0}-mmwsbcsgly-mmwsbcsgly.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2570"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs="}]},{"Route":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.qfpmfujegm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qfpmfujegm"},{"Name":"integrity","Value":"sha256-un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.wasm"}]},{"Route":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mkj61d469a-{0}-qfpmfujegm-qfpmfujegm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000399042298"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2505"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qfpmfujegm"},{"Name":"integrity","Value":"sha256-un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.wasm"},{"Name":"original-resource","Value":"\"un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk=\""}]},{"Route":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mkj61d469a-{0}-qfpmfujegm-qfpmfujegm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2505"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qfpmfujegm"},{"Name":"integrity","Value":"sha256-wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.wasm.gz"}]},{"Route":"_framework/System.Runtime.Serialization.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.qfpmfujegm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk="}]},{"Route":"_framework/System.Runtime.Serialization.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mkj61d469a-{0}-qfpmfujegm-qfpmfujegm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000399042298"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2505"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk="},{"Name":"original-resource","Value":"\"un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk=\""}]},{"Route":"_framework/System.Runtime.Serialization.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mkj61d469a-{0}-qfpmfujegm-qfpmfujegm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2505"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g="}]},{"Route":"_framework/System.Runtime.k6ze2203p2.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.k6ze2203p2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6ze2203p2"},{"Name":"integrity","Value":"sha256-ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM="},{"Name":"label","Value":"_framework/System.Runtime.wasm"}]},{"Route":"_framework/System.Runtime.k6ze2203p2.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\9ru0gm9zti-{0}-k6ze2203p2-k6ze2203p2.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000092302012"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6ze2203p2"},{"Name":"integrity","Value":"sha256-ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM="},{"Name":"label","Value":"_framework/System.Runtime.wasm"},{"Name":"original-resource","Value":"\"ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM=\""}]},{"Route":"_framework/System.Runtime.k6ze2203p2.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\9ru0gm9zti-{0}-k6ze2203p2-k6ze2203p2.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6ze2203p2"},{"Name":"integrity","Value":"sha256-yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4="},{"Name":"label","Value":"_framework/System.Runtime.wasm.gz"}]},{"Route":"_framework/System.Runtime.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.k6ze2203p2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM="}]},{"Route":"_framework/System.Runtime.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\9ru0gm9zti-{0}-k6ze2203p2-k6ze2203p2.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000092302012"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM="},{"Name":"original-resource","Value":"\"ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM=\""}]},{"Route":"_framework/System.Runtime.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\9ru0gm9zti-{0}-k6ze2203p2-k6ze2203p2.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4="}]},{"Route":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.AccessControl.4mxo8hy5cn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"47893"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4mxo8hy5cn"},{"Name":"integrity","Value":"sha256-1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA="},{"Name":"label","Value":"_framework/System.Security.AccessControl.wasm"}]},{"Route":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\9n1qe841ua-{0}-4mxo8hy5cn-4mxo8hy5cn.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000059421237"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4mxo8hy5cn"},{"Name":"integrity","Value":"sha256-1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA="},{"Name":"label","Value":"_framework/System.Security.AccessControl.wasm"},{"Name":"original-resource","Value":"\"1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA=\""}]},{"Route":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\9n1qe841ua-{0}-4mxo8hy5cn-4mxo8hy5cn.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4mxo8hy5cn"},{"Name":"integrity","Value":"sha256-lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak="},{"Name":"label","Value":"_framework/System.Security.AccessControl.wasm.gz"}]},{"Route":"_framework/System.Security.AccessControl.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.AccessControl.4mxo8hy5cn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"47893"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA="}]},{"Route":"_framework/System.Security.AccessControl.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\9n1qe841ua-{0}-4mxo8hy5cn-4mxo8hy5cn.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000059421237"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA="},{"Name":"original-resource","Value":"\"1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA=\""}]},{"Route":"_framework/System.Security.AccessControl.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\9n1qe841ua-{0}-4mxo8hy5cn-4mxo8hy5cn.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak="}]},{"Route":"_framework/System.Security.Claims.9n1yusa5e5.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Claims.9n1yusa5e5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"44821"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9n1yusa5e5"},{"Name":"integrity","Value":"sha256-KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA="},{"Name":"label","Value":"_framework/System.Security.Claims.wasm"}]},{"Route":"_framework/System.Security.Claims.9n1yusa5e5.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\awwlmj7zy5-{0}-9n1yusa5e5-9n1yusa5e5.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060397415"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16556"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9n1yusa5e5"},{"Name":"integrity","Value":"sha256-KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA="},{"Name":"label","Value":"_framework/System.Security.Claims.wasm"},{"Name":"original-resource","Value":"\"KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA=\""}]},{"Route":"_framework/System.Security.Claims.9n1yusa5e5.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\awwlmj7zy5-{0}-9n1yusa5e5-9n1yusa5e5.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16556"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9n1yusa5e5"},{"Name":"integrity","Value":"sha256-ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY="},{"Name":"label","Value":"_framework/System.Security.Claims.wasm.gz"}]},{"Route":"_framework/System.Security.Claims.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Claims.9n1yusa5e5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"44821"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA="}]},{"Route":"_framework/System.Security.Claims.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\awwlmj7zy5-{0}-9n1yusa5e5-9n1yusa5e5.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060397415"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16556"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA="},{"Name":"original-resource","Value":"\"KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA=\""}]},{"Route":"_framework/System.Security.Claims.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\awwlmj7zy5-{0}-9n1yusa5e5-9n1yusa5e5.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16556"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY="}]},{"Route":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.5rp84ijz8t.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"642325"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5rp84ijz8t"},{"Name":"integrity","Value":"sha256-YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM="},{"Name":"label","Value":"_framework/System.Security.Cryptography.wasm"}]},{"Route":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gqmneoqstx-{0}-5rp84ijz8t-5rp84ijz8t.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004398891"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"227329"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5rp84ijz8t"},{"Name":"integrity","Value":"sha256-YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM="},{"Name":"label","Value":"_framework/System.Security.Cryptography.wasm"},{"Name":"original-resource","Value":"\"YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM=\""}]},{"Route":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gqmneoqstx-{0}-5rp84ijz8t-5rp84ijz8t.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"227329"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5rp84ijz8t"},{"Name":"integrity","Value":"sha256-+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y="},{"Name":"label","Value":"_framework/System.Security.Cryptography.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4dnz7b15a9"},{"Name":"integrity","Value":"sha256-CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Algorithms.wasm"}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m02xm5ue7p-{0}-4dnz7b15a9-4dnz7b15a9.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000368595651"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2712"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4dnz7b15a9"},{"Name":"integrity","Value":"sha256-CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Algorithms.wasm"},{"Name":"original-resource","Value":"\"CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0=\""}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m02xm5ue7p-{0}-4dnz7b15a9-4dnz7b15a9.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2712"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4dnz7b15a9"},{"Name":"integrity","Value":"sha256-kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Algorithms.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0="}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m02xm5ue7p-{0}-4dnz7b15a9-4dnz7b15a9.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000368595651"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2712"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0="},{"Name":"original-resource","Value":"\"CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0=\""}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m02xm5ue7p-{0}-4dnz7b15a9-4dnz7b15a9.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2712"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A="}]},{"Route":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dyaxkkx3lb.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyaxkkx3lb"},{"Name":"integrity","Value":"sha256-SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Cng.wasm"}]},{"Route":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jhjpqkptaq-{0}-dyaxkkx3lb-dyaxkkx3lb.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000403714170"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2476"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyaxkkx3lb"},{"Name":"integrity","Value":"sha256-SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Cng.wasm"},{"Name":"original-resource","Value":"\"SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug=\""}]},{"Route":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jhjpqkptaq-{0}-dyaxkkx3lb-dyaxkkx3lb.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2476"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyaxkkx3lb"},{"Name":"integrity","Value":"sha256-xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Cng.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Cng.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dyaxkkx3lb.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug="}]},{"Route":"_framework/System.Security.Cryptography.Cng.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jhjpqkptaq-{0}-dyaxkkx3lb-dyaxkkx3lb.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000403714170"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2476"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug="},{"Name":"original-resource","Value":"\"SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug=\""}]},{"Route":"_framework/System.Security.Cryptography.Cng.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jhjpqkptaq-{0}-dyaxkkx3lb-dyaxkkx3lb.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2476"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178="}]},{"Route":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Csp.20t5iw27a6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"20t5iw27a6"},{"Name":"integrity","Value":"sha256-EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Csp.wasm"}]},{"Route":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\v9jar86jna-{0}-20t5iw27a6-20t5iw27a6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000428082192"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"20t5iw27a6"},{"Name":"integrity","Value":"sha256-EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Csp.wasm"},{"Name":"original-resource","Value":"\"EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M=\""}]},{"Route":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\v9jar86jna-{0}-20t5iw27a6-20t5iw27a6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"20t5iw27a6"},{"Name":"integrity","Value":"sha256-lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Csp.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Csp.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Csp.20t5iw27a6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M="}]},{"Route":"_framework/System.Security.Cryptography.Csp.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\v9jar86jna-{0}-20t5iw27a6-20t5iw27a6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000428082192"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M="},{"Name":"original-resource","Value":"\"EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M=\""}]},{"Route":"_framework/System.Security.Cryptography.Csp.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\v9jar86jna-{0}-20t5iw27a6-20t5iw27a6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek="}]},{"Route":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0lu5m0tfx2"},{"Name":"integrity","Value":"sha256-7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Encoding.wasm"}]},{"Route":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\uu7wfp4do2-{0}-0lu5m0tfx2-0lu5m0tfx2.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438404209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0lu5m0tfx2"},{"Name":"integrity","Value":"sha256-7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Encoding.wasm"},{"Name":"original-resource","Value":"\"7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU=\""}]},{"Route":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\uu7wfp4do2-{0}-0lu5m0tfx2-0lu5m0tfx2.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0lu5m0tfx2"},{"Name":"integrity","Value":"sha256-EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Encoding.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Encoding.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU="}]},{"Route":"_framework/System.Security.Cryptography.Encoding.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\uu7wfp4do2-{0}-0lu5m0tfx2-0lu5m0tfx2.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438404209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU="},{"Name":"original-resource","Value":"\"7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU=\""}]},{"Route":"_framework/System.Security.Cryptography.Encoding.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\uu7wfp4do2-{0}-0lu5m0tfx2-0lu5m0tfx2.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg="}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m4pzjxi3g"},{"Name":"integrity","Value":"sha256-nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o="},{"Name":"label","Value":"_framework/System.Security.Cryptography.OpenSsl.wasm"}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\12m83h5a1i-{0}-4m4pzjxi3g-4m4pzjxi3g.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000449842555"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2222"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m4pzjxi3g"},{"Name":"integrity","Value":"sha256-nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o="},{"Name":"label","Value":"_framework/System.Security.Cryptography.OpenSsl.wasm"},{"Name":"original-resource","Value":"\"nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o=\""}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\12m83h5a1i-{0}-4m4pzjxi3g-4m4pzjxi3g.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2222"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m4pzjxi3g"},{"Name":"integrity","Value":"sha256-vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM="},{"Name":"label","Value":"_framework/System.Security.Cryptography.OpenSsl.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o="}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\12m83h5a1i-{0}-4m4pzjxi3g-4m4pzjxi3g.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000449842555"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2222"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o="},{"Name":"original-resource","Value":"\"nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o=\""}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\12m83h5a1i-{0}-4m4pzjxi3g-4m4pzjxi3g.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2222"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM="}]},{"Route":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.7bcdd4uolu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7bcdd4uolu"},{"Name":"integrity","Value":"sha256-kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Primitives.wasm"}]},{"Route":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ly70359tb6-{0}-7bcdd4uolu-7bcdd4uolu.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000425894378"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2347"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7bcdd4uolu"},{"Name":"integrity","Value":"sha256-kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Primitives.wasm"},{"Name":"original-resource","Value":"\"kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0=\""}]},{"Route":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ly70359tb6-{0}-7bcdd4uolu-7bcdd4uolu.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2347"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7bcdd4uolu"},{"Name":"integrity","Value":"sha256-o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Primitives.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Primitives.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.7bcdd4uolu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0="}]},{"Route":"_framework/System.Security.Cryptography.Primitives.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ly70359tb6-{0}-7bcdd4uolu-7bcdd4uolu.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000425894378"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2347"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0="},{"Name":"original-resource","Value":"\"kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0=\""}]},{"Route":"_framework/System.Security.Cryptography.Primitives.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ly70359tb6-{0}-7bcdd4uolu-7bcdd4uolu.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2347"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE="}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dmew7c9amv"},{"Name":"integrity","Value":"sha256-+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8="},{"Name":"label","Value":"_framework/System.Security.Cryptography.X509Certificates.wasm"}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\rz1qtq0z6d-{0}-dmew7c9amv-dmew7c9amv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000374251497"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2671"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dmew7c9amv"},{"Name":"integrity","Value":"sha256-+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8="},{"Name":"label","Value":"_framework/System.Security.Cryptography.X509Certificates.wasm"},{"Name":"original-resource","Value":"\"+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8=\""}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\rz1qtq0z6d-{0}-dmew7c9amv-dmew7c9amv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2671"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dmew7c9amv"},{"Name":"integrity","Value":"sha256-KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw="},{"Name":"label","Value":"_framework/System.Security.Cryptography.X509Certificates.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8="}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\rz1qtq0z6d-{0}-dmew7c9amv-dmew7c9amv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000374251497"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2671"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8="},{"Name":"original-resource","Value":"\"+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8=\""}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\rz1qtq0z6d-{0}-dmew7c9amv-dmew7c9amv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2671"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw="}]},{"Route":"_framework/System.Security.Cryptography.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.5rp84ijz8t.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"642325"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM="}]},{"Route":"_framework/System.Security.Cryptography.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gqmneoqstx-{0}-5rp84ijz8t-5rp84ijz8t.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004398891"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"227329"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM="},{"Name":"original-resource","Value":"\"YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM=\""}]},{"Route":"_framework/System.Security.Cryptography.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gqmneoqstx-{0}-5rp84ijz8t-5rp84ijz8t.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"227329"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y="}]},{"Route":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Principal.Windows.7ssqvw2wfy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27413"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7ssqvw2wfy"},{"Name":"integrity","Value":"sha256-NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ="},{"Name":"label","Value":"_framework/System.Security.Principal.Windows.wasm"}]},{"Route":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sl0sft7bkv-{0}-7ssqvw2wfy-7ssqvw2wfy.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090171326"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11089"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7ssqvw2wfy"},{"Name":"integrity","Value":"sha256-NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ="},{"Name":"label","Value":"_framework/System.Security.Principal.Windows.wasm"},{"Name":"original-resource","Value":"\"NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ=\""}]},{"Route":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sl0sft7bkv-{0}-7ssqvw2wfy-7ssqvw2wfy.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11089"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7ssqvw2wfy"},{"Name":"integrity","Value":"sha256-ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg="},{"Name":"label","Value":"_framework/System.Security.Principal.Windows.wasm.gz"}]},{"Route":"_framework/System.Security.Principal.Windows.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Principal.Windows.7ssqvw2wfy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"27413"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ="}]},{"Route":"_framework/System.Security.Principal.Windows.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sl0sft7bkv-{0}-7ssqvw2wfy-7ssqvw2wfy.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090171326"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11089"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ="},{"Name":"original-resource","Value":"\"NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ=\""}]},{"Route":"_framework/System.Security.Principal.Windows.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sl0sft7bkv-{0}-7ssqvw2wfy-7ssqvw2wfy.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11089"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg="}]},{"Route":"_framework/System.Security.Principal.j5dp7k8x6u.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Principal.j5dp7k8x6u.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5dp7k8x6u"},{"Name":"integrity","Value":"sha256-KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no="},{"Name":"label","Value":"_framework/System.Security.Principal.wasm"}]},{"Route":"_framework/System.Security.Principal.j5dp7k8x6u.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8ynwqwcefg-{0}-j5dp7k8x6u-j5dp7k8x6u.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000459558824"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2175"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5dp7k8x6u"},{"Name":"integrity","Value":"sha256-KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no="},{"Name":"label","Value":"_framework/System.Security.Principal.wasm"},{"Name":"original-resource","Value":"\"KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no=\""}]},{"Route":"_framework/System.Security.Principal.j5dp7k8x6u.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8ynwqwcefg-{0}-j5dp7k8x6u-j5dp7k8x6u.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2175"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5dp7k8x6u"},{"Name":"integrity","Value":"sha256-HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA="},{"Name":"label","Value":"_framework/System.Security.Principal.wasm.gz"}]},{"Route":"_framework/System.Security.Principal.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Principal.j5dp7k8x6u.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no="}]},{"Route":"_framework/System.Security.Principal.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8ynwqwcefg-{0}-j5dp7k8x6u-j5dp7k8x6u.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000459558824"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2175"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no="},{"Name":"original-resource","Value":"\"KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no=\""}]},{"Route":"_framework/System.Security.Principal.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8ynwqwcefg-{0}-j5dp7k8x6u-j5dp7k8x6u.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2175"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA="}]},{"Route":"_framework/System.Security.SecureString.7weoywtuje.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.SecureString.7weoywtuje.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7weoywtuje"},{"Name":"integrity","Value":"sha256-Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY="},{"Name":"label","Value":"_framework/System.Security.SecureString.wasm"}]},{"Route":"_framework/System.Security.SecureString.7weoywtuje.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ogcs9ucvrf-{0}-7weoywtuje-7weoywtuje.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000453309157"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2205"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7weoywtuje"},{"Name":"integrity","Value":"sha256-Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY="},{"Name":"label","Value":"_framework/System.Security.SecureString.wasm"},{"Name":"original-resource","Value":"\"Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY=\""}]},{"Route":"_framework/System.Security.SecureString.7weoywtuje.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ogcs9ucvrf-{0}-7weoywtuje-7weoywtuje.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2205"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7weoywtuje"},{"Name":"integrity","Value":"sha256-z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM="},{"Name":"label","Value":"_framework/System.Security.SecureString.wasm.gz"}]},{"Route":"_framework/System.Security.SecureString.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.SecureString.7weoywtuje.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY="}]},{"Route":"_framework/System.Security.SecureString.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ogcs9ucvrf-{0}-7weoywtuje-7weoywtuje.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000453309157"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2205"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY="},{"Name":"original-resource","Value":"\"Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY=\""}]},{"Route":"_framework/System.Security.SecureString.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ogcs9ucvrf-{0}-7weoywtuje-7weoywtuje.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2205"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM="}]},{"Route":"_framework/System.Security.snpv53zusk.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.snpv53zusk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"7957"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"snpv53zusk"},{"Name":"integrity","Value":"sha256-qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk="},{"Name":"label","Value":"_framework/System.Security.wasm"}]},{"Route":"_framework/System.Security.snpv53zusk.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8srr1acehr-{0}-snpv53zusk-snpv53zusk.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000336927224"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2967"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"snpv53zusk"},{"Name":"integrity","Value":"sha256-qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk="},{"Name":"label","Value":"_framework/System.Security.wasm"},{"Name":"original-resource","Value":"\"qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk=\""}]},{"Route":"_framework/System.Security.snpv53zusk.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8srr1acehr-{0}-snpv53zusk-snpv53zusk.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2967"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"snpv53zusk"},{"Name":"integrity","Value":"sha256-l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk="},{"Name":"label","Value":"_framework/System.Security.wasm.gz"}]},{"Route":"_framework/System.Security.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.snpv53zusk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"7957"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk="}]},{"Route":"_framework/System.Security.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8srr1acehr-{0}-snpv53zusk-snpv53zusk.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000336927224"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2967"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk="},{"Name":"original-resource","Value":"\"qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk=\""}]},{"Route":"_framework/System.Security.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8srr1acehr-{0}-snpv53zusk-snpv53zusk.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2967"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk="}]},{"Route":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ServiceModel.Web.3f1khl8k32.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3f1khl8k32"},{"Name":"integrity","Value":"sha256-0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY="},{"Name":"label","Value":"_framework/System.ServiceModel.Web.wasm"}]},{"Route":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i30lqfoca8-{0}-3f1khl8k32-3f1khl8k32.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000392464678"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2547"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3f1khl8k32"},{"Name":"integrity","Value":"sha256-0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY="},{"Name":"label","Value":"_framework/System.ServiceModel.Web.wasm"},{"Name":"original-resource","Value":"\"0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY=\""}]},{"Route":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i30lqfoca8-{0}-3f1khl8k32-3f1khl8k32.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2547"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3f1khl8k32"},{"Name":"integrity","Value":"sha256-E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4="},{"Name":"label","Value":"_framework/System.ServiceModel.Web.wasm.gz"}]},{"Route":"_framework/System.ServiceModel.Web.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ServiceModel.Web.3f1khl8k32.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY="}]},{"Route":"_framework/System.ServiceModel.Web.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i30lqfoca8-{0}-3f1khl8k32-3f1khl8k32.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000392464678"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2547"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY="},{"Name":"original-resource","Value":"\"0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY=\""}]},{"Route":"_framework/System.ServiceModel.Web.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i30lqfoca8-{0}-3f1khl8k32-3f1khl8k32.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2547"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4="}]},{"Route":"_framework/System.ServiceProcess.a95c1olw0i.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ServiceProcess.a95c1olw0i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a95c1olw0i"},{"Name":"integrity","Value":"sha256-nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU="},{"Name":"label","Value":"_framework/System.ServiceProcess.wasm"}]},{"Route":"_framework/System.ServiceProcess.a95c1olw0i.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zlxnfbxifc-{0}-a95c1olw0i-a95c1olw0i.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000433275563"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a95c1olw0i"},{"Name":"integrity","Value":"sha256-nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU="},{"Name":"label","Value":"_framework/System.ServiceProcess.wasm"},{"Name":"original-resource","Value":"\"nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU=\""}]},{"Route":"_framework/System.ServiceProcess.a95c1olw0i.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zlxnfbxifc-{0}-a95c1olw0i-a95c1olw0i.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a95c1olw0i"},{"Name":"integrity","Value":"sha256-EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q="},{"Name":"label","Value":"_framework/System.ServiceProcess.wasm.gz"}]},{"Route":"_framework/System.ServiceProcess.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ServiceProcess.a95c1olw0i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU="}]},{"Route":"_framework/System.ServiceProcess.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zlxnfbxifc-{0}-a95c1olw0i-a95c1olw0i.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000433275563"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU="},{"Name":"original-resource","Value":"\"nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU=\""}]},{"Route":"_framework/System.ServiceProcess.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zlxnfbxifc-{0}-a95c1olw0i-a95c1olw0i.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q="}]},{"Route":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encoding.CodePages.8bhn50uz8f.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"732437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8bhn50uz8f"},{"Name":"integrity","Value":"sha256-nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A="},{"Name":"label","Value":"_framework/System.Text.Encoding.CodePages.wasm"}]},{"Route":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\d2kqqmb0bv-{0}-8bhn50uz8f-8bhn50uz8f.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000001939067"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"515711"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8bhn50uz8f"},{"Name":"integrity","Value":"sha256-nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A="},{"Name":"label","Value":"_framework/System.Text.Encoding.CodePages.wasm"},{"Name":"original-resource","Value":"\"nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A=\""}]},{"Route":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\d2kqqmb0bv-{0}-8bhn50uz8f-8bhn50uz8f.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"515711"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8bhn50uz8f"},{"Name":"integrity","Value":"sha256-hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y="},{"Name":"label","Value":"_framework/System.Text.Encoding.CodePages.wasm.gz"}]},{"Route":"_framework/System.Text.Encoding.CodePages.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encoding.CodePages.8bhn50uz8f.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"732437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A="}]},{"Route":"_framework/System.Text.Encoding.CodePages.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\d2kqqmb0bv-{0}-8bhn50uz8f-8bhn50uz8f.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000001939067"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"515711"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A="},{"Name":"original-resource","Value":"\"nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A=\""}]},{"Route":"_framework/System.Text.Encoding.CodePages.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\d2kqqmb0bv-{0}-8bhn50uz8f-8bhn50uz8f.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"515711"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y="}]},{"Route":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encoding.Extensions.tqz9dyg6j7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tqz9dyg6j7"},{"Name":"integrity","Value":"sha256-y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A="},{"Name":"label","Value":"_framework/System.Text.Encoding.Extensions.wasm"}]},{"Route":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m10se0yx1g-{0}-tqz9dyg6j7-tqz9dyg6j7.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000442673749"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2258"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tqz9dyg6j7"},{"Name":"integrity","Value":"sha256-y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A="},{"Name":"label","Value":"_framework/System.Text.Encoding.Extensions.wasm"},{"Name":"original-resource","Value":"\"y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A=\""}]},{"Route":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m10se0yx1g-{0}-tqz9dyg6j7-tqz9dyg6j7.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2258"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tqz9dyg6j7"},{"Name":"integrity","Value":"sha256-jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k="},{"Name":"label","Value":"_framework/System.Text.Encoding.Extensions.wasm.gz"}]},{"Route":"_framework/System.Text.Encoding.Extensions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encoding.Extensions.tqz9dyg6j7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A="}]},{"Route":"_framework/System.Text.Encoding.Extensions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m10se0yx1g-{0}-tqz9dyg6j7-tqz9dyg6j7.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000442673749"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2258"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A="},{"Name":"original-resource","Value":"\"y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A=\""}]},{"Route":"_framework/System.Text.Encoding.Extensions.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m10se0yx1g-{0}-tqz9dyg6j7-tqz9dyg6j7.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2258"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k="}]},{"Route":"_framework/System.Text.Encoding.s9ic8sulfi.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encoding.s9ic8sulfi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s9ic8sulfi"},{"Name":"integrity","Value":"sha256-gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg="},{"Name":"label","Value":"_framework/System.Text.Encoding.wasm"}]},{"Route":"_framework/System.Text.Encoding.s9ic8sulfi.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\w4xw0gq3pj-{0}-s9ic8sulfi-s9ic8sulfi.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000445434298"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2244"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s9ic8sulfi"},{"Name":"integrity","Value":"sha256-gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg="},{"Name":"label","Value":"_framework/System.Text.Encoding.wasm"},{"Name":"original-resource","Value":"\"gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg=\""}]},{"Route":"_framework/System.Text.Encoding.s9ic8sulfi.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\w4xw0gq3pj-{0}-s9ic8sulfi-s9ic8sulfi.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2244"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s9ic8sulfi"},{"Name":"integrity","Value":"sha256-oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA="},{"Name":"label","Value":"_framework/System.Text.Encoding.wasm.gz"}]},{"Route":"_framework/System.Text.Encoding.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encoding.s9ic8sulfi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg="}]},{"Route":"_framework/System.Text.Encoding.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\w4xw0gq3pj-{0}-s9ic8sulfi-s9ic8sulfi.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000445434298"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2244"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg="},{"Name":"original-resource","Value":"\"gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg=\""}]},{"Route":"_framework/System.Text.Encoding.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\w4xw0gq3pj-{0}-s9ic8sulfi-s9ic8sulfi.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2244"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA="}]},{"Route":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encodings.Web.07hq35kp92.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"07hq35kp92"},{"Name":"integrity","Value":"sha256-dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE="},{"Name":"label","Value":"_framework/System.Text.Encodings.Web.wasm"}]},{"Route":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wqsee81gb1-{0}-07hq35kp92-07hq35kp92.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000045293958"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"07hq35kp92"},{"Name":"integrity","Value":"sha256-dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE="},{"Name":"label","Value":"_framework/System.Text.Encodings.Web.wasm"},{"Name":"original-resource","Value":"\"dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE=\""}]},{"Route":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wqsee81gb1-{0}-07hq35kp92-07hq35kp92.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"07hq35kp92"},{"Name":"integrity","Value":"sha256-vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4="},{"Name":"label","Value":"_framework/System.Text.Encodings.Web.wasm.gz"}]},{"Route":"_framework/System.Text.Encodings.Web.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encodings.Web.07hq35kp92.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE="}]},{"Route":"_framework/System.Text.Encodings.Web.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wqsee81gb1-{0}-07hq35kp92-07hq35kp92.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000045293958"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE="},{"Name":"original-resource","Value":"\"dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE=\""}]},{"Route":"_framework/System.Text.Encodings.Web.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wqsee81gb1-{0}-07hq35kp92-07hq35kp92.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4="}]},{"Route":"_framework/System.Text.Json.2alhj4y3bm.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Json.2alhj4y3bm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"638741"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2alhj4y3bm"},{"Name":"integrity","Value":"sha256-BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY="},{"Name":"label","Value":"_framework/System.Text.Json.wasm"}]},{"Route":"_framework/System.Text.Json.2alhj4y3bm.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0064fe6uur-{0}-2alhj4y3bm-2alhj4y3bm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004372674"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"228692"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2alhj4y3bm"},{"Name":"integrity","Value":"sha256-BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY="},{"Name":"label","Value":"_framework/System.Text.Json.wasm"},{"Name":"original-resource","Value":"\"BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY=\""}]},{"Route":"_framework/System.Text.Json.2alhj4y3bm.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0064fe6uur-{0}-2alhj4y3bm-2alhj4y3bm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"228692"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2alhj4y3bm"},{"Name":"integrity","Value":"sha256-L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw="},{"Name":"label","Value":"_framework/System.Text.Json.wasm.gz"}]},{"Route":"_framework/System.Text.Json.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Json.2alhj4y3bm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"638741"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY="}]},{"Route":"_framework/System.Text.Json.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0064fe6uur-{0}-2alhj4y3bm-2alhj4y3bm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004372674"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"228692"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY="},{"Name":"original-resource","Value":"\"BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY=\""}]},{"Route":"_framework/System.Text.Json.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0064fe6uur-{0}-2alhj4y3bm-2alhj4y3bm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"228692"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw="}]},{"Route":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.RegularExpressions.h1qtkesphd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"374549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1qtkesphd"},{"Name":"integrity","Value":"sha256-FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ="},{"Name":"label","Value":"_framework/System.Text.RegularExpressions.wasm"}]},{"Route":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\7d15z782y2-{0}-h1qtkesphd-h1qtkesphd.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006311418"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"158442"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1qtkesphd"},{"Name":"integrity","Value":"sha256-FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ="},{"Name":"label","Value":"_framework/System.Text.RegularExpressions.wasm"},{"Name":"original-resource","Value":"\"FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ=\""}]},{"Route":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\7d15z782y2-{0}-h1qtkesphd-h1qtkesphd.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"158442"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1qtkesphd"},{"Name":"integrity","Value":"sha256-BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U="},{"Name":"label","Value":"_framework/System.Text.RegularExpressions.wasm.gz"}]},{"Route":"_framework/System.Text.RegularExpressions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.RegularExpressions.h1qtkesphd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"374549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ="}]},{"Route":"_framework/System.Text.RegularExpressions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\7d15z782y2-{0}-h1qtkesphd-h1qtkesphd.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006311418"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"158442"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ="},{"Name":"original-resource","Value":"\"FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ=\""}]},{"Route":"_framework/System.Text.RegularExpressions.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\7d15z782y2-{0}-h1qtkesphd-h1qtkesphd.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"158442"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U="}]},{"Route":"_framework/System.Threading.47ucbn1gg1.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.47ucbn1gg1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"47ucbn1gg1"},{"Name":"integrity","Value":"sha256-ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts="},{"Name":"label","Value":"_framework/System.Threading.wasm"}]},{"Route":"_framework/System.Threading.47ucbn1gg1.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\e2ypaal8k2-{0}-47ucbn1gg1-47ucbn1gg1.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000068045727"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14695"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"47ucbn1gg1"},{"Name":"integrity","Value":"sha256-ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts="},{"Name":"label","Value":"_framework/System.Threading.wasm"},{"Name":"original-resource","Value":"\"ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts=\""}]},{"Route":"_framework/System.Threading.47ucbn1gg1.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\e2ypaal8k2-{0}-47ucbn1gg1-47ucbn1gg1.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14695"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"47ucbn1gg1"},{"Name":"integrity","Value":"sha256-fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g="},{"Name":"label","Value":"_framework/System.Threading.wasm.gz"}]},{"Route":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.AccessControl.ruehy0ud5k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"23317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ruehy0ud5k"},{"Name":"integrity","Value":"sha256-c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s="},{"Name":"label","Value":"_framework/System.Threading.AccessControl.wasm"}]},{"Route":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\lbcric48ji-{0}-ruehy0ud5k-ruehy0ud5k.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000117785630"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ruehy0ud5k"},{"Name":"integrity","Value":"sha256-c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s="},{"Name":"label","Value":"_framework/System.Threading.AccessControl.wasm"},{"Name":"original-resource","Value":"\"c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s=\""}]},{"Route":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\lbcric48ji-{0}-ruehy0ud5k-ruehy0ud5k.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ruehy0ud5k"},{"Name":"integrity","Value":"sha256-INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s="},{"Name":"label","Value":"_framework/System.Threading.AccessControl.wasm.gz"}]},{"Route":"_framework/System.Threading.AccessControl.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.AccessControl.ruehy0ud5k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"23317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s="}]},{"Route":"_framework/System.Threading.AccessControl.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\lbcric48ji-{0}-ruehy0ud5k-ruehy0ud5k.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000117785630"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s="},{"Name":"original-resource","Value":"\"c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s=\""}]},{"Route":"_framework/System.Threading.AccessControl.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\lbcric48ji-{0}-ruehy0ud5k-ruehy0ud5k.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s="}]},{"Route":"_framework/System.Threading.Channels.s3i62rxr2p.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Channels.s3i62rxr2p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"56085"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s3i62rxr2p"},{"Name":"integrity","Value":"sha256-2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4="},{"Name":"label","Value":"_framework/System.Threading.Channels.wasm"}]},{"Route":"_framework/System.Threading.Channels.s3i62rxr2p.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\rma0vjtbld-{0}-s3i62rxr2p-s3i62rxr2p.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040955072"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24416"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s3i62rxr2p"},{"Name":"integrity","Value":"sha256-2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4="},{"Name":"label","Value":"_framework/System.Threading.Channels.wasm"},{"Name":"original-resource","Value":"\"2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4=\""}]},{"Route":"_framework/System.Threading.Channels.s3i62rxr2p.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\rma0vjtbld-{0}-s3i62rxr2p-s3i62rxr2p.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24416"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s3i62rxr2p"},{"Name":"integrity","Value":"sha256-u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo="},{"Name":"label","Value":"_framework/System.Threading.Channels.wasm.gz"}]},{"Route":"_framework/System.Threading.Channels.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Channels.s3i62rxr2p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"56085"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4="}]},{"Route":"_framework/System.Threading.Channels.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\rma0vjtbld-{0}-s3i62rxr2p-s3i62rxr2p.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040955072"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24416"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4="},{"Name":"original-resource","Value":"\"2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4=\""}]},{"Route":"_framework/System.Threading.Channels.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\rma0vjtbld-{0}-s3i62rxr2p-s3i62rxr2p.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24416"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo="}]},{"Route":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Overlapped.lzl7igry1t.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzl7igry1t"},{"Name":"integrity","Value":"sha256-ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8="},{"Name":"label","Value":"_framework/System.Threading.Overlapped.wasm"}]},{"Route":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ywpa2qpg55-{0}-lzl7igry1t-lzl7igry1t.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000431406385"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzl7igry1t"},{"Name":"integrity","Value":"sha256-ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8="},{"Name":"label","Value":"_framework/System.Threading.Overlapped.wasm"},{"Name":"original-resource","Value":"\"ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8=\""}]},{"Route":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ywpa2qpg55-{0}-lzl7igry1t-lzl7igry1t.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzl7igry1t"},{"Name":"integrity","Value":"sha256-2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto="},{"Name":"label","Value":"_framework/System.Threading.Overlapped.wasm.gz"}]},{"Route":"_framework/System.Threading.Overlapped.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Overlapped.lzl7igry1t.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8="}]},{"Route":"_framework/System.Threading.Overlapped.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ywpa2qpg55-{0}-lzl7igry1t-lzl7igry1t.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000431406385"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8="},{"Name":"original-resource","Value":"\"ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8=\""}]},{"Route":"_framework/System.Threading.Overlapped.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ywpa2qpg55-{0}-lzl7igry1t-lzl7igry1t.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto="}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"175381"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"p9bjzp5pyo"},{"Name":"integrity","Value":"sha256-zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Dataflow.wasm"}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\to8tkrj8cc-{0}-p9bjzp5pyo-p9bjzp5pyo.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013652623"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"73245"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"p9bjzp5pyo"},{"Name":"integrity","Value":"sha256-zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Dataflow.wasm"},{"Name":"original-resource","Value":"\"zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k=\""}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\to8tkrj8cc-{0}-p9bjzp5pyo-p9bjzp5pyo.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"73245"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"p9bjzp5pyo"},{"Name":"integrity","Value":"sha256-3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Dataflow.wasm.gz"}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"175381"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k="}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\to8tkrj8cc-{0}-p9bjzp5pyo-p9bjzp5pyo.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013652623"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"73245"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k="},{"Name":"original-resource","Value":"\"zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k=\""}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\to8tkrj8cc-{0}-p9bjzp5pyo-p9bjzp5pyo.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"73245"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U="}]},{"Route":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.unp0hcfijn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"unp0hcfijn"},{"Name":"integrity","Value":"sha256-Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Extensions.wasm"}]},{"Route":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\7o4w0lfocu-{0}-unp0hcfijn-unp0hcfijn.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000433275563"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"unp0hcfijn"},{"Name":"integrity","Value":"sha256-Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Extensions.wasm"},{"Name":"original-resource","Value":"\"Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4=\""}]},{"Route":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\7o4w0lfocu-{0}-unp0hcfijn-unp0hcfijn.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"unp0hcfijn"},{"Name":"integrity","Value":"sha256-+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Extensions.wasm.gz"}]},{"Route":"_framework/System.Threading.Tasks.Extensions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.unp0hcfijn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4="}]},{"Route":"_framework/System.Threading.Tasks.Extensions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\7o4w0lfocu-{0}-unp0hcfijn-unp0hcfijn.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000433275563"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4="},{"Name":"original-resource","Value":"\"Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4=\""}]},{"Route":"_framework/System.Threading.Tasks.Extensions.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\7o4w0lfocu-{0}-unp0hcfijn-unp0hcfijn.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw="}]},{"Route":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.hyku0ejwye.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"50965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hyku0ejwye"},{"Name":"integrity","Value":"sha256-ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Parallel.wasm"}]},{"Route":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ohlfbgu01g-{0}-hyku0ejwye-hyku0ejwye.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000047418085"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21088"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hyku0ejwye"},{"Name":"integrity","Value":"sha256-ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Parallel.wasm"},{"Name":"original-resource","Value":"\"ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo=\""}]},{"Route":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ohlfbgu01g-{0}-hyku0ejwye-hyku0ejwye.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21088"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hyku0ejwye"},{"Name":"integrity","Value":"sha256-m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Parallel.wasm.gz"}]},{"Route":"_framework/System.Threading.Tasks.Parallel.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.hyku0ejwye.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"50965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo="}]},{"Route":"_framework/System.Threading.Tasks.Parallel.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ohlfbgu01g-{0}-hyku0ejwye-hyku0ejwye.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000047418085"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21088"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo="},{"Name":"original-resource","Value":"\"ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo=\""}]},{"Route":"_framework/System.Threading.Tasks.Parallel.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ohlfbgu01g-{0}-hyku0ejwye-hyku0ejwye.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21088"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk="}]},{"Route":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.t0sjw89o0i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t0sjw89o0i"},{"Name":"integrity","Value":"sha256-YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo="},{"Name":"label","Value":"_framework/System.Threading.Tasks.wasm"}]},{"Route":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8rrnar5gtv-{0}-t0sjw89o0i-t0sjw89o0i.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388198758"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t0sjw89o0i"},{"Name":"integrity","Value":"sha256-YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo="},{"Name":"label","Value":"_framework/System.Threading.Tasks.wasm"},{"Name":"original-resource","Value":"\"YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo=\""}]},{"Route":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8rrnar5gtv-{0}-t0sjw89o0i-t0sjw89o0i.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t0sjw89o0i"},{"Name":"integrity","Value":"sha256-Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE="},{"Name":"label","Value":"_framework/System.Threading.Tasks.wasm.gz"}]},{"Route":"_framework/System.Threading.Tasks.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.t0sjw89o0i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo="}]},{"Route":"_framework/System.Threading.Tasks.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8rrnar5gtv-{0}-t0sjw89o0i-t0sjw89o0i.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388198758"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo="},{"Name":"original-resource","Value":"\"YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo=\""}]},{"Route":"_framework/System.Threading.Tasks.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8rrnar5gtv-{0}-t0sjw89o0i-t0sjw89o0i.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE="}]},{"Route":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Thread.nfbg9v9bn0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nfbg9v9bn0"},{"Name":"integrity","Value":"sha256-43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0="},{"Name":"label","Value":"_framework/System.Threading.Thread.wasm"}]},{"Route":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wi7nbv7im4-{0}-nfbg9v9bn0-nfbg9v9bn0.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000427533134"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2338"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nfbg9v9bn0"},{"Name":"integrity","Value":"sha256-43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0="},{"Name":"label","Value":"_framework/System.Threading.Thread.wasm"},{"Name":"original-resource","Value":"\"43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0=\""}]},{"Route":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wi7nbv7im4-{0}-nfbg9v9bn0-nfbg9v9bn0.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2338"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nfbg9v9bn0"},{"Name":"integrity","Value":"sha256-FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE="},{"Name":"label","Value":"_framework/System.Threading.Thread.wasm.gz"}]},{"Route":"_framework/System.Threading.Thread.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Thread.nfbg9v9bn0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0="}]},{"Route":"_framework/System.Threading.Thread.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wi7nbv7im4-{0}-nfbg9v9bn0-nfbg9v9bn0.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000427533134"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2338"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0="},{"Name":"original-resource","Value":"\"43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0=\""}]},{"Route":"_framework/System.Threading.Thread.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wi7nbv7im4-{0}-nfbg9v9bn0-nfbg9v9bn0.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2338"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE="}]},{"Route":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.ThreadPool.jrzo6stg1k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jrzo6stg1k"},{"Name":"integrity","Value":"sha256-D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas="},{"Name":"label","Value":"_framework/System.Threading.ThreadPool.wasm"}]},{"Route":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5g4i44bi6s-{0}-jrzo6stg1k-jrzo6stg1k.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000442282176"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2260"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jrzo6stg1k"},{"Name":"integrity","Value":"sha256-D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas="},{"Name":"label","Value":"_framework/System.Threading.ThreadPool.wasm"},{"Name":"original-resource","Value":"\"D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas=\""}]},{"Route":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5g4i44bi6s-{0}-jrzo6stg1k-jrzo6stg1k.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2260"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jrzo6stg1k"},{"Name":"integrity","Value":"sha256-yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8="},{"Name":"label","Value":"_framework/System.Threading.ThreadPool.wasm.gz"}]},{"Route":"_framework/System.Threading.ThreadPool.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.ThreadPool.jrzo6stg1k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas="}]},{"Route":"_framework/System.Threading.ThreadPool.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5g4i44bi6s-{0}-jrzo6stg1k-jrzo6stg1k.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000442282176"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2260"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas="},{"Name":"original-resource","Value":"\"D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas=\""}]},{"Route":"_framework/System.Threading.ThreadPool.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5g4i44bi6s-{0}-jrzo6stg1k-jrzo6stg1k.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2260"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8="}]},{"Route":"_framework/System.Threading.Timer.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Timer.y8l1kxazi5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0="}]},{"Route":"_framework/System.Threading.Timer.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hq538hfxem-{0}-y8l1kxazi5-y8l1kxazi5.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000467726848"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2137"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0="},{"Name":"original-resource","Value":"\"0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0=\""}]},{"Route":"_framework/System.Threading.Timer.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hq538hfxem-{0}-y8l1kxazi5-y8l1kxazi5.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2137"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M="}]},{"Route":"_framework/System.Threading.Timer.y8l1kxazi5.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Timer.y8l1kxazi5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y8l1kxazi5"},{"Name":"integrity","Value":"sha256-0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0="},{"Name":"label","Value":"_framework/System.Threading.Timer.wasm"}]},{"Route":"_framework/System.Threading.Timer.y8l1kxazi5.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hq538hfxem-{0}-y8l1kxazi5-y8l1kxazi5.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000467726848"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2137"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y8l1kxazi5"},{"Name":"integrity","Value":"sha256-0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0="},{"Name":"label","Value":"_framework/System.Threading.Timer.wasm"},{"Name":"original-resource","Value":"\"0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0=\""}]},{"Route":"_framework/System.Threading.Timer.y8l1kxazi5.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hq538hfxem-{0}-y8l1kxazi5-y8l1kxazi5.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2137"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y8l1kxazi5"},{"Name":"integrity","Value":"sha256-pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M="},{"Name":"label","Value":"_framework/System.Threading.Timer.wasm.gz"}]},{"Route":"_framework/System.Threading.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.47ucbn1gg1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts="}]},{"Route":"_framework/System.Threading.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\e2ypaal8k2-{0}-47ucbn1gg1-47ucbn1gg1.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000068045727"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14695"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts="},{"Name":"original-resource","Value":"\"ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts=\""}]},{"Route":"_framework/System.Threading.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\e2ypaal8k2-{0}-47ucbn1gg1-47ucbn1gg1.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14695"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g="}]},{"Route":"_framework/System.Transactions.Local.cig01jt23c.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Transactions.Local.cig01jt23c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"165653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cig01jt23c"},{"Name":"integrity","Value":"sha256-lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4="},{"Name":"label","Value":"_framework/System.Transactions.Local.wasm"}]},{"Route":"_framework/System.Transactions.Local.cig01jt23c.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\uz6wr238mp-{0}-cig01jt23c-cig01jt23c.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000019435590"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"51451"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cig01jt23c"},{"Name":"integrity","Value":"sha256-lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4="},{"Name":"label","Value":"_framework/System.Transactions.Local.wasm"},{"Name":"original-resource","Value":"\"lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4=\""}]},{"Route":"_framework/System.Transactions.Local.cig01jt23c.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\uz6wr238mp-{0}-cig01jt23c-cig01jt23c.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"51451"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cig01jt23c"},{"Name":"integrity","Value":"sha256-ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8="},{"Name":"label","Value":"_framework/System.Transactions.Local.wasm.gz"}]},{"Route":"_framework/System.Transactions.Local.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Transactions.Local.cig01jt23c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"165653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4="}]},{"Route":"_framework/System.Transactions.Local.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\uz6wr238mp-{0}-cig01jt23c-cig01jt23c.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000019435590"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"51451"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4="},{"Name":"original-resource","Value":"\"lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4=\""}]},{"Route":"_framework/System.Transactions.Local.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\uz6wr238mp-{0}-cig01jt23c-cig01jt23c.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"51451"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8="}]},{"Route":"_framework/System.Transactions.pl50n6qbg7.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Transactions.pl50n6qbg7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pl50n6qbg7"},{"Name":"integrity","Value":"sha256-XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio="},{"Name":"label","Value":"_framework/System.Transactions.wasm"}]},{"Route":"_framework/System.Transactions.pl50n6qbg7.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kmdzqqqt27-{0}-pl50n6qbg7-pl50n6qbg7.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000419287212"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2384"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pl50n6qbg7"},{"Name":"integrity","Value":"sha256-XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio="},{"Name":"label","Value":"_framework/System.Transactions.wasm"},{"Name":"original-resource","Value":"\"XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio=\""}]},{"Route":"_framework/System.Transactions.pl50n6qbg7.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kmdzqqqt27-{0}-pl50n6qbg7-pl50n6qbg7.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2384"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pl50n6qbg7"},{"Name":"integrity","Value":"sha256-Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA="},{"Name":"label","Value":"_framework/System.Transactions.wasm.gz"}]},{"Route":"_framework/System.Transactions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Transactions.pl50n6qbg7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio="}]},{"Route":"_framework/System.Transactions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kmdzqqqt27-{0}-pl50n6qbg7-pl50n6qbg7.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000419287212"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2384"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio="},{"Name":"original-resource","Value":"\"XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio=\""}]},{"Route":"_framework/System.Transactions.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kmdzqqqt27-{0}-pl50n6qbg7-pl50n6qbg7.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2384"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA="}]},{"Route":"_framework/System.ValueTuple.mj3r9p0pcw.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ValueTuple.mj3r9p0pcw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mj3r9p0pcw"},{"Name":"integrity","Value":"sha256-Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY="},{"Name":"label","Value":"_framework/System.ValueTuple.wasm"}]},{"Route":"_framework/System.ValueTuple.mj3r9p0pcw.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\dy6tcjmb9q-{0}-mj3r9p0pcw-mj3r9p0pcw.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455788514"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2193"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mj3r9p0pcw"},{"Name":"integrity","Value":"sha256-Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY="},{"Name":"label","Value":"_framework/System.ValueTuple.wasm"},{"Name":"original-resource","Value":"\"Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY=\""}]},{"Route":"_framework/System.ValueTuple.mj3r9p0pcw.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\dy6tcjmb9q-{0}-mj3r9p0pcw-mj3r9p0pcw.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2193"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mj3r9p0pcw"},{"Name":"integrity","Value":"sha256-qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY="},{"Name":"label","Value":"_framework/System.ValueTuple.wasm.gz"}]},{"Route":"_framework/System.ValueTuple.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ValueTuple.mj3r9p0pcw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY="}]},{"Route":"_framework/System.ValueTuple.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\dy6tcjmb9q-{0}-mj3r9p0pcw-mj3r9p0pcw.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455788514"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2193"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY="},{"Name":"original-resource","Value":"\"Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY=\""}]},{"Route":"_framework/System.ValueTuple.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\dy6tcjmb9q-{0}-mj3r9p0pcw-mj3r9p0pcw.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2193"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY="}]},{"Route":"_framework/System.Web.2a6wq9gv6d.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Web.2a6wq9gv6d.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2a6wq9gv6d"},{"Name":"integrity","Value":"sha256-Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk="},{"Name":"label","Value":"_framework/System.Web.wasm"}]},{"Route":"_framework/System.Web.2a6wq9gv6d.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\iok845swr0-{0}-2a6wq9gv6d-2a6wq9gv6d.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000469924812"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2127"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2a6wq9gv6d"},{"Name":"integrity","Value":"sha256-Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk="},{"Name":"label","Value":"_framework/System.Web.wasm"},{"Name":"original-resource","Value":"\"Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk=\""}]},{"Route":"_framework/System.Web.2a6wq9gv6d.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\iok845swr0-{0}-2a6wq9gv6d-2a6wq9gv6d.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2127"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2a6wq9gv6d"},{"Name":"integrity","Value":"sha256-UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4="},{"Name":"label","Value":"_framework/System.Web.wasm.gz"}]},{"Route":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Web.HttpUtility.3jfxpyq4in.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"19733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3jfxpyq4in"},{"Name":"integrity","Value":"sha256-IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4="},{"Name":"label","Value":"_framework/System.Web.HttpUtility.wasm"}]},{"Route":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\pfi56k79hn-{0}-3jfxpyq4in-3jfxpyq4in.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000104766894"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9544"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3jfxpyq4in"},{"Name":"integrity","Value":"sha256-IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4="},{"Name":"label","Value":"_framework/System.Web.HttpUtility.wasm"},{"Name":"original-resource","Value":"\"IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4=\""}]},{"Route":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\pfi56k79hn-{0}-3jfxpyq4in-3jfxpyq4in.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9544"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3jfxpyq4in"},{"Name":"integrity","Value":"sha256-eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg="},{"Name":"label","Value":"_framework/System.Web.HttpUtility.wasm.gz"}]},{"Route":"_framework/System.Web.HttpUtility.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Web.HttpUtility.3jfxpyq4in.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"19733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4="}]},{"Route":"_framework/System.Web.HttpUtility.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\pfi56k79hn-{0}-3jfxpyq4in-3jfxpyq4in.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000104766894"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9544"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4="},{"Name":"original-resource","Value":"\"IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4=\""}]},{"Route":"_framework/System.Web.HttpUtility.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\pfi56k79hn-{0}-3jfxpyq4in-3jfxpyq4in.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9544"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg="}]},{"Route":"_framework/System.Web.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Web.2a6wq9gv6d.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk="}]},{"Route":"_framework/System.Web.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\iok845swr0-{0}-2a6wq9gv6d-2a6wq9gv6d.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000469924812"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2127"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk="},{"Name":"original-resource","Value":"\"Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk=\""}]},{"Route":"_framework/System.Web.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\iok845swr0-{0}-2a6wq9gv6d-2a6wq9gv6d.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2127"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4="}]},{"Route":"_framework/System.Windows.bw79ix589z.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Windows.bw79ix589z.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bw79ix589z"},{"Name":"integrity","Value":"sha256-O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA="},{"Name":"label","Value":"_framework/System.Windows.wasm"}]},{"Route":"_framework/System.Windows.bw79ix589z.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tvvpa50077-{0}-bw79ix589z-bw79ix589z.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438212095"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bw79ix589z"},{"Name":"integrity","Value":"sha256-O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA="},{"Name":"label","Value":"_framework/System.Windows.wasm"},{"Name":"original-resource","Value":"\"O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA=\""}]},{"Route":"_framework/System.Windows.bw79ix589z.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tvvpa50077-{0}-bw79ix589z-bw79ix589z.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bw79ix589z"},{"Name":"integrity","Value":"sha256-YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs="},{"Name":"label","Value":"_framework/System.Windows.wasm.gz"}]},{"Route":"_framework/System.Windows.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Windows.bw79ix589z.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA="}]},{"Route":"_framework/System.Windows.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tvvpa50077-{0}-bw79ix589z-bw79ix589z.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438212095"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA="},{"Name":"original-resource","Value":"\"O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA=\""}]},{"Route":"_framework/System.Windows.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tvvpa50077-{0}-bw79ix589z-bw79ix589z.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs="}]},{"Route":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.Linq.nvnhbwdsg6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvnhbwdsg6"},{"Name":"integrity","Value":"sha256-I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE="},{"Name":"label","Value":"_framework/System.Xml.Linq.wasm"}]},{"Route":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\79deazooef-{0}-nvnhbwdsg6-nvnhbwdsg6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000452488688"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2209"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvnhbwdsg6"},{"Name":"integrity","Value":"sha256-I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE="},{"Name":"label","Value":"_framework/System.Xml.Linq.wasm"},{"Name":"original-resource","Value":"\"I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE=\""}]},{"Route":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\79deazooef-{0}-nvnhbwdsg6-nvnhbwdsg6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2209"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvnhbwdsg6"},{"Name":"integrity","Value":"sha256-NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog="},{"Name":"label","Value":"_framework/System.Xml.Linq.wasm.gz"}]},{"Route":"_framework/System.Xml.Linq.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.Linq.nvnhbwdsg6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE="}]},{"Route":"_framework/System.Xml.Linq.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\79deazooef-{0}-nvnhbwdsg6-nvnhbwdsg6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000452488688"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2209"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE="},{"Name":"original-resource","Value":"\"I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE=\""}]},{"Route":"_framework/System.Xml.Linq.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\79deazooef-{0}-nvnhbwdsg6-nvnhbwdsg6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2209"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog="}]},{"Route":"_framework/System.Xml.ReaderWriter.szsdminork.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.ReaderWriter.szsdminork.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"szsdminork"},{"Name":"integrity","Value":"sha256-+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho="},{"Name":"label","Value":"_framework/System.Xml.ReaderWriter.wasm"}]},{"Route":"_framework/System.Xml.ReaderWriter.szsdminork.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kmp1cwjk7f-{0}-szsdminork-szsdminork.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000248632521"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"szsdminork"},{"Name":"integrity","Value":"sha256-+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho="},{"Name":"label","Value":"_framework/System.Xml.ReaderWriter.wasm"},{"Name":"original-resource","Value":"\"+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho=\""}]},{"Route":"_framework/System.Xml.ReaderWriter.szsdminork.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kmp1cwjk7f-{0}-szsdminork-szsdminork.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"szsdminork"},{"Name":"integrity","Value":"sha256-v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI="},{"Name":"label","Value":"_framework/System.Xml.ReaderWriter.wasm.gz"}]},{"Route":"_framework/System.Xml.ReaderWriter.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.ReaderWriter.szsdminork.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho="}]},{"Route":"_framework/System.Xml.ReaderWriter.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kmp1cwjk7f-{0}-szsdminork-szsdminork.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000248632521"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho="},{"Name":"original-resource","Value":"\"+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho=\""}]},{"Route":"_framework/System.Xml.ReaderWriter.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kmp1cwjk7f-{0}-szsdminork-szsdminork.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI="}]},{"Route":"_framework/System.Xml.Serialization.b9imguls9w.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.Serialization.b9imguls9w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b9imguls9w"},{"Name":"integrity","Value":"sha256-EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8="},{"Name":"label","Value":"_framework/System.Xml.Serialization.wasm"}]},{"Route":"_framework/System.Xml.Serialization.b9imguls9w.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\cagt9idkdm-{0}-b9imguls9w-b9imguls9w.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000443852641"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2252"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b9imguls9w"},{"Name":"integrity","Value":"sha256-EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8="},{"Name":"label","Value":"_framework/System.Xml.Serialization.wasm"},{"Name":"original-resource","Value":"\"EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8=\""}]},{"Route":"_framework/System.Xml.Serialization.b9imguls9w.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\cagt9idkdm-{0}-b9imguls9w-b9imguls9w.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2252"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b9imguls9w"},{"Name":"integrity","Value":"sha256-UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M="},{"Name":"label","Value":"_framework/System.Xml.Serialization.wasm.gz"}]},{"Route":"_framework/System.Xml.Serialization.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.Serialization.b9imguls9w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8="}]},{"Route":"_framework/System.Xml.Serialization.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\cagt9idkdm-{0}-b9imguls9w-b9imguls9w.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000443852641"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2252"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8="},{"Name":"original-resource","Value":"\"EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8=\""}]},{"Route":"_framework/System.Xml.Serialization.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\cagt9idkdm-{0}-b9imguls9w-b9imguls9w.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2252"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M="}]},{"Route":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XDocument.8hg6c0at0c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8hg6c0at0c"},{"Name":"integrity","Value":"sha256-7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk="},{"Name":"label","Value":"_framework/System.Xml.XDocument.wasm"}]},{"Route":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\blwck2749u-{0}-8hg6c0at0c-8hg6c0at0c.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000417362270"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2395"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8hg6c0at0c"},{"Name":"integrity","Value":"sha256-7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk="},{"Name":"label","Value":"_framework/System.Xml.XDocument.wasm"},{"Name":"original-resource","Value":"\"7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk=\""}]},{"Route":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\blwck2749u-{0}-8hg6c0at0c-8hg6c0at0c.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2395"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8hg6c0at0c"},{"Name":"integrity","Value":"sha256-JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU="},{"Name":"label","Value":"_framework/System.Xml.XDocument.wasm.gz"}]},{"Route":"_framework/System.Xml.XDocument.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XDocument.8hg6c0at0c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk="}]},{"Route":"_framework/System.Xml.XDocument.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\blwck2749u-{0}-8hg6c0at0c-8hg6c0at0c.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000417362270"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2395"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk="},{"Name":"original-resource","Value":"\"7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk=\""}]},{"Route":"_framework/System.Xml.XDocument.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\blwck2749u-{0}-8hg6c0at0c-8hg6c0at0c.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2395"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU="}]},{"Route":"_framework/System.Xml.XPath.11wk1hhnfk.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XPath.11wk1hhnfk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"11wk1hhnfk"},{"Name":"integrity","Value":"sha256-28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM="},{"Name":"label","Value":"_framework/System.Xml.XPath.wasm"}]},{"Route":"_framework/System.Xml.XPath.11wk1hhnfk.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\xo45czuveq-{0}-11wk1hhnfk-11wk1hhnfk.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000430848772"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2320"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"11wk1hhnfk"},{"Name":"integrity","Value":"sha256-28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM="},{"Name":"label","Value":"_framework/System.Xml.XPath.wasm"},{"Name":"original-resource","Value":"\"28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM=\""}]},{"Route":"_framework/System.Xml.XPath.11wk1hhnfk.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\xo45czuveq-{0}-11wk1hhnfk-11wk1hhnfk.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2320"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"11wk1hhnfk"},{"Name":"integrity","Value":"sha256-5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM="},{"Name":"label","Value":"_framework/System.Xml.XPath.wasm.gz"}]},{"Route":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XPath.XDocument.g7i5gd64yo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g7i5gd64yo"},{"Name":"integrity","Value":"sha256-bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg="},{"Name":"label","Value":"_framework/System.Xml.XPath.XDocument.wasm"}]},{"Route":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gsr2zhdiud-{0}-g7i5gd64yo-g7i5gd64yo.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000401284109"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2491"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g7i5gd64yo"},{"Name":"integrity","Value":"sha256-bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg="},{"Name":"label","Value":"_framework/System.Xml.XPath.XDocument.wasm"},{"Name":"original-resource","Value":"\"bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg=\""}]},{"Route":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gsr2zhdiud-{0}-g7i5gd64yo-g7i5gd64yo.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2491"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g7i5gd64yo"},{"Name":"integrity","Value":"sha256-6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918="},{"Name":"label","Value":"_framework/System.Xml.XPath.XDocument.wasm.gz"}]},{"Route":"_framework/System.Xml.XPath.XDocument.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XPath.XDocument.g7i5gd64yo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg="}]},{"Route":"_framework/System.Xml.XPath.XDocument.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gsr2zhdiud-{0}-g7i5gd64yo-g7i5gd64yo.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000401284109"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2491"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg="},{"Name":"original-resource","Value":"\"bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg=\""}]},{"Route":"_framework/System.Xml.XPath.XDocument.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gsr2zhdiud-{0}-g7i5gd64yo-g7i5gd64yo.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2491"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918="}]},{"Route":"_framework/System.Xml.XPath.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XPath.11wk1hhnfk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM="}]},{"Route":"_framework/System.Xml.XPath.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\xo45czuveq-{0}-11wk1hhnfk-11wk1hhnfk.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000430848772"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2320"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM="},{"Name":"original-resource","Value":"\"28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM=\""}]},{"Route":"_framework/System.Xml.XPath.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\xo45czuveq-{0}-11wk1hhnfk-11wk1hhnfk.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2320"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM="}]},{"Route":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XmlDocument.isetn6xlxa.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"isetn6xlxa"},{"Name":"integrity","Value":"sha256-Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw="},{"Name":"label","Value":"_framework/System.Xml.XmlDocument.wasm"}]},{"Route":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ww3wnv8b6s-{0}-isetn6xlxa-isetn6xlxa.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000423190859"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"isetn6xlxa"},{"Name":"integrity","Value":"sha256-Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw="},{"Name":"label","Value":"_framework/System.Xml.XmlDocument.wasm"},{"Name":"original-resource","Value":"\"Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw=\""}]},{"Route":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ww3wnv8b6s-{0}-isetn6xlxa-isetn6xlxa.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"isetn6xlxa"},{"Name":"integrity","Value":"sha256-520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs="},{"Name":"label","Value":"_framework/System.Xml.XmlDocument.wasm.gz"}]},{"Route":"_framework/System.Xml.XmlDocument.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XmlDocument.isetn6xlxa.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw="}]},{"Route":"_framework/System.Xml.XmlDocument.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ww3wnv8b6s-{0}-isetn6xlxa-isetn6xlxa.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000423190859"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw="},{"Name":"original-resource","Value":"\"Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw=\""}]},{"Route":"_framework/System.Xml.XmlDocument.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ww3wnv8b6s-{0}-isetn6xlxa-isetn6xlxa.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs="}]},{"Route":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XmlSerializer.okgnp5v9bw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"7445"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"okgnp5v9bw"},{"Name":"integrity","Value":"sha256-WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U="},{"Name":"label","Value":"_framework/System.Xml.XmlSerializer.wasm"}]},{"Route":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qt3o35adbl-{0}-okgnp5v9bw-okgnp5v9bw.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000349406010"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"okgnp5v9bw"},{"Name":"integrity","Value":"sha256-WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U="},{"Name":"label","Value":"_framework/System.Xml.XmlSerializer.wasm"},{"Name":"original-resource","Value":"\"WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U=\""}]},{"Route":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qt3o35adbl-{0}-okgnp5v9bw-okgnp5v9bw.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"okgnp5v9bw"},{"Name":"integrity","Value":"sha256-WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA="},{"Name":"label","Value":"_framework/System.Xml.XmlSerializer.wasm.gz"}]},{"Route":"_framework/System.Xml.XmlSerializer.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XmlSerializer.okgnp5v9bw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"7445"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U="}]},{"Route":"_framework/System.Xml.XmlSerializer.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qt3o35adbl-{0}-okgnp5v9bw-okgnp5v9bw.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000349406010"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U="},{"Name":"original-resource","Value":"\"WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U=\""}]},{"Route":"_framework/System.Xml.XmlSerializer.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qt3o35adbl-{0}-okgnp5v9bw-okgnp5v9bw.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA="}]},{"Route":"_framework/System.Xml.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.zjgi7nrlno.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas="}]},{"Route":"_framework/System.Xml.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ra6e7v46m5-{0}-zjgi7nrlno-zjgi7nrlno.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000237079184"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4217"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas="},{"Name":"original-resource","Value":"\"scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas=\""}]},{"Route":"_framework/System.Xml.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ra6e7v46m5-{0}-zjgi7nrlno-zjgi7nrlno.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4217"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY="}]},{"Route":"_framework/System.Xml.zjgi7nrlno.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.zjgi7nrlno.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zjgi7nrlno"},{"Name":"integrity","Value":"sha256-scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas="},{"Name":"label","Value":"_framework/System.Xml.wasm"}]},{"Route":"_framework/System.Xml.zjgi7nrlno.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ra6e7v46m5-{0}-zjgi7nrlno-zjgi7nrlno.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000237079184"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4217"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zjgi7nrlno"},{"Name":"integrity","Value":"sha256-scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas="},{"Name":"label","Value":"_framework/System.Xml.wasm"},{"Name":"original-resource","Value":"\"scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas=\""}]},{"Route":"_framework/System.Xml.zjgi7nrlno.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ra6e7v46m5-{0}-zjgi7nrlno-zjgi7nrlno.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4217"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zjgi7nrlno"},{"Name":"integrity","Value":"sha256-Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY="},{"Name":"label","Value":"_framework/System.Xml.wasm.gz"}]},{"Route":"_framework/System.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.7rk3uansaa.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"39701"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q="}]},{"Route":"_framework/System.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5onvg4v1ie-{0}-7rk3uansaa-7rk3uansaa.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000084875233"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q="},{"Name":"original-resource","Value":"\"00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q=\""}]},{"Route":"_framework/System.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5onvg4v1ie-{0}-7rk3uansaa-7rk3uansaa.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI="}]},{"Route":"_framework/WindowsBase.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\WindowsBase.wz82kkc1p3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ="}]},{"Route":"_framework/WindowsBase.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\10vfj5e8p2-{0}-wz82kkc1p3-wz82kkc1p3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000395726157"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2526"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ="},{"Name":"original-resource","Value":"\"DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ=\""}]},{"Route":"_framework/WindowsBase.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\10vfj5e8p2-{0}-wz82kkc1p3-wz82kkc1p3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2526"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc="}]},{"Route":"_framework/WindowsBase.wz82kkc1p3.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\WindowsBase.wz82kkc1p3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wz82kkc1p3"},{"Name":"integrity","Value":"sha256-DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ="},{"Name":"label","Value":"_framework/WindowsBase.wasm"}]},{"Route":"_framework/WindowsBase.wz82kkc1p3.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\10vfj5e8p2-{0}-wz82kkc1p3-wz82kkc1p3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000395726157"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2526"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wz82kkc1p3"},{"Name":"integrity","Value":"sha256-DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ="},{"Name":"label","Value":"_framework/WindowsBase.wasm"},{"Name":"original-resource","Value":"\"DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ=\""}]},{"Route":"_framework/WindowsBase.wz82kkc1p3.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\10vfj5e8p2-{0}-wz82kkc1p3-wz82kkc1p3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2526"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wz82kkc1p3"},{"Name":"integrity","Value":"sha256-b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc="},{"Name":"label","Value":"_framework/WindowsBase.wasm.gz"}]},{"Route":"_framework/blazor.webassembly.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\blazor.webassembly.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"60278"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3lCWrko3zwspV40aQhs2S/IMkRSarnHRKIdkHhuXIBA=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 20:10:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3lCWrko3zwspV40aQhs2S/IMkRSarnHRKIdkHhuXIBA="}]},{"Route":"_framework/blazor.webassembly.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vbwtfewq79-{0}-66stpp682q-66stpp682q.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053404539"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18724"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"5Igt0nmzlphL04ESrb7MBY9ts2dhz5i3UJ+aCoJbK0Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3lCWrko3zwspV40aQhs2S/IMkRSarnHRKIdkHhuXIBA="},{"Name":"original-resource","Value":"\"3lCWrko3zwspV40aQhs2S/IMkRSarnHRKIdkHhuXIBA=\""}]},{"Route":"_framework/blazor.webassembly.js.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vbwtfewq79-{0}-66stpp682q-66stpp682q.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18724"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"5Igt0nmzlphL04ESrb7MBY9ts2dhz5i3UJ+aCoJbK0Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5Igt0nmzlphL04ESrb7MBY9ts2dhz5i3UJ+aCoJbK0Y="}]},{"Route":"_framework/dotnet.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"93305"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk="}]},{"Route":"_framework/dotnet.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qz9h56e7z8-{0}-kx7meqmil2-kx7meqmil2.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000039508514"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25310"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk="},{"Name":"original-resource","Value":"\"WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk=\""}]},{"Route":"_framework/dotnet.js.clndu25lif.map","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"51818"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:10 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clndu25lif"},{"Name":"integrity","Value":"sha256-sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU="},{"Name":"label","Value":"_framework/dotnet.js.map"}]},{"Route":"_framework/dotnet.js.clndu25lif.map","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jg5bcwzjkb-{0}-clndu25lif-clndu25lif.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051805419"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19302"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clndu25lif"},{"Name":"integrity","Value":"sha256-sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU="},{"Name":"label","Value":"_framework/dotnet.js.map"},{"Name":"original-resource","Value":"\"sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU=\""}]},{"Route":"_framework/dotnet.js.clndu25lif.map.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jg5bcwzjkb-{0}-clndu25lif-clndu25lif.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19302"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clndu25lif"},{"Name":"integrity","Value":"sha256-viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs="},{"Name":"label","Value":"_framework/dotnet.js.map.gz"}]},{"Route":"_framework/dotnet.js.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qz9h56e7z8-{0}-kx7meqmil2-kx7meqmil2.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25310"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I="}]},{"Route":"_framework/dotnet.js.map","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"51818"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:10 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU="}]},{"Route":"_framework/dotnet.js.map","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jg5bcwzjkb-{0}-clndu25lif-clndu25lif.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051805419"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19302"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU="},{"Name":"original-resource","Value":"\"sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU=\""}]},{"Route":"_framework/dotnet.js.map.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jg5bcwzjkb-{0}-clndu25lif-clndu25lif.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19302"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs="}]},{"Route":"_framework/dotnet.kx7meqmil2.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"93305"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"PreloadAs","Value":"script"},{"Name":"PreloadCrossorigin","Value":"anonymous"},{"Name":"PreloadGroup","Value":"webassembly"},{"Name":"PreloadOrder","Value":"1"},{"Name":"PreloadPriority","Value":"high"},{"Name":"PreloadRel","Value":"preload"},{"Name":"fingerprint","Value":"kx7meqmil2"},{"Name":"integrity","Value":"sha256-WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk="},{"Name":"label","Value":"_framework/dotnet.js"}]},{"Route":"_framework/dotnet.kx7meqmil2.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qz9h56e7z8-{0}-kx7meqmil2-kx7meqmil2.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000039508514"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25310"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"PreloadAs","Value":"script"},{"Name":"PreloadCrossorigin","Value":"anonymous"},{"Name":"PreloadGroup","Value":"webassembly"},{"Name":"PreloadOrder","Value":"1"},{"Name":"PreloadPriority","Value":"high"},{"Name":"PreloadRel","Value":"preload"},{"Name":"fingerprint","Value":"kx7meqmil2"},{"Name":"integrity","Value":"sha256-WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk="},{"Name":"label","Value":"_framework/dotnet.js"},{"Name":"original-resource","Value":"\"WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk=\""}]},{"Route":"_framework/dotnet.kx7meqmil2.js.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qz9h56e7z8-{0}-kx7meqmil2-kx7meqmil2.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25310"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kx7meqmil2"},{"Name":"integrity","Value":"sha256-Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I="},{"Name":"label","Value":"_framework/dotnet.js.gz"}]},{"Route":"_framework/dotnet.native.53ez3dx5uy.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.native.53ez3dx5uy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3002101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:42 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"53ez3dx5uy"},{"Name":"integrity","Value":"sha256-Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU="},{"Name":"label","Value":"_framework/dotnet.native.wasm"}]},{"Route":"_framework/dotnet.native.53ez3dx5uy.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4gmvxkcg2g-{0}-53ez3dx5uy-53ez3dx5uy.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000842441"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1187026"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"53ez3dx5uy"},{"Name":"integrity","Value":"sha256-Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU="},{"Name":"label","Value":"_framework/dotnet.native.wasm"},{"Name":"original-resource","Value":"\"Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU=\""}]},{"Route":"_framework/dotnet.native.53ez3dx5uy.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4gmvxkcg2g-{0}-53ez3dx5uy-53ez3dx5uy.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1187026"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"53ez3dx5uy"},{"Name":"integrity","Value":"sha256-SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw="},{"Name":"label","Value":"_framework/dotnet.native.wasm.gz"}]},{"Route":"_framework/dotnet.native.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.native.ykrnppwhq2.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"145050"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:42 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U="}]},{"Route":"_framework/dotnet.native.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4131vl2c0u-{0}-ykrnppwhq2-ykrnppwhq2.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000028845876"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"34666"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U="},{"Name":"original-resource","Value":"\"nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U=\""}]},{"Route":"_framework/dotnet.native.js.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4131vl2c0u-{0}-ykrnppwhq2-ykrnppwhq2.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"34666"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0="}]},{"Route":"_framework/dotnet.native.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.native.53ez3dx5uy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3002101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:42 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU="}]},{"Route":"_framework/dotnet.native.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4gmvxkcg2g-{0}-53ez3dx5uy-53ez3dx5uy.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000842441"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1187026"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU="},{"Name":"original-resource","Value":"\"Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU=\""}]},{"Route":"_framework/dotnet.native.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4gmvxkcg2g-{0}-53ez3dx5uy-53ez3dx5uy.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1187026"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw="}]},{"Route":"_framework/dotnet.native.ykrnppwhq2.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.native.ykrnppwhq2.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"145050"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:42 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ykrnppwhq2"},{"Name":"integrity","Value":"sha256-nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U="},{"Name":"label","Value":"_framework/dotnet.native.js"}]},{"Route":"_framework/dotnet.native.ykrnppwhq2.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4131vl2c0u-{0}-ykrnppwhq2-ykrnppwhq2.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000028845876"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"34666"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ykrnppwhq2"},{"Name":"integrity","Value":"sha256-nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U="},{"Name":"label","Value":"_framework/dotnet.native.js"},{"Name":"original-resource","Value":"\"nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U=\""}]},{"Route":"_framework/dotnet.native.ykrnppwhq2.js.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4131vl2c0u-{0}-ykrnppwhq2-ykrnppwhq2.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"34666"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ykrnppwhq2"},{"Name":"integrity","Value":"sha256-iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0="},{"Name":"label","Value":"_framework/dotnet.native.js.gz"}]},{"Route":"_framework/dotnet.runtime.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.runtime.peu2mfb29t.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"198479"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:16 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM="}]},{"Route":"_framework/dotnet.runtime.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\arn1xqjw1x-{0}-peu2mfb29t-peu2mfb29t.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017664099"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56611"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM="},{"Name":"original-resource","Value":"\"cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM=\""}]},{"Route":"_framework/dotnet.runtime.js.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\arn1xqjw1x-{0}-peu2mfb29t-peu2mfb29t.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56611"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak="}]},{"Route":"_framework/dotnet.runtime.js.map","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.runtime.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"276757"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:16 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE="}]},{"Route":"_framework/dotnet.runtime.js.map","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6fczie0f1k-{0}-y1cse46x0j-y1cse46x0j.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011299052"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"88502"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE="},{"Name":"original-resource","Value":"\"+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE=\""}]},{"Route":"_framework/dotnet.runtime.js.map.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6fczie0f1k-{0}-y1cse46x0j-y1cse46x0j.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"88502"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4="}]},{"Route":"_framework/dotnet.runtime.js.y1cse46x0j.map","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.runtime.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"276757"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:16 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y1cse46x0j"},{"Name":"integrity","Value":"sha256-+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE="},{"Name":"label","Value":"_framework/dotnet.runtime.js.map"}]},{"Route":"_framework/dotnet.runtime.js.y1cse46x0j.map","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6fczie0f1k-{0}-y1cse46x0j-y1cse46x0j.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011299052"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"88502"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y1cse46x0j"},{"Name":"integrity","Value":"sha256-+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE="},{"Name":"label","Value":"_framework/dotnet.runtime.js.map"},{"Name":"original-resource","Value":"\"+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE=\""}]},{"Route":"_framework/dotnet.runtime.js.y1cse46x0j.map.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6fczie0f1k-{0}-y1cse46x0j-y1cse46x0j.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"88502"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y1cse46x0j"},{"Name":"integrity","Value":"sha256-8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4="},{"Name":"label","Value":"_framework/dotnet.runtime.js.map.gz"}]},{"Route":"_framework/dotnet.runtime.peu2mfb29t.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.runtime.peu2mfb29t.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"198479"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:16 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"peu2mfb29t"},{"Name":"integrity","Value":"sha256-cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM="},{"Name":"label","Value":"_framework/dotnet.runtime.js"}]},{"Route":"_framework/dotnet.runtime.peu2mfb29t.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\arn1xqjw1x-{0}-peu2mfb29t-peu2mfb29t.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017664099"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56611"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"peu2mfb29t"},{"Name":"integrity","Value":"sha256-cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM="},{"Name":"label","Value":"_framework/dotnet.runtime.js"},{"Name":"original-resource","Value":"\"cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM=\""}]},{"Route":"_framework/dotnet.runtime.peu2mfb29t.js.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\arn1xqjw1x-{0}-peu2mfb29t-peu2mfb29t.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56611"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"peu2mfb29t"},{"Name":"integrity","Value":"sha256-1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak="},{"Name":"label","Value":"_framework/dotnet.runtime.js.gz"}]},{"Route":"_framework/icudt_CJK.dat","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\icudt_CJK.tjcz0u77k5.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"956416"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk="}]},{"Route":"_framework/icudt_CJK.dat","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\2noakrdf2j-{0}-tjcz0u77k5-tjcz0u77k5.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003002002"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"333110"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk="},{"Name":"original-resource","Value":"\"SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=\""}]},{"Route":"_framework/icudt_CJK.dat.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\2noakrdf2j-{0}-tjcz0u77k5-tjcz0u77k5.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"333110"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g="}]},{"Route":"_framework/icudt_CJK.tjcz0u77k5.dat","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\icudt_CJK.tjcz0u77k5.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"956416"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tjcz0u77k5"},{"Name":"integrity","Value":"sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk="},{"Name":"label","Value":"_framework/icudt_CJK.dat"}]},{"Route":"_framework/icudt_CJK.tjcz0u77k5.dat","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\2noakrdf2j-{0}-tjcz0u77k5-tjcz0u77k5.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003002002"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"333110"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tjcz0u77k5"},{"Name":"integrity","Value":"sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk="},{"Name":"label","Value":"_framework/icudt_CJK.dat"},{"Name":"original-resource","Value":"\"SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=\""}]},{"Route":"_framework/icudt_CJK.tjcz0u77k5.dat.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\2noakrdf2j-{0}-tjcz0u77k5-tjcz0u77k5.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"333110"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tjcz0u77k5"},{"Name":"integrity","Value":"sha256-JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g="},{"Name":"label","Value":"_framework/icudt_CJK.dat.gz"}]},{"Route":"_framework/icudt_EFIGS.dat","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\icudt_EFIGS.tptq2av103.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"550832"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc="}]},{"Route":"_framework/icudt_EFIGS.dat","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\yee81ivl95-{0}-tptq2av103-tptq2av103.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005101052"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196037"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc="},{"Name":"original-resource","Value":"\"8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=\""}]},{"Route":"_framework/icudt_EFIGS.dat.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\yee81ivl95-{0}-tptq2av103-tptq2av103.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196037"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE="}]},{"Route":"_framework/icudt_EFIGS.tptq2av103.dat","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\icudt_EFIGS.tptq2av103.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"550832"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tptq2av103"},{"Name":"integrity","Value":"sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc="},{"Name":"label","Value":"_framework/icudt_EFIGS.dat"}]},{"Route":"_framework/icudt_EFIGS.tptq2av103.dat","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\yee81ivl95-{0}-tptq2av103-tptq2av103.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005101052"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196037"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tptq2av103"},{"Name":"integrity","Value":"sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc="},{"Name":"label","Value":"_framework/icudt_EFIGS.dat"},{"Name":"original-resource","Value":"\"8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=\""}]},{"Route":"_framework/icudt_EFIGS.tptq2av103.dat.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\yee81ivl95-{0}-tptq2av103-tptq2av103.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196037"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tptq2av103"},{"Name":"integrity","Value":"sha256-G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE="},{"Name":"label","Value":"_framework/icudt_EFIGS.dat.gz"}]},{"Route":"_framework/icudt_no_CJK.dat","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\icudt_no_CJK.lfu7j35m59.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1107168"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs="}]},{"Route":"_framework/icudt_no_CJK.dat","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gnkv5k3g9v-{0}-lfu7j35m59-lfu7j35m59.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003148426"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"317618"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs="},{"Name":"original-resource","Value":"\"L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs=\""}]},{"Route":"_framework/icudt_no_CJK.dat.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gnkv5k3g9v-{0}-lfu7j35m59-lfu7j35m59.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"317618"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk="}]},{"Route":"_framework/icudt_no_CJK.lfu7j35m59.dat","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\icudt_no_CJK.lfu7j35m59.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1107168"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lfu7j35m59"},{"Name":"integrity","Value":"sha256-L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs="},{"Name":"label","Value":"_framework/icudt_no_CJK.dat"}]},{"Route":"_framework/icudt_no_CJK.lfu7j35m59.dat","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gnkv5k3g9v-{0}-lfu7j35m59-lfu7j35m59.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003148426"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"317618"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lfu7j35m59"},{"Name":"integrity","Value":"sha256-L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs="},{"Name":"label","Value":"_framework/icudt_no_CJK.dat"},{"Name":"original-resource","Value":"\"L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs=\""}]},{"Route":"_framework/icudt_no_CJK.lfu7j35m59.dat.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gnkv5k3g9v-{0}-lfu7j35m59-lfu7j35m59.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"317618"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lfu7j35m59"},{"Name":"integrity","Value":"sha256-S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk="},{"Name":"label","Value":"_framework/icudt_no_CJK.dat.gz"}]},{"Route":"_framework/mscorlib.555t1ekkz8.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\mscorlib.555t1ekkz8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"49429"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"555t1ekkz8"},{"Name":"integrity","Value":"sha256-SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M="},{"Name":"label","Value":"_framework/mscorlib.wasm"}]},{"Route":"_framework/mscorlib.555t1ekkz8.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6ixuumt5h1-{0}-555t1ekkz8-555t1ekkz8.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067417245"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"555t1ekkz8"},{"Name":"integrity","Value":"sha256-SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M="},{"Name":"label","Value":"_framework/mscorlib.wasm"},{"Name":"original-resource","Value":"\"SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M=\""}]},{"Route":"_framework/mscorlib.555t1ekkz8.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6ixuumt5h1-{0}-555t1ekkz8-555t1ekkz8.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"555t1ekkz8"},{"Name":"integrity","Value":"sha256-qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4="},{"Name":"label","Value":"_framework/mscorlib.wasm.gz"}]},{"Route":"_framework/mscorlib.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\mscorlib.555t1ekkz8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"49429"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M="}]},{"Route":"_framework/mscorlib.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6ixuumt5h1-{0}-555t1ekkz8-555t1ekkz8.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067417245"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M="},{"Name":"original-resource","Value":"\"SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M=\""}]},{"Route":"_framework/mscorlib.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6ixuumt5h1-{0}-555t1ekkz8-555t1ekkz8.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4="}]},{"Route":"_framework/netstandard.0e3bjkca9m.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\netstandard.0e3bjkca9m.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"90389"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0e3bjkca9m"},{"Name":"integrity","Value":"sha256-6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs="},{"Name":"label","Value":"_framework/netstandard.wasm"}]},{"Route":"_framework/netstandard.0e3bjkca9m.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8dl34ipw8j-{0}-0e3bjkca9m-0e3bjkca9m.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038333269"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26086"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0e3bjkca9m"},{"Name":"integrity","Value":"sha256-6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs="},{"Name":"label","Value":"_framework/netstandard.wasm"},{"Name":"original-resource","Value":"\"6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs=\""}]},{"Route":"_framework/netstandard.0e3bjkca9m.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8dl34ipw8j-{0}-0e3bjkca9m-0e3bjkca9m.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26086"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0e3bjkca9m"},{"Name":"integrity","Value":"sha256-GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE="},{"Name":"label","Value":"_framework/netstandard.wasm.gz"}]},{"Route":"_framework/netstandard.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\netstandard.0e3bjkca9m.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"90389"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs="}]},{"Route":"_framework/netstandard.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8dl34ipw8j-{0}-0e3bjkca9m-0e3bjkca9m.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038333269"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26086"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs="},{"Name":"original-resource","Value":"\"6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs=\""}]},{"Route":"_framework/netstandard.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8dl34ipw8j-{0}-0e3bjkca9m-0e3bjkca9m.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26086"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE="}]},{"Route":"appsettings.Development.json","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\bfkt9xtjsh-{0}-x0ueugt8gp-x0ueugt8gp.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009174311927"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"original-resource","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""}]},{"Route":"appsettings.Development.json","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\appsettings.Development.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="}]},{"Route":"appsettings.Development.json.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\bfkt9xtjsh-{0}-x0ueugt8gp-x0ueugt8gp.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4="}]},{"Route":"appsettings.Development.x0ueugt8gp.json","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\bfkt9xtjsh-{0}-x0ueugt8gp-x0ueugt8gp.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009174311927"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"label","Value":"appsettings.Development.json"},{"Name":"original-resource","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""}]},{"Route":"appsettings.Development.x0ueugt8gp.json","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\appsettings.Development.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"label","Value":"appsettings.Development.json"}]},{"Route":"appsettings.Development.x0ueugt8gp.json.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\bfkt9xtjsh-{0}-x0ueugt8gp-x0ueugt8gp.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4="},{"Name":"label","Value":"appsettings.Development.json.gz"}]},{"Route":"appsettings.json","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3hvscw4lq4-{0}-x0ueugt8gp-x0ueugt8gp.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009174311927"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"original-resource","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""}]},{"Route":"appsettings.json","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\appsettings.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="}]},{"Route":"appsettings.json.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3hvscw4lq4-{0}-x0ueugt8gp-x0ueugt8gp.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4="}]},{"Route":"appsettings.x0ueugt8gp.json","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3hvscw4lq4-{0}-x0ueugt8gp-x0ueugt8gp.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009174311927"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"label","Value":"appsettings.json"},{"Name":"original-resource","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""}]},{"Route":"appsettings.x0ueugt8gp.json","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\appsettings.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"label","Value":"appsettings.json"}]},{"Route":"appsettings.x0ueugt8gp.json.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3hvscw4lq4-{0}-x0ueugt8gp-x0ueugt8gp.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4="},{"Name":"label","Value":"appsettings.json.gz"}]}]} \ No newline at end of file diff --git a/OnProfNext.Client/obj/Debug/net10.0/staticwebassets.build.json.cache b/OnProfNext.Client/obj/Debug/net10.0/staticwebassets.build.json.cache new file mode 100644 index 0000000..3ce719f --- /dev/null +++ b/OnProfNext.Client/obj/Debug/net10.0/staticwebassets.build.json.cache @@ -0,0 +1 @@ +jnQ5nBcjiM0WdZUX5i6J8hoA0opFfV4/h+zPae7jdyM= \ No newline at end of file diff --git a/OnProfNext.Client/obj/Debug/net10.0/staticwebassets.development.json b/OnProfNext.Client/obj/Debug/net10.0/staticwebassets.development.json new file mode 100644 index 0000000..38d5115 --- /dev/null +++ b/OnProfNext.Client/obj/Debug/net10.0/staticwebassets.development.json @@ -0,0 +1 @@ +{"ContentRoots":["D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\","D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\scopedcss\\bundle\\","D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\","C:\\Users\\wiela\\.nuget\\packages\\microsoft.dotnet.hotreload.webassembly.browser\\10.0.201\\staticwebassets\\","C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\"],"Root":{"Children":{"appsettings.Development.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"appsettings.Development.json"},"Patterns":null},"appsettings.Development.json.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"bfkt9xtjsh-{0}-x0ueugt8gp-x0ueugt8gp.gz"},"Patterns":null},"appsettings.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"appsettings.json"},"Patterns":null},"appsettings.json.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3hvscw4lq4-{0}-x0ueugt8gp-x0ueugt8gp.gz"},"Patterns":null},"OnProfNext.Client.styles.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"OnProfNext.Client.styles.css"},"Patterns":null},"OnProfNext.Client.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hd2b1ihltm-{0}-uzl7ca9j9c-uzl7ca9j9c.gz"},"Patterns":null},"_framework":{"Children":{"blazor.webassembly.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/blazor.webassembly.js"},"Patterns":null},"blazor.webassembly.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vbwtfewq79-{0}-66stpp682q-66stpp682q.gz"},"Patterns":null},"dotnet.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/dotnet.js"},"Patterns":null},"dotnet.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"qz9h56e7z8-{0}-kx7meqmil2-kx7meqmil2.gz"},"Patterns":null},"dotnet.js.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/dotnet.js.map"},"Patterns":null},"dotnet.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jg5bcwzjkb-{0}-clndu25lif-clndu25lif.gz"},"Patterns":null},"dotnet.native.53ez3dx5uy.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/dotnet.native.53ez3dx5uy.wasm"},"Patterns":null},"dotnet.native.53ez3dx5uy.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"4gmvxkcg2g-{0}-53ez3dx5uy-53ez3dx5uy.gz"},"Patterns":null},"dotnet.native.ykrnppwhq2.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/dotnet.native.ykrnppwhq2.js"},"Patterns":null},"dotnet.native.ykrnppwhq2.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"4131vl2c0u-{0}-ykrnppwhq2-ykrnppwhq2.gz"},"Patterns":null},"dotnet.runtime.js.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/dotnet.runtime.js.map"},"Patterns":null},"dotnet.runtime.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"6fczie0f1k-{0}-y1cse46x0j-y1cse46x0j.gz"},"Patterns":null},"dotnet.runtime.peu2mfb29t.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/dotnet.runtime.peu2mfb29t.js"},"Patterns":null},"dotnet.runtime.peu2mfb29t.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"arn1xqjw1x-{0}-peu2mfb29t-peu2mfb29t.gz"},"Patterns":null},"icudt_CJK.tjcz0u77k5.dat":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/icudt_CJK.tjcz0u77k5.dat"},"Patterns":null},"icudt_CJK.tjcz0u77k5.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"2noakrdf2j-{0}-tjcz0u77k5-tjcz0u77k5.gz"},"Patterns":null},"icudt_EFIGS.tptq2av103.dat":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/icudt_EFIGS.tptq2av103.dat"},"Patterns":null},"icudt_EFIGS.tptq2av103.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"yee81ivl95-{0}-tptq2av103-tptq2av103.gz"},"Patterns":null},"icudt_no_CJK.lfu7j35m59.dat":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/icudt_no_CJK.lfu7j35m59.dat"},"Patterns":null},"icudt_no_CJK.lfu7j35m59.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gnkv5k3g9v-{0}-lfu7j35m59-lfu7j35m59.gz"},"Patterns":null},"Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm"},"Patterns":null},"Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"5g3srlr8jx-{0}-roqc1km2rj-roqc1km2rj.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm"},"Patterns":null},"Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"qlfvznror3-{0}-zrueb40r85-zrueb40r85.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.uddsvpv1sv.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm"},"Patterns":null},"Microsoft.AspNetCore.Components.uddsvpv1sv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fs9spivh8g-{0}-uddsvpv1sv-uddsvpv1sv.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm"},"Patterns":null},"Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gx4y3aoczp-{0}-g5qdp1mxha-g5qdp1mxha.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm"},"Patterns":null},"Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"mx4r46cpu7-{0}-9mjwvs1qyp-9mjwvs1qyp.gz"},"Patterns":null},"Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm"},"Patterns":null},"Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zpx4nb1yyz-{0}-m3mxap0jif-m3mxap0jif.gz"},"Patterns":null},"Microsoft.CSharp.452y5fjxmv.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.CSharp.452y5fjxmv.wasm"},"Patterns":null},"Microsoft.CSharp.452y5fjxmv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"yva5srnvsu-{0}-452y5fjxmv-452y5fjxmv.gz"},"Patterns":null},"Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm"},"Patterns":null},"Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3of7h5c6n8-{0}-hrhwg3a64c-hrhwg3a64c.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm"},"Patterns":null},"Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"s4opith0ak-{0}-thew1o6jcx-thew1o6jcx.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm"},"Patterns":null},"Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"11oooy7jd2-{0}-7o70008j8o-7o70008j8o.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm"},"Patterns":null},"Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"dnrp0xl7wy-{0}-fgwnqtu7qk-fgwnqtu7qk.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm"},"Patterns":null},"Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vhumncwy1p-{0}-ouivavlhyy-ouivavlhyy.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm"},"Patterns":null},"Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"69vphje66t-{0}-giv4t23za9-giv4t23za9.gz"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kstk0dzyw1-{0}-ud13mwbta3-ud13mwbta3.gz"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"epsgnejg6l-{0}-vs620n44bv-vs620n44bv.gz"},"Patterns":null},"Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm"},"Patterns":null},"Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0o3yap4xcv-{0}-v59ymogeuz-v59ymogeuz.gz"},"Patterns":null},"Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm"},"Patterns":null},"Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3rwukvhyra-{0}-jnogfbng3i-jnogfbng3i.gz"},"Patterns":null},"Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm"},"Patterns":null},"Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ezxlu8d1x1-{0}-ssv83rveyv-ssv83rveyv.gz"},"Patterns":null},"Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm"},"Patterns":null},"Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"keeokmerp8-{0}-8gz29xpyh3-8gz29xpyh3.gz"},"Patterns":null},"Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm"},"Patterns":null},"Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"l2v44xhbzj-{0}-ozuva4e3vv-ozuva4e3vv.gz"},"Patterns":null},"Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm"},"Patterns":null},"Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tezhiquus4-{0}-6jkolue1ka-6jkolue1ka.gz"},"Patterns":null},"Microsoft.Extensions.Localization.xcslyy3nju.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm"},"Patterns":null},"Microsoft.Extensions.Localization.xcslyy3nju.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"84jx0dmgdc-{0}-xcslyy3nju-xcslyy3nju.gz"},"Patterns":null},"Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm"},"Patterns":null},"Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"sn0mpm6uvc-{0}-1q3x7vre4l-1q3x7vre4l.gz"},"Patterns":null},"Microsoft.Extensions.Logging.y4ydx3rk2c.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm"},"Patterns":null},"Microsoft.Extensions.Logging.y4ydx3rk2c.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"oix89w3uk2-{0}-y4ydx3rk2c-y4ydx3rk2c.gz"},"Patterns":null},"Microsoft.Extensions.Options.2rz5zbidnd.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm"},"Patterns":null},"Microsoft.Extensions.Options.2rz5zbidnd.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"u4abyqnekj-{0}-2rz5zbidnd-2rz5zbidnd.gz"},"Patterns":null},"Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm"},"Patterns":null},"Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ozc2mb3rdz-{0}-zmb03w0weu-zmb03w0weu.gz"},"Patterns":null},"Microsoft.Extensions.Primitives.bd164v6l3f.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm"},"Patterns":null},"Microsoft.Extensions.Primitives.bd164v6l3f.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"co27dkpaxa-{0}-bd164v6l3f-bd164v6l3f.gz"},"Patterns":null},"Microsoft.Extensions.Validation.r1sv3m5lsf.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm"},"Patterns":null},"Microsoft.Extensions.Validation.r1sv3m5lsf.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fappprmifz-{0}-r1sv3m5lsf-r1sv3m5lsf.gz"},"Patterns":null},"Microsoft.JSInterop.1r0ampr2q1.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm"},"Patterns":null},"Microsoft.JSInterop.1r0ampr2q1.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"pro4ajsvfg-{0}-1r0ampr2q1-1r0ampr2q1.gz"},"Patterns":null},"Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm"},"Patterns":null},"Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"6mv5cent6u-{0}-oz8fkrrrd6-oz8fkrrrd6.gz"},"Patterns":null},"Microsoft.VisualBasic.91iw3j3d9p.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm"},"Patterns":null},"Microsoft.VisualBasic.91iw3j3d9p.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"akapjt0sxo-{0}-91iw3j3d9p-91iw3j3d9p.gz"},"Patterns":null},"Microsoft.VisualBasic.Core.re3geseai5.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm"},"Patterns":null},"Microsoft.VisualBasic.Core.re3geseai5.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"du4skpg5oq-{0}-re3geseai5-re3geseai5.gz"},"Patterns":null},"Microsoft.Win32.Primitives.2mjytoh92q.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm"},"Patterns":null},"Microsoft.Win32.Primitives.2mjytoh92q.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"i7n8kqec4e-{0}-2mjytoh92q-2mjytoh92q.gz"},"Patterns":null},"Microsoft.Win32.Registry.yz8nt3ycsq.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm"},"Patterns":null},"Microsoft.Win32.Registry.yz8nt3ycsq.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"553rwsqb4a-{0}-yz8nt3ycsq-yz8nt3ycsq.gz"},"Patterns":null},"mscorlib.555t1ekkz8.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/mscorlib.555t1ekkz8.wasm"},"Patterns":null},"mscorlib.555t1ekkz8.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"6ixuumt5h1-{0}-555t1ekkz8-555t1ekkz8.gz"},"Patterns":null},"MudBlazor.k6079czmkm.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/MudBlazor.k6079czmkm.wasm"},"Patterns":null},"MudBlazor.k6079czmkm.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"w2iaa8sc3u-{0}-k6079czmkm-k6079czmkm.gz"},"Patterns":null},"netstandard.0e3bjkca9m.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/netstandard.0e3bjkca9m.wasm"},"Patterns":null},"netstandard.0e3bjkca9m.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8dl34ipw8j-{0}-0e3bjkca9m-0e3bjkca9m.gz"},"Patterns":null},"OnProfNext.Client.lplk7v275j.pdb":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/OnProfNext.Client.lplk7v275j.pdb"},"Patterns":null},"OnProfNext.Client.lplk7v275j.pdb.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"cycczivqx5-{0}-lplk7v275j-lplk7v275j.gz"},"Patterns":null},"OnProfNext.Client.xhq6acanj0.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/OnProfNext.Client.xhq6acanj0.wasm"},"Patterns":null},"OnProfNext.Client.xhq6acanj0.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"f6u1msztxb-{0}-xhq6acanj0-xhq6acanj0.gz"},"Patterns":null},"System.7rk3uansaa.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.7rk3uansaa.wasm"},"Patterns":null},"System.7rk3uansaa.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"5onvg4v1ie-{0}-7rk3uansaa-7rk3uansaa.gz"},"Patterns":null},"System.AppContext.uwq3fpef1w.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.AppContext.uwq3fpef1w.wasm"},"Patterns":null},"System.AppContext.uwq3fpef1w.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jcwxb5s78i-{0}-uwq3fpef1w-uwq3fpef1w.gz"},"Patterns":null},"System.Buffers.m4yhcvz2y2.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Buffers.m4yhcvz2y2.wasm"},"Patterns":null},"System.Buffers.m4yhcvz2y2.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8u2rup9szd-{0}-m4yhcvz2y2-m4yhcvz2y2.gz"},"Patterns":null},"System.Collections.63jrcion39.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Collections.63jrcion39.wasm"},"Patterns":null},"System.Collections.63jrcion39.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3zhncs8zdy-{0}-63jrcion39-63jrcion39.gz"},"Patterns":null},"System.Collections.Concurrent.1zv6wuzklu.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm"},"Patterns":null},"System.Collections.Concurrent.1zv6wuzklu.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"niv8zsbxhl-{0}-1zv6wuzklu-1zv6wuzklu.gz"},"Patterns":null},"System.Collections.Immutable.6uzpuv4o5d.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm"},"Patterns":null},"System.Collections.Immutable.6uzpuv4o5d.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3k0w0ci5df-{0}-6uzpuv4o5d-6uzpuv4o5d.gz"},"Patterns":null},"System.Collections.NonGeneric.k5rgagff9o.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm"},"Patterns":null},"System.Collections.NonGeneric.k5rgagff9o.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"r1c02csw1u-{0}-k5rgagff9o-k5rgagff9o.gz"},"Patterns":null},"System.Collections.Specialized.84wojkejb4.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Collections.Specialized.84wojkejb4.wasm"},"Patterns":null},"System.Collections.Specialized.84wojkejb4.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"q6am3o85wz-{0}-84wojkejb4-84wojkejb4.gz"},"Patterns":null},"System.ComponentModel.Annotations.cjsvkufomv.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm"},"Patterns":null},"System.ComponentModel.Annotations.cjsvkufomv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"wj9cgpvw17-{0}-cjsvkufomv-cjsvkufomv.gz"},"Patterns":null},"System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm"},"Patterns":null},"System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jimv6lw5j5-{0}-vpng0qt4u6-vpng0qt4u6.gz"},"Patterns":null},"System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm"},"Patterns":null},"System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ixx2bqnfah-{0}-en4q13ibd5-en4q13ibd5.gz"},"Patterns":null},"System.ComponentModel.m11rh1qn2x.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.ComponentModel.m11rh1qn2x.wasm"},"Patterns":null},"System.ComponentModel.m11rh1qn2x.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ffumllgt4m-{0}-m11rh1qn2x-m11rh1qn2x.gz"},"Patterns":null},"System.ComponentModel.Primitives.u0y5oi3qdg.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm"},"Patterns":null},"System.ComponentModel.Primitives.u0y5oi3qdg.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"nu73pdet4t-{0}-u0y5oi3qdg-u0y5oi3qdg.gz"},"Patterns":null},"System.ComponentModel.TypeConverter.e2hbv9lola.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm"},"Patterns":null},"System.ComponentModel.TypeConverter.e2hbv9lola.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gpzobq46fp-{0}-e2hbv9lola-e2hbv9lola.gz"},"Patterns":null},"System.Configuration.j8qjkqg593.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Configuration.j8qjkqg593.wasm"},"Patterns":null},"System.Configuration.j8qjkqg593.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"o9xpqh7wzb-{0}-j8qjkqg593-j8qjkqg593.gz"},"Patterns":null},"System.Console.x9at0eh4vs.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Console.x9at0eh4vs.wasm"},"Patterns":null},"System.Console.x9at0eh4vs.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ea8uo6cwb8-{0}-x9at0eh4vs-x9at0eh4vs.gz"},"Patterns":null},"System.Core.ickp29885z.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Core.ickp29885z.wasm"},"Patterns":null},"System.Core.ickp29885z.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"edgswerp4g-{0}-ickp29885z-ickp29885z.gz"},"Patterns":null},"System.Data.0h75nr7qqd.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Data.0h75nr7qqd.wasm"},"Patterns":null},"System.Data.0h75nr7qqd.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"y20kxtztgi-{0}-0h75nr7qqd-0h75nr7qqd.gz"},"Patterns":null},"System.Data.Common.4wisaz8pj4.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Data.Common.4wisaz8pj4.wasm"},"Patterns":null},"System.Data.Common.4wisaz8pj4.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"68hq2gv5cb-{0}-4wisaz8pj4-4wisaz8pj4.gz"},"Patterns":null},"System.Data.DataSetExtensions.904tnen1ot.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm"},"Patterns":null},"System.Data.DataSetExtensions.904tnen1ot.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"sm8o0gwk5g-{0}-904tnen1ot-904tnen1ot.gz"},"Patterns":null},"System.Diagnostics.Contracts.z1eotzj35n.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm"},"Patterns":null},"System.Diagnostics.Contracts.z1eotzj35n.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"wgdliulfxe-{0}-z1eotzj35n-z1eotzj35n.gz"},"Patterns":null},"System.Diagnostics.Debug.aeh9b1tcuc.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm"},"Patterns":null},"System.Diagnostics.Debug.aeh9b1tcuc.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"i9mn6d27vy-{0}-aeh9b1tcuc-aeh9b1tcuc.gz"},"Patterns":null},"System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm"},"Patterns":null},"System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lgx6p69ons-{0}-ou2dt7nfo2-ou2dt7nfo2.gz"},"Patterns":null},"System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm"},"Patterns":null},"System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"i7dsezujyr-{0}-kv9gl8mgag-kv9gl8mgag.gz"},"Patterns":null},"System.Diagnostics.Process.lqtqkmw274.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm"},"Patterns":null},"System.Diagnostics.Process.lqtqkmw274.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"67s0zux9y9-{0}-lqtqkmw274-lqtqkmw274.gz"},"Patterns":null},"System.Diagnostics.StackTrace.wvlboxd9cz.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm"},"Patterns":null},"System.Diagnostics.StackTrace.wvlboxd9cz.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ae1qv5wfu3-{0}-wvlboxd9cz-wvlboxd9cz.gz"},"Patterns":null},"System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm"},"Patterns":null},"System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"5psn88uayv-{0}-mx5w1z1p6w-mx5w1z1p6w.gz"},"Patterns":null},"System.Diagnostics.Tools.862j1ozg5o.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm"},"Patterns":null},"System.Diagnostics.Tools.862j1ozg5o.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"6yvil548ai-{0}-862j1ozg5o-862j1ozg5o.gz"},"Patterns":null},"System.Diagnostics.TraceSource.j08okd90mo.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm"},"Patterns":null},"System.Diagnostics.TraceSource.j08okd90mo.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"w9uuhprkgr-{0}-j08okd90mo-j08okd90mo.gz"},"Patterns":null},"System.Diagnostics.Tracing.bnz7jo4op8.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm"},"Patterns":null},"System.Diagnostics.Tracing.bnz7jo4op8.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ymz6pz7ujf-{0}-bnz7jo4op8-bnz7jo4op8.gz"},"Patterns":null},"System.Drawing.Primitives.k3z431p3v7.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm"},"Patterns":null},"System.Drawing.Primitives.k3z431p3v7.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"beyjjw9nw7-{0}-k3z431p3v7-k3z431p3v7.gz"},"Patterns":null},"System.Drawing.v0usa2s224.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Drawing.v0usa2s224.wasm"},"Patterns":null},"System.Drawing.v0usa2s224.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"bm4t56k5pn-{0}-v0usa2s224-v0usa2s224.gz"},"Patterns":null},"System.Dynamic.Runtime.iktlm0yhdx.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm"},"Patterns":null},"System.Dynamic.Runtime.iktlm0yhdx.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"95o3q4uwxv-{0}-iktlm0yhdx-iktlm0yhdx.gz"},"Patterns":null},"System.Formats.Asn1.9iyl1hnh76.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm"},"Patterns":null},"System.Formats.Asn1.9iyl1hnh76.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"2eqyybz3l2-{0}-9iyl1hnh76-9iyl1hnh76.gz"},"Patterns":null},"System.Formats.Tar.9ikmelhi7g.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Formats.Tar.9ikmelhi7g.wasm"},"Patterns":null},"System.Formats.Tar.9ikmelhi7g.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"aawrgxq7b9-{0}-9ikmelhi7g-9ikmelhi7g.gz"},"Patterns":null},"System.Globalization.4ulc930few.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Globalization.4ulc930few.wasm"},"Patterns":null},"System.Globalization.4ulc930few.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"nvjr9jta08-{0}-4ulc930few-4ulc930few.gz"},"Patterns":null},"System.Globalization.Calendars.e8yl47y6cv.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm"},"Patterns":null},"System.Globalization.Calendars.e8yl47y6cv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"g4w42juzkx-{0}-e8yl47y6cv-e8yl47y6cv.gz"},"Patterns":null},"System.Globalization.Extensions.fvxkfs32tv.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm"},"Patterns":null},"System.Globalization.Extensions.fvxkfs32tv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"g3b5a282rj-{0}-fvxkfs32tv-fvxkfs32tv.gz"},"Patterns":null},"System.IO.Compression.Brotli.ibxx4kh8c6.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm"},"Patterns":null},"System.IO.Compression.Brotli.ibxx4kh8c6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"flmzbagm0p-{0}-ibxx4kh8c6-ibxx4kh8c6.gz"},"Patterns":null},"System.IO.Compression.FileSystem.bselp9vv9w.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm"},"Patterns":null},"System.IO.Compression.FileSystem.bselp9vv9w.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ffagyufl1o-{0}-bselp9vv9w-bselp9vv9w.gz"},"Patterns":null},"System.IO.Compression.sgbc42zrd8.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.Compression.sgbc42zrd8.wasm"},"Patterns":null},"System.IO.Compression.sgbc42zrd8.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"mk5261bq2v-{0}-sgbc42zrd8-sgbc42zrd8.gz"},"Patterns":null},"System.IO.Compression.ZipFile.b0ha8vyo8i.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm"},"Patterns":null},"System.IO.Compression.ZipFile.b0ha8vyo8i.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"a99cqvh69a-{0}-b0ha8vyo8i-b0ha8vyo8i.gz"},"Patterns":null},"System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm"},"Patterns":null},"System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"m3i6jtsneo-{0}-oi9xn5s0h3-oi9xn5s0h3.gz"},"Patterns":null},"System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm"},"Patterns":null},"System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8i8whn9pm1-{0}-fi1uhp9255-fi1uhp9255.gz"},"Patterns":null},"System.IO.FileSystem.fktu0k4b93.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.FileSystem.fktu0k4b93.wasm"},"Patterns":null},"System.IO.FileSystem.fktu0k4b93.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vnqjd4ny0q-{0}-fktu0k4b93-fktu0k4b93.gz"},"Patterns":null},"System.IO.FileSystem.Primitives.6j2ed42ac7.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm"},"Patterns":null},"System.IO.FileSystem.Primitives.6j2ed42ac7.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kzc385ysv6-{0}-6j2ed42ac7-6j2ed42ac7.gz"},"Patterns":null},"System.IO.FileSystem.Watcher.v9i07bnq2k.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm"},"Patterns":null},"System.IO.FileSystem.Watcher.v9i07bnq2k.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"m428rlfc87-{0}-v9i07bnq2k-v9i07bnq2k.gz"},"Patterns":null},"System.IO.i9g92fmb9y.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.i9g92fmb9y.wasm"},"Patterns":null},"System.IO.i9g92fmb9y.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kukm29h8dt-{0}-i9g92fmb9y-i9g92fmb9y.gz"},"Patterns":null},"System.IO.IsolatedStorage.8ll4gxwfs1.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm"},"Patterns":null},"System.IO.IsolatedStorage.8ll4gxwfs1.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"na7pgc18jv-{0}-8ll4gxwfs1-8ll4gxwfs1.gz"},"Patterns":null},"System.IO.MemoryMappedFiles.6do4olk7ib.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm"},"Patterns":null},"System.IO.MemoryMappedFiles.6do4olk7ib.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rsffl3vumf-{0}-6do4olk7ib-6do4olk7ib.gz"},"Patterns":null},"System.IO.Pipelines.21z0t9w6sq.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm"},"Patterns":null},"System.IO.Pipelines.21z0t9w6sq.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"pxy8xfz0ow-{0}-21z0t9w6sq-21z0t9w6sq.gz"},"Patterns":null},"System.IO.Pipes.AccessControl.5lvzz4lks7.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm"},"Patterns":null},"System.IO.Pipes.AccessControl.5lvzz4lks7.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lvyasyre47-{0}-5lvzz4lks7-5lvzz4lks7.gz"},"Patterns":null},"System.IO.Pipes.xosph8vk4a.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.Pipes.xosph8vk4a.wasm"},"Patterns":null},"System.IO.Pipes.xosph8vk4a.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vjl93wt59v-{0}-xosph8vk4a-xosph8vk4a.gz"},"Patterns":null},"System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm"},"Patterns":null},"System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"dzqyarawy9-{0}-d1pja42pyi-d1pja42pyi.gz"},"Patterns":null},"System.Linq.AsyncEnumerable.4m1mh525k0.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm"},"Patterns":null},"System.Linq.AsyncEnumerable.4m1mh525k0.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"1u9lol5zjk-{0}-4m1mh525k0-4m1mh525k0.gz"},"Patterns":null},"System.Linq.Expressions.4nat0rber0.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Linq.Expressions.4nat0rber0.wasm"},"Patterns":null},"System.Linq.Expressions.4nat0rber0.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"r0xa1dsvvu-{0}-4nat0rber0-4nat0rber0.gz"},"Patterns":null},"System.Linq.Parallel.qf7zemz9aw.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm"},"Patterns":null},"System.Linq.Parallel.qf7zemz9aw.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"35llacexwm-{0}-qf7zemz9aw-qf7zemz9aw.gz"},"Patterns":null},"System.Linq.Queryable.vwinf8twbn.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Linq.Queryable.vwinf8twbn.wasm"},"Patterns":null},"System.Linq.Queryable.vwinf8twbn.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hylqczc46z-{0}-vwinf8twbn-vwinf8twbn.gz"},"Patterns":null},"System.Linq.rp2jklkmsi.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Linq.rp2jklkmsi.wasm"},"Patterns":null},"System.Linq.rp2jklkmsi.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"p0pe0blimm-{0}-rp2jklkmsi-rp2jklkmsi.gz"},"Patterns":null},"System.Memory.3r0soomurg.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Memory.3r0soomurg.wasm"},"Patterns":null},"System.Memory.3r0soomurg.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zip5atfnk1-{0}-3r0soomurg-3r0soomurg.gz"},"Patterns":null},"System.Net.Http.9rl4gopayw.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.Http.9rl4gopayw.wasm"},"Patterns":null},"System.Net.Http.9rl4gopayw.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hz1tpel2o0-{0}-9rl4gopayw-9rl4gopayw.gz"},"Patterns":null},"System.Net.Http.Json.t9gqpmtbpb.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm"},"Patterns":null},"System.Net.Http.Json.t9gqpmtbpb.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zxgtro8yo7-{0}-t9gqpmtbpb-t9gqpmtbpb.gz"},"Patterns":null},"System.Net.HttpListener.zg37o92yol.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.HttpListener.zg37o92yol.wasm"},"Patterns":null},"System.Net.HttpListener.zg37o92yol.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"mkyh3erkm9-{0}-zg37o92yol-zg37o92yol.gz"},"Patterns":null},"System.Net.Mail.qk214miut2.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.Mail.qk214miut2.wasm"},"Patterns":null},"System.Net.Mail.qk214miut2.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"019ldzgpk2-{0}-qk214miut2-qk214miut2.gz"},"Patterns":null},"System.Net.NameResolution.50dzekuu9x.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.NameResolution.50dzekuu9x.wasm"},"Patterns":null},"System.Net.NameResolution.50dzekuu9x.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ui1ul8tpby-{0}-50dzekuu9x-50dzekuu9x.gz"},"Patterns":null},"System.Net.NetworkInformation.k8343mqust.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.NetworkInformation.k8343mqust.wasm"},"Patterns":null},"System.Net.NetworkInformation.k8343mqust.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"luuq2ppq8r-{0}-k8343mqust-k8343mqust.gz"},"Patterns":null},"System.Net.Ping.00vh2kvsiz.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.Ping.00vh2kvsiz.wasm"},"Patterns":null},"System.Net.Ping.00vh2kvsiz.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"yswenxxy60-{0}-00vh2kvsiz-00vh2kvsiz.gz"},"Patterns":null},"System.Net.Primitives.whs5oed1wm.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.Primitives.whs5oed1wm.wasm"},"Patterns":null},"System.Net.Primitives.whs5oed1wm.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"e2kh1woy2q-{0}-whs5oed1wm-whs5oed1wm.gz"},"Patterns":null},"System.Net.Quic.grloe2ix5j.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.Quic.grloe2ix5j.wasm"},"Patterns":null},"System.Net.Quic.grloe2ix5j.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"t7lpa3lwov-{0}-grloe2ix5j-grloe2ix5j.gz"},"Patterns":null},"System.Net.Requests.r8ar2pd94c.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.Requests.r8ar2pd94c.wasm"},"Patterns":null},"System.Net.Requests.r8ar2pd94c.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zy4nys0fbm-{0}-r8ar2pd94c-r8ar2pd94c.gz"},"Patterns":null},"System.Net.Security.yn3zcskz4j.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.Security.yn3zcskz4j.wasm"},"Patterns":null},"System.Net.Security.yn3zcskz4j.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"iem13k4n35-{0}-yn3zcskz4j-yn3zcskz4j.gz"},"Patterns":null},"System.Net.ServerSentEvents.37wbq4jfsy.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm"},"Patterns":null},"System.Net.ServerSentEvents.37wbq4jfsy.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"t2mopjsgs5-{0}-37wbq4jfsy-37wbq4jfsy.gz"},"Patterns":null},"System.Net.ServicePoint.j436yqvrg9.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm"},"Patterns":null},"System.Net.ServicePoint.j436yqvrg9.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"sz4qmwa0cz-{0}-j436yqvrg9-j436yqvrg9.gz"},"Patterns":null},"System.Net.Sockets.utzdm9sw2p.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.Sockets.utzdm9sw2p.wasm"},"Patterns":null},"System.Net.Sockets.utzdm9sw2p.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ozd9l95cy8-{0}-utzdm9sw2p-utzdm9sw2p.gz"},"Patterns":null},"System.Net.WebClient.e5a4gx4ylt.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm"},"Patterns":null},"System.Net.WebClient.e5a4gx4ylt.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0qximx7h6w-{0}-e5a4gx4ylt-e5a4gx4ylt.gz"},"Patterns":null},"System.Net.WebHeaderCollection.rbzkmij005.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm"},"Patterns":null},"System.Net.WebHeaderCollection.rbzkmij005.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"xfyu8pi705-{0}-rbzkmij005-rbzkmij005.gz"},"Patterns":null},"System.Net.WebProxy.38jcv8jeeu.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm"},"Patterns":null},"System.Net.WebProxy.38jcv8jeeu.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kwztau0oyy-{0}-38jcv8jeeu-38jcv8jeeu.gz"},"Patterns":null},"System.Net.WebSockets.Client.nv5izr3rt6.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm"},"Patterns":null},"System.Net.WebSockets.Client.nv5izr3rt6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zc08r46902-{0}-nv5izr3rt6-nv5izr3rt6.gz"},"Patterns":null},"System.Net.WebSockets.hdzn84g6uh.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm"},"Patterns":null},"System.Net.WebSockets.hdzn84g6uh.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ttu14uxg7m-{0}-hdzn84g6uh-hdzn84g6uh.gz"},"Patterns":null},"System.Net.zku96ychk7.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.zku96ychk7.wasm"},"Patterns":null},"System.Net.zku96ychk7.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"mwxs9jgpi5-{0}-zku96ychk7-zku96ychk7.gz"},"Patterns":null},"System.Numerics.on9qk50okp.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Numerics.on9qk50okp.wasm"},"Patterns":null},"System.Numerics.on9qk50okp.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fmcag5xdn2-{0}-on9qk50okp-on9qk50okp.gz"},"Patterns":null},"System.Numerics.Vectors.1l8xruz8uh.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm"},"Patterns":null},"System.Numerics.Vectors.1l8xruz8uh.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tmgotixosa-{0}-1l8xruz8uh-1l8xruz8uh.gz"},"Patterns":null},"System.ObjectModel.4omhtq90sd.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.ObjectModel.4omhtq90sd.wasm"},"Patterns":null},"System.ObjectModel.4omhtq90sd.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"f62yejuwjc-{0}-4omhtq90sd-4omhtq90sd.gz"},"Patterns":null},"System.Private.CoreLib.koxlwnosh6.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Private.CoreLib.koxlwnosh6.wasm"},"Patterns":null},"System.Private.CoreLib.koxlwnosh6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3zyfvkhmnk-{0}-koxlwnosh6-koxlwnosh6.gz"},"Patterns":null},"System.Private.DataContractSerialization.zlwtcvnuqv.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm"},"Patterns":null},"System.Private.DataContractSerialization.zlwtcvnuqv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"g0qzdert85-{0}-zlwtcvnuqv-zlwtcvnuqv.gz"},"Patterns":null},"System.Private.Uri.clehp4avpy.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Private.Uri.clehp4avpy.wasm"},"Patterns":null},"System.Private.Uri.clehp4avpy.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"e67ma35du3-{0}-clehp4avpy-clehp4avpy.gz"},"Patterns":null},"System.Private.Xml.g9rvjereoe.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Private.Xml.g9rvjereoe.wasm"},"Patterns":null},"System.Private.Xml.g9rvjereoe.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"byxake4xdz-{0}-g9rvjereoe-g9rvjereoe.gz"},"Patterns":null},"System.Private.Xml.Linq.ga3n3gh9b6.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm"},"Patterns":null},"System.Private.Xml.Linq.ga3n3gh9b6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"93opzeh57b-{0}-ga3n3gh9b6-ga3n3gh9b6.gz"},"Patterns":null},"System.Reflection.DispatchProxy.b7qn4zpc0q.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm"},"Patterns":null},"System.Reflection.DispatchProxy.b7qn4zpc0q.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jjcxq3ejac-{0}-b7qn4zpc0q-b7qn4zpc0q.gz"},"Patterns":null},"System.Reflection.Emit.3t7flfwg7o.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm"},"Patterns":null},"System.Reflection.Emit.3t7flfwg7o.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"p1p1dduoka-{0}-3t7flfwg7o-3t7flfwg7o.gz"},"Patterns":null},"System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm"},"Patterns":null},"System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"i8msa0z88m-{0}-x0vkqyycss-x0vkqyycss.gz"},"Patterns":null},"System.Reflection.Emit.Lightweight.3tzjd7znni.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm"},"Patterns":null},"System.Reflection.Emit.Lightweight.3tzjd7znni.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gremm5qhcr-{0}-3tzjd7znni-3tzjd7znni.gz"},"Patterns":null},"System.Reflection.Extensions.ymwga5opgl.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm"},"Patterns":null},"System.Reflection.Extensions.ymwga5opgl.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vtgrfa0p11-{0}-ymwga5opgl-ymwga5opgl.gz"},"Patterns":null},"System.Reflection.Metadata.9lgg9wjd2a.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm"},"Patterns":null},"System.Reflection.Metadata.9lgg9wjd2a.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"k6k7jlyl2f-{0}-9lgg9wjd2a-9lgg9wjd2a.gz"},"Patterns":null},"System.Reflection.Primitives.n2ngq6as7g.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm"},"Patterns":null},"System.Reflection.Primitives.n2ngq6as7g.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tdpp3qw974-{0}-n2ngq6as7g-n2ngq6as7g.gz"},"Patterns":null},"System.Reflection.TypeExtensions.ivmzcfvrc6.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm"},"Patterns":null},"System.Reflection.TypeExtensions.ivmzcfvrc6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hoalsbog2o-{0}-ivmzcfvrc6-ivmzcfvrc6.gz"},"Patterns":null},"System.Reflection.v4mfyzbte8.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Reflection.v4mfyzbte8.wasm"},"Patterns":null},"System.Reflection.v4mfyzbte8.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"m0i5wjywsx-{0}-v4mfyzbte8-v4mfyzbte8.gz"},"Patterns":null},"System.Resources.Reader.c9z9nieytf.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Resources.Reader.c9z9nieytf.wasm"},"Patterns":null},"System.Resources.Reader.c9z9nieytf.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"xtefui8dpc-{0}-c9z9nieytf-c9z9nieytf.gz"},"Patterns":null},"System.Resources.ResourceManager.f3fiwdwb50.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm"},"Patterns":null},"System.Resources.ResourceManager.f3fiwdwb50.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"qrheoix2ig-{0}-f3fiwdwb50-f3fiwdwb50.gz"},"Patterns":null},"System.Resources.Writer.tx9namivq6.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Resources.Writer.tx9namivq6.wasm"},"Patterns":null},"System.Resources.Writer.tx9namivq6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"szit2ufpnx-{0}-tx9namivq6-tx9namivq6.gz"},"Patterns":null},"System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm"},"Patterns":null},"System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3txc49hfsy-{0}-5yw8jyjkyt-5yw8jyjkyt.gz"},"Patterns":null},"System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm"},"Patterns":null},"System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"me1or200pv-{0}-ddbsai2xh9-ddbsai2xh9.gz"},"Patterns":null},"System.Runtime.Extensions.f4fqaba1oz.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm"},"Patterns":null},"System.Runtime.Extensions.f4fqaba1oz.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"4syo1xqmc8-{0}-f4fqaba1oz-f4fqaba1oz.gz"},"Patterns":null},"System.Runtime.Handles.kpe61fymig.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.Handles.kpe61fymig.wasm"},"Patterns":null},"System.Runtime.Handles.kpe61fymig.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fz4pecsmjf-{0}-kpe61fymig-kpe61fymig.gz"},"Patterns":null},"System.Runtime.InteropServices.02r2ubft18.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm"},"Patterns":null},"System.Runtime.InteropServices.02r2ubft18.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0st0knthx5-{0}-02r2ubft18-02r2ubft18.gz"},"Patterns":null},"System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm"},"Patterns":null},"System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"h9925thw3k-{0}-ythr5w8c2e-ythr5w8c2e.gz"},"Patterns":null},"System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm"},"Patterns":null},"System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zx6kj3xmnr-{0}-esodb2rpbi-esodb2rpbi.gz"},"Patterns":null},"System.Runtime.Intrinsics.j8lrpban8m.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm"},"Patterns":null},"System.Runtime.Intrinsics.j8lrpban8m.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"7yd9j54hd0-{0}-j8lrpban8m-j8lrpban8m.gz"},"Patterns":null},"System.Runtime.k6ze2203p2.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.k6ze2203p2.wasm"},"Patterns":null},"System.Runtime.k6ze2203p2.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"9ru0gm9zti-{0}-k6ze2203p2-k6ze2203p2.gz"},"Patterns":null},"System.Runtime.Loader.bm8d2pac0a.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm"},"Patterns":null},"System.Runtime.Loader.bm8d2pac0a.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"06jmrwgemt-{0}-bm8d2pac0a-bm8d2pac0a.gz"},"Patterns":null},"System.Runtime.Numerics.e3fl2oogjk.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm"},"Patterns":null},"System.Runtime.Numerics.e3fl2oogjk.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"b1pqie8d42-{0}-e3fl2oogjk-e3fl2oogjk.gz"},"Patterns":null},"System.Runtime.Serialization.Formatters.a0v88kqnif.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm"},"Patterns":null},"System.Runtime.Serialization.Formatters.a0v88kqnif.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"4k92vl8md2-{0}-a0v88kqnif-a0v88kqnif.gz"},"Patterns":null},"System.Runtime.Serialization.Json.pez04wd9mo.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm"},"Patterns":null},"System.Runtime.Serialization.Json.pez04wd9mo.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"wxwyng4xk0-{0}-pez04wd9mo-pez04wd9mo.gz"},"Patterns":null},"System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm"},"Patterns":null},"System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"j81tt1y6rj-{0}-xy5d3j3dn1-xy5d3j3dn1.gz"},"Patterns":null},"System.Runtime.Serialization.qfpmfujegm.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm"},"Patterns":null},"System.Runtime.Serialization.qfpmfujegm.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"mkj61d469a-{0}-qfpmfujegm-qfpmfujegm.gz"},"Patterns":null},"System.Runtime.Serialization.Xml.mmwsbcsgly.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm"},"Patterns":null},"System.Runtime.Serialization.Xml.mmwsbcsgly.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8pmauzinw9-{0}-mmwsbcsgly-mmwsbcsgly.gz"},"Patterns":null},"System.Security.AccessControl.4mxo8hy5cn.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm"},"Patterns":null},"System.Security.AccessControl.4mxo8hy5cn.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"9n1qe841ua-{0}-4mxo8hy5cn-4mxo8hy5cn.gz"},"Patterns":null},"System.Security.Claims.9n1yusa5e5.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.Claims.9n1yusa5e5.wasm"},"Patterns":null},"System.Security.Claims.9n1yusa5e5.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"awwlmj7zy5-{0}-9n1yusa5e5-9n1yusa5e5.gz"},"Patterns":null},"System.Security.Cryptography.5rp84ijz8t.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm"},"Patterns":null},"System.Security.Cryptography.5rp84ijz8t.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gqmneoqstx-{0}-5rp84ijz8t-5rp84ijz8t.gz"},"Patterns":null},"System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm"},"Patterns":null},"System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"m02xm5ue7p-{0}-4dnz7b15a9-4dnz7b15a9.gz"},"Patterns":null},"System.Security.Cryptography.Cng.dyaxkkx3lb.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm"},"Patterns":null},"System.Security.Cryptography.Cng.dyaxkkx3lb.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jhjpqkptaq-{0}-dyaxkkx3lb-dyaxkkx3lb.gz"},"Patterns":null},"System.Security.Cryptography.Csp.20t5iw27a6.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm"},"Patterns":null},"System.Security.Cryptography.Csp.20t5iw27a6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"v9jar86jna-{0}-20t5iw27a6-20t5iw27a6.gz"},"Patterns":null},"System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm"},"Patterns":null},"System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"uu7wfp4do2-{0}-0lu5m0tfx2-0lu5m0tfx2.gz"},"Patterns":null},"System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm"},"Patterns":null},"System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"12m83h5a1i-{0}-4m4pzjxi3g-4m4pzjxi3g.gz"},"Patterns":null},"System.Security.Cryptography.Primitives.7bcdd4uolu.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm"},"Patterns":null},"System.Security.Cryptography.Primitives.7bcdd4uolu.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ly70359tb6-{0}-7bcdd4uolu-7bcdd4uolu.gz"},"Patterns":null},"System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm"},"Patterns":null},"System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rz1qtq0z6d-{0}-dmew7c9amv-dmew7c9amv.gz"},"Patterns":null},"System.Security.Principal.j5dp7k8x6u.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.Principal.j5dp7k8x6u.wasm"},"Patterns":null},"System.Security.Principal.j5dp7k8x6u.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8ynwqwcefg-{0}-j5dp7k8x6u-j5dp7k8x6u.gz"},"Patterns":null},"System.Security.Principal.Windows.7ssqvw2wfy.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm"},"Patterns":null},"System.Security.Principal.Windows.7ssqvw2wfy.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"sl0sft7bkv-{0}-7ssqvw2wfy-7ssqvw2wfy.gz"},"Patterns":null},"System.Security.SecureString.7weoywtuje.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.SecureString.7weoywtuje.wasm"},"Patterns":null},"System.Security.SecureString.7weoywtuje.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ogcs9ucvrf-{0}-7weoywtuje-7weoywtuje.gz"},"Patterns":null},"System.Security.snpv53zusk.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.snpv53zusk.wasm"},"Patterns":null},"System.Security.snpv53zusk.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8srr1acehr-{0}-snpv53zusk-snpv53zusk.gz"},"Patterns":null},"System.ServiceModel.Web.3f1khl8k32.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm"},"Patterns":null},"System.ServiceModel.Web.3f1khl8k32.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"i30lqfoca8-{0}-3f1khl8k32-3f1khl8k32.gz"},"Patterns":null},"System.ServiceProcess.a95c1olw0i.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.ServiceProcess.a95c1olw0i.wasm"},"Patterns":null},"System.ServiceProcess.a95c1olw0i.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zlxnfbxifc-{0}-a95c1olw0i-a95c1olw0i.gz"},"Patterns":null},"System.Text.Encoding.CodePages.8bhn50uz8f.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm"},"Patterns":null},"System.Text.Encoding.CodePages.8bhn50uz8f.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"d2kqqmb0bv-{0}-8bhn50uz8f-8bhn50uz8f.gz"},"Patterns":null},"System.Text.Encoding.Extensions.tqz9dyg6j7.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm"},"Patterns":null},"System.Text.Encoding.Extensions.tqz9dyg6j7.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"m10se0yx1g-{0}-tqz9dyg6j7-tqz9dyg6j7.gz"},"Patterns":null},"System.Text.Encoding.s9ic8sulfi.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Text.Encoding.s9ic8sulfi.wasm"},"Patterns":null},"System.Text.Encoding.s9ic8sulfi.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"w4xw0gq3pj-{0}-s9ic8sulfi-s9ic8sulfi.gz"},"Patterns":null},"System.Text.Encodings.Web.07hq35kp92.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm"},"Patterns":null},"System.Text.Encodings.Web.07hq35kp92.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"wqsee81gb1-{0}-07hq35kp92-07hq35kp92.gz"},"Patterns":null},"System.Text.Json.2alhj4y3bm.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Text.Json.2alhj4y3bm.wasm"},"Patterns":null},"System.Text.Json.2alhj4y3bm.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0064fe6uur-{0}-2alhj4y3bm-2alhj4y3bm.gz"},"Patterns":null},"System.Text.RegularExpressions.h1qtkesphd.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm"},"Patterns":null},"System.Text.RegularExpressions.h1qtkesphd.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"7d15z782y2-{0}-h1qtkesphd-h1qtkesphd.gz"},"Patterns":null},"System.Threading.47ucbn1gg1.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Threading.47ucbn1gg1.wasm"},"Patterns":null},"System.Threading.47ucbn1gg1.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"e2ypaal8k2-{0}-47ucbn1gg1-47ucbn1gg1.gz"},"Patterns":null},"System.Threading.AccessControl.ruehy0ud5k.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm"},"Patterns":null},"System.Threading.AccessControl.ruehy0ud5k.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lbcric48ji-{0}-ruehy0ud5k-ruehy0ud5k.gz"},"Patterns":null},"System.Threading.Channels.s3i62rxr2p.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Threading.Channels.s3i62rxr2p.wasm"},"Patterns":null},"System.Threading.Channels.s3i62rxr2p.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rma0vjtbld-{0}-s3i62rxr2p-s3i62rxr2p.gz"},"Patterns":null},"System.Threading.Overlapped.lzl7igry1t.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm"},"Patterns":null},"System.Threading.Overlapped.lzl7igry1t.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ywpa2qpg55-{0}-lzl7igry1t-lzl7igry1t.gz"},"Patterns":null},"System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm"},"Patterns":null},"System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"to8tkrj8cc-{0}-p9bjzp5pyo-p9bjzp5pyo.gz"},"Patterns":null},"System.Threading.Tasks.Extensions.unp0hcfijn.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm"},"Patterns":null},"System.Threading.Tasks.Extensions.unp0hcfijn.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"7o4w0lfocu-{0}-unp0hcfijn-unp0hcfijn.gz"},"Patterns":null},"System.Threading.Tasks.Parallel.hyku0ejwye.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm"},"Patterns":null},"System.Threading.Tasks.Parallel.hyku0ejwye.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ohlfbgu01g-{0}-hyku0ejwye-hyku0ejwye.gz"},"Patterns":null},"System.Threading.Tasks.t0sjw89o0i.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm"},"Patterns":null},"System.Threading.Tasks.t0sjw89o0i.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8rrnar5gtv-{0}-t0sjw89o0i-t0sjw89o0i.gz"},"Patterns":null},"System.Threading.Thread.nfbg9v9bn0.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm"},"Patterns":null},"System.Threading.Thread.nfbg9v9bn0.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"wi7nbv7im4-{0}-nfbg9v9bn0-nfbg9v9bn0.gz"},"Patterns":null},"System.Threading.ThreadPool.jrzo6stg1k.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm"},"Patterns":null},"System.Threading.ThreadPool.jrzo6stg1k.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"5g4i44bi6s-{0}-jrzo6stg1k-jrzo6stg1k.gz"},"Patterns":null},"System.Threading.Timer.y8l1kxazi5.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Threading.Timer.y8l1kxazi5.wasm"},"Patterns":null},"System.Threading.Timer.y8l1kxazi5.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hq538hfxem-{0}-y8l1kxazi5-y8l1kxazi5.gz"},"Patterns":null},"System.Transactions.Local.cig01jt23c.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Transactions.Local.cig01jt23c.wasm"},"Patterns":null},"System.Transactions.Local.cig01jt23c.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"uz6wr238mp-{0}-cig01jt23c-cig01jt23c.gz"},"Patterns":null},"System.Transactions.pl50n6qbg7.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Transactions.pl50n6qbg7.wasm"},"Patterns":null},"System.Transactions.pl50n6qbg7.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kmdzqqqt27-{0}-pl50n6qbg7-pl50n6qbg7.gz"},"Patterns":null},"System.ValueTuple.mj3r9p0pcw.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.ValueTuple.mj3r9p0pcw.wasm"},"Patterns":null},"System.ValueTuple.mj3r9p0pcw.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"dy6tcjmb9q-{0}-mj3r9p0pcw-mj3r9p0pcw.gz"},"Patterns":null},"System.Web.2a6wq9gv6d.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Web.2a6wq9gv6d.wasm"},"Patterns":null},"System.Web.2a6wq9gv6d.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"iok845swr0-{0}-2a6wq9gv6d-2a6wq9gv6d.gz"},"Patterns":null},"System.Web.HttpUtility.3jfxpyq4in.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm"},"Patterns":null},"System.Web.HttpUtility.3jfxpyq4in.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"pfi56k79hn-{0}-3jfxpyq4in-3jfxpyq4in.gz"},"Patterns":null},"System.Windows.bw79ix589z.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Windows.bw79ix589z.wasm"},"Patterns":null},"System.Windows.bw79ix589z.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tvvpa50077-{0}-bw79ix589z-bw79ix589z.gz"},"Patterns":null},"System.Xml.Linq.nvnhbwdsg6.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm"},"Patterns":null},"System.Xml.Linq.nvnhbwdsg6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"79deazooef-{0}-nvnhbwdsg6-nvnhbwdsg6.gz"},"Patterns":null},"System.Xml.ReaderWriter.szsdminork.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Xml.ReaderWriter.szsdminork.wasm"},"Patterns":null},"System.Xml.ReaderWriter.szsdminork.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kmp1cwjk7f-{0}-szsdminork-szsdminork.gz"},"Patterns":null},"System.Xml.Serialization.b9imguls9w.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Xml.Serialization.b9imguls9w.wasm"},"Patterns":null},"System.Xml.Serialization.b9imguls9w.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"cagt9idkdm-{0}-b9imguls9w-b9imguls9w.gz"},"Patterns":null},"System.Xml.XDocument.8hg6c0at0c.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm"},"Patterns":null},"System.Xml.XDocument.8hg6c0at0c.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"blwck2749u-{0}-8hg6c0at0c-8hg6c0at0c.gz"},"Patterns":null},"System.Xml.XmlDocument.isetn6xlxa.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm"},"Patterns":null},"System.Xml.XmlDocument.isetn6xlxa.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ww3wnv8b6s-{0}-isetn6xlxa-isetn6xlxa.gz"},"Patterns":null},"System.Xml.XmlSerializer.okgnp5v9bw.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm"},"Patterns":null},"System.Xml.XmlSerializer.okgnp5v9bw.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"qt3o35adbl-{0}-okgnp5v9bw-okgnp5v9bw.gz"},"Patterns":null},"System.Xml.XPath.11wk1hhnfk.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Xml.XPath.11wk1hhnfk.wasm"},"Patterns":null},"System.Xml.XPath.11wk1hhnfk.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"xo45czuveq-{0}-11wk1hhnfk-11wk1hhnfk.gz"},"Patterns":null},"System.Xml.XPath.XDocument.g7i5gd64yo.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm"},"Patterns":null},"System.Xml.XPath.XDocument.g7i5gd64yo.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gsr2zhdiud-{0}-g7i5gd64yo-g7i5gd64yo.gz"},"Patterns":null},"System.Xml.zjgi7nrlno.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Xml.zjgi7nrlno.wasm"},"Patterns":null},"System.Xml.zjgi7nrlno.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ra6e7v46m5-{0}-zjgi7nrlno-zjgi7nrlno.gz"},"Patterns":null},"WindowsBase.wz82kkc1p3.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/WindowsBase.wz82kkc1p3.wasm"},"Patterns":null},"WindowsBase.wz82kkc1p3.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"10vfj5e8p2-{0}-wz82kkc1p3-wz82kkc1p3.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Layout":{"Children":{"ReconnectModal.razor.js":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"Layout/ReconnectModal.razor.js"},"Patterns":null},"ReconnectModal.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ug9ge1behf-{0}-ycbzh0sbjd-ycbzh0sbjd.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"_content":{"Children":{"Microsoft.DotNet.HotReload.WebAssembly.Browser":{"Children":{"Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js"},"Patterns":null}},"Asset":null,"Patterns":null},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"MudBlazor.min.js"},"Patterns":null},"MudBlazor.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"MudBlazor.min.js.map"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/OnProfNext.Client/obj/Debug/net10.0/staticwebassets.references.upToDateCheck.txt b/OnProfNext.Client/obj/Debug/net10.0/staticwebassets.references.upToDateCheck.txt new file mode 100644 index 0000000..e69de29 diff --git a/OnProfNext.Client/obj/Debug/net10.0/staticwebassets.removed.txt b/OnProfNext.Client/obj/Debug/net10.0/staticwebassets.removed.txt new file mode 100644 index 0000000..e69de29 diff --git a/OnProfNext.Client/obj/Debug/net10.0/staticwebassets.upToDateCheck.txt b/OnProfNext.Client/obj/Debug/net10.0/staticwebassets.upToDateCheck.txt new file mode 100644 index 0000000..64897b7 --- /dev/null +++ b/OnProfNext.Client/obj/Debug/net10.0/staticwebassets.upToDateCheck.txt @@ -0,0 +1,6 @@ +wwwroot\appsettings.Development.json +wwwroot\appsettings.json +Layout\ReconnectModal.razor.js +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\wwwroot\appsettings.Development.json +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\wwwroot\appsettings.json +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\Layout\ReconnectModal.razor.js diff --git a/OnProfNext.Client/obj/Debug/net10.0/swae.build.ex.cache b/OnProfNext.Client/obj/Debug/net10.0/swae.build.ex.cache new file mode 100644 index 0000000..e69de29 diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.AspNetCore.Authorization.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.AspNetCore.Authorization.wasm new file mode 100644 index 0000000..2f96917 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.AspNetCore.Authorization.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.AspNetCore.Components.Forms.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.AspNetCore.Components.Forms.wasm new file mode 100644 index 0000000..ed98e87 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.AspNetCore.Components.Forms.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.AspNetCore.Components.Web.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.AspNetCore.Components.Web.wasm new file mode 100644 index 0000000..c610f4e Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.AspNetCore.Components.Web.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.AspNetCore.Components.WebAssembly.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.AspNetCore.Components.WebAssembly.wasm new file mode 100644 index 0000000..1132a8c Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.AspNetCore.Components.WebAssembly.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.AspNetCore.Components.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.AspNetCore.Components.wasm new file mode 100644 index 0000000..d157fe0 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.AspNetCore.Components.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.AspNetCore.Metadata.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.AspNetCore.Metadata.wasm new file mode 100644 index 0000000..a0cebb5 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.AspNetCore.Metadata.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.CSharp.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.CSharp.wasm new file mode 100644 index 0000000..77ab2ed Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.CSharp.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm new file mode 100644 index 0000000..da7c1a4 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Configuration.Abstractions.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Configuration.Abstractions.wasm new file mode 100644 index 0000000..ee460f4 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Configuration.Abstractions.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Configuration.Binder.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Configuration.Binder.wasm new file mode 100644 index 0000000..13c6d36 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Configuration.Binder.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Configuration.FileExtensions.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Configuration.FileExtensions.wasm new file mode 100644 index 0000000..4289d55 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Configuration.FileExtensions.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Configuration.Json.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Configuration.Json.wasm new file mode 100644 index 0000000..2e06e6e Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Configuration.Json.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Configuration.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Configuration.wasm new file mode 100644 index 0000000..e77930c Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Configuration.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.DependencyInjection.Abstractions.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.DependencyInjection.Abstractions.wasm new file mode 100644 index 0000000..c31fcbc Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.DependencyInjection.Abstractions.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.DependencyInjection.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.DependencyInjection.wasm new file mode 100644 index 0000000..823fb4e Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.DependencyInjection.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Diagnostics.Abstractions.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Diagnostics.Abstractions.wasm new file mode 100644 index 0000000..516d6f9 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Diagnostics.Abstractions.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Diagnostics.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Diagnostics.wasm new file mode 100644 index 0000000..c978326 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Diagnostics.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.FileProviders.Abstractions.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.FileProviders.Abstractions.wasm new file mode 100644 index 0000000..019d285 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.FileProviders.Abstractions.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.FileProviders.Physical.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.FileProviders.Physical.wasm new file mode 100644 index 0000000..605fae3 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.FileProviders.Physical.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.FileSystemGlobbing.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.FileSystemGlobbing.wasm new file mode 100644 index 0000000..6651ab4 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.FileSystemGlobbing.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Localization.Abstractions.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Localization.Abstractions.wasm new file mode 100644 index 0000000..8254b44 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Localization.Abstractions.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Localization.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Localization.wasm new file mode 100644 index 0000000..ee1d343 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Localization.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Logging.Abstractions.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Logging.Abstractions.wasm new file mode 100644 index 0000000..55a0dfe Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Logging.Abstractions.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Logging.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Logging.wasm new file mode 100644 index 0000000..59b1790 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Logging.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Options.ConfigurationExtensions.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Options.ConfigurationExtensions.wasm new file mode 100644 index 0000000..b6df73d Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Options.ConfigurationExtensions.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Options.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Options.wasm new file mode 100644 index 0000000..cb59b1a Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Options.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Primitives.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Primitives.wasm new file mode 100644 index 0000000..f84379f Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Primitives.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Validation.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Validation.wasm new file mode 100644 index 0000000..b4e5be3 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Extensions.Validation.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.JSInterop.WebAssembly.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.JSInterop.WebAssembly.wasm new file mode 100644 index 0000000..f9590e1 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.JSInterop.WebAssembly.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.JSInterop.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.JSInterop.wasm new file mode 100644 index 0000000..368880d Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.JSInterop.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.VisualBasic.Core.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.VisualBasic.Core.wasm new file mode 100644 index 0000000..b137172 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.VisualBasic.Core.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.VisualBasic.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.VisualBasic.wasm new file mode 100644 index 0000000..0f31f99 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.VisualBasic.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Win32.Primitives.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Win32.Primitives.wasm new file mode 100644 index 0000000..494aabc Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Win32.Primitives.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Win32.Registry.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Win32.Registry.wasm new file mode 100644 index 0000000..0ad2a81 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/Microsoft.Win32.Registry.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/MudBlazor.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/MudBlazor.wasm new file mode 100644 index 0000000..30975c5 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/MudBlazor.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/OnProfNext.Client.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/OnProfNext.Client.wasm new file mode 100644 index 0000000..831bb3a Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/OnProfNext.Client.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.AppContext.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.AppContext.wasm new file mode 100644 index 0000000..3e4a2de Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.AppContext.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Buffers.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Buffers.wasm new file mode 100644 index 0000000..995d09f Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Buffers.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Collections.Concurrent.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Collections.Concurrent.wasm new file mode 100644 index 0000000..4881d82 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Collections.Concurrent.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Collections.Immutable.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Collections.Immutable.wasm new file mode 100644 index 0000000..c1c94f1 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Collections.Immutable.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Collections.NonGeneric.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Collections.NonGeneric.wasm new file mode 100644 index 0000000..5411b80 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Collections.NonGeneric.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Collections.Specialized.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Collections.Specialized.wasm new file mode 100644 index 0000000..bba231f Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Collections.Specialized.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Collections.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Collections.wasm new file mode 100644 index 0000000..015ef2e Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Collections.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.ComponentModel.Annotations.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.ComponentModel.Annotations.wasm new file mode 100644 index 0000000..2c802c4 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.ComponentModel.Annotations.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.ComponentModel.DataAnnotations.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.ComponentModel.DataAnnotations.wasm new file mode 100644 index 0000000..7b7bc5d Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.ComponentModel.DataAnnotations.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.ComponentModel.EventBasedAsync.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.ComponentModel.EventBasedAsync.wasm new file mode 100644 index 0000000..f99a763 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.ComponentModel.EventBasedAsync.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.ComponentModel.Primitives.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.ComponentModel.Primitives.wasm new file mode 100644 index 0000000..c6a9b4c Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.ComponentModel.Primitives.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.ComponentModel.TypeConverter.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.ComponentModel.TypeConverter.wasm new file mode 100644 index 0000000..57f0fe5 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.ComponentModel.TypeConverter.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.ComponentModel.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.ComponentModel.wasm new file mode 100644 index 0000000..4ada369 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.ComponentModel.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Configuration.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Configuration.wasm new file mode 100644 index 0000000..dc7dd37 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Configuration.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Console.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Console.wasm new file mode 100644 index 0000000..07f7656 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Console.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Core.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Core.wasm new file mode 100644 index 0000000..259f829 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Core.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Data.Common.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Data.Common.wasm new file mode 100644 index 0000000..7059a07 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Data.Common.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Data.DataSetExtensions.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Data.DataSetExtensions.wasm new file mode 100644 index 0000000..7858b9b Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Data.DataSetExtensions.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Data.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Data.wasm new file mode 100644 index 0000000..fe40628 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Data.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Diagnostics.Contracts.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Diagnostics.Contracts.wasm new file mode 100644 index 0000000..0c8e9bc Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Diagnostics.Contracts.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Diagnostics.Debug.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Diagnostics.Debug.wasm new file mode 100644 index 0000000..a0a9542 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Diagnostics.Debug.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Diagnostics.DiagnosticSource.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Diagnostics.DiagnosticSource.wasm new file mode 100644 index 0000000..14cab35 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Diagnostics.DiagnosticSource.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Diagnostics.FileVersionInfo.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Diagnostics.FileVersionInfo.wasm new file mode 100644 index 0000000..1fa67c2 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Diagnostics.FileVersionInfo.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Diagnostics.Process.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Diagnostics.Process.wasm new file mode 100644 index 0000000..3d1cdf6 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Diagnostics.Process.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Diagnostics.StackTrace.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Diagnostics.StackTrace.wasm new file mode 100644 index 0000000..14a950f Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Diagnostics.StackTrace.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Diagnostics.TextWriterTraceListener.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Diagnostics.TextWriterTraceListener.wasm new file mode 100644 index 0000000..18299c9 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Diagnostics.TextWriterTraceListener.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Diagnostics.Tools.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Diagnostics.Tools.wasm new file mode 100644 index 0000000..bedee68 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Diagnostics.Tools.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Diagnostics.TraceSource.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Diagnostics.TraceSource.wasm new file mode 100644 index 0000000..3d13070 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Diagnostics.TraceSource.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Diagnostics.Tracing.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Diagnostics.Tracing.wasm new file mode 100644 index 0000000..f2f1018 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Diagnostics.Tracing.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Drawing.Primitives.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Drawing.Primitives.wasm new file mode 100644 index 0000000..a199208 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Drawing.Primitives.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Drawing.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Drawing.wasm new file mode 100644 index 0000000..49fb699 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Drawing.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Dynamic.Runtime.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Dynamic.Runtime.wasm new file mode 100644 index 0000000..e897148 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Dynamic.Runtime.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Formats.Asn1.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Formats.Asn1.wasm new file mode 100644 index 0000000..3adcaf9 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Formats.Asn1.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Formats.Tar.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Formats.Tar.wasm new file mode 100644 index 0000000..7ea4255 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Formats.Tar.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Globalization.Calendars.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Globalization.Calendars.wasm new file mode 100644 index 0000000..b5bcc9d Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Globalization.Calendars.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Globalization.Extensions.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Globalization.Extensions.wasm new file mode 100644 index 0000000..4b380b0 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Globalization.Extensions.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Globalization.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Globalization.wasm new file mode 100644 index 0000000..3382774 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Globalization.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.Compression.Brotli.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.Compression.Brotli.wasm new file mode 100644 index 0000000..d7ca3fe Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.Compression.Brotli.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.Compression.FileSystem.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.Compression.FileSystem.wasm new file mode 100644 index 0000000..4902cfa Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.Compression.FileSystem.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.Compression.ZipFile.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.Compression.ZipFile.wasm new file mode 100644 index 0000000..349a050 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.Compression.ZipFile.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.Compression.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.Compression.wasm new file mode 100644 index 0000000..16ceddd Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.Compression.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.FileSystem.AccessControl.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.FileSystem.AccessControl.wasm new file mode 100644 index 0000000..14322c8 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.FileSystem.AccessControl.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.FileSystem.DriveInfo.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.FileSystem.DriveInfo.wasm new file mode 100644 index 0000000..d6499e6 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.FileSystem.DriveInfo.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.FileSystem.Primitives.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.FileSystem.Primitives.wasm new file mode 100644 index 0000000..3a10f8c Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.FileSystem.Primitives.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.FileSystem.Watcher.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.FileSystem.Watcher.wasm new file mode 100644 index 0000000..d2453ee Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.FileSystem.Watcher.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.FileSystem.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.FileSystem.wasm new file mode 100644 index 0000000..eb6248a Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.FileSystem.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.IsolatedStorage.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.IsolatedStorage.wasm new file mode 100644 index 0000000..f922254 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.IsolatedStorage.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.MemoryMappedFiles.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.MemoryMappedFiles.wasm new file mode 100644 index 0000000..2af6762 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.MemoryMappedFiles.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.Pipelines.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.Pipelines.wasm new file mode 100644 index 0000000..935b968 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.Pipelines.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.Pipes.AccessControl.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.Pipes.AccessControl.wasm new file mode 100644 index 0000000..01eb9b4 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.Pipes.AccessControl.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.Pipes.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.Pipes.wasm new file mode 100644 index 0000000..e20528e Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.Pipes.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.UnmanagedMemoryStream.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.UnmanagedMemoryStream.wasm new file mode 100644 index 0000000..5916b89 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.UnmanagedMemoryStream.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.wasm new file mode 100644 index 0000000..ad412f7 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.IO.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Linq.AsyncEnumerable.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Linq.AsyncEnumerable.wasm new file mode 100644 index 0000000..a712d12 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Linq.AsyncEnumerable.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Linq.Expressions.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Linq.Expressions.wasm new file mode 100644 index 0000000..bf5322f Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Linq.Expressions.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Linq.Parallel.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Linq.Parallel.wasm new file mode 100644 index 0000000..b1cf52a Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Linq.Parallel.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Linq.Queryable.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Linq.Queryable.wasm new file mode 100644 index 0000000..f0605a4 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Linq.Queryable.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Linq.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Linq.wasm new file mode 100644 index 0000000..827b734 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Linq.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Memory.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Memory.wasm new file mode 100644 index 0000000..cec8537 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Memory.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.Http.Json.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.Http.Json.wasm new file mode 100644 index 0000000..e7886c1 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.Http.Json.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.Http.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.Http.wasm new file mode 100644 index 0000000..e8734b7 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.Http.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.HttpListener.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.HttpListener.wasm new file mode 100644 index 0000000..f07270f Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.HttpListener.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.Mail.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.Mail.wasm new file mode 100644 index 0000000..af4ee6c Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.Mail.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.NameResolution.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.NameResolution.wasm new file mode 100644 index 0000000..2269a99 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.NameResolution.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.NetworkInformation.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.NetworkInformation.wasm new file mode 100644 index 0000000..cecd705 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.NetworkInformation.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.Ping.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.Ping.wasm new file mode 100644 index 0000000..0629e1b Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.Ping.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.Primitives.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.Primitives.wasm new file mode 100644 index 0000000..8d10ef8 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.Primitives.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.Quic.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.Quic.wasm new file mode 100644 index 0000000..69930ab Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.Quic.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.Requests.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.Requests.wasm new file mode 100644 index 0000000..1143cc6 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.Requests.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.Security.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.Security.wasm new file mode 100644 index 0000000..0c0cc50 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.Security.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.ServerSentEvents.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.ServerSentEvents.wasm new file mode 100644 index 0000000..2070836 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.ServerSentEvents.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.ServicePoint.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.ServicePoint.wasm new file mode 100644 index 0000000..63626bb Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.ServicePoint.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.Sockets.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.Sockets.wasm new file mode 100644 index 0000000..9d3d3a7 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.Sockets.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.WebClient.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.WebClient.wasm new file mode 100644 index 0000000..faf67fe Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.WebClient.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.WebHeaderCollection.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.WebHeaderCollection.wasm new file mode 100644 index 0000000..0f51688 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.WebHeaderCollection.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.WebProxy.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.WebProxy.wasm new file mode 100644 index 0000000..9a1a060 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.WebProxy.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.WebSockets.Client.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.WebSockets.Client.wasm new file mode 100644 index 0000000..22a5b79 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.WebSockets.Client.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.WebSockets.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.WebSockets.wasm new file mode 100644 index 0000000..bfd5903 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.WebSockets.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.wasm new file mode 100644 index 0000000..e8fcf7e Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Net.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Numerics.Vectors.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Numerics.Vectors.wasm new file mode 100644 index 0000000..1692125 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Numerics.Vectors.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Numerics.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Numerics.wasm new file mode 100644 index 0000000..c62adce Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Numerics.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.ObjectModel.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.ObjectModel.wasm new file mode 100644 index 0000000..7a1dbb6 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.ObjectModel.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Private.CoreLib.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Private.CoreLib.wasm new file mode 100644 index 0000000..dc2e359 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Private.CoreLib.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Private.DataContractSerialization.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Private.DataContractSerialization.wasm new file mode 100644 index 0000000..b4022aa Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Private.DataContractSerialization.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Private.Uri.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Private.Uri.wasm new file mode 100644 index 0000000..92c1aef Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Private.Uri.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Private.Xml.Linq.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Private.Xml.Linq.wasm new file mode 100644 index 0000000..2a2d262 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Private.Xml.Linq.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Private.Xml.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Private.Xml.wasm new file mode 100644 index 0000000..36e155f Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Private.Xml.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Reflection.DispatchProxy.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Reflection.DispatchProxy.wasm new file mode 100644 index 0000000..d8fbe28 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Reflection.DispatchProxy.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Reflection.Emit.ILGeneration.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Reflection.Emit.ILGeneration.wasm new file mode 100644 index 0000000..c0d0d99 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Reflection.Emit.ILGeneration.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Reflection.Emit.Lightweight.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Reflection.Emit.Lightweight.wasm new file mode 100644 index 0000000..07c7d86 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Reflection.Emit.Lightweight.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Reflection.Emit.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Reflection.Emit.wasm new file mode 100644 index 0000000..dd9ea2d Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Reflection.Emit.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Reflection.Extensions.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Reflection.Extensions.wasm new file mode 100644 index 0000000..4e69ce6 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Reflection.Extensions.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Reflection.Metadata.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Reflection.Metadata.wasm new file mode 100644 index 0000000..a95c86f Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Reflection.Metadata.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Reflection.Primitives.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Reflection.Primitives.wasm new file mode 100644 index 0000000..4e314a1 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Reflection.Primitives.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Reflection.TypeExtensions.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Reflection.TypeExtensions.wasm new file mode 100644 index 0000000..c4a1606 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Reflection.TypeExtensions.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Reflection.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Reflection.wasm new file mode 100644 index 0000000..e869db0 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Reflection.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Resources.Reader.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Resources.Reader.wasm new file mode 100644 index 0000000..456ccb9 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Resources.Reader.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Resources.ResourceManager.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Resources.ResourceManager.wasm new file mode 100644 index 0000000..3efe8ef Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Resources.ResourceManager.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Resources.Writer.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Resources.Writer.wasm new file mode 100644 index 0000000..1e1ff80 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Resources.Writer.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.CompilerServices.Unsafe.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.CompilerServices.Unsafe.wasm new file mode 100644 index 0000000..f4ed1dd Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.CompilerServices.Unsafe.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.CompilerServices.VisualC.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.CompilerServices.VisualC.wasm new file mode 100644 index 0000000..4f46a9b Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.CompilerServices.VisualC.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.Extensions.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.Extensions.wasm new file mode 100644 index 0000000..7a4d2fa Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.Extensions.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.Handles.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.Handles.wasm new file mode 100644 index 0000000..71dfcbb Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.Handles.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.InteropServices.JavaScript.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.InteropServices.JavaScript.wasm new file mode 100644 index 0000000..200d359 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.InteropServices.JavaScript.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.InteropServices.RuntimeInformation.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.InteropServices.RuntimeInformation.wasm new file mode 100644 index 0000000..cd4577c Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.InteropServices.RuntimeInformation.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.InteropServices.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.InteropServices.wasm new file mode 100644 index 0000000..d313e49 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.InteropServices.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.Intrinsics.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.Intrinsics.wasm new file mode 100644 index 0000000..78fc199 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.Intrinsics.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.Loader.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.Loader.wasm new file mode 100644 index 0000000..eec6cbc Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.Loader.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.Numerics.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.Numerics.wasm new file mode 100644 index 0000000..89041f6 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.Numerics.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.Serialization.Formatters.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.Serialization.Formatters.wasm new file mode 100644 index 0000000..c3fa22d Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.Serialization.Formatters.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.Serialization.Json.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.Serialization.Json.wasm new file mode 100644 index 0000000..6f45fe9 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.Serialization.Json.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.Serialization.Primitives.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.Serialization.Primitives.wasm new file mode 100644 index 0000000..8690a49 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.Serialization.Primitives.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.Serialization.Xml.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.Serialization.Xml.wasm new file mode 100644 index 0000000..e304bbc Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.Serialization.Xml.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.Serialization.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.Serialization.wasm new file mode 100644 index 0000000..7b37a00 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.Serialization.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.wasm new file mode 100644 index 0000000..2e7574a Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Runtime.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.AccessControl.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.AccessControl.wasm new file mode 100644 index 0000000..32ffb1d Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.AccessControl.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.Claims.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.Claims.wasm new file mode 100644 index 0000000..02d6130 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.Claims.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.Cryptography.Algorithms.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.Cryptography.Algorithms.wasm new file mode 100644 index 0000000..a4703d6 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.Cryptography.Algorithms.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.Cryptography.Cng.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.Cryptography.Cng.wasm new file mode 100644 index 0000000..a1ebfac Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.Cryptography.Cng.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.Cryptography.Csp.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.Cryptography.Csp.wasm new file mode 100644 index 0000000..dfca107 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.Cryptography.Csp.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.Cryptography.Encoding.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.Cryptography.Encoding.wasm new file mode 100644 index 0000000..c665c66 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.Cryptography.Encoding.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.Cryptography.OpenSsl.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.Cryptography.OpenSsl.wasm new file mode 100644 index 0000000..b9e4855 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.Cryptography.OpenSsl.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.Cryptography.Primitives.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.Cryptography.Primitives.wasm new file mode 100644 index 0000000..78a3ab4 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.Cryptography.Primitives.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.Cryptography.X509Certificates.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.Cryptography.X509Certificates.wasm new file mode 100644 index 0000000..482f20a Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.Cryptography.X509Certificates.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.Cryptography.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.Cryptography.wasm new file mode 100644 index 0000000..8a7ac3d Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.Cryptography.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.Principal.Windows.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.Principal.Windows.wasm new file mode 100644 index 0000000..1b774f4 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.Principal.Windows.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.Principal.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.Principal.wasm new file mode 100644 index 0000000..813c3de Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.Principal.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.SecureString.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.SecureString.wasm new file mode 100644 index 0000000..d8eaa4c Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.SecureString.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.wasm new file mode 100644 index 0000000..7005507 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Security.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.ServiceModel.Web.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.ServiceModel.Web.wasm new file mode 100644 index 0000000..b1bb0e2 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.ServiceModel.Web.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.ServiceProcess.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.ServiceProcess.wasm new file mode 100644 index 0000000..418af37 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.ServiceProcess.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Text.Encoding.CodePages.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Text.Encoding.CodePages.wasm new file mode 100644 index 0000000..9adb750 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Text.Encoding.CodePages.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Text.Encoding.Extensions.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Text.Encoding.Extensions.wasm new file mode 100644 index 0000000..aa6af39 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Text.Encoding.Extensions.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Text.Encoding.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Text.Encoding.wasm new file mode 100644 index 0000000..96710c5 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Text.Encoding.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Text.Encodings.Web.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Text.Encodings.Web.wasm new file mode 100644 index 0000000..f38a477 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Text.Encodings.Web.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Text.Json.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Text.Json.wasm new file mode 100644 index 0000000..73f1df0 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Text.Json.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Text.RegularExpressions.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Text.RegularExpressions.wasm new file mode 100644 index 0000000..89a3d9b Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Text.RegularExpressions.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Threading.AccessControl.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Threading.AccessControl.wasm new file mode 100644 index 0000000..45f1be8 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Threading.AccessControl.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Threading.Channels.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Threading.Channels.wasm new file mode 100644 index 0000000..7a60d6c Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Threading.Channels.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Threading.Overlapped.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Threading.Overlapped.wasm new file mode 100644 index 0000000..35799e9 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Threading.Overlapped.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Threading.Tasks.Dataflow.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Threading.Tasks.Dataflow.wasm new file mode 100644 index 0000000..798f8e8 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Threading.Tasks.Dataflow.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Threading.Tasks.Extensions.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Threading.Tasks.Extensions.wasm new file mode 100644 index 0000000..c3f49a1 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Threading.Tasks.Extensions.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Threading.Tasks.Parallel.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Threading.Tasks.Parallel.wasm new file mode 100644 index 0000000..55fde85 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Threading.Tasks.Parallel.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Threading.Tasks.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Threading.Tasks.wasm new file mode 100644 index 0000000..d391a37 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Threading.Tasks.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Threading.Thread.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Threading.Thread.wasm new file mode 100644 index 0000000..f574c3a Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Threading.Thread.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Threading.ThreadPool.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Threading.ThreadPool.wasm new file mode 100644 index 0000000..04a0520 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Threading.ThreadPool.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Threading.Timer.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Threading.Timer.wasm new file mode 100644 index 0000000..bb0adf9 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Threading.Timer.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Threading.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Threading.wasm new file mode 100644 index 0000000..78e2573 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Threading.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Transactions.Local.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Transactions.Local.wasm new file mode 100644 index 0000000..f1b5b18 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Transactions.Local.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Transactions.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Transactions.wasm new file mode 100644 index 0000000..d6aeb97 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Transactions.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.ValueTuple.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.ValueTuple.wasm new file mode 100644 index 0000000..cc505d5 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.ValueTuple.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Web.HttpUtility.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Web.HttpUtility.wasm new file mode 100644 index 0000000..30aa51b Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Web.HttpUtility.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Web.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Web.wasm new file mode 100644 index 0000000..437d263 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Web.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Windows.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Windows.wasm new file mode 100644 index 0000000..51b1034 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Windows.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Xml.Linq.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Xml.Linq.wasm new file mode 100644 index 0000000..65e4cff Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Xml.Linq.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Xml.ReaderWriter.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Xml.ReaderWriter.wasm new file mode 100644 index 0000000..fcb5c7c Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Xml.ReaderWriter.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Xml.Serialization.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Xml.Serialization.wasm new file mode 100644 index 0000000..d142ed7 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Xml.Serialization.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Xml.XDocument.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Xml.XDocument.wasm new file mode 100644 index 0000000..1809a61 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Xml.XDocument.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Xml.XPath.XDocument.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Xml.XPath.XDocument.wasm new file mode 100644 index 0000000..8ae7920 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Xml.XPath.XDocument.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Xml.XPath.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Xml.XPath.wasm new file mode 100644 index 0000000..1eb4381 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Xml.XPath.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Xml.XmlDocument.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Xml.XmlDocument.wasm new file mode 100644 index 0000000..b428507 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Xml.XmlDocument.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Xml.XmlSerializer.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Xml.XmlSerializer.wasm new file mode 100644 index 0000000..2593f7a Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Xml.XmlSerializer.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Xml.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Xml.wasm new file mode 100644 index 0000000..f30c56d Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.Xml.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/System.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.wasm new file mode 100644 index 0000000..e8fde57 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/System.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/WindowsBase.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/WindowsBase.wasm new file mode 100644 index 0000000..778aff7 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/WindowsBase.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/mscorlib.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/mscorlib.wasm new file mode 100644 index 0000000..28ad612 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/mscorlib.wasm differ diff --git a/OnProfNext.Client/obj/Debug/net10.0/webcil/netstandard.wasm b/OnProfNext.Client/obj/Debug/net10.0/webcil/netstandard.wasm new file mode 100644 index 0000000..3208ee5 Binary files /dev/null and b/OnProfNext.Client/obj/Debug/net10.0/webcil/netstandard.wasm differ diff --git a/OnProfNext.Client/obj/OnProfNext.Client.csproj.nuget.dgspec.json b/OnProfNext.Client/obj/OnProfNext.Client.csproj.nuget.dgspec.json new file mode 100644 index 0000000..e7f09f9 --- /dev/null +++ b/OnProfNext.Client/obj/OnProfNext.Client.csproj.nuget.dgspec.json @@ -0,0 +1,386 @@ +{ + "format": 1, + "restore": { + "D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\OnProfNext.Client.csproj": {} + }, + "projects": { + "D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\OnProfNext.Client.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\OnProfNext.Client.csproj", + "projectName": "OnProfNext.Client", + "projectPath": "D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\OnProfNext.Client.csproj", + "packagesPath": "C:\\Users\\wiela\\.nuget\\packages\\", + "outputPath": "D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\wiela\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.200" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Microsoft.AspNetCore.App.Internal.Assets": { + "suppressParent": "All", + "target": "Package", + "version": "[10.0.5, )", + "autoReferenced": true + }, + "Microsoft.AspNetCore.Components.WebAssembly": { + "target": "Package", + "version": "[10.*, )" + }, + "Microsoft.DotNet.HotReload.WebAssembly.Browser": { + "target": "Package", + "version": "[10.0.201, )", + "autoReferenced": true + }, + "Microsoft.NET.ILLink.Tasks": { + "suppressParent": "All", + "target": "Package", + "version": "[10.0.5, )", + "autoReferenced": true + }, + "Microsoft.NET.Sdk.WebAssembly.Pack": { + "suppressParent": "All", + "target": "Package", + "version": "[10.0.5, )", + "autoReferenced": true + }, + "MudBlazor": { + "target": "Package", + "version": "[9.*, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.201/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + }, + "runtimes": { + "browser-wasm": { + "#import": [] + } + } + } + } +} \ No newline at end of file diff --git a/OnProfNext.Client/obj/OnProfNext.Client.csproj.nuget.g.props b/OnProfNext.Client/obj/OnProfNext.Client.csproj.nuget.g.props new file mode 100644 index 0000000..24f8d27 --- /dev/null +++ b/OnProfNext.Client/obj/OnProfNext.Client.csproj.nuget.g.props @@ -0,0 +1,28 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\wiela\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 7.0.0 + + + + + + + + + + + + + + + C:\Users\wiela\.nuget\packages\microsoft.net.sdk.webassembly.pack\10.0.5 + C:\Users\wiela\.nuget\packages\microsoft.net.illink.tasks\10.0.5 + + \ No newline at end of file diff --git a/OnProfNext.Client/obj/OnProfNext.Client.csproj.nuget.g.targets b/OnProfNext.Client/obj/OnProfNext.Client.csproj.nuget.g.targets new file mode 100644 index 0000000..57a9707 --- /dev/null +++ b/OnProfNext.Client/obj/OnProfNext.Client.csproj.nuget.g.targets @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/OnProfNext.Client/obj/project.assets.json b/OnProfNext.Client/obj/project.assets.json new file mode 100644 index 0000000..9037afc --- /dev/null +++ b/OnProfNext.Client/obj/project.assets.json @@ -0,0 +1,2520 @@ +{ + "version": 3, + "targets": { + "net10.0": { + "Microsoft.AspNetCore.App.Internal.Assets/10.0.5": { + "type": "package", + "build": { + "build/Microsoft.AspNetCore.App.Internal.Assets.props": {}, + "buildTransitive/Microsoft.AspNetCore.App.Internal.Assets.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.AspNetCore.App.Internal.Assets.targets": {} + } + }, + "Microsoft.AspNetCore.Authorization/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Metadata": "10.0.5", + "Microsoft.Extensions.Diagnostics": "10.0.5", + "Microsoft.Extensions.Logging.Abstractions": "10.0.5", + "Microsoft.Extensions.Options": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Authorization.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Authorization.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authorization": "10.0.5", + "Microsoft.AspNetCore.Components.Analyzers": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Components.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Components.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components.Analyzers/10.0.5": { + "type": "package", + "build": { + "buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets": {} + } + }, + "Microsoft.AspNetCore.Components.Forms/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "10.0.5", + "Microsoft.Extensions.Validation": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Components.Forms.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Components.Forms.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components.Web/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "10.0.5", + "Microsoft.AspNetCore.Components.Forms": "10.0.5", + "Microsoft.Extensions.DependencyInjection": "10.0.5", + "Microsoft.Extensions.Primitives": "10.0.5", + "Microsoft.JSInterop": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Components.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Components.Web.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components.WebAssembly/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components.Web": "10.0.5", + "Microsoft.Extensions.Configuration.Binder": "10.0.5", + "Microsoft.Extensions.Configuration.Json": "10.0.5", + "Microsoft.Extensions.Logging": "10.0.5", + "Microsoft.JSInterop.WebAssembly": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Components.WebAssembly.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Components.WebAssembly.dll": { + "related": ".xml" + } + }, + "build": { + "build/net10.0/Microsoft.AspNetCore.Components.WebAssembly.props": {} + } + }, + "Microsoft.AspNetCore.Metadata/10.0.5": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Metadata.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Metadata.dll": { + "related": ".xml" + } + } + }, + "Microsoft.DotNet.HotReload.WebAssembly.Browser/10.0.201": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.DotNet.HotReload.WebAssembly.Browser.dll": {} + }, + "runtime": { + "lib/net10.0/Microsoft.DotNet.HotReload.WebAssembly.Browser.dll": {} + }, + "build": { + "buildTransitive/Microsoft.DotNet.HotReload.WebAssembly.Browser.props": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.DotNet.HotReload.WebAssembly.Browser.props": {} + } + }, + "Microsoft.Extensions.Configuration/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "10.0.5", + "Microsoft.Extensions.Primitives": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "10.0.5", + "Microsoft.Extensions.Configuration.Abstractions": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets": {} + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "10.0.5", + "Microsoft.Extensions.Configuration.Abstractions": "10.0.5", + "Microsoft.Extensions.FileProviders.Abstractions": "10.0.5", + "Microsoft.Extensions.FileProviders.Physical": "10.0.5", + "Microsoft.Extensions.Primitives": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Json/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "10.0.5", + "Microsoft.Extensions.Configuration.Abstractions": "10.0.5", + "Microsoft.Extensions.Configuration.FileExtensions": "10.0.5", + "Microsoft.Extensions.FileProviders.Abstractions": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Configuration.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.5": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Diagnostics/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "10.0.5", + "Microsoft.Extensions.Diagnostics.Abstractions": "10.0.5", + "Microsoft.Extensions.Options.ConfigurationExtensions": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Diagnostics.Abstractions/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.5", + "Microsoft.Extensions.Options": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Physical/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "10.0.5", + "Microsoft.Extensions.FileSystemGlobbing": "10.0.5", + "Microsoft.Extensions.Primitives": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.FileSystemGlobbing/10.0.5": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Localization/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Localization.Abstractions": "10.0.1", + "Microsoft.Extensions.Logging.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Localization.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Localization.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Localization.Abstractions/10.0.1": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.Localization.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Localization.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "10.0.5", + "Microsoft.Extensions.Logging.Abstractions": "10.0.5", + "Microsoft.Extensions.Options": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Options/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.5", + "Microsoft.Extensions.Primitives": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "10.0.5", + "Microsoft.Extensions.Configuration.Binder": "10.0.5", + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.5", + "Microsoft.Extensions.Options": "10.0.5", + "Microsoft.Extensions.Primitives": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Primitives/10.0.5": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Validation/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.5", + "Microsoft.Extensions.Options": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Validation.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Validation.dll": { + "related": ".xml" + } + } + }, + "Microsoft.JSInterop/10.0.5": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.JSInterop.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.JSInterop.dll": { + "related": ".xml" + } + } + }, + "Microsoft.JSInterop.WebAssembly/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.JSInterop": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.JSInterop.WebAssembly.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.JSInterop.WebAssembly.dll": { + "related": ".xml" + } + } + }, + "Microsoft.NET.ILLink.Tasks/10.0.5": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Tasks.props": {} + } + }, + "Microsoft.NET.Sdk.WebAssembly.Pack/10.0.5": { + "type": "package", + "build": { + "build/Microsoft.NET.Sdk.WebAssembly.Pack.props": {}, + "build/Microsoft.NET.Sdk.WebAssembly.Pack.targets": {} + } + }, + "MudBlazor/9.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "10.0.1", + "Microsoft.AspNetCore.Components.Web": "10.0.1", + "Microsoft.Extensions.Localization": "10.0.1" + }, + "compile": { + "lib/net10.0/MudBlazor.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/MudBlazor.dll": { + "related": ".xml" + } + }, + "build": { + "build/MudBlazor.targets": {}, + "buildTransitive/MudBlazor.props": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/MudBlazor.props": {} + } + } + }, + "net10.0/browser-wasm": { + "Microsoft.AspNetCore.App.Internal.Assets/10.0.5": { + "type": "package", + "build": { + "build/Microsoft.AspNetCore.App.Internal.Assets.props": {}, + "buildTransitive/Microsoft.AspNetCore.App.Internal.Assets.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.AspNetCore.App.Internal.Assets.targets": {} + } + }, + "Microsoft.AspNetCore.Authorization/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Metadata": "10.0.5", + "Microsoft.Extensions.Diagnostics": "10.0.5", + "Microsoft.Extensions.Logging.Abstractions": "10.0.5", + "Microsoft.Extensions.Options": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Authorization.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Authorization.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authorization": "10.0.5", + "Microsoft.AspNetCore.Components.Analyzers": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Components.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Components.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components.Analyzers/10.0.5": { + "type": "package", + "build": { + "buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets": {} + } + }, + "Microsoft.AspNetCore.Components.Forms/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "10.0.5", + "Microsoft.Extensions.Validation": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Components.Forms.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Components.Forms.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components.Web/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "10.0.5", + "Microsoft.AspNetCore.Components.Forms": "10.0.5", + "Microsoft.Extensions.DependencyInjection": "10.0.5", + "Microsoft.Extensions.Primitives": "10.0.5", + "Microsoft.JSInterop": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Components.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Components.Web.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components.WebAssembly/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components.Web": "10.0.5", + "Microsoft.Extensions.Configuration.Binder": "10.0.5", + "Microsoft.Extensions.Configuration.Json": "10.0.5", + "Microsoft.Extensions.Logging": "10.0.5", + "Microsoft.JSInterop.WebAssembly": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Components.WebAssembly.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Components.WebAssembly.dll": { + "related": ".xml" + } + }, + "build": { + "build/net10.0/Microsoft.AspNetCore.Components.WebAssembly.props": {} + } + }, + "Microsoft.AspNetCore.Metadata/10.0.5": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Metadata.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Metadata.dll": { + "related": ".xml" + } + } + }, + "Microsoft.DotNet.HotReload.WebAssembly.Browser/10.0.201": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.DotNet.HotReload.WebAssembly.Browser.dll": {} + }, + "runtime": { + "lib/net10.0/Microsoft.DotNet.HotReload.WebAssembly.Browser.dll": {} + }, + "build": { + "buildTransitive/Microsoft.DotNet.HotReload.WebAssembly.Browser.props": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.DotNet.HotReload.WebAssembly.Browser.props": {} + } + }, + "Microsoft.Extensions.Configuration/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "10.0.5", + "Microsoft.Extensions.Primitives": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "10.0.5", + "Microsoft.Extensions.Configuration.Abstractions": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets": {} + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "10.0.5", + "Microsoft.Extensions.Configuration.Abstractions": "10.0.5", + "Microsoft.Extensions.FileProviders.Abstractions": "10.0.5", + "Microsoft.Extensions.FileProviders.Physical": "10.0.5", + "Microsoft.Extensions.Primitives": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Json/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "10.0.5", + "Microsoft.Extensions.Configuration.Abstractions": "10.0.5", + "Microsoft.Extensions.Configuration.FileExtensions": "10.0.5", + "Microsoft.Extensions.FileProviders.Abstractions": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Configuration.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.5": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Diagnostics/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "10.0.5", + "Microsoft.Extensions.Diagnostics.Abstractions": "10.0.5", + "Microsoft.Extensions.Options.ConfigurationExtensions": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Diagnostics.Abstractions/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.5", + "Microsoft.Extensions.Options": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Physical/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "10.0.5", + "Microsoft.Extensions.FileSystemGlobbing": "10.0.5", + "Microsoft.Extensions.Primitives": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.FileSystemGlobbing/10.0.5": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Localization/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Localization.Abstractions": "10.0.1", + "Microsoft.Extensions.Logging.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Localization.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Localization.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Localization.Abstractions/10.0.1": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.Localization.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Localization.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "10.0.5", + "Microsoft.Extensions.Logging.Abstractions": "10.0.5", + "Microsoft.Extensions.Options": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Options/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.5", + "Microsoft.Extensions.Primitives": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "10.0.5", + "Microsoft.Extensions.Configuration.Binder": "10.0.5", + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.5", + "Microsoft.Extensions.Options": "10.0.5", + "Microsoft.Extensions.Primitives": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Primitives/10.0.5": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Validation/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.5", + "Microsoft.Extensions.Options": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Validation.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Validation.dll": { + "related": ".xml" + } + } + }, + "Microsoft.JSInterop/10.0.5": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.JSInterop.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.JSInterop.dll": { + "related": ".xml" + } + } + }, + "Microsoft.JSInterop.WebAssembly/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.JSInterop": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.JSInterop.WebAssembly.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.JSInterop.WebAssembly.dll": { + "related": ".xml" + } + } + }, + "Microsoft.NET.ILLink.Tasks/10.0.5": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Tasks.props": {} + } + }, + "Microsoft.NET.Sdk.WebAssembly.Pack/10.0.5": { + "type": "package", + "build": { + "build/Microsoft.NET.Sdk.WebAssembly.Pack.props": {}, + "build/Microsoft.NET.Sdk.WebAssembly.Pack.targets": {} + } + }, + "MudBlazor/9.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "10.0.1", + "Microsoft.AspNetCore.Components.Web": "10.0.1", + "Microsoft.Extensions.Localization": "10.0.1" + }, + "compile": { + "lib/net10.0/MudBlazor.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/MudBlazor.dll": { + "related": ".xml" + } + }, + "build": { + "build/MudBlazor.targets": {}, + "buildTransitive/MudBlazor.props": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/MudBlazor.props": {} + } + } + } + }, + "libraries": { + "Microsoft.AspNetCore.App.Internal.Assets/10.0.5": { + "sha512": "Oxw9Ps1/nd6c/EMCAI13AeJFEqXezAvCEOshMjUWmL7LeGirHJNzytR2e/3jINYg0j2TmPvNUowGHf+gp8zDSQ==", + "type": "package", + "path": "microsoft.aspnetcore.app.internal.assets/10.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "_framework/blazor.server.js", + "_framework/blazor.server.js.map", + "_framework/blazor.web.js", + "_framework/blazor.web.js.map", + "_framework/blazor.webassembly.js", + "_framework/blazor.webassembly.js.map", + "build/Microsoft.AspNetCore.App.Internal.Assets.props", + "build/Microsoft.AspNetCore.App.Internal.Assets.targets", + "buildMultiTargeting/Microsoft.AspNetCore.App.Internal.Assets.targets", + "buildTransitive/Microsoft.AspNetCore.App.Internal.Assets.targets", + "microsoft.aspnetcore.app.internal.assets.10.0.5.nupkg.sha512", + "microsoft.aspnetcore.app.internal.assets.nuspec" + ] + }, + "Microsoft.AspNetCore.Authorization/10.0.5": { + "sha512": "NbFi4wN6fUvZK4AKmixpfx0IvqtVimKEn8ZX28LkzZBVo09YnLbyRrJ1001IVQDLbV+aYpS/cLhVJu5JD0rY5A==", + "type": "package", + "path": "microsoft.aspnetcore.authorization/10.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.AspNetCore.Authorization.dll", + "lib/net10.0/Microsoft.AspNetCore.Authorization.xml", + "lib/net462/Microsoft.AspNetCore.Authorization.dll", + "lib/net462/Microsoft.AspNetCore.Authorization.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml", + "microsoft.aspnetcore.authorization.10.0.5.nupkg.sha512", + "microsoft.aspnetcore.authorization.nuspec" + ] + }, + "Microsoft.AspNetCore.Components/10.0.5": { + "sha512": "zQOaFWn6qGEnPPrhnZyXFjj2tKqxzFlPDTd1Ay8Hq6NKXbNVMH450sSHc5y4Al2XR0/kjNzZgkzTDpl+d7P8nw==", + "type": "package", + "path": "microsoft.aspnetcore.components/10.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net10.0/Microsoft.AspNetCore.Components.dll", + "lib/net10.0/Microsoft.AspNetCore.Components.xml", + "microsoft.aspnetcore.components.10.0.5.nupkg.sha512", + "microsoft.aspnetcore.components.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Analyzers/10.0.5": { + "sha512": "HbOtAp1Bt0RFmGme22XdrnnXCSv7GW4WhnTHunyoZ7Zj4Y5zd1kNQTODsX7mVYrfrD5v0Zw+FnM8Ka2E9w1CoA==", + "type": "package", + "path": "microsoft.aspnetcore.components.analyzers/10.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.10.0.5.nupkg.sha512", + "microsoft.aspnetcore.components.analyzers.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Forms/10.0.5": { + "sha512": "bk9RzweI3LjyfBfCdYOGg5kzSLbMh4oggQ53GtRE9kVKfnwciu4wr6M8cfOaJg30Nr/SGknmnMkl6e1ZEodV0w==", + "type": "package", + "path": "microsoft.aspnetcore.components.forms/10.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net10.0/Microsoft.AspNetCore.Components.Forms.dll", + "lib/net10.0/Microsoft.AspNetCore.Components.Forms.xml", + "microsoft.aspnetcore.components.forms.10.0.5.nupkg.sha512", + "microsoft.aspnetcore.components.forms.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Web/10.0.5": { + "sha512": "ZgCkyXhQba+nuFTaacCFzYbSN34tTvHI4UdWh5KZGAFZ2aIX9ya2TgNhYoZFL0f1PumNgi+PDkMJRKjPHFtrIg==", + "type": "package", + "path": "microsoft.aspnetcore.components.web/10.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net10.0/Microsoft.AspNetCore.Components.Web.dll", + "lib/net10.0/Microsoft.AspNetCore.Components.Web.xml", + "microsoft.aspnetcore.components.web.10.0.5.nupkg.sha512", + "microsoft.aspnetcore.components.web.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.WebAssembly/10.0.5": { + "sha512": "fjmhjvZpYTJVl/sxpDStP8+fQ6XEG8r9iuhafuTCp2nAAGPcJhsSND58he9BOekbxs6nMv2OECUGwtWqHBGFcg==", + "type": "package", + "path": "microsoft.aspnetcore.components.webassembly/10.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.txt", + "build/net10.0/Microsoft.AspNetCore.Components.WebAssembly.props", + "build/net10.0/blazor.webassembly.js", + "lib/net10.0/Microsoft.AspNetCore.Components.WebAssembly.dll", + "lib/net10.0/Microsoft.AspNetCore.Components.WebAssembly.xml", + "microsoft.aspnetcore.components.webassembly.10.0.5.nupkg.sha512", + "microsoft.aspnetcore.components.webassembly.nuspec" + ] + }, + "Microsoft.AspNetCore.Metadata/10.0.5": { + "sha512": "nXVB1K4RzyhDHKYWLiq3+aJopJZKO5ojFqHV9PZ74fe4VWM/8itoouqsd2KIqSooIwQ13UDNlPQfN2rWr7hc2A==", + "type": "package", + "path": "microsoft.aspnetcore.metadata/10.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.AspNetCore.Metadata.dll", + "lib/net10.0/Microsoft.AspNetCore.Metadata.xml", + "lib/net462/Microsoft.AspNetCore.Metadata.dll", + "lib/net462/Microsoft.AspNetCore.Metadata.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.xml", + "microsoft.aspnetcore.metadata.10.0.5.nupkg.sha512", + "microsoft.aspnetcore.metadata.nuspec" + ] + }, + "Microsoft.DotNet.HotReload.WebAssembly.Browser/10.0.201": { + "sha512": "4EAMH3CqtVwVm7Sx4DnNtZj/J0b+A1YGcTnCL6prhQ8ZHlwbVtZ3RmSyJdi85mSnLl+u94aVr8fElRGkjZkKmw==", + "type": "package", + "path": "microsoft.dotnet.hotreload.webassembly.browser/10.0.201", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "build/Microsoft.AspNetCore.StaticWebAssetEndpoints.props", + "build/Microsoft.AspNetCore.StaticWebAssets.props", + "build/Microsoft.DotNet.HotReload.WebAssembly.Browser.props", + "buildMultiTargeting/Microsoft.DotNet.HotReload.WebAssembly.Browser.props", + "buildTransitive/Microsoft.DotNet.HotReload.WebAssembly.Browser.props", + "lib/net10.0/Microsoft.DotNet.HotReload.WebAssembly.Browser.dll", + "microsoft.dotnet.hotreload.webassembly.browser.10.0.201.nupkg.sha512", + "microsoft.dotnet.hotreload.webassembly.browser.nuspec", + "staticwebassets/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js" + ] + }, + "Microsoft.Extensions.Configuration/10.0.5": { + "sha512": "8Rx5sqg04FttxrumyG6bmoRuFRgYzK6IVwF1i0/o0cXfKBdDeVpJejKHtJCMjyg9E/DNMVqpqOGe/tCT5gYvVA==", + "type": "package", + "path": "microsoft.extensions.configuration/10.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.targets", + "lib/net10.0/Microsoft.Extensions.Configuration.dll", + "lib/net10.0/Microsoft.Extensions.Configuration.xml", + "lib/net462/Microsoft.Extensions.Configuration.dll", + "lib/net462/Microsoft.Extensions.Configuration.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", + "microsoft.extensions.configuration.10.0.5.nupkg.sha512", + "microsoft.extensions.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/10.0.5": { + "sha512": "P09QpTHjqHmCLQOTC+WyLkoRNxek4NIvfWt+TnU0etoDUSRxcltyd6+j/ouRbMdLR0j44GqGO+lhI2M4fAHG4g==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/10.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net9.0/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.10.0.5.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Binder/10.0.5": { + "sha512": "99Z4rjyXopb1MIazDSPcvwYCUdYNO01Cf1GUs2WUjIFAbkGmwzj2vPa2k+3pheJRV+YgNd2QqRKHAri0oBAU4Q==", + "type": "package", + "path": "microsoft.extensions.configuration.binder/10.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.dll", + "analyzers/dotnet/cs/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/de/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/es/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/fr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/it/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/ja/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/ko/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/pl/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/pt-BR/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/ru/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/tr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/zh-Hans/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/zh-Hant/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets", + "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net10.0/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net462/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net462/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net9.0/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.10.0.5.nupkg.sha512", + "microsoft.extensions.configuration.binder.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.FileExtensions/10.0.5": { + "sha512": "OhTr0O79dP49734lLTqVveivVX9sDXxbI/8vjELAZTHXqoN90mdpgTAgwicJED42iaHMCcZcK6Bj+8wNyBikaw==", + "type": "package", + "path": "microsoft.extensions.configuration.fileextensions/10.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.FileExtensions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.FileExtensions.targets", + "lib/net10.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net10.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/net462/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net462/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net9.0/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.10.0.5.nupkg.sha512", + "microsoft.extensions.configuration.fileextensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Json/10.0.5": { + "sha512": "brBM/WP0YAUYh2+QqSYVdK8eQHYQTtTEUJXJ+84Zkdo2buGLja9VSrMIhgoeBUU7JBmcskAib8Lb/N83bvxgYQ==", + "type": "package", + "path": "microsoft.extensions.configuration.json/10.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Json.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Json.targets", + "lib/net10.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/net10.0/Microsoft.Extensions.Configuration.Json.xml", + "lib/net462/Microsoft.Extensions.Configuration.Json.dll", + "lib/net462/Microsoft.Extensions.Configuration.Json.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Json.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/net9.0/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.10.0.5.nupkg.sha512", + "microsoft.extensions.configuration.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/10.0.5": { + "sha512": "v1SVsowG6YE1YnHVGmLWz57YTRCQRx9pH5ebIESXfm5isI9gA3QaMyg/oMTzPpXYZwSAVDzYItGJKfmV+pqXkQ==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/10.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net9.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.10.0.5.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.5": { + "sha512": "iVMtq9eRvzyhx8949EGT0OCYJfXi737SbRVzWXE5GrOgGj5AaZ9eUuxA/BSUfmOMALKn/g8KfFaNQw0eiB3lyA==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net9.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.10.0.5.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Diagnostics/10.0.5": { + "sha512": "vAJHd4yOpmKoK+jBuYV7a3y+Ab9U4ARCc29b6qvMy276RgJFw9LFs0DdsPqOL3ahwzyrX7tM+i4cCxU/RX0qAg==", + "type": "package", + "path": "microsoft.extensions.diagnostics/10.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Diagnostics.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.targets", + "lib/net10.0/Microsoft.Extensions.Diagnostics.dll", + "lib/net10.0/Microsoft.Extensions.Diagnostics.xml", + "lib/net462/Microsoft.Extensions.Diagnostics.dll", + "lib/net462/Microsoft.Extensions.Diagnostics.xml", + "lib/net8.0/Microsoft.Extensions.Diagnostics.dll", + "lib/net8.0/Microsoft.Extensions.Diagnostics.xml", + "lib/net9.0/Microsoft.Extensions.Diagnostics.dll", + "lib/net9.0/Microsoft.Extensions.Diagnostics.xml", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.dll", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.xml", + "microsoft.extensions.diagnostics.10.0.5.nupkg.sha512", + "microsoft.extensions.diagnostics.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Diagnostics.Abstractions/10.0.5": { + "sha512": "/nYGrpa9/0BZofrVpBbbj+Ns8ZesiPE0V/KxsuHgDgHQopIzN54nRaQGSuvPw16/kI9sW1Zox5yyAPqvf0Jz6A==", + "type": "package", + "path": "microsoft.extensions.diagnostics.abstractions/10.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Diagnostics.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "microsoft.extensions.diagnostics.abstractions.10.0.5.nupkg.sha512", + "microsoft.extensions.diagnostics.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/10.0.5": { + "sha512": "nCBmCx0Xemlu65ZiWMcXbvfvtznKxf4/YYKF9R28QkqdI9lTikedGqzJ28/xmdGGsxUnsP5/3TQGpiPwVjK0dA==", + "type": "package", + "path": "microsoft.extensions.fileproviders.abstractions/10.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.FileProviders.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net9.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.10.0.5.nupkg.sha512", + "microsoft.extensions.fileproviders.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Physical/10.0.5": { + "sha512": "dMu5kUPSfol1Rqhmr6nWPSmbFjDe9w6bkoKithG17bWTZA0UyKirTatM5mqYUN3mGpNA0MorlusIoVTh6J7o5g==", + "type": "package", + "path": "microsoft.extensions.fileproviders.physical/10.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.FileProviders.Physical.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets", + "lib/net10.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net10.0/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/net462/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net462/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/net9.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net9.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.10.0.5.nupkg.sha512", + "microsoft.extensions.fileproviders.physical.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileSystemGlobbing/10.0.5": { + "sha512": "mOE3ARusNQR0a5x8YOcnUbfyyXGqoAWQtEc7qFOfNJgruDWQLo39Re+3/Lzj5pLPFuFYj8hN4dgKzaSQDKiOCw==", + "type": "package", + "path": "microsoft.extensions.filesystemglobbing/10.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.FileSystemGlobbing.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets", + "lib/net10.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net10.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/net462/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net462/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/net9.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net9.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "microsoft.extensions.filesystemglobbing.10.0.5.nupkg.sha512", + "microsoft.extensions.filesystemglobbing.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Localization/10.0.1": { + "sha512": "yJBI3IRm9uTRu7cPc7i90/8+CuiiJJ5M4khj6iWQcYnq6VrG+H2U5GzpRLtkVCsgxc1LjtkNMEbSDatfBA+z5g==", + "type": "package", + "path": "microsoft.extensions.localization/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.Extensions.Localization.dll", + "lib/net10.0/Microsoft.Extensions.Localization.xml", + "lib/net462/Microsoft.Extensions.Localization.dll", + "lib/net462/Microsoft.Extensions.Localization.xml", + "lib/netstandard2.0/Microsoft.Extensions.Localization.dll", + "lib/netstandard2.0/Microsoft.Extensions.Localization.xml", + "microsoft.extensions.localization.10.0.1.nupkg.sha512", + "microsoft.extensions.localization.nuspec" + ] + }, + "Microsoft.Extensions.Localization.Abstractions/10.0.1": { + "sha512": "TQSQWF+iZdtGNgPiu7gKUqrTEeRD/mhk7KeYiuEwmTUPbawsYfPSNzSvOOeueJ0nU1697X8HZ2vCp2ByHNHkZg==", + "type": "package", + "path": "microsoft.extensions.localization.abstractions/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.Extensions.Localization.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Localization.Abstractions.xml", + "lib/net462/Microsoft.Extensions.Localization.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Localization.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.xml", + "microsoft.extensions.localization.abstractions.10.0.1.nupkg.sha512", + "microsoft.extensions.localization.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Logging/10.0.5": { + "sha512": "+XTMKQyDWg4ODoNHU/BN3BaI1jhGO7VCS+BnzT/4IauiG6y2iPAte7MyD7rHKS+hNP0TkFkjrae8DFjDUxtcxg==", + "type": "package", + "path": "microsoft.extensions.logging/10.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", + "lib/net10.0/Microsoft.Extensions.Logging.dll", + "lib/net10.0/Microsoft.Extensions.Logging.xml", + "lib/net462/Microsoft.Extensions.Logging.dll", + "lib/net462/Microsoft.Extensions.Logging.xml", + "lib/net8.0/Microsoft.Extensions.Logging.dll", + "lib/net8.0/Microsoft.Extensions.Logging.xml", + "lib/net9.0/Microsoft.Extensions.Logging.dll", + "lib/net9.0/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.10.0.5.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.5": { + "sha512": "9HOdqlDtPptVcmKAjsQ/Nr5Rxfq6FMYLdhvZh1lVmeKR738qeYecQD7+ldooXf+u2KzzR1kafSphWngIM3C6ug==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/10.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "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", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net9.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.10.0.5.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/10.0.5": { + "sha512": "MDaQMdUplw0AIRhWWmbLA7yQEXaLIHb+9CTroTiNS8OlI0LMXS4LCxtopqauiqGCWlRgJ+xyraVD8t6veRAFbw==", + "type": "package", + "path": "microsoft.extensions.options/10.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Options.targets", + "buildTransitive/net462/Microsoft.Extensions.Options.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", + "lib/net10.0/Microsoft.Extensions.Options.dll", + "lib/net10.0/Microsoft.Extensions.Options.xml", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net8.0/Microsoft.Extensions.Options.dll", + "lib/net8.0/Microsoft.Extensions.Options.xml", + "lib/net9.0/Microsoft.Extensions.Options.dll", + "lib/net9.0/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.10.0.5.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.5": { + "sha512": "BB9uUW3+6Rxu1R97OB1H/13lUF8P2+H1+eDhpZlK30kDh/6E4EKHBUqTp+ilXQmZLzsRErxON8aBSR6WpUKJdg==", + "type": "package", + "path": "microsoft.extensions.options.configurationextensions/10.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Options.ConfigurationExtensions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.ConfigurationExtensions.targets", + "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "microsoft.extensions.options.configurationextensions.10.0.5.nupkg.sha512", + "microsoft.extensions.options.configurationextensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/10.0.5": { + "sha512": "/HUHJ0tw/LQvD0DZrz50eQy/3z7PfX7WWEaXnjKTV9/TNdcgFlNTZGo49QhS7PTmhDqMyHRMqAXSBxLh0vso4g==", + "type": "package", + "path": "microsoft.extensions.primitives/10.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net10.0/Microsoft.Extensions.Primitives.dll", + "lib/net10.0/Microsoft.Extensions.Primitives.xml", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net8.0/Microsoft.Extensions.Primitives.dll", + "lib/net8.0/Microsoft.Extensions.Primitives.xml", + "lib/net9.0/Microsoft.Extensions.Primitives.dll", + "lib/net9.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.10.0.5.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Validation/10.0.5": { + "sha512": "tqDW7LtEAQOQ23UY27d57YnHS6+YqwZpe90n/5hhmchlVfEoO9JezobReKfOBW/wqRXIU8GG3qAt4QaadVU7ww==", + "type": "package", + "path": "microsoft.extensions.validation/10.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/cs/Microsoft.Extensions.Validation.ValidationsGenerator.dll", + "lib/net10.0/Microsoft.Extensions.Validation.dll", + "lib/net10.0/Microsoft.Extensions.Validation.xml", + "microsoft.extensions.validation.10.0.5.nupkg.sha512", + "microsoft.extensions.validation.nuspec" + ] + }, + "Microsoft.JSInterop/10.0.5": { + "sha512": "aSoRoF4QtBhg5wkAYXA+k+Jv+eY3bN98hf19MIQs3XM0wkzjY02B4AqpxptZOidNjf2552YSbnCnck0Gsl5DcQ==", + "type": "package", + "path": "microsoft.jsinterop/10.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.JSInterop.dll", + "lib/net10.0/Microsoft.JSInterop.xml", + "microsoft.jsinterop.10.0.5.nupkg.sha512", + "microsoft.jsinterop.nuspec" + ] + }, + "Microsoft.JSInterop.WebAssembly/10.0.5": { + "sha512": "9iva1I1opPJA1xMSGTNmbyLhyzw383l6StST9gebB/UEBrYuadzwsv7O3eKAhmJVsPUGy6wWo4SVUcfFnPNQXA==", + "type": "package", + "path": "microsoft.jsinterop.webassembly/10.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net10.0/Microsoft.JSInterop.WebAssembly.dll", + "lib/net10.0/Microsoft.JSInterop.WebAssembly.xml", + "microsoft.jsinterop.webassembly.10.0.5.nupkg.sha512", + "microsoft.jsinterop.webassembly.nuspec" + ] + }, + "Microsoft.NET.ILLink.Tasks/10.0.5": { + "sha512": "A+5ZuQ0f449tM+MQrhf6R9ZX7lYpjk/ODEwLYKrnF6111rtARx8fVsm4YznUnQiKnnXfaXNBqgxmil6RW3L3SA==", + "type": "package", + "path": "microsoft.net.illink.tasks/10.0.5", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "Sdk/Sdk.props", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/cs/ILLink.CodeFixProvider.dll", + "analyzers/dotnet/cs/ILLink.RoslynAnalyzer.dll", + "build/Microsoft.NET.ILLink.Analyzers.props", + "build/Microsoft.NET.ILLink.Tasks.props", + "build/Microsoft.NET.ILLink.targets", + "microsoft.net.illink.tasks.10.0.5.nupkg.sha512", + "microsoft.net.illink.tasks.nuspec", + "tools/net/ILLink.Tasks.deps.json", + "tools/net/ILLink.Tasks.dll", + "tools/net/Mono.Cecil.Mdb.dll", + "tools/net/Mono.Cecil.Pdb.dll", + "tools/net/Mono.Cecil.Rocks.dll", + "tools/net/Mono.Cecil.dll", + "tools/net/Sdk/Sdk.props", + "tools/net/build/Microsoft.NET.ILLink.Analyzers.props", + "tools/net/build/Microsoft.NET.ILLink.Tasks.props", + "tools/net/build/Microsoft.NET.ILLink.targets", + "tools/net/illink.deps.json", + "tools/net/illink.dll", + "tools/net/illink.runtimeconfig.json", + "tools/netframework/ILLink.Tasks.dll", + "tools/netframework/ILLink.Tasks.dll.config", + "tools/netframework/Mono.Cecil.Mdb.dll", + "tools/netframework/Mono.Cecil.Pdb.dll", + "tools/netframework/Mono.Cecil.Rocks.dll", + "tools/netframework/Mono.Cecil.dll", + "tools/netframework/Sdk/Sdk.props", + "tools/netframework/System.Buffers.dll", + "tools/netframework/System.Collections.Immutable.dll", + "tools/netframework/System.Memory.dll", + "tools/netframework/System.Numerics.Vectors.dll", + "tools/netframework/System.Reflection.Metadata.dll", + "tools/netframework/System.Runtime.CompilerServices.Unsafe.dll", + "tools/netframework/build/Microsoft.NET.ILLink.Analyzers.props", + "tools/netframework/build/Microsoft.NET.ILLink.Tasks.props", + "tools/netframework/build/Microsoft.NET.ILLink.targets", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.NET.Sdk.WebAssembly.Pack/10.0.5": { + "sha512": "iFfcR+mLmkHG2pbmBe7wsCmoL3RqBmkl5eyENVuloUHsn51NBQ3TobP62WVrzG4ItOPfxxy6FQbXSvP2Xc5IIw==", + "type": "package", + "path": "microsoft.net.sdk.webassembly.pack/10.0.5", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "WasmAppHost/BrowserDebugHost.deps.json", + "WasmAppHost/BrowserDebugHost.dll", + "WasmAppHost/BrowserDebugHost.runtimeconfig.json", + "WasmAppHost/BrowserDebugHost.staticwebassets.endpoints.json", + "WasmAppHost/BrowserDebugProxy.dll", + "WasmAppHost/Microsoft.CodeAnalysis.CSharp.Scripting.dll", + "WasmAppHost/Microsoft.CodeAnalysis.CSharp.dll", + "WasmAppHost/Microsoft.CodeAnalysis.Scripting.dll", + "WasmAppHost/Microsoft.CodeAnalysis.dll", + "WasmAppHost/Microsoft.FileFormats.dll", + "WasmAppHost/Microsoft.NET.WebAssembly.Webcil.dll", + "WasmAppHost/Microsoft.SymbolStore.dll", + "WasmAppHost/Newtonsoft.Json.dll", + "WasmAppHost/WasmAppHost.deps.json", + "WasmAppHost/WasmAppHost.dll", + "WasmAppHost/WasmAppHost.runtimeconfig.json", + "WasmAppHost/WasmAppHost.staticwebassets.endpoints.json", + "build/Microsoft.NET.Sdk.WebAssembly.Browser.props", + "build/Microsoft.NET.Sdk.WebAssembly.Browser.targets", + "build/Microsoft.NET.Sdk.WebAssembly.Pack.props", + "build/Microsoft.NET.Sdk.WebAssembly.Pack.targets", + "build/Wasm.web.config", + "build/browser.runtimeconfig.template.json", + "microsoft.net.sdk.webassembly.pack.10.0.5.nupkg.sha512", + "microsoft.net.sdk.webassembly.pack.nuspec", + "tools/net10.0/Microsoft.NET.Sdk.WebAssembly.Pack.Tasks.dll", + "tools/net10.0/Microsoft.NET.WebAssembly.Webcil.dll", + "tools/net472/Microsoft.NET.Sdk.WebAssembly.Pack.Tasks.dll", + "tools/net472/Microsoft.NET.WebAssembly.Webcil.dll" + ] + }, + "MudBlazor/9.2.0": { + "sha512": "ckAndxv3to3CahczgLrqKdzhPV3750B7taqICSIAdKXoh0dSyqcUcjAI5YlE5s7NB7C+NdpkfWpK+dKQwxvUOA==", + "type": "package", + "path": "mudblazor/9.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "Nuget.png", + "README.md", + "analyzers/dotnet/cs/MudBlazor.Analyzers.CodeFixes.dll", + "analyzers/dotnet/cs/MudBlazor.Analyzers.dll", + "build/Microsoft.AspNetCore.StaticWebAssetEndpoints.props", + "build/Microsoft.AspNetCore.StaticWebAssets.props", + "build/MudBlazor.props", + "build/MudBlazor.targets", + "buildMultiTargeting/MudBlazor.props", + "buildTransitive/MudBlazor.props", + "lib/net10.0/MudBlazor.dll", + "lib/net10.0/MudBlazor.xml", + "lib/net8.0/MudBlazor.dll", + "lib/net8.0/MudBlazor.xml", + "lib/net9.0/MudBlazor.dll", + "lib/net9.0/MudBlazor.xml", + "mudblazor.9.2.0.nupkg.sha512", + "mudblazor.nuspec", + "staticwebassets/MudBlazor.min.css", + "staticwebassets/MudBlazor.min.js", + "staticwebassets/MudBlazor.min.js.map" + ] + } + }, + "projectFileDependencyGroups": { + "net10.0": [ + "Microsoft.AspNetCore.App.Internal.Assets >= 10.0.5", + "Microsoft.AspNetCore.Components.WebAssembly >= 10.*", + "Microsoft.DotNet.HotReload.WebAssembly.Browser >= 10.0.201", + "Microsoft.NET.ILLink.Tasks >= 10.0.5", + "Microsoft.NET.Sdk.WebAssembly.Pack >= 10.0.5", + "MudBlazor >= 9.*" + ] + }, + "packageFolders": { + "C:\\Users\\wiela\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\OnProfNext.Client.csproj", + "projectName": "OnProfNext.Client", + "projectPath": "D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\OnProfNext.Client.csproj", + "packagesPath": "C:\\Users\\wiela\\.nuget\\packages\\", + "outputPath": "D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\wiela\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.200" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Microsoft.AspNetCore.App.Internal.Assets": { + "suppressParent": "All", + "target": "Package", + "version": "[10.0.5, )", + "autoReferenced": true + }, + "Microsoft.AspNetCore.Components.WebAssembly": { + "target": "Package", + "version": "[10.*, )" + }, + "Microsoft.DotNet.HotReload.WebAssembly.Browser": { + "target": "Package", + "version": "[10.0.201, )", + "autoReferenced": true + }, + "Microsoft.NET.ILLink.Tasks": { + "suppressParent": "All", + "target": "Package", + "version": "[10.0.5, )", + "autoReferenced": true + }, + "Microsoft.NET.Sdk.WebAssembly.Pack": { + "suppressParent": "All", + "target": "Package", + "version": "[10.0.5, )", + "autoReferenced": true + }, + "MudBlazor": { + "target": "Package", + "version": "[9.*, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.201/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + }, + "runtimes": { + "browser-wasm": { + "#import": [] + } + } + } +} \ No newline at end of file diff --git a/OnProfNext.Client/obj/project.nuget.cache b/OnProfNext.Client/obj/project.nuget.cache new file mode 100644 index 0000000..8ea73c2 --- /dev/null +++ b/OnProfNext.Client/obj/project.nuget.cache @@ -0,0 +1,43 @@ +{ + "version": 2, + "dgSpecHash": "BRATUmqDVSI=", + "success": true, + "projectFilePath": "D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\OnProfNext.Client.csproj", + "expectedPackageFiles": [ + "C:\\Users\\wiela\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.5\\microsoft.aspnetcore.app.internal.assets.10.0.5.nupkg.sha512", + "C:\\Users\\wiela\\.nuget\\packages\\microsoft.aspnetcore.authorization\\10.0.5\\microsoft.aspnetcore.authorization.10.0.5.nupkg.sha512", + "C:\\Users\\wiela\\.nuget\\packages\\microsoft.aspnetcore.components\\10.0.5\\microsoft.aspnetcore.components.10.0.5.nupkg.sha512", + "C:\\Users\\wiela\\.nuget\\packages\\microsoft.aspnetcore.components.analyzers\\10.0.5\\microsoft.aspnetcore.components.analyzers.10.0.5.nupkg.sha512", + "C:\\Users\\wiela\\.nuget\\packages\\microsoft.aspnetcore.components.forms\\10.0.5\\microsoft.aspnetcore.components.forms.10.0.5.nupkg.sha512", + "C:\\Users\\wiela\\.nuget\\packages\\microsoft.aspnetcore.components.web\\10.0.5\\microsoft.aspnetcore.components.web.10.0.5.nupkg.sha512", + "C:\\Users\\wiela\\.nuget\\packages\\microsoft.aspnetcore.components.webassembly\\10.0.5\\microsoft.aspnetcore.components.webassembly.10.0.5.nupkg.sha512", + "C:\\Users\\wiela\\.nuget\\packages\\microsoft.aspnetcore.metadata\\10.0.5\\microsoft.aspnetcore.metadata.10.0.5.nupkg.sha512", + "C:\\Users\\wiela\\.nuget\\packages\\microsoft.dotnet.hotreload.webassembly.browser\\10.0.201\\microsoft.dotnet.hotreload.webassembly.browser.10.0.201.nupkg.sha512", + "C:\\Users\\wiela\\.nuget\\packages\\microsoft.extensions.configuration\\10.0.5\\microsoft.extensions.configuration.10.0.5.nupkg.sha512", + "C:\\Users\\wiela\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\10.0.5\\microsoft.extensions.configuration.abstractions.10.0.5.nupkg.sha512", + "C:\\Users\\wiela\\.nuget\\packages\\microsoft.extensions.configuration.binder\\10.0.5\\microsoft.extensions.configuration.binder.10.0.5.nupkg.sha512", + "C:\\Users\\wiela\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\10.0.5\\microsoft.extensions.configuration.fileextensions.10.0.5.nupkg.sha512", + "C:\\Users\\wiela\\.nuget\\packages\\microsoft.extensions.configuration.json\\10.0.5\\microsoft.extensions.configuration.json.10.0.5.nupkg.sha512", + "C:\\Users\\wiela\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\10.0.5\\microsoft.extensions.dependencyinjection.10.0.5.nupkg.sha512", + "C:\\Users\\wiela\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\10.0.5\\microsoft.extensions.dependencyinjection.abstractions.10.0.5.nupkg.sha512", + "C:\\Users\\wiela\\.nuget\\packages\\microsoft.extensions.diagnostics\\10.0.5\\microsoft.extensions.diagnostics.10.0.5.nupkg.sha512", + "C:\\Users\\wiela\\.nuget\\packages\\microsoft.extensions.diagnostics.abstractions\\10.0.5\\microsoft.extensions.diagnostics.abstractions.10.0.5.nupkg.sha512", + "C:\\Users\\wiela\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\10.0.5\\microsoft.extensions.fileproviders.abstractions.10.0.5.nupkg.sha512", + "C:\\Users\\wiela\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\10.0.5\\microsoft.extensions.fileproviders.physical.10.0.5.nupkg.sha512", + "C:\\Users\\wiela\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\10.0.5\\microsoft.extensions.filesystemglobbing.10.0.5.nupkg.sha512", + "C:\\Users\\wiela\\.nuget\\packages\\microsoft.extensions.localization\\10.0.1\\microsoft.extensions.localization.10.0.1.nupkg.sha512", + "C:\\Users\\wiela\\.nuget\\packages\\microsoft.extensions.localization.abstractions\\10.0.1\\microsoft.extensions.localization.abstractions.10.0.1.nupkg.sha512", + "C:\\Users\\wiela\\.nuget\\packages\\microsoft.extensions.logging\\10.0.5\\microsoft.extensions.logging.10.0.5.nupkg.sha512", + "C:\\Users\\wiela\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\10.0.5\\microsoft.extensions.logging.abstractions.10.0.5.nupkg.sha512", + "C:\\Users\\wiela\\.nuget\\packages\\microsoft.extensions.options\\10.0.5\\microsoft.extensions.options.10.0.5.nupkg.sha512", + "C:\\Users\\wiela\\.nuget\\packages\\microsoft.extensions.options.configurationextensions\\10.0.5\\microsoft.extensions.options.configurationextensions.10.0.5.nupkg.sha512", + "C:\\Users\\wiela\\.nuget\\packages\\microsoft.extensions.primitives\\10.0.5\\microsoft.extensions.primitives.10.0.5.nupkg.sha512", + "C:\\Users\\wiela\\.nuget\\packages\\microsoft.extensions.validation\\10.0.5\\microsoft.extensions.validation.10.0.5.nupkg.sha512", + "C:\\Users\\wiela\\.nuget\\packages\\microsoft.jsinterop\\10.0.5\\microsoft.jsinterop.10.0.5.nupkg.sha512", + "C:\\Users\\wiela\\.nuget\\packages\\microsoft.jsinterop.webassembly\\10.0.5\\microsoft.jsinterop.webassembly.10.0.5.nupkg.sha512", + "C:\\Users\\wiela\\.nuget\\packages\\microsoft.net.illink.tasks\\10.0.5\\microsoft.net.illink.tasks.10.0.5.nupkg.sha512", + "C:\\Users\\wiela\\.nuget\\packages\\microsoft.net.sdk.webassembly.pack\\10.0.5\\microsoft.net.sdk.webassembly.pack.10.0.5.nupkg.sha512", + "C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\mudblazor.9.2.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/OnProfNext.Client/wwwroot/appsettings.Development.json b/OnProfNext.Client/wwwroot/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/OnProfNext.Client/wwwroot/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/OnProfNext.Client/wwwroot/appsettings.json b/OnProfNext.Client/wwwroot/appsettings.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/OnProfNext.Client/wwwroot/appsettings.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/OnProfNext.sln b/OnProfNext.sln new file mode 100644 index 0000000..41ba6c9 --- /dev/null +++ b/OnProfNext.sln @@ -0,0 +1,50 @@ +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.0.0 +MinimumVisualStudioVersion = 16.0.0.0 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OnProfNext", "OnProfNext\OnProfNext.csproj", "{68957CD8-4B1D-4CC3-834D-7AB1F210CBFE}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OnProfNext.Client", "OnProfNext.Client\OnProfNext.Client.csproj", "{012CCE4C-BB18-4E37-80A2-0EDDA90A2317}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|Any CPU = Release|Any CPU + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {012CCE4C-BB18-4E37-80A2-0EDDA90A2317}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {012CCE4C-BB18-4E37-80A2-0EDDA90A2317}.Debug|Any CPU.Build.0 = Debug|Any CPU + {012CCE4C-BB18-4E37-80A2-0EDDA90A2317}.Debug|x64.ActiveCfg = Debug|Any CPU + {012CCE4C-BB18-4E37-80A2-0EDDA90A2317}.Debug|x64.Build.0 = Debug|Any CPU + {012CCE4C-BB18-4E37-80A2-0EDDA90A2317}.Debug|x86.ActiveCfg = Debug|Any CPU + {012CCE4C-BB18-4E37-80A2-0EDDA90A2317}.Debug|x86.Build.0 = Debug|Any CPU + {012CCE4C-BB18-4E37-80A2-0EDDA90A2317}.Release|Any CPU.ActiveCfg = Release|Any CPU + {012CCE4C-BB18-4E37-80A2-0EDDA90A2317}.Release|Any CPU.Build.0 = Release|Any CPU + {012CCE4C-BB18-4E37-80A2-0EDDA90A2317}.Release|x64.ActiveCfg = Release|Any CPU + {012CCE4C-BB18-4E37-80A2-0EDDA90A2317}.Release|x64.Build.0 = Release|Any CPU + {012CCE4C-BB18-4E37-80A2-0EDDA90A2317}.Release|x86.ActiveCfg = Release|Any CPU + {012CCE4C-BB18-4E37-80A2-0EDDA90A2317}.Release|x86.Build.0 = Release|Any CPU + {68957CD8-4B1D-4CC3-834D-7AB1F210CBFE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {68957CD8-4B1D-4CC3-834D-7AB1F210CBFE}.Debug|Any CPU.Build.0 = Debug|Any CPU + {68957CD8-4B1D-4CC3-834D-7AB1F210CBFE}.Debug|x64.ActiveCfg = Debug|Any CPU + {68957CD8-4B1D-4CC3-834D-7AB1F210CBFE}.Debug|x64.Build.0 = Debug|Any CPU + {68957CD8-4B1D-4CC3-834D-7AB1F210CBFE}.Debug|x86.ActiveCfg = Debug|Any CPU + {68957CD8-4B1D-4CC3-834D-7AB1F210CBFE}.Debug|x86.Build.0 = Debug|Any CPU + {68957CD8-4B1D-4CC3-834D-7AB1F210CBFE}.Release|Any CPU.ActiveCfg = Release|Any CPU + {68957CD8-4B1D-4CC3-834D-7AB1F210CBFE}.Release|Any CPU.Build.0 = Release|Any CPU + {68957CD8-4B1D-4CC3-834D-7AB1F210CBFE}.Release|x64.ActiveCfg = Release|Any CPU + {68957CD8-4B1D-4CC3-834D-7AB1F210CBFE}.Release|x64.Build.0 = Release|Any CPU + {68957CD8-4B1D-4CC3-834D-7AB1F210CBFE}.Release|x86.ActiveCfg = Release|Any CPU + {68957CD8-4B1D-4CC3-834D-7AB1F210CBFE}.Release|x86.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {7B7A04CE-B760-4308-B138-4E8894FBF560} + EndGlobalSection +EndGlobal diff --git a/OnProfNext/Components/App.razor b/OnProfNext/Components/App.razor new file mode 100644 index 0000000..57852f3 --- /dev/null +++ b/OnProfNext/Components/App.razor @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/OnProfNext/Components/Pages/Error.razor b/OnProfNext/Components/Pages/Error.razor new file mode 100644 index 0000000..576cc2d --- /dev/null +++ b/OnProfNext/Components/Pages/Error.razor @@ -0,0 +1,36 @@ +@page "/Error" +@using System.Diagnostics + +Error + +

Error.

+

An error occurred while processing your request.

+ +@if (ShowRequestId) +{ +

+ Request ID: @RequestId +

+} + +

Development Mode

+

+ Swapping to Development environment will display more detailed information about the error that occurred. +

+

+ The Development environment shouldn't be enabled for deployed applications. + It can result in displaying sensitive information from exceptions to end users. + For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development + and restarting the app. +

+ +@code{ + [CascadingParameter] + private HttpContext? HttpContext { get; set; } + + private string? RequestId { get; set; } + private bool ShowRequestId => !string.IsNullOrEmpty(RequestId); + + protected override void OnInitialized() => + RequestId = Activity.Current?.Id ?? HttpContext?.TraceIdentifier; +} diff --git a/OnProfNext/Components/_Imports.razor b/OnProfNext/Components/_Imports.razor new file mode 100644 index 0000000..6be7301 --- /dev/null +++ b/OnProfNext/Components/_Imports.razor @@ -0,0 +1,14 @@ +@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 static Microsoft.AspNetCore.Components.Web.RenderMode +@using Microsoft.AspNetCore.Components.Web.Virtualization +@using Microsoft.JSInterop +@using MudBlazor +@using MudBlazor.Services +@using OnProfNext +@using OnProfNext.Client +@using OnProfNext.Client.Layout +@using OnProfNext.Components diff --git a/OnProfNext/OnProfNext.csproj b/OnProfNext/OnProfNext.csproj new file mode 100644 index 0000000..03b03d6 --- /dev/null +++ b/OnProfNext/OnProfNext.csproj @@ -0,0 +1,16 @@ + + + + net10.0 + enable + enable + true + + + + + + + + + \ No newline at end of file diff --git a/OnProfNext/OnProfNext.csproj.user b/OnProfNext/OnProfNext.csproj.user new file mode 100644 index 0000000..9ff5820 --- /dev/null +++ b/OnProfNext/OnProfNext.csproj.user @@ -0,0 +1,6 @@ + + + + https + + \ No newline at end of file diff --git a/OnProfNext/Program.cs b/OnProfNext/Program.cs new file mode 100644 index 0000000..f50534a --- /dev/null +++ b/OnProfNext/Program.cs @@ -0,0 +1,41 @@ +using MudBlazor.Services; +using OnProfNext.Client.Pages; +using OnProfNext.Components; + +var builder = WebApplication.CreateBuilder(args); + +// Add MudBlazor services +builder.Services.AddMudServices(); + +// Add services to the container. +builder.Services.AddRazorComponents() + .AddInteractiveServerComponents() + .AddInteractiveWebAssemblyComponents(); + +var app = builder.Build(); + +// Configure the HTTP request pipeline. +if (app.Environment.IsDevelopment()) +{ + app.UseWebAssemblyDebugging(); +} +else +{ + app.UseExceptionHandler("/Error", createScopeForErrors: true); + // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts. + app.UseHsts(); +} +app.UseStatusCodePagesWithReExecute("/not-found", createScopeForStatusCodePages: true); + +app.UseHttpsRedirection(); + + +app.UseAntiforgery(); + +app.MapStaticAssets(); +app.MapRazorComponents() + .AddInteractiveServerRenderMode() + .AddInteractiveWebAssemblyRenderMode() + .AddAdditionalAssemblies(typeof(OnProfNext.Client._Imports).Assembly); + +app.Run(); diff --git a/OnProfNext/Properties/launchSettings.json b/OnProfNext/Properties/launchSettings.json new file mode 100644 index 0000000..a7b97ad --- /dev/null +++ b/OnProfNext/Properties/launchSettings.json @@ -0,0 +1,25 @@ +{ + "$schema": "https://json.schemastore.org/launchsettings.json", + "profiles": { + "http": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}", + "applicationUrl": "http://localhost:5235", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "https": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}", + "applicationUrl": "https://localhost:7109;http://localhost:5235", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } + } diff --git a/OnProfNext/appsettings.Development.json b/OnProfNext/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/OnProfNext/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/OnProfNext/appsettings.json b/OnProfNext/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/OnProfNext/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/OnProfNext/bin/Debug/net10.0/BlazorDebugProxy/BrowserDebugHost.dll b/OnProfNext/bin/Debug/net10.0/BlazorDebugProxy/BrowserDebugHost.dll new file mode 100644 index 0000000..4ea518c Binary files /dev/null and b/OnProfNext/bin/Debug/net10.0/BlazorDebugProxy/BrowserDebugHost.dll differ diff --git a/OnProfNext/bin/Debug/net10.0/BlazorDebugProxy/BrowserDebugHost.runtimeconfig.json b/OnProfNext/bin/Debug/net10.0/BlazorDebugProxy/BrowserDebugHost.runtimeconfig.json new file mode 100644 index 0000000..403e6b0 --- /dev/null +++ b/OnProfNext/bin/Debug/net10.0/BlazorDebugProxy/BrowserDebugHost.runtimeconfig.json @@ -0,0 +1,21 @@ +{ + "runtimeOptions": { + "tfm": "net10.0", + "rollForward": "Major", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "10.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "10.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/OnProfNext/bin/Debug/net10.0/BlazorDebugProxy/BrowserDebugProxy.dll b/OnProfNext/bin/Debug/net10.0/BlazorDebugProxy/BrowserDebugProxy.dll new file mode 100644 index 0000000..679edbb Binary files /dev/null and b/OnProfNext/bin/Debug/net10.0/BlazorDebugProxy/BrowserDebugProxy.dll differ diff --git a/OnProfNext/bin/Debug/net10.0/BlazorDebugProxy/Microsoft.CodeAnalysis.CSharp.Scripting.dll b/OnProfNext/bin/Debug/net10.0/BlazorDebugProxy/Microsoft.CodeAnalysis.CSharp.Scripting.dll new file mode 100644 index 0000000..9840644 Binary files /dev/null and b/OnProfNext/bin/Debug/net10.0/BlazorDebugProxy/Microsoft.CodeAnalysis.CSharp.Scripting.dll differ diff --git a/OnProfNext/bin/Debug/net10.0/BlazorDebugProxy/Microsoft.CodeAnalysis.CSharp.dll b/OnProfNext/bin/Debug/net10.0/BlazorDebugProxy/Microsoft.CodeAnalysis.CSharp.dll new file mode 100644 index 0000000..a7d3c68 Binary files /dev/null and b/OnProfNext/bin/Debug/net10.0/BlazorDebugProxy/Microsoft.CodeAnalysis.CSharp.dll differ diff --git a/OnProfNext/bin/Debug/net10.0/BlazorDebugProxy/Microsoft.CodeAnalysis.Scripting.dll b/OnProfNext/bin/Debug/net10.0/BlazorDebugProxy/Microsoft.CodeAnalysis.Scripting.dll new file mode 100644 index 0000000..2ac0ee3 Binary files /dev/null and b/OnProfNext/bin/Debug/net10.0/BlazorDebugProxy/Microsoft.CodeAnalysis.Scripting.dll differ diff --git a/OnProfNext/bin/Debug/net10.0/BlazorDebugProxy/Microsoft.CodeAnalysis.dll b/OnProfNext/bin/Debug/net10.0/BlazorDebugProxy/Microsoft.CodeAnalysis.dll new file mode 100644 index 0000000..a088727 Binary files /dev/null and b/OnProfNext/bin/Debug/net10.0/BlazorDebugProxy/Microsoft.CodeAnalysis.dll differ diff --git a/OnProfNext/bin/Debug/net10.0/BlazorDebugProxy/Microsoft.FileFormats.dll b/OnProfNext/bin/Debug/net10.0/BlazorDebugProxy/Microsoft.FileFormats.dll new file mode 100644 index 0000000..ef1a427 Binary files /dev/null and b/OnProfNext/bin/Debug/net10.0/BlazorDebugProxy/Microsoft.FileFormats.dll differ diff --git a/OnProfNext/bin/Debug/net10.0/BlazorDebugProxy/Microsoft.NET.WebAssembly.Webcil.dll b/OnProfNext/bin/Debug/net10.0/BlazorDebugProxy/Microsoft.NET.WebAssembly.Webcil.dll new file mode 100644 index 0000000..fbc1beb Binary files /dev/null and b/OnProfNext/bin/Debug/net10.0/BlazorDebugProxy/Microsoft.NET.WebAssembly.Webcil.dll differ diff --git a/OnProfNext/bin/Debug/net10.0/BlazorDebugProxy/Microsoft.SymbolStore.dll b/OnProfNext/bin/Debug/net10.0/BlazorDebugProxy/Microsoft.SymbolStore.dll new file mode 100644 index 0000000..2ceceef Binary files /dev/null and b/OnProfNext/bin/Debug/net10.0/BlazorDebugProxy/Microsoft.SymbolStore.dll differ diff --git a/OnProfNext/bin/Debug/net10.0/BlazorDebugProxy/Newtonsoft.Json.dll b/OnProfNext/bin/Debug/net10.0/BlazorDebugProxy/Newtonsoft.Json.dll new file mode 100644 index 0000000..e218ff6 Binary files /dev/null and b/OnProfNext/bin/Debug/net10.0/BlazorDebugProxy/Newtonsoft.Json.dll differ diff --git a/OnProfNext/bin/Debug/net10.0/Microsoft.AspNetCore.Components.WebAssembly.Server.dll b/OnProfNext/bin/Debug/net10.0/Microsoft.AspNetCore.Components.WebAssembly.Server.dll new file mode 100644 index 0000000..0deb549 Binary files /dev/null and b/OnProfNext/bin/Debug/net10.0/Microsoft.AspNetCore.Components.WebAssembly.Server.dll differ diff --git a/OnProfNext/bin/Debug/net10.0/Microsoft.AspNetCore.Components.WebAssembly.dll b/OnProfNext/bin/Debug/net10.0/Microsoft.AspNetCore.Components.WebAssembly.dll new file mode 100644 index 0000000..fad98a1 Binary files /dev/null and b/OnProfNext/bin/Debug/net10.0/Microsoft.AspNetCore.Components.WebAssembly.dll differ diff --git a/OnProfNext/bin/Debug/net10.0/Microsoft.DotNet.HotReload.WebAssembly.Browser.dll b/OnProfNext/bin/Debug/net10.0/Microsoft.DotNet.HotReload.WebAssembly.Browser.dll new file mode 100644 index 0000000..3f71094 Binary files /dev/null and b/OnProfNext/bin/Debug/net10.0/Microsoft.DotNet.HotReload.WebAssembly.Browser.dll differ diff --git a/OnProfNext/bin/Debug/net10.0/Microsoft.JSInterop.WebAssembly.dll b/OnProfNext/bin/Debug/net10.0/Microsoft.JSInterop.WebAssembly.dll new file mode 100644 index 0000000..be74b21 Binary files /dev/null and b/OnProfNext/bin/Debug/net10.0/Microsoft.JSInterop.WebAssembly.dll differ diff --git a/OnProfNext/bin/Debug/net10.0/MudBlazor.dll b/OnProfNext/bin/Debug/net10.0/MudBlazor.dll new file mode 100644 index 0000000..af1be98 Binary files /dev/null and b/OnProfNext/bin/Debug/net10.0/MudBlazor.dll differ diff --git a/OnProfNext/bin/Debug/net10.0/OnProfNext.Client.dll b/OnProfNext/bin/Debug/net10.0/OnProfNext.Client.dll new file mode 100644 index 0000000..2e3741b Binary files /dev/null and b/OnProfNext/bin/Debug/net10.0/OnProfNext.Client.dll differ diff --git a/OnProfNext/bin/Debug/net10.0/OnProfNext.Client.pdb b/OnProfNext/bin/Debug/net10.0/OnProfNext.Client.pdb new file mode 100644 index 0000000..f0c1e41 Binary files /dev/null and b/OnProfNext/bin/Debug/net10.0/OnProfNext.Client.pdb differ diff --git a/OnProfNext/bin/Debug/net10.0/OnProfNext.Client.runtimeconfig.json b/OnProfNext/bin/Debug/net10.0/OnProfNext.Client.runtimeconfig.json new file mode 100644 index 0000000..1c10cb0 --- /dev/null +++ b/OnProfNext/bin/Debug/net10.0/OnProfNext.Client.runtimeconfig.json @@ -0,0 +1,51 @@ +{ + "runtimeOptions": { + "tfm": "net10.0", + "includedFrameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "10.0.5" + } + ], + "wasmHostProperties": { + "perHostConfig": [ + { + "name": "browser", + "host": "browser" + } + ] + }, + "configProperties": { + "Microsoft.AspNetCore.Components.Routing.RegexConstraintSupport": false, + "Microsoft.Extensions.DependencyInjection.VerifyOpenGenericServiceTrimmability": true, + "System.ComponentModel.DefaultValueAttribute.IsSupported": false, + "System.ComponentModel.Design.IDesignerHost.IsSupported": false, + "System.ComponentModel.TypeConverter.EnableUnsafeBinaryFormatterInDesigntimeLicenseContextSerialization": false, + "System.ComponentModel.TypeDescriptor.IsComObjectDescriptorSupported": false, + "System.Data.DataSet.XmlSerializationIsSupported": false, + "System.Diagnostics.Metrics.Meter.IsSupported": false, + "System.Diagnostics.Tracing.EventSource.IsSupported": false, + "System.GC.Server": true, + "System.Globalization.Invariant": false, + "System.TimeZoneInfo.Invariant": false, + "System.Linq.Enumerable.IsSizeOptimized": true, + "System.Net.Http.EnableActivityPropagation": false, + "System.Net.Http.WasmEnableStreamingResponse": true, + "System.Net.SocketsHttpHandler.Http3Support": false, + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, + "System.Resources.ResourceManager.AllowCustomResourceTypes": false, + "System.Resources.UseSystemResourceKeys": true, + "System.Runtime.CompilerServices.RuntimeFeature.IsDynamicCodeSupported": true, + "System.Runtime.InteropServices.BuiltInComInterop.IsSupported": false, + "System.Runtime.InteropServices.EnableConsumingManagedCodeFromNativeHosting": false, + "System.Runtime.InteropServices.EnableCppCLIHostActivation": false, + "System.Runtime.InteropServices.Marshalling.EnableGeneratedComInterfaceComImportInterop": false, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false, + "System.StartupHookProvider.IsSupported": false, + "System.Text.Encoding.EnableUnsafeUTF7Encoding": false, + "System.Text.Json.JsonSerializer.IsReflectionEnabledByDefault": true, + "System.Threading.Thread.EnableAutoreleasePool": false, + "Microsoft.AspNetCore.Components.Endpoints.NavigationManager.DisableThrowNavigationException": true + } + } +} \ No newline at end of file diff --git a/OnProfNext/bin/Debug/net10.0/OnProfNext.Client.staticwebassets.endpoints.json b/OnProfNext/bin/Debug/net10.0/OnProfNext.Client.staticwebassets.endpoints.json new file mode 100644 index 0000000..e9b4465 --- /dev/null +++ b/OnProfNext/bin/Debug/net10.0/OnProfNext.Client.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"Layout/ReconnectModal.razor.js","AssetFile":"Layout/ReconnectModal.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2746"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4="},{"Name":"script-type","Value":"module"}]},{"Route":"Layout/ReconnectModal.razor.js","AssetFile":"Layout/ReconnectModal.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001269035533"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"787"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4="},{"Name":"original-resource","Value":"\"QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4=\""},{"Name":"script-type","Value":"module"}]},{"Route":"Layout/ReconnectModal.razor.js.gz","AssetFile":"Layout/ReconnectModal.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"787"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA="}]},{"Route":"Layout/ReconnectModal.ycbzh0sbjd.razor.js","AssetFile":"Layout/ReconnectModal.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2746"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ycbzh0sbjd"},{"Name":"integrity","Value":"sha256-QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4="},{"Name":"label","Value":"Layout/ReconnectModal.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"Layout/ReconnectModal.ycbzh0sbjd.razor.js","AssetFile":"Layout/ReconnectModal.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001269035533"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"787"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ycbzh0sbjd"},{"Name":"integrity","Value":"sha256-QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4="},{"Name":"label","Value":"Layout/ReconnectModal.razor.js"},{"Name":"original-resource","Value":"\"QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4=\""},{"Name":"script-type","Value":"module"}]},{"Route":"Layout/ReconnectModal.ycbzh0sbjd.razor.js.gz","AssetFile":"Layout/ReconnectModal.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"787"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ycbzh0sbjd"},{"Name":"integrity","Value":"sha256-rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA="},{"Name":"label","Value":"Layout/ReconnectModal.razor.js.gz"}]},{"Route":"OnProfNext.Client.styles.css","AssetFile":"OnProfNext.Client.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000690131125"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1448"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4="},{"Name":"original-resource","Value":"\"5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4=\""}]},{"Route":"OnProfNext.Client.styles.css","AssetFile":"OnProfNext.Client.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6834"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4="}]},{"Route":"OnProfNext.Client.styles.css.gz","AssetFile":"OnProfNext.Client.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1448"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o="}]},{"Route":"OnProfNext.Client.uzl7ca9j9c.styles.css","AssetFile":"OnProfNext.Client.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000690131125"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1448"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uzl7ca9j9c"},{"Name":"integrity","Value":"sha256-5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4="},{"Name":"label","Value":"OnProfNext.Client.styles.css"},{"Name":"original-resource","Value":"\"5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4=\""}]},{"Route":"OnProfNext.Client.uzl7ca9j9c.styles.css","AssetFile":"OnProfNext.Client.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6834"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uzl7ca9j9c"},{"Name":"integrity","Value":"sha256-5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4="},{"Name":"label","Value":"OnProfNext.Client.styles.css"}]},{"Route":"OnProfNext.Client.uzl7ca9j9c.styles.css.gz","AssetFile":"OnProfNext.Client.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1448"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uzl7ca9j9c"},{"Name":"integrity","Value":"sha256-UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o="},{"Name":"label","Value":"OnProfNext.Client.styles.css.gz"}]},{"Route":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js","AssetFile":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1862"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"A8e6zZwhOqf7lDQqbbCYcAUv4wGE9aQxOo4WyYxR//0=\""},{"Name":"Last-Modified","Value":"Wed, 04 Mar 2026 01:26:18 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"dependency-group","Value":"js-initializer"},{"Name":"fingerprint","Value":"99zm1jdh75"},{"Name":"integrity","Value":"sha256-A8e6zZwhOqf7lDQqbbCYcAUv4wGE9aQxOo4WyYxR//0="},{"Name":"label","Value":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js","AssetFile":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1862"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"A8e6zZwhOqf7lDQqbbCYcAUv4wGE9aQxOo4WyYxR//0=\""},{"Name":"Last-Modified","Value":"Wed, 04 Mar 2026 01:26:18 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"dependency-group","Value":"js-initializer"},{"Name":"integrity","Value":"sha256-A8e6zZwhOqf7lDQqbbCYcAUv4wGE9aQxOo4WyYxR//0="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/MudBlazor/MudBlazor.min.8dleymzaev.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"64944"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"VHJcGholtUHNobadpTrhyE/VCi90X4p12vYD83bzI04=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:27 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8dleymzaev"},{"Name":"integrity","Value":"sha256-VHJcGholtUHNobadpTrhyE/VCi90X4p12vYD83bzI04="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js"}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"607258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"kBmVfU2BqUZUT8HPz7NUnkObDjxYKbSWXF5q33paHM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:28 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kBmVfU2BqUZUT8HPz7NUnkObDjxYKbSWXF5q33paHM0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"64944"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"VHJcGholtUHNobadpTrhyE/VCi90X4p12vYD83bzI04=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:27 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VHJcGholtUHNobadpTrhyE/VCi90X4p12vYD83bzI04="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.0ykner63ol.map","AssetFile":"_content/MudBlazor/MudBlazor.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"236222"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"yAPYxO0UcV5YvjmoVWBh8O+tMbwO9AMZv1RMPdpxE0Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:27 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0ykner63ol"},{"Name":"integrity","Value":"sha256-yAPYxO0UcV5YvjmoVWBh8O+tMbwO9AMZv1RMPdpxE0Q="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js.map"}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.map","AssetFile":"_content/MudBlazor/MudBlazor.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"236222"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"yAPYxO0UcV5YvjmoVWBh8O+tMbwO9AMZv1RMPdpxE0Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:27 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yAPYxO0UcV5YvjmoVWBh8O+tMbwO9AMZv1RMPdpxE0Q="}]},{"Route":"_content/MudBlazor/MudBlazor.min.o2b68hjqqd.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"607258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"kBmVfU2BqUZUT8HPz7NUnkObDjxYKbSWXF5q33paHM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:28 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"o2b68hjqqd"},{"Name":"integrity","Value":"sha256-kBmVfU2BqUZUT8HPz7NUnkObDjxYKbSWXF5q33paHM0="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.css"}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"45333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"roqc1km2rj"},{"Name":"integrity","Value":"sha256-G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Authorization.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000050676532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"roqc1km2rj"},{"Name":"integrity","Value":"sha256-G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Authorization.wasm"},{"Name":"original-resource","Value":"\"G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"roqc1km2rj"},{"Name":"integrity","Value":"sha256-6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Authorization.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"45333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc="}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000050676532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc="},{"Name":"original-resource","Value":"\"G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000057547333"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17376"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ="},{"Name":"original-resource","Value":"\"sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17376"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zrueb40r85"},{"Name":"integrity","Value":"sha256-sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Forms.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000057547333"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17376"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zrueb40r85"},{"Name":"integrity","Value":"sha256-sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Forms.wasm"},{"Name":"original-resource","Value":"\"sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17376"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zrueb40r85"},{"Name":"integrity","Value":"sha256-FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Forms.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"178965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g5qdp1mxha"},{"Name":"integrity","Value":"sha256-XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Web.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013971749"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"71572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g5qdp1mxha"},{"Name":"integrity","Value":"sha256-XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Web.wasm"},{"Name":"original-resource","Value":"\"XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"71572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g5qdp1mxha"},{"Name":"integrity","Value":"sha256-Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Web.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"178965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013971749"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"71572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU="},{"Name":"original-resource","Value":"\"XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"71572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"155925"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9mjwvs1qyp"},{"Name":"integrity","Value":"sha256-r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000016249330"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"61540"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9mjwvs1qyp"},{"Name":"integrity","Value":"sha256-r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm"},{"Name":"original-resource","Value":"\"r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"61540"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9mjwvs1qyp"},{"Name":"integrity","Value":"sha256-WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"155925"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000016249330"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"61540"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4="},{"Name":"original-resource","Value":"\"r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"61540"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"388885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uddsvpv1sv"},{"Name":"integrity","Value":"sha256-wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006481638"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"154281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uddsvpv1sv"},{"Name":"integrity","Value":"sha256-wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.wasm"},{"Name":"original-resource","Value":"\"wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"154281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uddsvpv1sv"},{"Name":"integrity","Value":"sha256-1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"388885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006481638"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"154281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4="},{"Name":"original-resource","Value":"\"wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"154281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk="}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m3mxap0jif"},{"Name":"integrity","Value":"sha256-3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Metadata.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000405350628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2466"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m3mxap0jif"},{"Name":"integrity","Value":"sha256-3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Metadata.wasm"},{"Name":"original-resource","Value":"\"3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2466"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m3mxap0jif"},{"Name":"integrity","Value":"sha256-NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Metadata.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ="}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000405350628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2466"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ="},{"Name":"original-resource","Value":"\"3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2466"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU="}]},{"Route":"_framework/Microsoft.CSharp.452y5fjxmv.wasm","AssetFile":"_framework/Microsoft.CSharp.452y5fjxmv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"301333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"452y5fjxmv"},{"Name":"integrity","Value":"sha256-qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g="},{"Name":"label","Value":"_framework/Microsoft.CSharp.wasm"}]},{"Route":"_framework/Microsoft.CSharp.452y5fjxmv.wasm","AssetFile":"_framework/Microsoft.CSharp.452y5fjxmv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000007583628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"131862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"452y5fjxmv"},{"Name":"integrity","Value":"sha256-qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g="},{"Name":"label","Value":"_framework/Microsoft.CSharp.wasm"},{"Name":"original-resource","Value":"\"qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g=\""}]},{"Route":"_framework/Microsoft.CSharp.452y5fjxmv.wasm.gz","AssetFile":"_framework/Microsoft.CSharp.452y5fjxmv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"131862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"452y5fjxmv"},{"Name":"integrity","Value":"sha256-SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU="},{"Name":"label","Value":"_framework/Microsoft.CSharp.wasm.gz"}]},{"Route":"_framework/Microsoft.CSharp.wasm","AssetFile":"_framework/Microsoft.CSharp.452y5fjxmv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"301333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g="}]},{"Route":"_framework/Microsoft.CSharp.wasm","AssetFile":"_framework/Microsoft.CSharp.452y5fjxmv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000007583628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"131862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g="},{"Name":"original-resource","Value":"\"qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g=\""}]},{"Route":"_framework/Microsoft.CSharp.wasm.gz","AssetFile":"_framework/Microsoft.CSharp.452y5fjxmv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"131862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU="}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm","AssetFile":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"56085"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrhwg3a64c"},{"Name":"integrity","Value":"sha256-7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU="},{"Name":"label","Value":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm"}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm","AssetFile":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040950041"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrhwg3a64c"},{"Name":"integrity","Value":"sha256-7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU="},{"Name":"label","Value":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm"},{"Name":"original-resource","Value":"\"7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU=\""}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm.gz","AssetFile":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrhwg3a64c"},{"Name":"integrity","Value":"sha256-2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw="},{"Name":"label","Value":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz"}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm","AssetFile":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"56085"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU="}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm","AssetFile":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040950041"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU="},{"Name":"original-resource","Value":"\"7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU=\""}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz","AssetFile":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"thew1o6jcx"},{"Name":"integrity","Value":"sha256-YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000123502532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8096"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"thew1o6jcx"},{"Name":"integrity","Value":"sha256-YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm"},{"Name":"original-resource","Value":"\"YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8096"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"thew1o6jcx"},{"Name":"integrity","Value":"sha256-TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000123502532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8096"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0="},{"Name":"original-resource","Value":"\"YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8096"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"33045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7o70008j8o"},{"Name":"integrity","Value":"sha256-KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Binder.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000070556692"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14172"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7o70008j8o"},{"Name":"integrity","Value":"sha256-KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Binder.wasm"},{"Name":"original-resource","Value":"\"KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14172"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7o70008j8o"},{"Name":"integrity","Value":"sha256-c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Binder.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"33045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000070556692"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14172"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70="},{"Name":"original-resource","Value":"\"KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14172"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ouivavlhyy"},{"Name":"integrity","Value":"sha256-MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000125219133"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7985"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ouivavlhyy"},{"Name":"integrity","Value":"sha256-MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm"},{"Name":"original-resource","Value":"\"MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7985"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ouivavlhyy"},{"Name":"integrity","Value":"sha256-a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000125219133"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7985"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8="},{"Name":"original-resource","Value":"\"MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7985"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"17685"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"giv4t23za9"},{"Name":"integrity","Value":"sha256-iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Json.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000127177922"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"giv4t23za9"},{"Name":"integrity","Value":"sha256-iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Json.wasm"},{"Name":"original-resource","Value":"\"iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"giv4t23za9"},{"Name":"integrity","Value":"sha256-kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Json.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"17685"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000127177922"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg="},{"Name":"original-resource","Value":"\"iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fgwnqtu7qk"},{"Name":"integrity","Value":"sha256-D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000064616180"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15475"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fgwnqtu7qk"},{"Name":"integrity","Value":"sha256-D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.wasm"},{"Name":"original-resource","Value":"\"D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15475"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fgwnqtu7qk"},{"Name":"integrity","Value":"sha256-bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000064616180"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15475"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY="},{"Name":"original-resource","Value":"\"D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15475"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0="}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ud13mwbta3"},{"Name":"integrity","Value":"sha256-PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000046012976"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ud13mwbta3"},{"Name":"integrity","Value":"sha256-PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm"},{"Name":"original-resource","Value":"\"PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM=\""}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ud13mwbta3"},{"Name":"integrity","Value":"sha256-UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM="}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000046012976"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM="},{"Name":"original-resource","Value":"\"PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM=\""}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU="}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"85269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vs620n44bv"},{"Name":"integrity","Value":"sha256-EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.wasm"}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000027365771"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"36541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vs620n44bv"},{"Name":"integrity","Value":"sha256-EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.wasm"},{"Name":"original-resource","Value":"\"EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ=\""}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"36541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vs620n44bv"},{"Name":"integrity","Value":"sha256-KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"85269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ="}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000027365771"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"36541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ="},{"Name":"original-resource","Value":"\"EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ=\""}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"36541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA="}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"20757"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v59ymogeuz"},{"Name":"integrity","Value":"sha256-4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000116468670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8585"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v59ymogeuz"},{"Name":"integrity","Value":"sha256-4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm"},{"Name":"original-resource","Value":"\"4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA=\""}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8585"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v59ymogeuz"},{"Name":"integrity","Value":"sha256-q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"20757"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA="}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000116468670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8585"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA="},{"Name":"original-resource","Value":"\"4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA=\""}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8585"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4="}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"25877"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jnogfbng3i"},{"Name":"integrity","Value":"sha256-MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000082706145"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12090"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jnogfbng3i"},{"Name":"integrity","Value":"sha256-MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.wasm"},{"Name":"original-resource","Value":"\"MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo=\""}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12090"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jnogfbng3i"},{"Name":"integrity","Value":"sha256-UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"25877"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo="}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000082706145"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12090"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo="},{"Name":"original-resource","Value":"\"MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo=\""}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12090"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk="}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ssv83rveyv"},{"Name":"integrity","Value":"sha256-/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000176897223"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5652"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ssv83rveyv"},{"Name":"integrity","Value":"sha256-/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm"},{"Name":"original-resource","Value":"\"/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8=\""}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5652"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ssv83rveyv"},{"Name":"integrity","Value":"sha256-kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8="}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000176897223"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5652"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8="},{"Name":"original-resource","Value":"\"/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8=\""}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5652"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4="}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"35093"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8gz29xpyh3"},{"Name":"integrity","Value":"sha256-CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm"}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060793969"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16448"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8gz29xpyh3"},{"Name":"integrity","Value":"sha256-CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm"},{"Name":"original-resource","Value":"\"CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0=\""}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16448"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8gz29xpyh3"},{"Name":"integrity","Value":"sha256-RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"35093"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0="}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060793969"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16448"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0="},{"Name":"original-resource","Value":"\"CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0=\""}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16448"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo="}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm","AssetFile":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozuva4e3vv"},{"Name":"integrity","Value":"sha256-pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm"}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm","AssetFile":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000058941412"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozuva4e3vv"},{"Name":"integrity","Value":"sha256-pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm"},{"Name":"original-resource","Value":"\"pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI=\""}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozuva4e3vv"},{"Name":"integrity","Value":"sha256-QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm","AssetFile":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI="}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm","AssetFile":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000058941412"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI="},{"Name":"original-resource","Value":"\"pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI=\""}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY="}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"8981"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6jkolue1ka"},{"Name":"integrity","Value":"sha256-8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000261164795"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6jkolue1ka"},{"Name":"integrity","Value":"sha256-8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm"},{"Name":"original-resource","Value":"\"8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4=\""}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6jkolue1ka"},{"Name":"integrity","Value":"sha256-5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"8981"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4="}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000261164795"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4="},{"Name":"original-resource","Value":"\"8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4=\""}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8="}]},{"Route":"_framework/Microsoft.Extensions.Localization.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"21269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs="}]},{"Route":"_framework/Microsoft.Extensions.Localization.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000100050025"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9994"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs="},{"Name":"original-resource","Value":"\"L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs=\""}]},{"Route":"_framework/Microsoft.Extensions.Localization.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9994"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM="}]},{"Route":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"21269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xcslyy3nju"},{"Name":"integrity","Value":"sha256-L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000100050025"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9994"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xcslyy3nju"},{"Name":"integrity","Value":"sha256-L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.wasm"},{"Name":"original-resource","Value":"\"L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs=\""}]},{"Route":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9994"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xcslyy3nju"},{"Name":"integrity","Value":"sha256-LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"56597"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1q3x7vre4l"},{"Name":"integrity","Value":"sha256-5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040832993"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1q3x7vre4l"},{"Name":"integrity","Value":"sha256-5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm"},{"Name":"original-resource","Value":"\"5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI=\""}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1q3x7vre4l"},{"Name":"integrity","Value":"sha256-wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"56597"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI="}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040832993"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI="},{"Name":"original-resource","Value":"\"5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI=\""}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo="}]},{"Route":"_framework/Microsoft.Extensions.Logging.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"41237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis="}]},{"Route":"_framework/Microsoft.Extensions.Logging.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053708577"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18618"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis="},{"Name":"original-resource","Value":"\"7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis=\""}]},{"Route":"_framework/Microsoft.Extensions.Logging.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18618"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q="}]},{"Route":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"41237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y4ydx3rk2c"},{"Name":"integrity","Value":"sha256-7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053708577"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18618"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y4ydx3rk2c"},{"Name":"integrity","Value":"sha256-7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.wasm"},{"Name":"original-resource","Value":"\"7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis=\""}]},{"Route":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18618"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y4ydx3rk2c"},{"Name":"integrity","Value":"sha256-CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55061"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2rz5zbidnd"},{"Name":"integrity","Value":"sha256-PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000042529664"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23512"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2rz5zbidnd"},{"Name":"integrity","Value":"sha256-PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.wasm"},{"Name":"original-resource","Value":"\"PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY=\""}]},{"Route":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23512"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2rz5zbidnd"},{"Name":"integrity","Value":"sha256-nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U="}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000196001568"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U="},{"Name":"original-resource","Value":"\"652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U=\""}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I="}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zmb03w0weu"},{"Name":"integrity","Value":"sha256-652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000196001568"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zmb03w0weu"},{"Name":"integrity","Value":"sha256-652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm"},{"Name":"original-resource","Value":"\"652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U=\""}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zmb03w0weu"},{"Name":"integrity","Value":"sha256-i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Options.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"55061"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY="}]},{"Route":"_framework/Microsoft.Extensions.Options.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000042529664"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23512"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY="},{"Name":"original-resource","Value":"\"PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY=\""}]},{"Route":"_framework/Microsoft.Extensions.Options.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23512"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4="}]},{"Route":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm","AssetFile":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bd164v6l3f"},{"Name":"integrity","Value":"sha256-b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Primitives.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm","AssetFile":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000065582371"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15247"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bd164v6l3f"},{"Name":"integrity","Value":"sha256-b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Primitives.wasm"},{"Name":"original-resource","Value":"\"b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo=\""}]},{"Route":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15247"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bd164v6l3f"},{"Name":"integrity","Value":"sha256-WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Primitives.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Primitives.wasm","AssetFile":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo="}]},{"Route":"_framework/Microsoft.Extensions.Primitives.wasm","AssetFile":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000065582371"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15247"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo="},{"Name":"original-resource","Value":"\"b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo=\""}]},{"Route":"_framework/Microsoft.Extensions.Primitives.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15247"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8="}]},{"Route":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm","AssetFile":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"33045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r1sv3m5lsf"},{"Name":"integrity","Value":"sha256-QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Validation.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm","AssetFile":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000069232899"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14443"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r1sv3m5lsf"},{"Name":"integrity","Value":"sha256-QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Validation.wasm"},{"Name":"original-resource","Value":"\"QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk=\""}]},{"Route":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14443"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r1sv3m5lsf"},{"Name":"integrity","Value":"sha256-4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Validation.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Validation.wasm","AssetFile":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"33045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk="}]},{"Route":"_framework/Microsoft.Extensions.Validation.wasm","AssetFile":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000069232899"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14443"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk="},{"Name":"original-resource","Value":"\"QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk=\""}]},{"Route":"_framework/Microsoft.Extensions.Validation.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14443"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0="}]},{"Route":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm","AssetFile":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"64789"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1r0ampr2q1"},{"Name":"integrity","Value":"sha256-TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.wasm"}]},{"Route":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm","AssetFile":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000036331928"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"27523"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1r0ampr2q1"},{"Name":"integrity","Value":"sha256-TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.wasm"},{"Name":"original-resource","Value":"\"TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA=\""}]},{"Route":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm.gz","AssetFile":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"27523"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1r0ampr2q1"},{"Name":"integrity","Value":"sha256-5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.wasm.gz"}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm","AssetFile":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"14613"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oz8fkrrrd6"},{"Name":"integrity","Value":"sha256-vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.WebAssembly.wasm"}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm","AssetFile":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000145730108"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oz8fkrrrd6"},{"Name":"integrity","Value":"sha256-vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.WebAssembly.wasm"},{"Name":"original-resource","Value":"\"vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU=\""}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm.gz","AssetFile":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oz8fkrrrd6"},{"Name":"integrity","Value":"sha256-50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.WebAssembly.wasm.gz"}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.wasm","AssetFile":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"14613"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU="}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.wasm","AssetFile":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000145730108"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU="},{"Name":"original-resource","Value":"\"vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU=\""}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.wasm.gz","AssetFile":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA="}]},{"Route":"_framework/Microsoft.JSInterop.wasm","AssetFile":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"64789"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA="}]},{"Route":"_framework/Microsoft.JSInterop.wasm","AssetFile":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000036331928"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"27523"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA="},{"Name":"original-resource","Value":"\"TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA=\""}]},{"Route":"_framework/Microsoft.JSInterop.wasm.gz","AssetFile":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"27523"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0="}]},{"Route":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm","AssetFile":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"91iw3j3d9p"},{"Name":"integrity","Value":"sha256-TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.wasm"}]},{"Route":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm","AssetFile":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000349162011"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2863"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"91iw3j3d9p"},{"Name":"integrity","Value":"sha256-TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.wasm"},{"Name":"original-resource","Value":"\"TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM=\""}]},{"Route":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm.gz","AssetFile":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2863"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"91iw3j3d9p"},{"Name":"integrity","Value":"sha256-O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.wasm.gz"}]},{"Route":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm","AssetFile":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"418581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"re3geseai5"},{"Name":"integrity","Value":"sha256-vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.Core.wasm"}]},{"Route":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm","AssetFile":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005991109"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"166913"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"re3geseai5"},{"Name":"integrity","Value":"sha256-vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.Core.wasm"},{"Name":"original-resource","Value":"\"vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0=\""}]},{"Route":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm.gz","AssetFile":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"166913"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"re3geseai5"},{"Name":"integrity","Value":"sha256-09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.Core.wasm.gz"}]},{"Route":"_framework/Microsoft.VisualBasic.Core.wasm","AssetFile":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"418581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0="}]},{"Route":"_framework/Microsoft.VisualBasic.Core.wasm","AssetFile":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005991109"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"166913"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0="},{"Name":"original-resource","Value":"\"vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0=\""}]},{"Route":"_framework/Microsoft.VisualBasic.Core.wasm.gz","AssetFile":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"166913"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc="}]},{"Route":"_framework/Microsoft.VisualBasic.wasm","AssetFile":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM="}]},{"Route":"_framework/Microsoft.VisualBasic.wasm","AssetFile":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000349162011"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2863"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM="},{"Name":"original-resource","Value":"\"TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM=\""}]},{"Route":"_framework/Microsoft.VisualBasic.wasm.gz","AssetFile":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2863"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as="}]},{"Route":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm","AssetFile":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mjytoh92q"},{"Name":"integrity","Value":"sha256-NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM="},{"Name":"label","Value":"_framework/Microsoft.Win32.Primitives.wasm"}]},{"Route":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm","AssetFile":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000451059991"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2216"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mjytoh92q"},{"Name":"integrity","Value":"sha256-NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM="},{"Name":"label","Value":"_framework/Microsoft.Win32.Primitives.wasm"},{"Name":"original-resource","Value":"\"NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM=\""}]},{"Route":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm.gz","AssetFile":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2216"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mjytoh92q"},{"Name":"integrity","Value":"sha256-JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As="},{"Name":"label","Value":"_framework/Microsoft.Win32.Primitives.wasm.gz"}]},{"Route":"_framework/Microsoft.Win32.Primitives.wasm","AssetFile":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM="}]},{"Route":"_framework/Microsoft.Win32.Primitives.wasm","AssetFile":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000451059991"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2216"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM="},{"Name":"original-resource","Value":"\"NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM=\""}]},{"Route":"_framework/Microsoft.Win32.Primitives.wasm.gz","AssetFile":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2216"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As="}]},{"Route":"_framework/Microsoft.Win32.Registry.wasm","AssetFile":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU="}]},{"Route":"_framework/Microsoft.Win32.Registry.wasm","AssetFile":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000109733348"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9112"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU="},{"Name":"original-resource","Value":"\"sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU=\""}]},{"Route":"_framework/Microsoft.Win32.Registry.wasm.gz","AssetFile":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9112"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk="}]},{"Route":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm","AssetFile":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yz8nt3ycsq"},{"Name":"integrity","Value":"sha256-sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU="},{"Name":"label","Value":"_framework/Microsoft.Win32.Registry.wasm"}]},{"Route":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm","AssetFile":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000109733348"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9112"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yz8nt3ycsq"},{"Name":"integrity","Value":"sha256-sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU="},{"Name":"label","Value":"_framework/Microsoft.Win32.Registry.wasm"},{"Name":"original-resource","Value":"\"sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU=\""}]},{"Route":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm.gz","AssetFile":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9112"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yz8nt3ycsq"},{"Name":"integrity","Value":"sha256-gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk="},{"Name":"label","Value":"_framework/Microsoft.Win32.Registry.wasm.gz"}]},{"Route":"_framework/MudBlazor.k6079czmkm.wasm","AssetFile":"_framework/MudBlazor.k6079czmkm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10119449"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6079czmkm"},{"Name":"integrity","Value":"sha256-rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI="},{"Name":"label","Value":"_framework/MudBlazor.wasm"}]},{"Route":"_framework/MudBlazor.k6079czmkm.wasm","AssetFile":"_framework/MudBlazor.k6079czmkm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000444516"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2249638"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6079czmkm"},{"Name":"integrity","Value":"sha256-rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI="},{"Name":"label","Value":"_framework/MudBlazor.wasm"},{"Name":"original-resource","Value":"\"rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI=\""}]},{"Route":"_framework/MudBlazor.k6079czmkm.wasm.gz","AssetFile":"_framework/MudBlazor.k6079czmkm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2249638"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6079czmkm"},{"Name":"integrity","Value":"sha256-dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM="},{"Name":"label","Value":"_framework/MudBlazor.wasm.gz"}]},{"Route":"_framework/MudBlazor.wasm","AssetFile":"_framework/MudBlazor.k6079czmkm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10119449"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI="}]},{"Route":"_framework/MudBlazor.wasm","AssetFile":"_framework/MudBlazor.k6079czmkm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000444516"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2249638"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI="},{"Name":"original-resource","Value":"\"rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI=\""}]},{"Route":"_framework/MudBlazor.wasm.gz","AssetFile":"_framework/MudBlazor.k6079czmkm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2249638"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM="}]},{"Route":"_framework/OnProfNext.Client.lplk7v275j.pdb","AssetFile":"_framework/OnProfNext.Client.lplk7v275j.pdb","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"33624"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lplk7v275j"},{"Name":"integrity","Value":"sha256-FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0="},{"Name":"label","Value":"_framework/OnProfNext.Client.pdb"}]},{"Route":"_framework/OnProfNext.Client.lplk7v275j.pdb","AssetFile":"_framework/OnProfNext.Client.lplk7v275j.pdb.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038227761"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26158"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lplk7v275j"},{"Name":"integrity","Value":"sha256-FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0="},{"Name":"label","Value":"_framework/OnProfNext.Client.pdb"},{"Name":"original-resource","Value":"\"FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0=\""}]},{"Route":"_framework/OnProfNext.Client.lplk7v275j.pdb.gz","AssetFile":"_framework/OnProfNext.Client.lplk7v275j.pdb.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26158"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lplk7v275j"},{"Name":"integrity","Value":"sha256-4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU="},{"Name":"label","Value":"_framework/OnProfNext.Client.pdb.gz"}]},{"Route":"_framework/OnProfNext.Client.pdb","AssetFile":"_framework/OnProfNext.Client.lplk7v275j.pdb","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"33624"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0="}]},{"Route":"_framework/OnProfNext.Client.pdb","AssetFile":"_framework/OnProfNext.Client.lplk7v275j.pdb.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038227761"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26158"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0="},{"Name":"original-resource","Value":"\"FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0=\""}]},{"Route":"_framework/OnProfNext.Client.pdb.gz","AssetFile":"_framework/OnProfNext.Client.lplk7v275j.pdb.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26158"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU="}]},{"Route":"_framework/OnProfNext.Client.wasm","AssetFile":"_framework/OnProfNext.Client.xhq6acanj0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"42261"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc="}]},{"Route":"_framework/OnProfNext.Client.wasm","AssetFile":"_framework/OnProfNext.Client.xhq6acanj0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067344602"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14848"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc="},{"Name":"original-resource","Value":"\"pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc=\""}]},{"Route":"_framework/OnProfNext.Client.wasm.gz","AssetFile":"_framework/OnProfNext.Client.xhq6acanj0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14848"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA="}]},{"Route":"_framework/OnProfNext.Client.xhq6acanj0.wasm","AssetFile":"_framework/OnProfNext.Client.xhq6acanj0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"42261"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xhq6acanj0"},{"Name":"integrity","Value":"sha256-pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc="},{"Name":"label","Value":"_framework/OnProfNext.Client.wasm"}]},{"Route":"_framework/OnProfNext.Client.xhq6acanj0.wasm","AssetFile":"_framework/OnProfNext.Client.xhq6acanj0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067344602"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14848"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xhq6acanj0"},{"Name":"integrity","Value":"sha256-pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc="},{"Name":"label","Value":"_framework/OnProfNext.Client.wasm"},{"Name":"original-resource","Value":"\"pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc=\""}]},{"Route":"_framework/OnProfNext.Client.xhq6acanj0.wasm.gz","AssetFile":"_framework/OnProfNext.Client.xhq6acanj0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14848"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xhq6acanj0"},{"Name":"integrity","Value":"sha256-UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA="},{"Name":"label","Value":"_framework/OnProfNext.Client.wasm.gz"}]},{"Route":"_framework/System.7rk3uansaa.wasm","AssetFile":"_framework/System.7rk3uansaa.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"39701"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7rk3uansaa"},{"Name":"integrity","Value":"sha256-00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q="},{"Name":"label","Value":"_framework/System.wasm"}]},{"Route":"_framework/System.7rk3uansaa.wasm","AssetFile":"_framework/System.7rk3uansaa.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000084875233"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7rk3uansaa"},{"Name":"integrity","Value":"sha256-00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q="},{"Name":"label","Value":"_framework/System.wasm"},{"Name":"original-resource","Value":"\"00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q=\""}]},{"Route":"_framework/System.7rk3uansaa.wasm.gz","AssetFile":"_framework/System.7rk3uansaa.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7rk3uansaa"},{"Name":"integrity","Value":"sha256-KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI="},{"Name":"label","Value":"_framework/System.wasm.gz"}]},{"Route":"_framework/System.AppContext.uwq3fpef1w.wasm","AssetFile":"_framework/System.AppContext.uwq3fpef1w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uwq3fpef1w"},{"Name":"integrity","Value":"sha256-/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA="},{"Name":"label","Value":"_framework/System.AppContext.wasm"}]},{"Route":"_framework/System.AppContext.uwq3fpef1w.wasm","AssetFile":"_framework/System.AppContext.uwq3fpef1w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000472589792"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2115"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uwq3fpef1w"},{"Name":"integrity","Value":"sha256-/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA="},{"Name":"label","Value":"_framework/System.AppContext.wasm"},{"Name":"original-resource","Value":"\"/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA=\""}]},{"Route":"_framework/System.AppContext.uwq3fpef1w.wasm.gz","AssetFile":"_framework/System.AppContext.uwq3fpef1w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2115"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uwq3fpef1w"},{"Name":"integrity","Value":"sha256-Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8="},{"Name":"label","Value":"_framework/System.AppContext.wasm.gz"}]},{"Route":"_framework/System.AppContext.wasm","AssetFile":"_framework/System.AppContext.uwq3fpef1w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA="}]},{"Route":"_framework/System.AppContext.wasm","AssetFile":"_framework/System.AppContext.uwq3fpef1w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000472589792"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2115"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA="},{"Name":"original-resource","Value":"\"/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA=\""}]},{"Route":"_framework/System.AppContext.wasm.gz","AssetFile":"_framework/System.AppContext.uwq3fpef1w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2115"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8="}]},{"Route":"_framework/System.Buffers.m4yhcvz2y2.wasm","AssetFile":"_framework/System.Buffers.m4yhcvz2y2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m4yhcvz2y2"},{"Name":"integrity","Value":"sha256-+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g="},{"Name":"label","Value":"_framework/System.Buffers.wasm"}]},{"Route":"_framework/System.Buffers.m4yhcvz2y2.wasm","AssetFile":"_framework/System.Buffers.m4yhcvz2y2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000472143532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2117"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m4yhcvz2y2"},{"Name":"integrity","Value":"sha256-+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g="},{"Name":"label","Value":"_framework/System.Buffers.wasm"},{"Name":"original-resource","Value":"\"+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g=\""}]},{"Route":"_framework/System.Buffers.m4yhcvz2y2.wasm.gz","AssetFile":"_framework/System.Buffers.m4yhcvz2y2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2117"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m4yhcvz2y2"},{"Name":"integrity","Value":"sha256-Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g="},{"Name":"label","Value":"_framework/System.Buffers.wasm.gz"}]},{"Route":"_framework/System.Buffers.wasm","AssetFile":"_framework/System.Buffers.m4yhcvz2y2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g="}]},{"Route":"_framework/System.Buffers.wasm","AssetFile":"_framework/System.Buffers.m4yhcvz2y2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000472143532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2117"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g="},{"Name":"original-resource","Value":"\"+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g=\""}]},{"Route":"_framework/System.Buffers.wasm.gz","AssetFile":"_framework/System.Buffers.m4yhcvz2y2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2117"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g="}]},{"Route":"_framework/System.Collections.63jrcion39.wasm","AssetFile":"_framework/System.Collections.63jrcion39.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"102677"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63jrcion39"},{"Name":"integrity","Value":"sha256-Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg="},{"Name":"label","Value":"_framework/System.Collections.wasm"}]},{"Route":"_framework/System.Collections.63jrcion39.wasm","AssetFile":"_framework/System.Collections.63jrcion39.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023100023"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"43289"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63jrcion39"},{"Name":"integrity","Value":"sha256-Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg="},{"Name":"label","Value":"_framework/System.Collections.wasm"},{"Name":"original-resource","Value":"\"Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg=\""}]},{"Route":"_framework/System.Collections.63jrcion39.wasm.gz","AssetFile":"_framework/System.Collections.63jrcion39.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"43289"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63jrcion39"},{"Name":"integrity","Value":"sha256-vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU="},{"Name":"label","Value":"_framework/System.Collections.wasm.gz"}]},{"Route":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm","AssetFile":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"78613"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1zv6wuzklu"},{"Name":"integrity","Value":"sha256-XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw="},{"Name":"label","Value":"_framework/System.Collections.Concurrent.wasm"}]},{"Route":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm","AssetFile":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029696502"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33673"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1zv6wuzklu"},{"Name":"integrity","Value":"sha256-XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw="},{"Name":"label","Value":"_framework/System.Collections.Concurrent.wasm"},{"Name":"original-resource","Value":"\"XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw=\""}]},{"Route":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm.gz","AssetFile":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33673"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1zv6wuzklu"},{"Name":"integrity","Value":"sha256-LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU="},{"Name":"label","Value":"_framework/System.Collections.Concurrent.wasm.gz"}]},{"Route":"_framework/System.Collections.Concurrent.wasm","AssetFile":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"78613"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw="}]},{"Route":"_framework/System.Collections.Concurrent.wasm","AssetFile":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029696502"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33673"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw="},{"Name":"original-resource","Value":"\"XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw=\""}]},{"Route":"_framework/System.Collections.Concurrent.wasm.gz","AssetFile":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33673"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU="}]},{"Route":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm","AssetFile":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"240917"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6uzpuv4o5d"},{"Name":"integrity","Value":"sha256-UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE="},{"Name":"label","Value":"_framework/System.Collections.Immutable.wasm"}]},{"Route":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm","AssetFile":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010198462"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"98053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6uzpuv4o5d"},{"Name":"integrity","Value":"sha256-UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE="},{"Name":"label","Value":"_framework/System.Collections.Immutable.wasm"},{"Name":"original-resource","Value":"\"UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE=\""}]},{"Route":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm.gz","AssetFile":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"98053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6uzpuv4o5d"},{"Name":"integrity","Value":"sha256-FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI="},{"Name":"label","Value":"_framework/System.Collections.Immutable.wasm.gz"}]},{"Route":"_framework/System.Collections.Immutable.wasm","AssetFile":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"240917"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE="}]},{"Route":"_framework/System.Collections.Immutable.wasm","AssetFile":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010198462"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"98053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE="},{"Name":"original-resource","Value":"\"UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE=\""}]},{"Route":"_framework/System.Collections.Immutable.wasm.gz","AssetFile":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"98053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI="}]},{"Route":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm","AssetFile":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k5rgagff9o"},{"Name":"integrity","Value":"sha256-eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q="},{"Name":"label","Value":"_framework/System.Collections.NonGeneric.wasm"}]},{"Route":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm","AssetFile":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067944014"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14717"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k5rgagff9o"},{"Name":"integrity","Value":"sha256-eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q="},{"Name":"label","Value":"_framework/System.Collections.NonGeneric.wasm"},{"Name":"original-resource","Value":"\"eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q=\""}]},{"Route":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm.gz","AssetFile":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14717"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k5rgagff9o"},{"Name":"integrity","Value":"sha256-RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M="},{"Name":"label","Value":"_framework/System.Collections.NonGeneric.wasm.gz"}]},{"Route":"_framework/System.Collections.NonGeneric.wasm","AssetFile":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q="}]},{"Route":"_framework/System.Collections.NonGeneric.wasm","AssetFile":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067944014"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14717"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q="},{"Name":"original-resource","Value":"\"eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q=\""}]},{"Route":"_framework/System.Collections.NonGeneric.wasm.gz","AssetFile":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14717"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M="}]},{"Route":"_framework/System.Collections.Specialized.84wojkejb4.wasm","AssetFile":"_framework/System.Collections.Specialized.84wojkejb4.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"84wojkejb4"},{"Name":"integrity","Value":"sha256-mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74="},{"Name":"label","Value":"_framework/System.Collections.Specialized.wasm"}]},{"Route":"_framework/System.Collections.Specialized.84wojkejb4.wasm","AssetFile":"_framework/System.Collections.Specialized.84wojkejb4.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061218243"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16334"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"84wojkejb4"},{"Name":"integrity","Value":"sha256-mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74="},{"Name":"label","Value":"_framework/System.Collections.Specialized.wasm"},{"Name":"original-resource","Value":"\"mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74=\""}]},{"Route":"_framework/System.Collections.Specialized.84wojkejb4.wasm.gz","AssetFile":"_framework/System.Collections.Specialized.84wojkejb4.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16334"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"84wojkejb4"},{"Name":"integrity","Value":"sha256-iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0="},{"Name":"label","Value":"_framework/System.Collections.Specialized.wasm.gz"}]},{"Route":"_framework/System.Collections.Specialized.wasm","AssetFile":"_framework/System.Collections.Specialized.84wojkejb4.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74="}]},{"Route":"_framework/System.Collections.Specialized.wasm","AssetFile":"_framework/System.Collections.Specialized.84wojkejb4.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061218243"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16334"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74="},{"Name":"original-resource","Value":"\"mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74=\""}]},{"Route":"_framework/System.Collections.Specialized.wasm.gz","AssetFile":"_framework/System.Collections.Specialized.84wojkejb4.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16334"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0="}]},{"Route":"_framework/System.Collections.wasm","AssetFile":"_framework/System.Collections.63jrcion39.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"102677"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg="}]},{"Route":"_framework/System.Collections.wasm","AssetFile":"_framework/System.Collections.63jrcion39.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023100023"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"43289"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg="},{"Name":"original-resource","Value":"\"Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg=\""}]},{"Route":"_framework/System.Collections.wasm.gz","AssetFile":"_framework/System.Collections.63jrcion39.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"43289"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU="}]},{"Route":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm","AssetFile":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"92437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cjsvkufomv"},{"Name":"integrity","Value":"sha256-yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg="},{"Name":"label","Value":"_framework/System.ComponentModel.Annotations.wasm"}]},{"Route":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm","AssetFile":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000027950137"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cjsvkufomv"},{"Name":"integrity","Value":"sha256-yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg="},{"Name":"label","Value":"_framework/System.ComponentModel.Annotations.wasm"},{"Name":"original-resource","Value":"\"yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg=\""}]},{"Route":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm.gz","AssetFile":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cjsvkufomv"},{"Name":"integrity","Value":"sha256-6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM="},{"Name":"label","Value":"_framework/System.ComponentModel.Annotations.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.Annotations.wasm","AssetFile":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"92437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg="}]},{"Route":"_framework/System.ComponentModel.Annotations.wasm","AssetFile":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000027950137"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg="},{"Name":"original-resource","Value":"\"yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg=\""}]},{"Route":"_framework/System.ComponentModel.Annotations.wasm.gz","AssetFile":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM="}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm","AssetFile":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vpng0qt4u6"},{"Name":"integrity","Value":"sha256-7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o="},{"Name":"label","Value":"_framework/System.ComponentModel.DataAnnotations.wasm"}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm","AssetFile":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000386996904"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2583"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vpng0qt4u6"},{"Name":"integrity","Value":"sha256-7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o="},{"Name":"label","Value":"_framework/System.ComponentModel.DataAnnotations.wasm"},{"Name":"original-resource","Value":"\"7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o=\""}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm.gz","AssetFile":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2583"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vpng0qt4u6"},{"Name":"integrity","Value":"sha256-BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs="},{"Name":"label","Value":"_framework/System.ComponentModel.DataAnnotations.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.wasm","AssetFile":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o="}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.wasm","AssetFile":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000386996904"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2583"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o="},{"Name":"original-resource","Value":"\"7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o=\""}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.wasm.gz","AssetFile":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2583"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs="}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm","AssetFile":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"16149"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"en4q13ibd5"},{"Name":"integrity","Value":"sha256-9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38="},{"Name":"label","Value":"_framework/System.ComponentModel.EventBasedAsync.wasm"}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm","AssetFile":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000147536146"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"en4q13ibd5"},{"Name":"integrity","Value":"sha256-9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38="},{"Name":"label","Value":"_framework/System.ComponentModel.EventBasedAsync.wasm"},{"Name":"original-resource","Value":"\"9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38=\""}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm.gz","AssetFile":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"en4q13ibd5"},{"Name":"integrity","Value":"sha256-G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU="},{"Name":"label","Value":"_framework/System.ComponentModel.EventBasedAsync.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.wasm","AssetFile":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"16149"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38="}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.wasm","AssetFile":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000147536146"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38="},{"Name":"original-resource","Value":"\"9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38=\""}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.wasm.gz","AssetFile":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU="}]},{"Route":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm","AssetFile":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u0y5oi3qdg"},{"Name":"integrity","Value":"sha256-fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4="},{"Name":"label","Value":"_framework/System.ComponentModel.Primitives.wasm"}]},{"Route":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm","AssetFile":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000074493445"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13423"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u0y5oi3qdg"},{"Name":"integrity","Value":"sha256-fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4="},{"Name":"label","Value":"_framework/System.ComponentModel.Primitives.wasm"},{"Name":"original-resource","Value":"\"fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4=\""}]},{"Route":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm.gz","AssetFile":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13423"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u0y5oi3qdg"},{"Name":"integrity","Value":"sha256-yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM="},{"Name":"label","Value":"_framework/System.ComponentModel.Primitives.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.Primitives.wasm","AssetFile":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4="}]},{"Route":"_framework/System.ComponentModel.Primitives.wasm","AssetFile":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000074493445"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13423"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4="},{"Name":"original-resource","Value":"\"fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4=\""}]},{"Route":"_framework/System.ComponentModel.Primitives.wasm.gz","AssetFile":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13423"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM="}]},{"Route":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm","AssetFile":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"306453"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e2hbv9lola"},{"Name":"integrity","Value":"sha256-Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco="},{"Name":"label","Value":"_framework/System.ComponentModel.TypeConverter.wasm"}]},{"Route":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm","AssetFile":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008143389"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"122798"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e2hbv9lola"},{"Name":"integrity","Value":"sha256-Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco="},{"Name":"label","Value":"_framework/System.ComponentModel.TypeConverter.wasm"},{"Name":"original-resource","Value":"\"Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco=\""}]},{"Route":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm.gz","AssetFile":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"122798"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e2hbv9lola"},{"Name":"integrity","Value":"sha256-pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs="},{"Name":"label","Value":"_framework/System.ComponentModel.TypeConverter.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.TypeConverter.wasm","AssetFile":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"306453"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco="}]},{"Route":"_framework/System.ComponentModel.TypeConverter.wasm","AssetFile":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008143389"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"122798"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco="},{"Name":"original-resource","Value":"\"Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco=\""}]},{"Route":"_framework/System.ComponentModel.TypeConverter.wasm.gz","AssetFile":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"122798"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs="}]},{"Route":"_framework/System.ComponentModel.m11rh1qn2x.wasm","AssetFile":"_framework/System.ComponentModel.m11rh1qn2x.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m11rh1qn2x"},{"Name":"integrity","Value":"sha256-9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ="},{"Name":"label","Value":"_framework/System.ComponentModel.wasm"}]},{"Route":"_framework/System.ComponentModel.m11rh1qn2x.wasm","AssetFile":"_framework/System.ComponentModel.m11rh1qn2x.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388651380"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m11rh1qn2x"},{"Name":"integrity","Value":"sha256-9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ="},{"Name":"label","Value":"_framework/System.ComponentModel.wasm"},{"Name":"original-resource","Value":"\"9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ=\""}]},{"Route":"_framework/System.ComponentModel.m11rh1qn2x.wasm.gz","AssetFile":"_framework/System.ComponentModel.m11rh1qn2x.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m11rh1qn2x"},{"Name":"integrity","Value":"sha256-4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4="},{"Name":"label","Value":"_framework/System.ComponentModel.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.wasm","AssetFile":"_framework/System.ComponentModel.m11rh1qn2x.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ="}]},{"Route":"_framework/System.ComponentModel.wasm","AssetFile":"_framework/System.ComponentModel.m11rh1qn2x.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388651380"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ="},{"Name":"original-resource","Value":"\"9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ=\""}]},{"Route":"_framework/System.ComponentModel.wasm.gz","AssetFile":"_framework/System.ComponentModel.m11rh1qn2x.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4="}]},{"Route":"_framework/System.Configuration.j8qjkqg593.wasm","AssetFile":"_framework/System.Configuration.j8qjkqg593.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"8981"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8qjkqg593"},{"Name":"integrity","Value":"sha256-bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU="},{"Name":"label","Value":"_framework/System.Configuration.wasm"}]},{"Route":"_framework/System.Configuration.j8qjkqg593.wasm","AssetFile":"_framework/System.Configuration.j8qjkqg593.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000320204931"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3122"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8qjkqg593"},{"Name":"integrity","Value":"sha256-bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU="},{"Name":"label","Value":"_framework/System.Configuration.wasm"},{"Name":"original-resource","Value":"\"bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU=\""}]},{"Route":"_framework/System.Configuration.j8qjkqg593.wasm.gz","AssetFile":"_framework/System.Configuration.j8qjkqg593.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3122"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8qjkqg593"},{"Name":"integrity","Value":"sha256-KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA="},{"Name":"label","Value":"_framework/System.Configuration.wasm.gz"}]},{"Route":"_framework/System.Configuration.wasm","AssetFile":"_framework/System.Configuration.j8qjkqg593.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"8981"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU="}]},{"Route":"_framework/System.Configuration.wasm","AssetFile":"_framework/System.Configuration.j8qjkqg593.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000320204931"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3122"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU="},{"Name":"original-resource","Value":"\"bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU=\""}]},{"Route":"_framework/System.Configuration.wasm.gz","AssetFile":"_framework/System.Configuration.j8qjkqg593.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3122"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA="}]},{"Route":"_framework/System.Console.wasm","AssetFile":"_framework/System.Console.x9at0eh4vs.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"43797"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI="}]},{"Route":"_framework/System.Console.wasm","AssetFile":"_framework/System.Console.x9at0eh4vs.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051570316"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI="},{"Name":"original-resource","Value":"\"ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI=\""}]},{"Route":"_framework/System.Console.wasm.gz","AssetFile":"_framework/System.Console.x9at0eh4vs.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM="}]},{"Route":"_framework/System.Console.x9at0eh4vs.wasm","AssetFile":"_framework/System.Console.x9at0eh4vs.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"43797"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x9at0eh4vs"},{"Name":"integrity","Value":"sha256-ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI="},{"Name":"label","Value":"_framework/System.Console.wasm"}]},{"Route":"_framework/System.Console.x9at0eh4vs.wasm","AssetFile":"_framework/System.Console.x9at0eh4vs.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051570316"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x9at0eh4vs"},{"Name":"integrity","Value":"sha256-ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI="},{"Name":"label","Value":"_framework/System.Console.wasm"},{"Name":"original-resource","Value":"\"ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI=\""}]},{"Route":"_framework/System.Console.x9at0eh4vs.wasm.gz","AssetFile":"_framework/System.Console.x9at0eh4vs.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x9at0eh4vs"},{"Name":"integrity","Value":"sha256-EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM="},{"Name":"label","Value":"_framework/System.Console.wasm.gz"}]},{"Route":"_framework/System.Core.ickp29885z.wasm","AssetFile":"_framework/System.Core.ickp29885z.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ickp29885z"},{"Name":"integrity","Value":"sha256-vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU="},{"Name":"label","Value":"_framework/System.Core.wasm"}]},{"Route":"_framework/System.Core.ickp29885z.wasm","AssetFile":"_framework/System.Core.ickp29885z.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000219346348"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ickp29885z"},{"Name":"integrity","Value":"sha256-vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU="},{"Name":"label","Value":"_framework/System.Core.wasm"},{"Name":"original-resource","Value":"\"vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU=\""}]},{"Route":"_framework/System.Core.ickp29885z.wasm.gz","AssetFile":"_framework/System.Core.ickp29885z.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ickp29885z"},{"Name":"integrity","Value":"sha256-RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4="},{"Name":"label","Value":"_framework/System.Core.wasm.gz"}]},{"Route":"_framework/System.Core.wasm","AssetFile":"_framework/System.Core.ickp29885z.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU="}]},{"Route":"_framework/System.Core.wasm","AssetFile":"_framework/System.Core.ickp29885z.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000219346348"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU="},{"Name":"original-resource","Value":"\"vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU=\""}]},{"Route":"_framework/System.Core.wasm.gz","AssetFile":"_framework/System.Core.ickp29885z.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4="}]},{"Route":"_framework/System.Data.0h75nr7qqd.wasm","AssetFile":"_framework/System.Data.0h75nr7qqd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"15125"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0h75nr7qqd"},{"Name":"integrity","Value":"sha256-7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg="},{"Name":"label","Value":"_framework/System.Data.wasm"}]},{"Route":"_framework/System.Data.0h75nr7qqd.wasm","AssetFile":"_framework/System.Data.0h75nr7qqd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000199084213"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5022"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0h75nr7qqd"},{"Name":"integrity","Value":"sha256-7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg="},{"Name":"label","Value":"_framework/System.Data.wasm"},{"Name":"original-resource","Value":"\"7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg=\""}]},{"Route":"_framework/System.Data.0h75nr7qqd.wasm.gz","AssetFile":"_framework/System.Data.0h75nr7qqd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5022"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0h75nr7qqd"},{"Name":"integrity","Value":"sha256-8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE="},{"Name":"label","Value":"_framework/System.Data.wasm.gz"}]},{"Route":"_framework/System.Data.Common.4wisaz8pj4.wasm","AssetFile":"_framework/System.Data.Common.4wisaz8pj4.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1007893"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4wisaz8pj4"},{"Name":"integrity","Value":"sha256-pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q="},{"Name":"label","Value":"_framework/System.Data.Common.wasm"}]},{"Route":"_framework/System.Data.Common.4wisaz8pj4.wasm","AssetFile":"_framework/System.Data.Common.4wisaz8pj4.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000002663974"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"375378"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4wisaz8pj4"},{"Name":"integrity","Value":"sha256-pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q="},{"Name":"label","Value":"_framework/System.Data.Common.wasm"},{"Name":"original-resource","Value":"\"pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q=\""}]},{"Route":"_framework/System.Data.Common.4wisaz8pj4.wasm.gz","AssetFile":"_framework/System.Data.Common.4wisaz8pj4.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"375378"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4wisaz8pj4"},{"Name":"integrity","Value":"sha256-ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A="},{"Name":"label","Value":"_framework/System.Data.Common.wasm.gz"}]},{"Route":"_framework/System.Data.Common.wasm","AssetFile":"_framework/System.Data.Common.4wisaz8pj4.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1007893"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q="}]},{"Route":"_framework/System.Data.Common.wasm","AssetFile":"_framework/System.Data.Common.4wisaz8pj4.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000002663974"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"375378"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q="},{"Name":"original-resource","Value":"\"pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q=\""}]},{"Route":"_framework/System.Data.Common.wasm.gz","AssetFile":"_framework/System.Data.Common.4wisaz8pj4.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"375378"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A="}]},{"Route":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm","AssetFile":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"904tnen1ot"},{"Name":"integrity","Value":"sha256-dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A="},{"Name":"label","Value":"_framework/System.Data.DataSetExtensions.wasm"}]},{"Route":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm","AssetFile":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000480307397"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2081"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"904tnen1ot"},{"Name":"integrity","Value":"sha256-dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A="},{"Name":"label","Value":"_framework/System.Data.DataSetExtensions.wasm"},{"Name":"original-resource","Value":"\"dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A=\""}]},{"Route":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm.gz","AssetFile":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2081"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"904tnen1ot"},{"Name":"integrity","Value":"sha256-re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY="},{"Name":"label","Value":"_framework/System.Data.DataSetExtensions.wasm.gz"}]},{"Route":"_framework/System.Data.DataSetExtensions.wasm","AssetFile":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A="}]},{"Route":"_framework/System.Data.DataSetExtensions.wasm","AssetFile":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000480307397"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2081"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A="},{"Name":"original-resource","Value":"\"dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A=\""}]},{"Route":"_framework/System.Data.DataSetExtensions.wasm.gz","AssetFile":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2081"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY="}]},{"Route":"_framework/System.Data.wasm","AssetFile":"_framework/System.Data.0h75nr7qqd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"15125"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg="}]},{"Route":"_framework/System.Data.wasm","AssetFile":"_framework/System.Data.0h75nr7qqd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000199084213"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5022"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg="},{"Name":"original-resource","Value":"\"7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg=\""}]},{"Route":"_framework/System.Data.wasm.gz","AssetFile":"_framework/System.Data.0h75nr7qqd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5022"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE="}]},{"Route":"_framework/System.Diagnostics.Contracts.wasm","AssetFile":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I="}]},{"Route":"_framework/System.Diagnostics.Contracts.wasm","AssetFile":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000417885499"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2392"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I="},{"Name":"original-resource","Value":"\"2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I=\""}]},{"Route":"_framework/System.Diagnostics.Contracts.wasm.gz","AssetFile":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2392"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY="}]},{"Route":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm","AssetFile":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z1eotzj35n"},{"Name":"integrity","Value":"sha256-2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I="},{"Name":"label","Value":"_framework/System.Diagnostics.Contracts.wasm"}]},{"Route":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm","AssetFile":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000417885499"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2392"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z1eotzj35n"},{"Name":"integrity","Value":"sha256-2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I="},{"Name":"label","Value":"_framework/System.Diagnostics.Contracts.wasm"},{"Name":"original-resource","Value":"\"2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I=\""}]},{"Route":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm.gz","AssetFile":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2392"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z1eotzj35n"},{"Name":"integrity","Value":"sha256-Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY="},{"Name":"label","Value":"_framework/System.Diagnostics.Contracts.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm","AssetFile":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aeh9b1tcuc"},{"Name":"integrity","Value":"sha256-Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g="},{"Name":"label","Value":"_framework/System.Diagnostics.Debug.wasm"}]},{"Route":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm","AssetFile":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000437636761"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2284"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aeh9b1tcuc"},{"Name":"integrity","Value":"sha256-Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g="},{"Name":"label","Value":"_framework/System.Diagnostics.Debug.wasm"},{"Name":"original-resource","Value":"\"Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g=\""}]},{"Route":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm.gz","AssetFile":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2284"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aeh9b1tcuc"},{"Name":"integrity","Value":"sha256-DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk="},{"Name":"label","Value":"_framework/System.Diagnostics.Debug.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.Debug.wasm","AssetFile":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g="}]},{"Route":"_framework/System.Diagnostics.Debug.wasm","AssetFile":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000437636761"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2284"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g="},{"Name":"original-resource","Value":"\"Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g=\""}]},{"Route":"_framework/System.Diagnostics.Debug.wasm.gz","AssetFile":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2284"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk="}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm","AssetFile":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"192277"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ou2dt7nfo2"},{"Name":"integrity","Value":"sha256-sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc="},{"Name":"label","Value":"_framework/System.Diagnostics.DiagnosticSource.wasm"}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm","AssetFile":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000012340499"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"81033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ou2dt7nfo2"},{"Name":"integrity","Value":"sha256-sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc="},{"Name":"label","Value":"_framework/System.Diagnostics.DiagnosticSource.wasm"},{"Name":"original-resource","Value":"\"sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc=\""}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm.gz","AssetFile":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"81033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ou2dt7nfo2"},{"Name":"integrity","Value":"sha256-4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs="},{"Name":"label","Value":"_framework/System.Diagnostics.DiagnosticSource.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.wasm","AssetFile":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"192277"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc="}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.wasm","AssetFile":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000012340499"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"81033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc="},{"Name":"original-resource","Value":"\"sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc=\""}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.wasm.gz","AssetFile":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"81033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs="}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm","AssetFile":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"12565"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kv9gl8mgag"},{"Name":"integrity","Value":"sha256-ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4="},{"Name":"label","Value":"_framework/System.Diagnostics.FileVersionInfo.wasm"}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm","AssetFile":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000194817845"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5132"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kv9gl8mgag"},{"Name":"integrity","Value":"sha256-ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4="},{"Name":"label","Value":"_framework/System.Diagnostics.FileVersionInfo.wasm"},{"Name":"original-resource","Value":"\"ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4=\""}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm.gz","AssetFile":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5132"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kv9gl8mgag"},{"Name":"integrity","Value":"sha256-Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA="},{"Name":"label","Value":"_framework/System.Diagnostics.FileVersionInfo.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.wasm","AssetFile":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"12565"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4="}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.wasm","AssetFile":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000194817845"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5132"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4="},{"Name":"original-resource","Value":"\"ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4=\""}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.wasm.gz","AssetFile":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5132"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA="}]},{"Route":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm","AssetFile":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"46357"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lqtqkmw274"},{"Name":"integrity","Value":"sha256-87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk="},{"Name":"label","Value":"_framework/System.Diagnostics.Process.wasm"}]},{"Route":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm","AssetFile":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061736017"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lqtqkmw274"},{"Name":"integrity","Value":"sha256-87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk="},{"Name":"label","Value":"_framework/System.Diagnostics.Process.wasm"},{"Name":"original-resource","Value":"\"87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk=\""}]},{"Route":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm.gz","AssetFile":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lqtqkmw274"},{"Name":"integrity","Value":"sha256-a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0="},{"Name":"label","Value":"_framework/System.Diagnostics.Process.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.Process.wasm","AssetFile":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"46357"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk="}]},{"Route":"_framework/System.Diagnostics.Process.wasm","AssetFile":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061736017"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk="},{"Name":"original-resource","Value":"\"87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk=\""}]},{"Route":"_framework/System.Diagnostics.Process.wasm.gz","AssetFile":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0="}]},{"Route":"_framework/System.Diagnostics.StackTrace.wasm","AssetFile":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"15637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls="}]},{"Route":"_framework/System.Diagnostics.StackTrace.wasm","AssetFile":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000135758892"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7365"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls="},{"Name":"original-resource","Value":"\"jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls=\""}]},{"Route":"_framework/System.Diagnostics.StackTrace.wasm.gz","AssetFile":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7365"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg="}]},{"Route":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm","AssetFile":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"15637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wvlboxd9cz"},{"Name":"integrity","Value":"sha256-jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls="},{"Name":"label","Value":"_framework/System.Diagnostics.StackTrace.wasm"}]},{"Route":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm","AssetFile":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000135758892"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7365"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wvlboxd9cz"},{"Name":"integrity","Value":"sha256-jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls="},{"Name":"label","Value":"_framework/System.Diagnostics.StackTrace.wasm"},{"Name":"original-resource","Value":"\"jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls=\""}]},{"Route":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm.gz","AssetFile":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7365"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wvlboxd9cz"},{"Name":"integrity","Value":"sha256-+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg="},{"Name":"label","Value":"_framework/System.Diagnostics.StackTrace.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm","AssetFile":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"21269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mx5w1z1p6w"},{"Name":"integrity","Value":"sha256-9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8="},{"Name":"label","Value":"_framework/System.Diagnostics.TextWriterTraceListener.wasm"}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm","AssetFile":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000106484932"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mx5w1z1p6w"},{"Name":"integrity","Value":"sha256-9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8="},{"Name":"label","Value":"_framework/System.Diagnostics.TextWriterTraceListener.wasm"},{"Name":"original-resource","Value":"\"9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8=\""}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm.gz","AssetFile":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mx5w1z1p6w"},{"Name":"integrity","Value":"sha256-bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY="},{"Name":"label","Value":"_framework/System.Diagnostics.TextWriterTraceListener.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.wasm","AssetFile":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"21269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8="}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.wasm","AssetFile":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000106484932"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8="},{"Name":"original-resource","Value":"\"9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8=\""}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.wasm.gz","AssetFile":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY="}]},{"Route":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm","AssetFile":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"862j1ozg5o"},{"Name":"integrity","Value":"sha256-wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE="},{"Name":"label","Value":"_framework/System.Diagnostics.Tools.wasm"}]},{"Route":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm","AssetFile":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455580866"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"862j1ozg5o"},{"Name":"integrity","Value":"sha256-wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE="},{"Name":"label","Value":"_framework/System.Diagnostics.Tools.wasm"},{"Name":"original-resource","Value":"\"wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE=\""}]},{"Route":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm.gz","AssetFile":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"862j1ozg5o"},{"Name":"integrity","Value":"sha256-Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0="},{"Name":"label","Value":"_framework/System.Diagnostics.Tools.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.Tools.wasm","AssetFile":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE="}]},{"Route":"_framework/System.Diagnostics.Tools.wasm","AssetFile":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455580866"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE="},{"Name":"original-resource","Value":"\"wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE=\""}]},{"Route":"_framework/System.Diagnostics.Tools.wasm.gz","AssetFile":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0="}]},{"Route":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm","AssetFile":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"48405"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j08okd90mo"},{"Name":"integrity","Value":"sha256-k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc="},{"Name":"label","Value":"_framework/System.Diagnostics.TraceSource.wasm"}]},{"Route":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm","AssetFile":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000049701789"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20119"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j08okd90mo"},{"Name":"integrity","Value":"sha256-k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc="},{"Name":"label","Value":"_framework/System.Diagnostics.TraceSource.wasm"},{"Name":"original-resource","Value":"\"k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc=\""}]},{"Route":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm.gz","AssetFile":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20119"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j08okd90mo"},{"Name":"integrity","Value":"sha256-xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM="},{"Name":"label","Value":"_framework/System.Diagnostics.TraceSource.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.TraceSource.wasm","AssetFile":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"48405"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc="}]},{"Route":"_framework/System.Diagnostics.TraceSource.wasm","AssetFile":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000049701789"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20119"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc="},{"Name":"original-resource","Value":"\"k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc=\""}]},{"Route":"_framework/System.Diagnostics.TraceSource.wasm.gz","AssetFile":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20119"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM="}]},{"Route":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm","AssetFile":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bnz7jo4op8"},{"Name":"integrity","Value":"sha256-ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg="},{"Name":"label","Value":"_framework/System.Diagnostics.Tracing.wasm"}]},{"Route":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm","AssetFile":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000398406375"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bnz7jo4op8"},{"Name":"integrity","Value":"sha256-ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg="},{"Name":"label","Value":"_framework/System.Diagnostics.Tracing.wasm"},{"Name":"original-resource","Value":"\"ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg=\""}]},{"Route":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm.gz","AssetFile":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bnz7jo4op8"},{"Name":"integrity","Value":"sha256-ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI="},{"Name":"label","Value":"_framework/System.Diagnostics.Tracing.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.Tracing.wasm","AssetFile":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg="}]},{"Route":"_framework/System.Diagnostics.Tracing.wasm","AssetFile":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000398406375"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg="},{"Name":"original-resource","Value":"\"ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg=\""}]},{"Route":"_framework/System.Diagnostics.Tracing.wasm.gz","AssetFile":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI="}]},{"Route":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm","AssetFile":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"54549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k3z431p3v7"},{"Name":"integrity","Value":"sha256-sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U="},{"Name":"label","Value":"_framework/System.Drawing.Primitives.wasm"}]},{"Route":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm","AssetFile":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041590418"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24043"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k3z431p3v7"},{"Name":"integrity","Value":"sha256-sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U="},{"Name":"label","Value":"_framework/System.Drawing.Primitives.wasm"},{"Name":"original-resource","Value":"\"sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U=\""}]},{"Route":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm.gz","AssetFile":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24043"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k3z431p3v7"},{"Name":"integrity","Value":"sha256-s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto="},{"Name":"label","Value":"_framework/System.Drawing.Primitives.wasm.gz"}]},{"Route":"_framework/System.Drawing.Primitives.wasm","AssetFile":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"54549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U="}]},{"Route":"_framework/System.Drawing.Primitives.wasm","AssetFile":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041590418"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24043"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U="},{"Name":"original-resource","Value":"\"sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U=\""}]},{"Route":"_framework/System.Drawing.Primitives.wasm.gz","AssetFile":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24043"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto="}]},{"Route":"_framework/System.Drawing.v0usa2s224.wasm","AssetFile":"_framework/System.Drawing.v0usa2s224.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0usa2s224"},{"Name":"integrity","Value":"sha256-/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I="},{"Name":"label","Value":"_framework/System.Drawing.wasm"}]},{"Route":"_framework/System.Drawing.v0usa2s224.wasm","AssetFile":"_framework/System.Drawing.v0usa2s224.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000258732212"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3864"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0usa2s224"},{"Name":"integrity","Value":"sha256-/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I="},{"Name":"label","Value":"_framework/System.Drawing.wasm"},{"Name":"original-resource","Value":"\"/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I=\""}]},{"Route":"_framework/System.Drawing.v0usa2s224.wasm.gz","AssetFile":"_framework/System.Drawing.v0usa2s224.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3864"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0usa2s224"},{"Name":"integrity","Value":"sha256-ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c="},{"Name":"label","Value":"_framework/System.Drawing.wasm.gz"}]},{"Route":"_framework/System.Drawing.wasm","AssetFile":"_framework/System.Drawing.v0usa2s224.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I="}]},{"Route":"_framework/System.Drawing.wasm","AssetFile":"_framework/System.Drawing.v0usa2s224.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000258732212"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3864"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I="},{"Name":"original-resource","Value":"\"/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I=\""}]},{"Route":"_framework/System.Drawing.wasm.gz","AssetFile":"_framework/System.Drawing.v0usa2s224.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3864"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c="}]},{"Route":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm","AssetFile":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iktlm0yhdx"},{"Name":"integrity","Value":"sha256-8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ="},{"Name":"label","Value":"_framework/System.Dynamic.Runtime.wasm"}]},{"Route":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm","AssetFile":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000408997955"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2444"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iktlm0yhdx"},{"Name":"integrity","Value":"sha256-8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ="},{"Name":"label","Value":"_framework/System.Dynamic.Runtime.wasm"},{"Name":"original-resource","Value":"\"8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ=\""}]},{"Route":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm.gz","AssetFile":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2444"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iktlm0yhdx"},{"Name":"integrity","Value":"sha256-DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A="},{"Name":"label","Value":"_framework/System.Dynamic.Runtime.wasm.gz"}]},{"Route":"_framework/System.Dynamic.Runtime.wasm","AssetFile":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ="}]},{"Route":"_framework/System.Dynamic.Runtime.wasm","AssetFile":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000408997955"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2444"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ="},{"Name":"original-resource","Value":"\"8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ=\""}]},{"Route":"_framework/System.Dynamic.Runtime.wasm.gz","AssetFile":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2444"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A="}]},{"Route":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm","AssetFile":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"86805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9iyl1hnh76"},{"Name":"integrity","Value":"sha256-8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0="},{"Name":"label","Value":"_framework/System.Formats.Asn1.wasm"}]},{"Route":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm","AssetFile":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000028005713"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35706"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9iyl1hnh76"},{"Name":"integrity","Value":"sha256-8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0="},{"Name":"label","Value":"_framework/System.Formats.Asn1.wasm"},{"Name":"original-resource","Value":"\"8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0=\""}]},{"Route":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm.gz","AssetFile":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35706"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9iyl1hnh76"},{"Name":"integrity","Value":"sha256-LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw="},{"Name":"label","Value":"_framework/System.Formats.Asn1.wasm.gz"}]},{"Route":"_framework/System.Formats.Asn1.wasm","AssetFile":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"86805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0="}]},{"Route":"_framework/System.Formats.Asn1.wasm","AssetFile":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000028005713"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35706"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0="},{"Name":"original-resource","Value":"\"8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0=\""}]},{"Route":"_framework/System.Formats.Asn1.wasm.gz","AssetFile":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35706"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw="}]},{"Route":"_framework/System.Formats.Tar.9ikmelhi7g.wasm","AssetFile":"_framework/System.Formats.Tar.9ikmelhi7g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"28437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ikmelhi7g"},{"Name":"integrity","Value":"sha256-rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE="},{"Name":"label","Value":"_framework/System.Formats.Tar.wasm"}]},{"Route":"_framework/System.Formats.Tar.9ikmelhi7g.wasm","AssetFile":"_framework/System.Formats.Tar.9ikmelhi7g.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000095292548"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10493"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ikmelhi7g"},{"Name":"integrity","Value":"sha256-rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE="},{"Name":"label","Value":"_framework/System.Formats.Tar.wasm"},{"Name":"original-resource","Value":"\"rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE=\""}]},{"Route":"_framework/System.Formats.Tar.9ikmelhi7g.wasm.gz","AssetFile":"_framework/System.Formats.Tar.9ikmelhi7g.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10493"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ikmelhi7g"},{"Name":"integrity","Value":"sha256-F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k="},{"Name":"label","Value":"_framework/System.Formats.Tar.wasm.gz"}]},{"Route":"_framework/System.Formats.Tar.wasm","AssetFile":"_framework/System.Formats.Tar.9ikmelhi7g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"28437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE="}]},{"Route":"_framework/System.Formats.Tar.wasm","AssetFile":"_framework/System.Formats.Tar.9ikmelhi7g.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000095292548"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10493"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE="},{"Name":"original-resource","Value":"\"rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE=\""}]},{"Route":"_framework/System.Formats.Tar.wasm.gz","AssetFile":"_framework/System.Formats.Tar.9ikmelhi7g.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10493"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k="}]},{"Route":"_framework/System.Globalization.4ulc930few.wasm","AssetFile":"_framework/System.Globalization.4ulc930few.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4ulc930few"},{"Name":"integrity","Value":"sha256-jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I="},{"Name":"label","Value":"_framework/System.Globalization.wasm"}]},{"Route":"_framework/System.Globalization.4ulc930few.wasm","AssetFile":"_framework/System.Globalization.4ulc930few.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000439367311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4ulc930few"},{"Name":"integrity","Value":"sha256-jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I="},{"Name":"label","Value":"_framework/System.Globalization.wasm"},{"Name":"original-resource","Value":"\"jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I=\""}]},{"Route":"_framework/System.Globalization.4ulc930few.wasm.gz","AssetFile":"_framework/System.Globalization.4ulc930few.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4ulc930few"},{"Name":"integrity","Value":"sha256-GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA="},{"Name":"label","Value":"_framework/System.Globalization.wasm.gz"}]},{"Route":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm","AssetFile":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e8yl47y6cv"},{"Name":"integrity","Value":"sha256-jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo="},{"Name":"label","Value":"_framework/System.Globalization.Calendars.wasm"}]},{"Route":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm","AssetFile":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000434971727"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2298"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e8yl47y6cv"},{"Name":"integrity","Value":"sha256-jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo="},{"Name":"label","Value":"_framework/System.Globalization.Calendars.wasm"},{"Name":"original-resource","Value":"\"jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo=\""}]},{"Route":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm.gz","AssetFile":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2298"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e8yl47y6cv"},{"Name":"integrity","Value":"sha256-bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A="},{"Name":"label","Value":"_framework/System.Globalization.Calendars.wasm.gz"}]},{"Route":"_framework/System.Globalization.Calendars.wasm","AssetFile":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo="}]},{"Route":"_framework/System.Globalization.Calendars.wasm","AssetFile":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000434971727"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2298"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo="},{"Name":"original-resource","Value":"\"jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo=\""}]},{"Route":"_framework/System.Globalization.Calendars.wasm.gz","AssetFile":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2298"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A="}]},{"Route":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm","AssetFile":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvxkfs32tv"},{"Name":"integrity","Value":"sha256-e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ="},{"Name":"label","Value":"_framework/System.Globalization.Extensions.wasm"}]},{"Route":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm","AssetFile":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000456412597"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2190"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvxkfs32tv"},{"Name":"integrity","Value":"sha256-e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ="},{"Name":"label","Value":"_framework/System.Globalization.Extensions.wasm"},{"Name":"original-resource","Value":"\"e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ=\""}]},{"Route":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm.gz","AssetFile":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2190"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvxkfs32tv"},{"Name":"integrity","Value":"sha256-mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o="},{"Name":"label","Value":"_framework/System.Globalization.Extensions.wasm.gz"}]},{"Route":"_framework/System.Globalization.Extensions.wasm","AssetFile":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ="}]},{"Route":"_framework/System.Globalization.Extensions.wasm","AssetFile":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000456412597"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2190"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ="},{"Name":"original-resource","Value":"\"e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ=\""}]},{"Route":"_framework/System.Globalization.Extensions.wasm.gz","AssetFile":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2190"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o="}]},{"Route":"_framework/System.Globalization.wasm","AssetFile":"_framework/System.Globalization.4ulc930few.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I="}]},{"Route":"_framework/System.Globalization.wasm","AssetFile":"_framework/System.Globalization.4ulc930few.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000439367311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I="},{"Name":"original-resource","Value":"\"jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I=\""}]},{"Route":"_framework/System.Globalization.wasm.gz","AssetFile":"_framework/System.Globalization.4ulc930few.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA="}]},{"Route":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm","AssetFile":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ibxx4kh8c6"},{"Name":"integrity","Value":"sha256-7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY="},{"Name":"label","Value":"_framework/System.IO.Compression.Brotli.wasm"}]},{"Route":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm","AssetFile":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000143988481"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6944"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ibxx4kh8c6"},{"Name":"integrity","Value":"sha256-7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY="},{"Name":"label","Value":"_framework/System.IO.Compression.Brotli.wasm"},{"Name":"original-resource","Value":"\"7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY=\""}]},{"Route":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm.gz","AssetFile":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6944"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ibxx4kh8c6"},{"Name":"integrity","Value":"sha256-1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw="},{"Name":"label","Value":"_framework/System.IO.Compression.Brotli.wasm.gz"}]},{"Route":"_framework/System.IO.Compression.Brotli.wasm","AssetFile":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY="}]},{"Route":"_framework/System.IO.Compression.Brotli.wasm","AssetFile":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000143988481"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6944"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY="},{"Name":"original-resource","Value":"\"7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY=\""}]},{"Route":"_framework/System.IO.Compression.Brotli.wasm.gz","AssetFile":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6944"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw="}]},{"Route":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm","AssetFile":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bselp9vv9w"},{"Name":"integrity","Value":"sha256-5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM="},{"Name":"label","Value":"_framework/System.IO.Compression.FileSystem.wasm"}]},{"Route":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm","AssetFile":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000498504487"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bselp9vv9w"},{"Name":"integrity","Value":"sha256-5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM="},{"Name":"label","Value":"_framework/System.IO.Compression.FileSystem.wasm"},{"Name":"original-resource","Value":"\"5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM=\""}]},{"Route":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm.gz","AssetFile":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bselp9vv9w"},{"Name":"integrity","Value":"sha256-dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI="},{"Name":"label","Value":"_framework/System.IO.Compression.FileSystem.wasm.gz"}]},{"Route":"_framework/System.IO.Compression.FileSystem.wasm","AssetFile":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM="}]},{"Route":"_framework/System.IO.Compression.FileSystem.wasm","AssetFile":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000498504487"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM="},{"Name":"original-resource","Value":"\"5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM=\""}]},{"Route":"_framework/System.IO.Compression.FileSystem.wasm.gz","AssetFile":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI="}]},{"Route":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm","AssetFile":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"43285"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b0ha8vyo8i"},{"Name":"integrity","Value":"sha256-m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk="},{"Name":"label","Value":"_framework/System.IO.Compression.ZipFile.wasm"}]},{"Route":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm","AssetFile":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053490238"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18694"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b0ha8vyo8i"},{"Name":"integrity","Value":"sha256-m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk="},{"Name":"label","Value":"_framework/System.IO.Compression.ZipFile.wasm"},{"Name":"original-resource","Value":"\"m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk=\""}]},{"Route":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm.gz","AssetFile":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18694"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b0ha8vyo8i"},{"Name":"integrity","Value":"sha256-+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc="},{"Name":"label","Value":"_framework/System.IO.Compression.ZipFile.wasm.gz"}]},{"Route":"_framework/System.IO.Compression.ZipFile.wasm","AssetFile":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"43285"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk="}]},{"Route":"_framework/System.IO.Compression.ZipFile.wasm","AssetFile":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053490238"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18694"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk="},{"Name":"original-resource","Value":"\"m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk=\""}]},{"Route":"_framework/System.IO.Compression.ZipFile.wasm.gz","AssetFile":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18694"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc="}]},{"Route":"_framework/System.IO.Compression.sgbc42zrd8.wasm","AssetFile":"_framework/System.IO.Compression.sgbc42zrd8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"157461"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sgbc42zrd8"},{"Name":"integrity","Value":"sha256-DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY="},{"Name":"label","Value":"_framework/System.IO.Compression.wasm"}]},{"Route":"_framework/System.IO.Compression.sgbc42zrd8.wasm","AssetFile":"_framework/System.IO.Compression.sgbc42zrd8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015435195"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64786"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sgbc42zrd8"},{"Name":"integrity","Value":"sha256-DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY="},{"Name":"label","Value":"_framework/System.IO.Compression.wasm"},{"Name":"original-resource","Value":"\"DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY=\""}]},{"Route":"_framework/System.IO.Compression.sgbc42zrd8.wasm.gz","AssetFile":"_framework/System.IO.Compression.sgbc42zrd8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64786"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sgbc42zrd8"},{"Name":"integrity","Value":"sha256-/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28="},{"Name":"label","Value":"_framework/System.IO.Compression.wasm.gz"}]},{"Route":"_framework/System.IO.Compression.wasm","AssetFile":"_framework/System.IO.Compression.sgbc42zrd8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"157461"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY="}]},{"Route":"_framework/System.IO.Compression.wasm","AssetFile":"_framework/System.IO.Compression.sgbc42zrd8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015435195"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64786"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY="},{"Name":"original-resource","Value":"\"DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY=\""}]},{"Route":"_framework/System.IO.Compression.wasm.gz","AssetFile":"_framework/System.IO.Compression.sgbc42zrd8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64786"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28="}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm","AssetFile":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"21781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oi9xn5s0h3"},{"Name":"integrity","Value":"sha256-kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg="},{"Name":"label","Value":"_framework/System.IO.FileSystem.AccessControl.wasm"}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm","AssetFile":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000117994100"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8474"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oi9xn5s0h3"},{"Name":"integrity","Value":"sha256-kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg="},{"Name":"label","Value":"_framework/System.IO.FileSystem.AccessControl.wasm"},{"Name":"original-resource","Value":"\"kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg=\""}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8474"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oi9xn5s0h3"},{"Name":"integrity","Value":"sha256-dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A="},{"Name":"label","Value":"_framework/System.IO.FileSystem.AccessControl.wasm.gz"}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.wasm","AssetFile":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"21781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg="}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.wasm","AssetFile":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000117994100"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8474"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg="},{"Name":"original-resource","Value":"\"kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg=\""}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8474"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A="}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm","AssetFile":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13589"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fi1uhp9255"},{"Name":"integrity","Value":"sha256-2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU="},{"Name":"label","Value":"_framework/System.IO.FileSystem.DriveInfo.wasm"}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm","AssetFile":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000165727544"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fi1uhp9255"},{"Name":"integrity","Value":"sha256-2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU="},{"Name":"label","Value":"_framework/System.IO.FileSystem.DriveInfo.wasm"},{"Name":"original-resource","Value":"\"2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU=\""}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fi1uhp9255"},{"Name":"integrity","Value":"sha256-9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4="},{"Name":"label","Value":"_framework/System.IO.FileSystem.DriveInfo.wasm.gz"}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.wasm","AssetFile":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13589"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU="}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.wasm","AssetFile":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000165727544"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU="},{"Name":"original-resource","Value":"\"2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU=\""}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4="}]},{"Route":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm","AssetFile":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6j2ed42ac7"},{"Name":"integrity","Value":"sha256-UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Primitives.wasm"}]},{"Route":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm","AssetFile":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455996352"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2192"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6j2ed42ac7"},{"Name":"integrity","Value":"sha256-UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Primitives.wasm"},{"Name":"original-resource","Value":"\"UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI=\""}]},{"Route":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2192"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6j2ed42ac7"},{"Name":"integrity","Value":"sha256-apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Primitives.wasm.gz"}]},{"Route":"_framework/System.IO.FileSystem.Primitives.wasm","AssetFile":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI="}]},{"Route":"_framework/System.IO.FileSystem.Primitives.wasm","AssetFile":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455996352"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2192"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI="},{"Name":"original-resource","Value":"\"UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI=\""}]},{"Route":"_framework/System.IO.FileSystem.Primitives.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2192"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg="}]},{"Route":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm","AssetFile":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v9i07bnq2k"},{"Name":"integrity","Value":"sha256-g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Watcher.wasm"}]},{"Route":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm","AssetFile":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000114259598"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8751"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v9i07bnq2k"},{"Name":"integrity","Value":"sha256-g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Watcher.wasm"},{"Name":"original-resource","Value":"\"g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg=\""}]},{"Route":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8751"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v9i07bnq2k"},{"Name":"integrity","Value":"sha256-XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Watcher.wasm.gz"}]},{"Route":"_framework/System.IO.FileSystem.Watcher.wasm","AssetFile":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg="}]},{"Route":"_framework/System.IO.FileSystem.Watcher.wasm","AssetFile":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000114259598"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8751"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg="},{"Name":"original-resource","Value":"\"g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg=\""}]},{"Route":"_framework/System.IO.FileSystem.Watcher.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8751"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ="}]},{"Route":"_framework/System.IO.FileSystem.fktu0k4b93.wasm","AssetFile":"_framework/System.IO.FileSystem.fktu0k4b93.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fktu0k4b93"},{"Name":"integrity","Value":"sha256-L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM="},{"Name":"label","Value":"_framework/System.IO.FileSystem.wasm"}]},{"Route":"_framework/System.IO.FileSystem.fktu0k4b93.wasm","AssetFile":"_framework/System.IO.FileSystem.fktu0k4b93.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000434027778"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2303"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fktu0k4b93"},{"Name":"integrity","Value":"sha256-L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM="},{"Name":"label","Value":"_framework/System.IO.FileSystem.wasm"},{"Name":"original-resource","Value":"\"L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM=\""}]},{"Route":"_framework/System.IO.FileSystem.fktu0k4b93.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.fktu0k4b93.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2303"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fktu0k4b93"},{"Name":"integrity","Value":"sha256-1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ="},{"Name":"label","Value":"_framework/System.IO.FileSystem.wasm.gz"}]},{"Route":"_framework/System.IO.FileSystem.wasm","AssetFile":"_framework/System.IO.FileSystem.fktu0k4b93.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM="}]},{"Route":"_framework/System.IO.FileSystem.wasm","AssetFile":"_framework/System.IO.FileSystem.fktu0k4b93.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000434027778"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2303"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM="},{"Name":"original-resource","Value":"\"L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM=\""}]},{"Route":"_framework/System.IO.FileSystem.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.fktu0k4b93.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2303"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ="}]},{"Route":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm","AssetFile":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"24853"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8ll4gxwfs1"},{"Name":"integrity","Value":"sha256-TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4="},{"Name":"label","Value":"_framework/System.IO.IsolatedStorage.wasm"}]},{"Route":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm","AssetFile":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000106723586"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9369"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8ll4gxwfs1"},{"Name":"integrity","Value":"sha256-TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4="},{"Name":"label","Value":"_framework/System.IO.IsolatedStorage.wasm"},{"Name":"original-resource","Value":"\"TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4=\""}]},{"Route":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm.gz","AssetFile":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9369"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8ll4gxwfs1"},{"Name":"integrity","Value":"sha256-KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ="},{"Name":"label","Value":"_framework/System.IO.IsolatedStorage.wasm.gz"}]},{"Route":"_framework/System.IO.IsolatedStorage.wasm","AssetFile":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"24853"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4="}]},{"Route":"_framework/System.IO.IsolatedStorage.wasm","AssetFile":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000106723586"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9369"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4="},{"Name":"original-resource","Value":"\"TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4=\""}]},{"Route":"_framework/System.IO.IsolatedStorage.wasm.gz","AssetFile":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9369"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ="}]},{"Route":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm","AssetFile":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"39701"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6do4olk7ib"},{"Name":"integrity","Value":"sha256-WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk="},{"Name":"label","Value":"_framework/System.IO.MemoryMappedFiles.wasm"}]},{"Route":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm","AssetFile":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000058775126"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6do4olk7ib"},{"Name":"integrity","Value":"sha256-WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk="},{"Name":"label","Value":"_framework/System.IO.MemoryMappedFiles.wasm"},{"Name":"original-resource","Value":"\"WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk=\""}]},{"Route":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm.gz","AssetFile":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6do4olk7ib"},{"Name":"integrity","Value":"sha256-uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk="},{"Name":"label","Value":"_framework/System.IO.MemoryMappedFiles.wasm.gz"}]},{"Route":"_framework/System.IO.MemoryMappedFiles.wasm","AssetFile":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"39701"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk="}]},{"Route":"_framework/System.IO.MemoryMappedFiles.wasm","AssetFile":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000058775126"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk="},{"Name":"original-resource","Value":"\"WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk=\""}]},{"Route":"_framework/System.IO.MemoryMappedFiles.wasm.gz","AssetFile":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk="}]},{"Route":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm","AssetFile":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"67861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"21z0t9w6sq"},{"Name":"integrity","Value":"sha256-VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM="},{"Name":"label","Value":"_framework/System.IO.Pipelines.wasm"}]},{"Route":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm","AssetFile":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032928315"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30368"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"21z0t9w6sq"},{"Name":"integrity","Value":"sha256-VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM="},{"Name":"label","Value":"_framework/System.IO.Pipelines.wasm"},{"Name":"original-resource","Value":"\"VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM=\""}]},{"Route":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm.gz","AssetFile":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30368"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"21z0t9w6sq"},{"Name":"integrity","Value":"sha256-7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8="},{"Name":"label","Value":"_framework/System.IO.Pipelines.wasm.gz"}]},{"Route":"_framework/System.IO.Pipelines.wasm","AssetFile":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"67861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM="}]},{"Route":"_framework/System.IO.Pipelines.wasm","AssetFile":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032928315"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30368"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM="},{"Name":"original-resource","Value":"\"VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM=\""}]},{"Route":"_framework/System.IO.Pipelines.wasm.gz","AssetFile":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30368"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8="}]},{"Route":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm","AssetFile":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5lvzz4lks7"},{"Name":"integrity","Value":"sha256-qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE="},{"Name":"label","Value":"_framework/System.IO.Pipes.AccessControl.wasm"}]},{"Route":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm","AssetFile":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000179597701"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5567"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5lvzz4lks7"},{"Name":"integrity","Value":"sha256-qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE="},{"Name":"label","Value":"_framework/System.IO.Pipes.AccessControl.wasm"},{"Name":"original-resource","Value":"\"qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE=\""}]},{"Route":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm.gz","AssetFile":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5567"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5lvzz4lks7"},{"Name":"integrity","Value":"sha256-+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4="},{"Name":"label","Value":"_framework/System.IO.Pipes.AccessControl.wasm.gz"}]},{"Route":"_framework/System.IO.Pipes.AccessControl.wasm","AssetFile":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE="}]},{"Route":"_framework/System.IO.Pipes.AccessControl.wasm","AssetFile":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000179597701"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5567"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE="},{"Name":"original-resource","Value":"\"qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE=\""}]},{"Route":"_framework/System.IO.Pipes.AccessControl.wasm.gz","AssetFile":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5567"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4="}]},{"Route":"_framework/System.IO.Pipes.wasm","AssetFile":"_framework/System.IO.Pipes.xosph8vk4a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg="}]},{"Route":"_framework/System.IO.Pipes.wasm","AssetFile":"_framework/System.IO.Pipes.xosph8vk4a.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000087703912"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg="},{"Name":"original-resource","Value":"\"gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg=\""}]},{"Route":"_framework/System.IO.Pipes.wasm.gz","AssetFile":"_framework/System.IO.Pipes.xosph8vk4a.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE="}]},{"Route":"_framework/System.IO.Pipes.xosph8vk4a.wasm","AssetFile":"_framework/System.IO.Pipes.xosph8vk4a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xosph8vk4a"},{"Name":"integrity","Value":"sha256-gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg="},{"Name":"label","Value":"_framework/System.IO.Pipes.wasm"}]},{"Route":"_framework/System.IO.Pipes.xosph8vk4a.wasm","AssetFile":"_framework/System.IO.Pipes.xosph8vk4a.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000087703912"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xosph8vk4a"},{"Name":"integrity","Value":"sha256-gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg="},{"Name":"label","Value":"_framework/System.IO.Pipes.wasm"},{"Name":"original-resource","Value":"\"gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg=\""}]},{"Route":"_framework/System.IO.Pipes.xosph8vk4a.wasm.gz","AssetFile":"_framework/System.IO.Pipes.xosph8vk4a.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xosph8vk4a"},{"Name":"integrity","Value":"sha256-BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE="},{"Name":"label","Value":"_framework/System.IO.Pipes.wasm.gz"}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm","AssetFile":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d1pja42pyi"},{"Name":"integrity","Value":"sha256-gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4="},{"Name":"label","Value":"_framework/System.IO.UnmanagedMemoryStream.wasm"}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm","AssetFile":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000450045005"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2221"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d1pja42pyi"},{"Name":"integrity","Value":"sha256-gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4="},{"Name":"label","Value":"_framework/System.IO.UnmanagedMemoryStream.wasm"},{"Name":"original-resource","Value":"\"gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4=\""}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm.gz","AssetFile":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2221"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d1pja42pyi"},{"Name":"integrity","Value":"sha256-TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU="},{"Name":"label","Value":"_framework/System.IO.UnmanagedMemoryStream.wasm.gz"}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.wasm","AssetFile":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4="}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.wasm","AssetFile":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000450045005"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2221"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4="},{"Name":"original-resource","Value":"\"gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4=\""}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.wasm.gz","AssetFile":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2221"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU="}]},{"Route":"_framework/System.IO.i9g92fmb9y.wasm","AssetFile":"_framework/System.IO.i9g92fmb9y.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"i9g92fmb9y"},{"Name":"integrity","Value":"sha256-akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw="},{"Name":"label","Value":"_framework/System.IO.wasm"}]},{"Route":"_framework/System.IO.i9g92fmb9y.wasm","AssetFile":"_framework/System.IO.i9g92fmb9y.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438404209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"i9g92fmb9y"},{"Name":"integrity","Value":"sha256-akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw="},{"Name":"label","Value":"_framework/System.IO.wasm"},{"Name":"original-resource","Value":"\"akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw=\""}]},{"Route":"_framework/System.IO.i9g92fmb9y.wasm.gz","AssetFile":"_framework/System.IO.i9g92fmb9y.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"i9g92fmb9y"},{"Name":"integrity","Value":"sha256-DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM="},{"Name":"label","Value":"_framework/System.IO.wasm.gz"}]},{"Route":"_framework/System.IO.wasm","AssetFile":"_framework/System.IO.i9g92fmb9y.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw="}]},{"Route":"_framework/System.IO.wasm","AssetFile":"_framework/System.IO.i9g92fmb9y.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438404209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw="},{"Name":"original-resource","Value":"\"akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw=\""}]},{"Route":"_framework/System.IO.wasm.gz","AssetFile":"_framework/System.IO.i9g92fmb9y.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM="}]},{"Route":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm","AssetFile":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"446229"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m1mh525k0"},{"Name":"integrity","Value":"sha256-VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48="},{"Name":"label","Value":"_framework/System.Linq.AsyncEnumerable.wasm"}]},{"Route":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm","AssetFile":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006961607"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"143644"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m1mh525k0"},{"Name":"integrity","Value":"sha256-VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48="},{"Name":"label","Value":"_framework/System.Linq.AsyncEnumerable.wasm"},{"Name":"original-resource","Value":"\"VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48=\""}]},{"Route":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm.gz","AssetFile":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"143644"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m1mh525k0"},{"Name":"integrity","Value":"sha256-Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8="},{"Name":"label","Value":"_framework/System.Linq.AsyncEnumerable.wasm.gz"}]},{"Route":"_framework/System.Linq.AsyncEnumerable.wasm","AssetFile":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"446229"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48="}]},{"Route":"_framework/System.Linq.AsyncEnumerable.wasm","AssetFile":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006961607"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"143644"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48="},{"Name":"original-resource","Value":"\"VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48=\""}]},{"Route":"_framework/System.Linq.AsyncEnumerable.wasm.gz","AssetFile":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"143644"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8="}]},{"Route":"_framework/System.Linq.Expressions.4nat0rber0.wasm","AssetFile":"_framework/System.Linq.Expressions.4nat0rber0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"565013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4nat0rber0"},{"Name":"integrity","Value":"sha256-IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA="},{"Name":"label","Value":"_framework/System.Linq.Expressions.wasm"}]},{"Route":"_framework/System.Linq.Expressions.4nat0rber0.wasm","AssetFile":"_framework/System.Linq.Expressions.4nat0rber0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004689002"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"213264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4nat0rber0"},{"Name":"integrity","Value":"sha256-IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA="},{"Name":"label","Value":"_framework/System.Linq.Expressions.wasm"},{"Name":"original-resource","Value":"\"IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA=\""}]},{"Route":"_framework/System.Linq.Expressions.4nat0rber0.wasm.gz","AssetFile":"_framework/System.Linq.Expressions.4nat0rber0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"213264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4nat0rber0"},{"Name":"integrity","Value":"sha256-Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0="},{"Name":"label","Value":"_framework/System.Linq.Expressions.wasm.gz"}]},{"Route":"_framework/System.Linq.Expressions.wasm","AssetFile":"_framework/System.Linq.Expressions.4nat0rber0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"565013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA="}]},{"Route":"_framework/System.Linq.Expressions.wasm","AssetFile":"_framework/System.Linq.Expressions.4nat0rber0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004689002"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"213264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA="},{"Name":"original-resource","Value":"\"IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA=\""}]},{"Route":"_framework/System.Linq.Expressions.wasm.gz","AssetFile":"_framework/System.Linq.Expressions.4nat0rber0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"213264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0="}]},{"Route":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm","AssetFile":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"212757"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qf7zemz9aw"},{"Name":"integrity","Value":"sha256-ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18="},{"Name":"label","Value":"_framework/System.Linq.Parallel.wasm"}]},{"Route":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm","AssetFile":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011571663"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86417"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qf7zemz9aw"},{"Name":"integrity","Value":"sha256-ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18="},{"Name":"label","Value":"_framework/System.Linq.Parallel.wasm"},{"Name":"original-resource","Value":"\"ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18=\""}]},{"Route":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm.gz","AssetFile":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86417"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qf7zemz9aw"},{"Name":"integrity","Value":"sha256-NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo="},{"Name":"label","Value":"_framework/System.Linq.Parallel.wasm.gz"}]},{"Route":"_framework/System.Linq.Parallel.wasm","AssetFile":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"212757"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18="}]},{"Route":"_framework/System.Linq.Parallel.wasm","AssetFile":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011571663"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86417"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18="},{"Name":"original-resource","Value":"\"ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18=\""}]},{"Route":"_framework/System.Linq.Parallel.wasm.gz","AssetFile":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86417"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo="}]},{"Route":"_framework/System.Linq.Queryable.vwinf8twbn.wasm","AssetFile":"_framework/System.Linq.Queryable.vwinf8twbn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"68373"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vwinf8twbn"},{"Name":"integrity","Value":"sha256-geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM="},{"Name":"label","Value":"_framework/System.Linq.Queryable.wasm"}]},{"Route":"_framework/System.Linq.Queryable.vwinf8twbn.wasm","AssetFile":"_framework/System.Linq.Queryable.vwinf8twbn.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000046755190"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21387"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vwinf8twbn"},{"Name":"integrity","Value":"sha256-geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM="},{"Name":"label","Value":"_framework/System.Linq.Queryable.wasm"},{"Name":"original-resource","Value":"\"geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM=\""}]},{"Route":"_framework/System.Linq.Queryable.vwinf8twbn.wasm.gz","AssetFile":"_framework/System.Linq.Queryable.vwinf8twbn.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21387"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vwinf8twbn"},{"Name":"integrity","Value":"sha256-K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts="},{"Name":"label","Value":"_framework/System.Linq.Queryable.wasm.gz"}]},{"Route":"_framework/System.Linq.Queryable.wasm","AssetFile":"_framework/System.Linq.Queryable.vwinf8twbn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"68373"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM="}]},{"Route":"_framework/System.Linq.Queryable.wasm","AssetFile":"_framework/System.Linq.Queryable.vwinf8twbn.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000046755190"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21387"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM="},{"Name":"original-resource","Value":"\"geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM=\""}]},{"Route":"_framework/System.Linq.Queryable.wasm.gz","AssetFile":"_framework/System.Linq.Queryable.vwinf8twbn.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21387"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts="}]},{"Route":"_framework/System.Linq.rp2jklkmsi.wasm","AssetFile":"_framework/System.Linq.rp2jklkmsi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"190741"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rp2jklkmsi"},{"Name":"integrity","Value":"sha256-f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA="},{"Name":"label","Value":"_framework/System.Linq.wasm"}]},{"Route":"_framework/System.Linq.rp2jklkmsi.wasm","AssetFile":"_framework/System.Linq.rp2jklkmsi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013362017"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"74838"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rp2jklkmsi"},{"Name":"integrity","Value":"sha256-f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA="},{"Name":"label","Value":"_framework/System.Linq.wasm"},{"Name":"original-resource","Value":"\"f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA=\""}]},{"Route":"_framework/System.Linq.rp2jklkmsi.wasm.gz","AssetFile":"_framework/System.Linq.rp2jklkmsi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"74838"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rp2jklkmsi"},{"Name":"integrity","Value":"sha256-+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw="},{"Name":"label","Value":"_framework/System.Linq.wasm.gz"}]},{"Route":"_framework/System.Linq.wasm","AssetFile":"_framework/System.Linq.rp2jklkmsi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"190741"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA="}]},{"Route":"_framework/System.Linq.wasm","AssetFile":"_framework/System.Linq.rp2jklkmsi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013362017"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"74838"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA="},{"Name":"original-resource","Value":"\"f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA=\""}]},{"Route":"_framework/System.Linq.wasm.gz","AssetFile":"_framework/System.Linq.rp2jklkmsi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"74838"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw="}]},{"Route":"_framework/System.Memory.3r0soomurg.wasm","AssetFile":"_framework/System.Memory.3r0soomurg.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"45333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3r0soomurg"},{"Name":"integrity","Value":"sha256-z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc="},{"Name":"label","Value":"_framework/System.Memory.wasm"}]},{"Route":"_framework/System.Memory.3r0soomurg.wasm","AssetFile":"_framework/System.Memory.3r0soomurg.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000048600311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3r0soomurg"},{"Name":"integrity","Value":"sha256-z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc="},{"Name":"label","Value":"_framework/System.Memory.wasm"},{"Name":"original-resource","Value":"\"z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc=\""}]},{"Route":"_framework/System.Memory.3r0soomurg.wasm.gz","AssetFile":"_framework/System.Memory.3r0soomurg.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3r0soomurg"},{"Name":"integrity","Value":"sha256-lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60="},{"Name":"label","Value":"_framework/System.Memory.wasm.gz"}]},{"Route":"_framework/System.Memory.wasm","AssetFile":"_framework/System.Memory.3r0soomurg.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"45333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc="}]},{"Route":"_framework/System.Memory.wasm","AssetFile":"_framework/System.Memory.3r0soomurg.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000048600311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc="},{"Name":"original-resource","Value":"\"z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc=\""}]},{"Route":"_framework/System.Memory.wasm.gz","AssetFile":"_framework/System.Memory.3r0soomurg.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60="}]},{"Route":"_framework/System.Net.Http.9rl4gopayw.wasm","AssetFile":"_framework/System.Net.Http.9rl4gopayw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"285973"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9rl4gopayw"},{"Name":"integrity","Value":"sha256-JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU="},{"Name":"label","Value":"_framework/System.Net.Http.wasm"}]},{"Route":"_framework/System.Net.Http.9rl4gopayw.wasm","AssetFile":"_framework/System.Net.Http.9rl4gopayw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008532787"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"117194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9rl4gopayw"},{"Name":"integrity","Value":"sha256-JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU="},{"Name":"label","Value":"_framework/System.Net.Http.wasm"},{"Name":"original-resource","Value":"\"JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU=\""}]},{"Route":"_framework/System.Net.Http.9rl4gopayw.wasm.gz","AssetFile":"_framework/System.Net.Http.9rl4gopayw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"117194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9rl4gopayw"},{"Name":"integrity","Value":"sha256-Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc="},{"Name":"label","Value":"_framework/System.Net.Http.wasm.gz"}]},{"Route":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm","AssetFile":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t9gqpmtbpb"},{"Name":"integrity","Value":"sha256-H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0="},{"Name":"label","Value":"_framework/System.Net.Http.Json.wasm"}]},{"Route":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm","AssetFile":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051591601"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19382"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t9gqpmtbpb"},{"Name":"integrity","Value":"sha256-H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0="},{"Name":"label","Value":"_framework/System.Net.Http.Json.wasm"},{"Name":"original-resource","Value":"\"H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0=\""}]},{"Route":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm.gz","AssetFile":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19382"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t9gqpmtbpb"},{"Name":"integrity","Value":"sha256-h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg="},{"Name":"label","Value":"_framework/System.Net.Http.Json.wasm.gz"}]},{"Route":"_framework/System.Net.Http.Json.wasm","AssetFile":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0="}]},{"Route":"_framework/System.Net.Http.Json.wasm","AssetFile":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051591601"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19382"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0="},{"Name":"original-resource","Value":"\"H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0=\""}]},{"Route":"_framework/System.Net.Http.Json.wasm.gz","AssetFile":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19382"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg="}]},{"Route":"_framework/System.Net.Http.wasm","AssetFile":"_framework/System.Net.Http.9rl4gopayw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"285973"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU="}]},{"Route":"_framework/System.Net.Http.wasm","AssetFile":"_framework/System.Net.Http.9rl4gopayw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008532787"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"117194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU="},{"Name":"original-resource","Value":"\"JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU=\""}]},{"Route":"_framework/System.Net.Http.wasm.gz","AssetFile":"_framework/System.Net.Http.9rl4gopayw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"117194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc="}]},{"Route":"_framework/System.Net.HttpListener.wasm","AssetFile":"_framework/System.Net.HttpListener.zg37o92yol.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE="}]},{"Route":"_framework/System.Net.HttpListener.wasm","AssetFile":"_framework/System.Net.HttpListener.zg37o92yol.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000062289772"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE="},{"Name":"original-resource","Value":"\"rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE=\""}]},{"Route":"_framework/System.Net.HttpListener.wasm.gz","AssetFile":"_framework/System.Net.HttpListener.zg37o92yol.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs="}]},{"Route":"_framework/System.Net.HttpListener.zg37o92yol.wasm","AssetFile":"_framework/System.Net.HttpListener.zg37o92yol.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zg37o92yol"},{"Name":"integrity","Value":"sha256-rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE="},{"Name":"label","Value":"_framework/System.Net.HttpListener.wasm"}]},{"Route":"_framework/System.Net.HttpListener.zg37o92yol.wasm","AssetFile":"_framework/System.Net.HttpListener.zg37o92yol.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000062289772"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zg37o92yol"},{"Name":"integrity","Value":"sha256-rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE="},{"Name":"label","Value":"_framework/System.Net.HttpListener.wasm"},{"Name":"original-resource","Value":"\"rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE=\""}]},{"Route":"_framework/System.Net.HttpListener.zg37o92yol.wasm.gz","AssetFile":"_framework/System.Net.HttpListener.zg37o92yol.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zg37o92yol"},{"Name":"integrity","Value":"sha256-2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs="},{"Name":"label","Value":"_framework/System.Net.HttpListener.wasm.gz"}]},{"Route":"_framework/System.Net.Mail.qk214miut2.wasm","AssetFile":"_framework/System.Net.Mail.qk214miut2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"94997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qk214miut2"},{"Name":"integrity","Value":"sha256-tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk="},{"Name":"label","Value":"_framework/System.Net.Mail.wasm"}]},{"Route":"_framework/System.Net.Mail.qk214miut2.wasm","AssetFile":"_framework/System.Net.Mail.qk214miut2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023562122"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42440"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qk214miut2"},{"Name":"integrity","Value":"sha256-tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk="},{"Name":"label","Value":"_framework/System.Net.Mail.wasm"},{"Name":"original-resource","Value":"\"tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk=\""}]},{"Route":"_framework/System.Net.Mail.qk214miut2.wasm.gz","AssetFile":"_framework/System.Net.Mail.qk214miut2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42440"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qk214miut2"},{"Name":"integrity","Value":"sha256-T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys="},{"Name":"label","Value":"_framework/System.Net.Mail.wasm.gz"}]},{"Route":"_framework/System.Net.Mail.wasm","AssetFile":"_framework/System.Net.Mail.qk214miut2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"94997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk="}]},{"Route":"_framework/System.Net.Mail.wasm","AssetFile":"_framework/System.Net.Mail.qk214miut2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023562122"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42440"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk="},{"Name":"original-resource","Value":"\"tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk=\""}]},{"Route":"_framework/System.Net.Mail.wasm.gz","AssetFile":"_framework/System.Net.Mail.qk214miut2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42440"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys="}]},{"Route":"_framework/System.Net.NameResolution.50dzekuu9x.wasm","AssetFile":"_framework/System.Net.NameResolution.50dzekuu9x.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"14101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"50dzekuu9x"},{"Name":"integrity","Value":"sha256-a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs="},{"Name":"label","Value":"_framework/System.Net.NameResolution.wasm"}]},{"Route":"_framework/System.Net.NameResolution.50dzekuu9x.wasm","AssetFile":"_framework/System.Net.NameResolution.50dzekuu9x.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000168520391"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"50dzekuu9x"},{"Name":"integrity","Value":"sha256-a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs="},{"Name":"label","Value":"_framework/System.Net.NameResolution.wasm"},{"Name":"original-resource","Value":"\"a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs=\""}]},{"Route":"_framework/System.Net.NameResolution.50dzekuu9x.wasm.gz","AssetFile":"_framework/System.Net.NameResolution.50dzekuu9x.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"50dzekuu9x"},{"Name":"integrity","Value":"sha256-A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI="},{"Name":"label","Value":"_framework/System.Net.NameResolution.wasm.gz"}]},{"Route":"_framework/System.Net.NameResolution.wasm","AssetFile":"_framework/System.Net.NameResolution.50dzekuu9x.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"14101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs="}]},{"Route":"_framework/System.Net.NameResolution.wasm","AssetFile":"_framework/System.Net.NameResolution.50dzekuu9x.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000168520391"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs="},{"Name":"original-resource","Value":"\"a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs=\""}]},{"Route":"_framework/System.Net.NameResolution.wasm.gz","AssetFile":"_framework/System.Net.NameResolution.50dzekuu9x.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI="}]},{"Route":"_framework/System.Net.NetworkInformation.k8343mqust.wasm","AssetFile":"_framework/System.Net.NetworkInformation.k8343mqust.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8343mqust"},{"Name":"integrity","Value":"sha256-ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8="},{"Name":"label","Value":"_framework/System.Net.NetworkInformation.wasm"}]},{"Route":"_framework/System.Net.NetworkInformation.k8343mqust.wasm","AssetFile":"_framework/System.Net.NetworkInformation.k8343mqust.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000078560767"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12728"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8343mqust"},{"Name":"integrity","Value":"sha256-ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8="},{"Name":"label","Value":"_framework/System.Net.NetworkInformation.wasm"},{"Name":"original-resource","Value":"\"ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8=\""}]},{"Route":"_framework/System.Net.NetworkInformation.k8343mqust.wasm.gz","AssetFile":"_framework/System.Net.NetworkInformation.k8343mqust.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12728"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8343mqust"},{"Name":"integrity","Value":"sha256-Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0="},{"Name":"label","Value":"_framework/System.Net.NetworkInformation.wasm.gz"}]},{"Route":"_framework/System.Net.NetworkInformation.wasm","AssetFile":"_framework/System.Net.NetworkInformation.k8343mqust.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8="}]},{"Route":"_framework/System.Net.NetworkInformation.wasm","AssetFile":"_framework/System.Net.NetworkInformation.k8343mqust.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000078560767"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12728"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8="},{"Name":"original-resource","Value":"\"ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8=\""}]},{"Route":"_framework/System.Net.NetworkInformation.wasm.gz","AssetFile":"_framework/System.Net.NetworkInformation.k8343mqust.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12728"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0="}]},{"Route":"_framework/System.Net.Ping.00vh2kvsiz.wasm","AssetFile":"_framework/System.Net.Ping.00vh2kvsiz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"17685"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"00vh2kvsiz"},{"Name":"integrity","Value":"sha256-MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s="},{"Name":"label","Value":"_framework/System.Net.Ping.wasm"}]},{"Route":"_framework/System.Net.Ping.00vh2kvsiz.wasm","AssetFile":"_framework/System.Net.Ping.00vh2kvsiz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000132573247"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7542"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"00vh2kvsiz"},{"Name":"integrity","Value":"sha256-MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s="},{"Name":"label","Value":"_framework/System.Net.Ping.wasm"},{"Name":"original-resource","Value":"\"MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s=\""}]},{"Route":"_framework/System.Net.Ping.00vh2kvsiz.wasm.gz","AssetFile":"_framework/System.Net.Ping.00vh2kvsiz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7542"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"00vh2kvsiz"},{"Name":"integrity","Value":"sha256-MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM="},{"Name":"label","Value":"_framework/System.Net.Ping.wasm.gz"}]},{"Route":"_framework/System.Net.Ping.wasm","AssetFile":"_framework/System.Net.Ping.00vh2kvsiz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"17685"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s="}]},{"Route":"_framework/System.Net.Ping.wasm","AssetFile":"_framework/System.Net.Ping.00vh2kvsiz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000132573247"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7542"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s="},{"Name":"original-resource","Value":"\"MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s=\""}]},{"Route":"_framework/System.Net.Ping.wasm.gz","AssetFile":"_framework/System.Net.Ping.00vh2kvsiz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7542"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM="}]},{"Route":"_framework/System.Net.Primitives.wasm","AssetFile":"_framework/System.Net.Primitives.whs5oed1wm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"97045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s="}]},{"Route":"_framework/System.Net.Primitives.wasm","AssetFile":"_framework/System.Net.Primitives.whs5oed1wm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000021790765"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"45890"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s="},{"Name":"original-resource","Value":"\"fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s=\""}]},{"Route":"_framework/System.Net.Primitives.wasm.gz","AssetFile":"_framework/System.Net.Primitives.whs5oed1wm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"45890"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0="}]},{"Route":"_framework/System.Net.Primitives.whs5oed1wm.wasm","AssetFile":"_framework/System.Net.Primitives.whs5oed1wm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"97045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"whs5oed1wm"},{"Name":"integrity","Value":"sha256-fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s="},{"Name":"label","Value":"_framework/System.Net.Primitives.wasm"}]},{"Route":"_framework/System.Net.Primitives.whs5oed1wm.wasm","AssetFile":"_framework/System.Net.Primitives.whs5oed1wm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000021790765"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"45890"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"whs5oed1wm"},{"Name":"integrity","Value":"sha256-fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s="},{"Name":"label","Value":"_framework/System.Net.Primitives.wasm"},{"Name":"original-resource","Value":"\"fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s=\""}]},{"Route":"_framework/System.Net.Primitives.whs5oed1wm.wasm.gz","AssetFile":"_framework/System.Net.Primitives.whs5oed1wm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"45890"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"whs5oed1wm"},{"Name":"integrity","Value":"sha256-v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0="},{"Name":"label","Value":"_framework/System.Net.Primitives.wasm.gz"}]},{"Route":"_framework/System.Net.Quic.grloe2ix5j.wasm","AssetFile":"_framework/System.Net.Quic.grloe2ix5j.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"28949"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"grloe2ix5j"},{"Name":"integrity","Value":"sha256-1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA="},{"Name":"label","Value":"_framework/System.Net.Quic.wasm"}]},{"Route":"_framework/System.Net.Quic.grloe2ix5j.wasm","AssetFile":"_framework/System.Net.Quic.grloe2ix5j.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000091449474"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10934"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"grloe2ix5j"},{"Name":"integrity","Value":"sha256-1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA="},{"Name":"label","Value":"_framework/System.Net.Quic.wasm"},{"Name":"original-resource","Value":"\"1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA=\""}]},{"Route":"_framework/System.Net.Quic.grloe2ix5j.wasm.gz","AssetFile":"_framework/System.Net.Quic.grloe2ix5j.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10934"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"grloe2ix5j"},{"Name":"integrity","Value":"sha256-IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8="},{"Name":"label","Value":"_framework/System.Net.Quic.wasm.gz"}]},{"Route":"_framework/System.Net.Quic.wasm","AssetFile":"_framework/System.Net.Quic.grloe2ix5j.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"28949"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA="}]},{"Route":"_framework/System.Net.Quic.wasm","AssetFile":"_framework/System.Net.Quic.grloe2ix5j.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000091449474"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10934"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA="},{"Name":"original-resource","Value":"\"1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA=\""}]},{"Route":"_framework/System.Net.Quic.wasm.gz","AssetFile":"_framework/System.Net.Quic.grloe2ix5j.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10934"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8="}]},{"Route":"_framework/System.Net.Requests.r8ar2pd94c.wasm","AssetFile":"_framework/System.Net.Requests.r8ar2pd94c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r8ar2pd94c"},{"Name":"integrity","Value":"sha256-ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88="},{"Name":"label","Value":"_framework/System.Net.Requests.wasm"}]},{"Route":"_framework/System.Net.Requests.r8ar2pd94c.wasm","AssetFile":"_framework/System.Net.Requests.r8ar2pd94c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000049275648"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20293"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r8ar2pd94c"},{"Name":"integrity","Value":"sha256-ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88="},{"Name":"label","Value":"_framework/System.Net.Requests.wasm"},{"Name":"original-resource","Value":"\"ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88=\""}]},{"Route":"_framework/System.Net.Requests.r8ar2pd94c.wasm.gz","AssetFile":"_framework/System.Net.Requests.r8ar2pd94c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20293"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r8ar2pd94c"},{"Name":"integrity","Value":"sha256-gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA="},{"Name":"label","Value":"_framework/System.Net.Requests.wasm.gz"}]},{"Route":"_framework/System.Net.Requests.wasm","AssetFile":"_framework/System.Net.Requests.r8ar2pd94c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88="}]},{"Route":"_framework/System.Net.Requests.wasm","AssetFile":"_framework/System.Net.Requests.r8ar2pd94c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000049275648"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20293"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88="},{"Name":"original-resource","Value":"\"ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88=\""}]},{"Route":"_framework/System.Net.Requests.wasm.gz","AssetFile":"_framework/System.Net.Requests.r8ar2pd94c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20293"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA="}]},{"Route":"_framework/System.Net.Security.wasm","AssetFile":"_framework/System.Net.Security.yn3zcskz4j.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"104213"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ="}]},{"Route":"_framework/System.Net.Security.wasm","AssetFile":"_framework/System.Net.Security.yn3zcskz4j.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029683279"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33688"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ="},{"Name":"original-resource","Value":"\"TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ=\""}]},{"Route":"_framework/System.Net.Security.wasm.gz","AssetFile":"_framework/System.Net.Security.yn3zcskz4j.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33688"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ="}]},{"Route":"_framework/System.Net.Security.yn3zcskz4j.wasm","AssetFile":"_framework/System.Net.Security.yn3zcskz4j.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"104213"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yn3zcskz4j"},{"Name":"integrity","Value":"sha256-TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ="},{"Name":"label","Value":"_framework/System.Net.Security.wasm"}]},{"Route":"_framework/System.Net.Security.yn3zcskz4j.wasm","AssetFile":"_framework/System.Net.Security.yn3zcskz4j.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029683279"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33688"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yn3zcskz4j"},{"Name":"integrity","Value":"sha256-TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ="},{"Name":"label","Value":"_framework/System.Net.Security.wasm"},{"Name":"original-resource","Value":"\"TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ=\""}]},{"Route":"_framework/System.Net.Security.yn3zcskz4j.wasm.gz","AssetFile":"_framework/System.Net.Security.yn3zcskz4j.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33688"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yn3zcskz4j"},{"Name":"integrity","Value":"sha256-pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ="},{"Name":"label","Value":"_framework/System.Net.Security.wasm.gz"}]},{"Route":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm","AssetFile":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"30485"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37wbq4jfsy"},{"Name":"integrity","Value":"sha256-Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho="},{"Name":"label","Value":"_framework/System.Net.ServerSentEvents.wasm"}]},{"Route":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm","AssetFile":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000068175620"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14667"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37wbq4jfsy"},{"Name":"integrity","Value":"sha256-Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho="},{"Name":"label","Value":"_framework/System.Net.ServerSentEvents.wasm"},{"Name":"original-resource","Value":"\"Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho=\""}]},{"Route":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm.gz","AssetFile":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14667"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37wbq4jfsy"},{"Name":"integrity","Value":"sha256-FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o="},{"Name":"label","Value":"_framework/System.Net.ServerSentEvents.wasm.gz"}]},{"Route":"_framework/System.Net.ServerSentEvents.wasm","AssetFile":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"30485"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho="}]},{"Route":"_framework/System.Net.ServerSentEvents.wasm","AssetFile":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000068175620"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14667"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho="},{"Name":"original-resource","Value":"\"Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho=\""}]},{"Route":"_framework/System.Net.ServerSentEvents.wasm.gz","AssetFile":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14667"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o="}]},{"Route":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm","AssetFile":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j436yqvrg9"},{"Name":"integrity","Value":"sha256-rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg="},{"Name":"label","Value":"_framework/System.Net.ServicePoint.wasm"}]},{"Route":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm","AssetFile":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000458715596"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2179"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j436yqvrg9"},{"Name":"integrity","Value":"sha256-rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg="},{"Name":"label","Value":"_framework/System.Net.ServicePoint.wasm"},{"Name":"original-resource","Value":"\"rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg=\""}]},{"Route":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm.gz","AssetFile":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2179"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j436yqvrg9"},{"Name":"integrity","Value":"sha256-NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI="},{"Name":"label","Value":"_framework/System.Net.ServicePoint.wasm.gz"}]},{"Route":"_framework/System.Net.ServicePoint.wasm","AssetFile":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg="}]},{"Route":"_framework/System.Net.ServicePoint.wasm","AssetFile":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000458715596"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2179"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg="},{"Name":"original-resource","Value":"\"rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg=\""}]},{"Route":"_framework/System.Net.ServicePoint.wasm.gz","AssetFile":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2179"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI="}]},{"Route":"_framework/System.Net.Sockets.utzdm9sw2p.wasm","AssetFile":"_framework/System.Net.Sockets.utzdm9sw2p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"64277"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"utzdm9sw2p"},{"Name":"integrity","Value":"sha256-olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo="},{"Name":"label","Value":"_framework/System.Net.Sockets.wasm"}]},{"Route":"_framework/System.Net.Sockets.utzdm9sw2p.wasm","AssetFile":"_framework/System.Net.Sockets.utzdm9sw2p.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000043631921"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22918"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"utzdm9sw2p"},{"Name":"integrity","Value":"sha256-olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo="},{"Name":"label","Value":"_framework/System.Net.Sockets.wasm"},{"Name":"original-resource","Value":"\"olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo=\""}]},{"Route":"_framework/System.Net.Sockets.utzdm9sw2p.wasm.gz","AssetFile":"_framework/System.Net.Sockets.utzdm9sw2p.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22918"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"utzdm9sw2p"},{"Name":"integrity","Value":"sha256-XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI="},{"Name":"label","Value":"_framework/System.Net.Sockets.wasm.gz"}]},{"Route":"_framework/System.Net.Sockets.wasm","AssetFile":"_framework/System.Net.Sockets.utzdm9sw2p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"64277"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo="}]},{"Route":"_framework/System.Net.Sockets.wasm","AssetFile":"_framework/System.Net.Sockets.utzdm9sw2p.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000043631921"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22918"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo="},{"Name":"original-resource","Value":"\"olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo=\""}]},{"Route":"_framework/System.Net.Sockets.wasm.gz","AssetFile":"_framework/System.Net.Sockets.utzdm9sw2p.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22918"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI="}]},{"Route":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm","AssetFile":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e5a4gx4ylt"},{"Name":"integrity","Value":"sha256-YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk="},{"Name":"label","Value":"_framework/System.Net.WebClient.wasm"}]},{"Route":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm","AssetFile":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067870232"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e5a4gx4ylt"},{"Name":"integrity","Value":"sha256-YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk="},{"Name":"label","Value":"_framework/System.Net.WebClient.wasm"},{"Name":"original-resource","Value":"\"YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk=\""}]},{"Route":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm.gz","AssetFile":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e5a4gx4ylt"},{"Name":"integrity","Value":"sha256-FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI="},{"Name":"label","Value":"_framework/System.Net.WebClient.wasm.gz"}]},{"Route":"_framework/System.Net.WebClient.wasm","AssetFile":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk="}]},{"Route":"_framework/System.Net.WebClient.wasm","AssetFile":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067870232"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk="},{"Name":"original-resource","Value":"\"YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk=\""}]},{"Route":"_framework/System.Net.WebClient.wasm.gz","AssetFile":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI="}]},{"Route":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm","AssetFile":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rbzkmij005"},{"Name":"integrity","Value":"sha256-132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE="},{"Name":"label","Value":"_framework/System.Net.WebHeaderCollection.wasm"}]},{"Route":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm","AssetFile":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000097952787"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10208"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rbzkmij005"},{"Name":"integrity","Value":"sha256-132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE="},{"Name":"label","Value":"_framework/System.Net.WebHeaderCollection.wasm"},{"Name":"original-resource","Value":"\"132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE=\""}]},{"Route":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm.gz","AssetFile":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10208"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rbzkmij005"},{"Name":"integrity","Value":"sha256-y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU="},{"Name":"label","Value":"_framework/System.Net.WebHeaderCollection.wasm.gz"}]},{"Route":"_framework/System.Net.WebHeaderCollection.wasm","AssetFile":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE="}]},{"Route":"_framework/System.Net.WebHeaderCollection.wasm","AssetFile":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000097952787"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10208"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE="},{"Name":"original-resource","Value":"\"132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE=\""}]},{"Route":"_framework/System.Net.WebHeaderCollection.wasm.gz","AssetFile":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10208"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU="}]},{"Route":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm","AssetFile":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"38jcv8jeeu"},{"Name":"integrity","Value":"sha256-UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok="},{"Name":"label","Value":"_framework/System.Net.WebProxy.wasm"}]},{"Route":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm","AssetFile":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000177872643"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5621"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"38jcv8jeeu"},{"Name":"integrity","Value":"sha256-UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok="},{"Name":"label","Value":"_framework/System.Net.WebProxy.wasm"},{"Name":"original-resource","Value":"\"UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok=\""}]},{"Route":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm.gz","AssetFile":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5621"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"38jcv8jeeu"},{"Name":"integrity","Value":"sha256-8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA="},{"Name":"label","Value":"_framework/System.Net.WebProxy.wasm.gz"}]},{"Route":"_framework/System.Net.WebProxy.wasm","AssetFile":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok="}]},{"Route":"_framework/System.Net.WebProxy.wasm","AssetFile":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000177872643"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5621"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok="},{"Name":"original-resource","Value":"\"UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok=\""}]},{"Route":"_framework/System.Net.WebProxy.wasm.gz","AssetFile":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5621"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA="}]},{"Route":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm","AssetFile":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"42261"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nv5izr3rt6"},{"Name":"integrity","Value":"sha256-vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc="},{"Name":"label","Value":"_framework/System.Net.WebSockets.Client.wasm"}]},{"Route":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm","AssetFile":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000055803571"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17919"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nv5izr3rt6"},{"Name":"integrity","Value":"sha256-vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc="},{"Name":"label","Value":"_framework/System.Net.WebSockets.Client.wasm"},{"Name":"original-resource","Value":"\"vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc=\""}]},{"Route":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm.gz","AssetFile":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17919"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nv5izr3rt6"},{"Name":"integrity","Value":"sha256-XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY="},{"Name":"label","Value":"_framework/System.Net.WebSockets.Client.wasm.gz"}]},{"Route":"_framework/System.Net.WebSockets.Client.wasm","AssetFile":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"42261"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc="}]},{"Route":"_framework/System.Net.WebSockets.Client.wasm","AssetFile":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000055803571"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17919"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc="},{"Name":"original-resource","Value":"\"vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc=\""}]},{"Route":"_framework/System.Net.WebSockets.Client.wasm.gz","AssetFile":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17919"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY="}]},{"Route":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm","AssetFile":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"98581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hdzn84g6uh"},{"Name":"integrity","Value":"sha256-1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE="},{"Name":"label","Value":"_framework/System.Net.WebSockets.wasm"}]},{"Route":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm","AssetFile":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000024645718"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"40574"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hdzn84g6uh"},{"Name":"integrity","Value":"sha256-1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE="},{"Name":"label","Value":"_framework/System.Net.WebSockets.wasm"},{"Name":"original-resource","Value":"\"1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE=\""}]},{"Route":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm.gz","AssetFile":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"40574"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hdzn84g6uh"},{"Name":"integrity","Value":"sha256-dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo="},{"Name":"label","Value":"_framework/System.Net.WebSockets.wasm.gz"}]},{"Route":"_framework/System.Net.WebSockets.wasm","AssetFile":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"98581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE="}]},{"Route":"_framework/System.Net.WebSockets.wasm","AssetFile":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000024645718"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"40574"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE="},{"Name":"original-resource","Value":"\"1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE=\""}]},{"Route":"_framework/System.Net.WebSockets.wasm.gz","AssetFile":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"40574"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo="}]},{"Route":"_framework/System.Net.wasm","AssetFile":"_framework/System.Net.zku96ychk7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU="}]},{"Route":"_framework/System.Net.wasm","AssetFile":"_framework/System.Net.zku96ychk7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000362976407"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2754"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU="},{"Name":"original-resource","Value":"\"E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU=\""}]},{"Route":"_framework/System.Net.wasm.gz","AssetFile":"_framework/System.Net.zku96ychk7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2754"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY="}]},{"Route":"_framework/System.Net.zku96ychk7.wasm","AssetFile":"_framework/System.Net.zku96ychk7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zku96ychk7"},{"Name":"integrity","Value":"sha256-E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU="},{"Name":"label","Value":"_framework/System.Net.wasm"}]},{"Route":"_framework/System.Net.zku96ychk7.wasm","AssetFile":"_framework/System.Net.zku96ychk7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000362976407"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2754"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zku96ychk7"},{"Name":"integrity","Value":"sha256-E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU="},{"Name":"label","Value":"_framework/System.Net.wasm"},{"Name":"original-resource","Value":"\"E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU=\""}]},{"Route":"_framework/System.Net.zku96ychk7.wasm.gz","AssetFile":"_framework/System.Net.zku96ychk7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2754"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zku96ychk7"},{"Name":"integrity","Value":"sha256-boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY="},{"Name":"label","Value":"_framework/System.Net.wasm.gz"}]},{"Route":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm","AssetFile":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1l8xruz8uh"},{"Name":"integrity","Value":"sha256-tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg="},{"Name":"label","Value":"_framework/System.Numerics.Vectors.wasm"}]},{"Route":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm","AssetFile":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000439367311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1l8xruz8uh"},{"Name":"integrity","Value":"sha256-tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg="},{"Name":"label","Value":"_framework/System.Numerics.Vectors.wasm"},{"Name":"original-resource","Value":"\"tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg=\""}]},{"Route":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm.gz","AssetFile":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1l8xruz8uh"},{"Name":"integrity","Value":"sha256-XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q="},{"Name":"label","Value":"_framework/System.Numerics.Vectors.wasm.gz"}]},{"Route":"_framework/System.Numerics.Vectors.wasm","AssetFile":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg="}]},{"Route":"_framework/System.Numerics.Vectors.wasm","AssetFile":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000439367311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg="},{"Name":"original-resource","Value":"\"tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg=\""}]},{"Route":"_framework/System.Numerics.Vectors.wasm.gz","AssetFile":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q="}]},{"Route":"_framework/System.Numerics.on9qk50okp.wasm","AssetFile":"_framework/System.Numerics.on9qk50okp.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"on9qk50okp"},{"Name":"integrity","Value":"sha256-ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk="},{"Name":"label","Value":"_framework/System.Numerics.wasm"}]},{"Route":"_framework/System.Numerics.on9qk50okp.wasm","AssetFile":"_framework/System.Numerics.on9qk50okp.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000490677134"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2037"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"on9qk50okp"},{"Name":"integrity","Value":"sha256-ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk="},{"Name":"label","Value":"_framework/System.Numerics.wasm"},{"Name":"original-resource","Value":"\"ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk=\""}]},{"Route":"_framework/System.Numerics.on9qk50okp.wasm.gz","AssetFile":"_framework/System.Numerics.on9qk50okp.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2037"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"on9qk50okp"},{"Name":"integrity","Value":"sha256-voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ="},{"Name":"label","Value":"_framework/System.Numerics.wasm.gz"}]},{"Route":"_framework/System.Numerics.wasm","AssetFile":"_framework/System.Numerics.on9qk50okp.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk="}]},{"Route":"_framework/System.Numerics.wasm","AssetFile":"_framework/System.Numerics.on9qk50okp.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000490677134"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2037"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk="},{"Name":"original-resource","Value":"\"ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk=\""}]},{"Route":"_framework/System.Numerics.wasm.gz","AssetFile":"_framework/System.Numerics.on9qk50okp.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2037"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ="}]},{"Route":"_framework/System.ObjectModel.4omhtq90sd.wasm","AssetFile":"_framework/System.ObjectModel.4omhtq90sd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"30997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4omhtq90sd"},{"Name":"integrity","Value":"sha256-BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU="},{"Name":"label","Value":"_framework/System.ObjectModel.wasm"}]},{"Route":"_framework/System.ObjectModel.4omhtq90sd.wasm","AssetFile":"_framework/System.ObjectModel.4omhtq90sd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000074867111"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13356"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4omhtq90sd"},{"Name":"integrity","Value":"sha256-BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU="},{"Name":"label","Value":"_framework/System.ObjectModel.wasm"},{"Name":"original-resource","Value":"\"BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU=\""}]},{"Route":"_framework/System.ObjectModel.4omhtq90sd.wasm.gz","AssetFile":"_framework/System.ObjectModel.4omhtq90sd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13356"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4omhtq90sd"},{"Name":"integrity","Value":"sha256-RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw="},{"Name":"label","Value":"_framework/System.ObjectModel.wasm.gz"}]},{"Route":"_framework/System.ObjectModel.wasm","AssetFile":"_framework/System.ObjectModel.4omhtq90sd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"30997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU="}]},{"Route":"_framework/System.ObjectModel.wasm","AssetFile":"_framework/System.ObjectModel.4omhtq90sd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000074867111"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13356"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU="},{"Name":"original-resource","Value":"\"BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU=\""}]},{"Route":"_framework/System.ObjectModel.wasm.gz","AssetFile":"_framework/System.ObjectModel.4omhtq90sd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13356"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw="}]},{"Route":"_framework/System.Private.CoreLib.koxlwnosh6.wasm","AssetFile":"_framework/System.Private.CoreLib.koxlwnosh6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4869401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"koxlwnosh6"},{"Name":"integrity","Value":"sha256-xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg="},{"Name":"label","Value":"_framework/System.Private.CoreLib.wasm"}]},{"Route":"_framework/System.Private.CoreLib.koxlwnosh6.wasm","AssetFile":"_framework/System.Private.CoreLib.koxlwnosh6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000644190"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1552335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"koxlwnosh6"},{"Name":"integrity","Value":"sha256-xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg="},{"Name":"label","Value":"_framework/System.Private.CoreLib.wasm"},{"Name":"original-resource","Value":"\"xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg=\""}]},{"Route":"_framework/System.Private.CoreLib.koxlwnosh6.wasm.gz","AssetFile":"_framework/System.Private.CoreLib.koxlwnosh6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1552335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"koxlwnosh6"},{"Name":"integrity","Value":"sha256-8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw="},{"Name":"label","Value":"_framework/System.Private.CoreLib.wasm.gz"}]},{"Route":"_framework/System.Private.CoreLib.wasm","AssetFile":"_framework/System.Private.CoreLib.koxlwnosh6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4869401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg="}]},{"Route":"_framework/System.Private.CoreLib.wasm","AssetFile":"_framework/System.Private.CoreLib.koxlwnosh6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000644190"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1552335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg="},{"Name":"original-resource","Value":"\"xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg=\""}]},{"Route":"_framework/System.Private.CoreLib.wasm.gz","AssetFile":"_framework/System.Private.CoreLib.koxlwnosh6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1552335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw="}]},{"Route":"_framework/System.Private.DataContractSerialization.wasm","AssetFile":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"849173"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs="}]},{"Route":"_framework/System.Private.DataContractSerialization.wasm","AssetFile":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003313518"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"301793"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs="},{"Name":"original-resource","Value":"\"qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs=\""}]},{"Route":"_framework/System.Private.DataContractSerialization.wasm.gz","AssetFile":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"301793"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E="}]},{"Route":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm","AssetFile":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"849173"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zlwtcvnuqv"},{"Name":"integrity","Value":"sha256-qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs="},{"Name":"label","Value":"_framework/System.Private.DataContractSerialization.wasm"}]},{"Route":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm","AssetFile":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003313518"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"301793"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zlwtcvnuqv"},{"Name":"integrity","Value":"sha256-qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs="},{"Name":"label","Value":"_framework/System.Private.DataContractSerialization.wasm"},{"Name":"original-resource","Value":"\"qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs=\""}]},{"Route":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm.gz","AssetFile":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"301793"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zlwtcvnuqv"},{"Name":"integrity","Value":"sha256-U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E="},{"Name":"label","Value":"_framework/System.Private.DataContractSerialization.wasm.gz"}]},{"Route":"_framework/System.Private.Uri.clehp4avpy.wasm","AssetFile":"_framework/System.Private.Uri.clehp4avpy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"95509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clehp4avpy"},{"Name":"integrity","Value":"sha256-IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU="},{"Name":"label","Value":"_framework/System.Private.Uri.wasm"}]},{"Route":"_framework/System.Private.Uri.clehp4avpy.wasm","AssetFile":"_framework/System.Private.Uri.clehp4avpy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023629490"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42319"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clehp4avpy"},{"Name":"integrity","Value":"sha256-IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU="},{"Name":"label","Value":"_framework/System.Private.Uri.wasm"},{"Name":"original-resource","Value":"\"IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU=\""}]},{"Route":"_framework/System.Private.Uri.clehp4avpy.wasm.gz","AssetFile":"_framework/System.Private.Uri.clehp4avpy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42319"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clehp4avpy"},{"Name":"integrity","Value":"sha256-jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8="},{"Name":"label","Value":"_framework/System.Private.Uri.wasm.gz"}]},{"Route":"_framework/System.Private.Uri.wasm","AssetFile":"_framework/System.Private.Uri.clehp4avpy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"95509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU="}]},{"Route":"_framework/System.Private.Uri.wasm","AssetFile":"_framework/System.Private.Uri.clehp4avpy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023629490"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42319"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU="},{"Name":"original-resource","Value":"\"IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU=\""}]},{"Route":"_framework/System.Private.Uri.wasm.gz","AssetFile":"_framework/System.Private.Uri.clehp4avpy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42319"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8="}]},{"Route":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm","AssetFile":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"143637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ga3n3gh9b6"},{"Name":"integrity","Value":"sha256-aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0="},{"Name":"label","Value":"_framework/System.Private.Xml.Linq.wasm"}]},{"Route":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm","AssetFile":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017054951"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"58633"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ga3n3gh9b6"},{"Name":"integrity","Value":"sha256-aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0="},{"Name":"label","Value":"_framework/System.Private.Xml.Linq.wasm"},{"Name":"original-resource","Value":"\"aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0=\""}]},{"Route":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm.gz","AssetFile":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"58633"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ga3n3gh9b6"},{"Name":"integrity","Value":"sha256-wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g="},{"Name":"label","Value":"_framework/System.Private.Xml.Linq.wasm.gz"}]},{"Route":"_framework/System.Private.Xml.Linq.wasm","AssetFile":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"143637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0="}]},{"Route":"_framework/System.Private.Xml.Linq.wasm","AssetFile":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017054951"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"58633"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0="},{"Name":"original-resource","Value":"\"aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0=\""}]},{"Route":"_framework/System.Private.Xml.Linq.wasm.gz","AssetFile":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"58633"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g="}]},{"Route":"_framework/System.Private.Xml.g9rvjereoe.wasm","AssetFile":"_framework/System.Private.Xml.g9rvjereoe.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3095833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g9rvjereoe"},{"Name":"integrity","Value":"sha256-xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0="},{"Name":"label","Value":"_framework/System.Private.Xml.wasm"}]},{"Route":"_framework/System.Private.Xml.g9rvjereoe.wasm","AssetFile":"_framework/System.Private.Xml.g9rvjereoe.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000949553"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1053126"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g9rvjereoe"},{"Name":"integrity","Value":"sha256-xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0="},{"Name":"label","Value":"_framework/System.Private.Xml.wasm"},{"Name":"original-resource","Value":"\"xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0=\""}]},{"Route":"_framework/System.Private.Xml.g9rvjereoe.wasm.gz","AssetFile":"_framework/System.Private.Xml.g9rvjereoe.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1053126"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g9rvjereoe"},{"Name":"integrity","Value":"sha256-K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw="},{"Name":"label","Value":"_framework/System.Private.Xml.wasm.gz"}]},{"Route":"_framework/System.Private.Xml.wasm","AssetFile":"_framework/System.Private.Xml.g9rvjereoe.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3095833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0="}]},{"Route":"_framework/System.Private.Xml.wasm","AssetFile":"_framework/System.Private.Xml.g9rvjereoe.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000949553"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1053126"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0="},{"Name":"original-resource","Value":"\"xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0=\""}]},{"Route":"_framework/System.Private.Xml.wasm.gz","AssetFile":"_framework/System.Private.Xml.g9rvjereoe.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1053126"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw="}]},{"Route":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm","AssetFile":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27925"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7qn4zpc0q"},{"Name":"integrity","Value":"sha256-mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME="},{"Name":"label","Value":"_framework/System.Reflection.DispatchProxy.wasm"}]},{"Route":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm","AssetFile":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000078814628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12687"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7qn4zpc0q"},{"Name":"integrity","Value":"sha256-mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME="},{"Name":"label","Value":"_framework/System.Reflection.DispatchProxy.wasm"},{"Name":"original-resource","Value":"\"mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME=\""}]},{"Route":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm.gz","AssetFile":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12687"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7qn4zpc0q"},{"Name":"integrity","Value":"sha256-VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w="},{"Name":"label","Value":"_framework/System.Reflection.DispatchProxy.wasm.gz"}]},{"Route":"_framework/System.Reflection.DispatchProxy.wasm","AssetFile":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"27925"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME="}]},{"Route":"_framework/System.Reflection.DispatchProxy.wasm","AssetFile":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000078814628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12687"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME="},{"Name":"original-resource","Value":"\"mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME=\""}]},{"Route":"_framework/System.Reflection.DispatchProxy.wasm.gz","AssetFile":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12687"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w="}]},{"Route":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm","AssetFile":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"122645"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3t7flfwg7o"},{"Name":"integrity","Value":"sha256-uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8="},{"Name":"label","Value":"_framework/System.Reflection.Emit.wasm"}]},{"Route":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm","AssetFile":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018778637"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"53251"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3t7flfwg7o"},{"Name":"integrity","Value":"sha256-uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8="},{"Name":"label","Value":"_framework/System.Reflection.Emit.wasm"},{"Name":"original-resource","Value":"\"uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8=\""}]},{"Route":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm.gz","AssetFile":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"53251"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3t7flfwg7o"},{"Name":"integrity","Value":"sha256-2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ="},{"Name":"label","Value":"_framework/System.Reflection.Emit.wasm.gz"}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.wasm","AssetFile":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80="}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.wasm","AssetFile":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000437828371"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2283"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80="},{"Name":"original-resource","Value":"\"ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80=\""}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.wasm.gz","AssetFile":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2283"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE="}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm","AssetFile":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0vkqyycss"},{"Name":"integrity","Value":"sha256-ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80="},{"Name":"label","Value":"_framework/System.Reflection.Emit.ILGeneration.wasm"}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm","AssetFile":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000437828371"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2283"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0vkqyycss"},{"Name":"integrity","Value":"sha256-ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80="},{"Name":"label","Value":"_framework/System.Reflection.Emit.ILGeneration.wasm"},{"Name":"original-resource","Value":"\"ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80=\""}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm.gz","AssetFile":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2283"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0vkqyycss"},{"Name":"integrity","Value":"sha256-YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE="},{"Name":"label","Value":"_framework/System.Reflection.Emit.ILGeneration.wasm.gz"}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm","AssetFile":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3tzjd7znni"},{"Name":"integrity","Value":"sha256-B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k="},{"Name":"label","Value":"_framework/System.Reflection.Emit.Lightweight.wasm"}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm","AssetFile":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000446827525"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3tzjd7znni"},{"Name":"integrity","Value":"sha256-B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k="},{"Name":"label","Value":"_framework/System.Reflection.Emit.Lightweight.wasm"},{"Name":"original-resource","Value":"\"B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k=\""}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm.gz","AssetFile":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3tzjd7znni"},{"Name":"integrity","Value":"sha256-XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk="},{"Name":"label","Value":"_framework/System.Reflection.Emit.Lightweight.wasm.gz"}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.wasm","AssetFile":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k="}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.wasm","AssetFile":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000446827525"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k="},{"Name":"original-resource","Value":"\"B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k=\""}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.wasm.gz","AssetFile":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk="}]},{"Route":"_framework/System.Reflection.Emit.wasm","AssetFile":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"122645"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8="}]},{"Route":"_framework/System.Reflection.Emit.wasm","AssetFile":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018778637"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"53251"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8="},{"Name":"original-resource","Value":"\"uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8=\""}]},{"Route":"_framework/System.Reflection.Emit.wasm.gz","AssetFile":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"53251"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ="}]},{"Route":"_framework/System.Reflection.Extensions.wasm","AssetFile":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo="}]},{"Route":"_framework/System.Reflection.Extensions.wasm","AssetFile":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000462107209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2163"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo="},{"Name":"original-resource","Value":"\"xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo=\""}]},{"Route":"_framework/System.Reflection.Extensions.wasm.gz","AssetFile":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2163"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4="}]},{"Route":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm","AssetFile":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ymwga5opgl"},{"Name":"integrity","Value":"sha256-xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo="},{"Name":"label","Value":"_framework/System.Reflection.Extensions.wasm"}]},{"Route":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm","AssetFile":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000462107209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2163"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ymwga5opgl"},{"Name":"integrity","Value":"sha256-xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo="},{"Name":"label","Value":"_framework/System.Reflection.Extensions.wasm"},{"Name":"original-resource","Value":"\"xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo=\""}]},{"Route":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm.gz","AssetFile":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2163"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ymwga5opgl"},{"Name":"integrity","Value":"sha256-QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4="},{"Name":"label","Value":"_framework/System.Reflection.Extensions.wasm.gz"}]},{"Route":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm","AssetFile":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"493333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9lgg9wjd2a"},{"Name":"integrity","Value":"sha256-/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0="},{"Name":"label","Value":"_framework/System.Reflection.Metadata.wasm"}]},{"Route":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm","AssetFile":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005202589"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"192211"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9lgg9wjd2a"},{"Name":"integrity","Value":"sha256-/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0="},{"Name":"label","Value":"_framework/System.Reflection.Metadata.wasm"},{"Name":"original-resource","Value":"\"/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0=\""}]},{"Route":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm.gz","AssetFile":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"192211"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9lgg9wjd2a"},{"Name":"integrity","Value":"sha256-bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM="},{"Name":"label","Value":"_framework/System.Reflection.Metadata.wasm.gz"}]},{"Route":"_framework/System.Reflection.Metadata.wasm","AssetFile":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"493333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0="}]},{"Route":"_framework/System.Reflection.Metadata.wasm","AssetFile":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005202589"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"192211"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0="},{"Name":"original-resource","Value":"\"/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0=\""}]},{"Route":"_framework/System.Reflection.Metadata.wasm.gz","AssetFile":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"192211"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM="}]},{"Route":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm","AssetFile":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"n2ngq6as7g"},{"Name":"integrity","Value":"sha256-z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY="},{"Name":"label","Value":"_framework/System.Reflection.Primitives.wasm"}]},{"Route":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm","AssetFile":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000423190859"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"n2ngq6as7g"},{"Name":"integrity","Value":"sha256-z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY="},{"Name":"label","Value":"_framework/System.Reflection.Primitives.wasm"},{"Name":"original-resource","Value":"\"z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY=\""}]},{"Route":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm.gz","AssetFile":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"n2ngq6as7g"},{"Name":"integrity","Value":"sha256-DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac="},{"Name":"label","Value":"_framework/System.Reflection.Primitives.wasm.gz"}]},{"Route":"_framework/System.Reflection.Primitives.wasm","AssetFile":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY="}]},{"Route":"_framework/System.Reflection.Primitives.wasm","AssetFile":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000423190859"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY="},{"Name":"original-resource","Value":"\"z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY=\""}]},{"Route":"_framework/System.Reflection.Primitives.wasm.gz","AssetFile":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac="}]},{"Route":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm","AssetFile":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"14101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ivmzcfvrc6"},{"Name":"integrity","Value":"sha256-jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0="},{"Name":"label","Value":"_framework/System.Reflection.TypeExtensions.wasm"}]},{"Route":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm","AssetFile":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000170561146"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ivmzcfvrc6"},{"Name":"integrity","Value":"sha256-jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0="},{"Name":"label","Value":"_framework/System.Reflection.TypeExtensions.wasm"},{"Name":"original-resource","Value":"\"jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0=\""}]},{"Route":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm.gz","AssetFile":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ivmzcfvrc6"},{"Name":"integrity","Value":"sha256-UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY="},{"Name":"label","Value":"_framework/System.Reflection.TypeExtensions.wasm.gz"}]},{"Route":"_framework/System.Reflection.TypeExtensions.wasm","AssetFile":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"14101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0="}]},{"Route":"_framework/System.Reflection.TypeExtensions.wasm","AssetFile":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000170561146"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0="},{"Name":"original-resource","Value":"\"jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0=\""}]},{"Route":"_framework/System.Reflection.TypeExtensions.wasm.gz","AssetFile":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY="}]},{"Route":"_framework/System.Reflection.v4mfyzbte8.wasm","AssetFile":"_framework/System.Reflection.v4mfyzbte8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v4mfyzbte8"},{"Name":"integrity","Value":"sha256-MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw="},{"Name":"label","Value":"_framework/System.Reflection.wasm"}]},{"Route":"_framework/System.Reflection.v4mfyzbte8.wasm","AssetFile":"_framework/System.Reflection.v4mfyzbte8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000404530744"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2471"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v4mfyzbte8"},{"Name":"integrity","Value":"sha256-MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw="},{"Name":"label","Value":"_framework/System.Reflection.wasm"},{"Name":"original-resource","Value":"\"MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw=\""}]},{"Route":"_framework/System.Reflection.v4mfyzbte8.wasm.gz","AssetFile":"_framework/System.Reflection.v4mfyzbte8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2471"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v4mfyzbte8"},{"Name":"integrity","Value":"sha256-/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng="},{"Name":"label","Value":"_framework/System.Reflection.wasm.gz"}]},{"Route":"_framework/System.Reflection.wasm","AssetFile":"_framework/System.Reflection.v4mfyzbte8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw="}]},{"Route":"_framework/System.Reflection.wasm","AssetFile":"_framework/System.Reflection.v4mfyzbte8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000404530744"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2471"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw="},{"Name":"original-resource","Value":"\"MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw=\""}]},{"Route":"_framework/System.Reflection.wasm.gz","AssetFile":"_framework/System.Reflection.v4mfyzbte8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2471"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng="}]},{"Route":"_framework/System.Resources.Reader.c9z9nieytf.wasm","AssetFile":"_framework/System.Resources.Reader.c9z9nieytf.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c9z9nieytf"},{"Name":"integrity","Value":"sha256-QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8="},{"Name":"label","Value":"_framework/System.Resources.Reader.wasm"}]},{"Route":"_framework/System.Resources.Reader.c9z9nieytf.wasm","AssetFile":"_framework/System.Resources.Reader.c9z9nieytf.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000469043152"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2131"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c9z9nieytf"},{"Name":"integrity","Value":"sha256-QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8="},{"Name":"label","Value":"_framework/System.Resources.Reader.wasm"},{"Name":"original-resource","Value":"\"QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8=\""}]},{"Route":"_framework/System.Resources.Reader.c9z9nieytf.wasm.gz","AssetFile":"_framework/System.Resources.Reader.c9z9nieytf.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2131"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c9z9nieytf"},{"Name":"integrity","Value":"sha256-1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI="},{"Name":"label","Value":"_framework/System.Resources.Reader.wasm.gz"}]},{"Route":"_framework/System.Resources.Reader.wasm","AssetFile":"_framework/System.Resources.Reader.c9z9nieytf.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8="}]},{"Route":"_framework/System.Resources.Reader.wasm","AssetFile":"_framework/System.Resources.Reader.c9z9nieytf.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000469043152"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2131"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8="},{"Name":"original-resource","Value":"\"QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8=\""}]},{"Route":"_framework/System.Resources.Reader.wasm.gz","AssetFile":"_framework/System.Resources.Reader.c9z9nieytf.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2131"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI="}]},{"Route":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm","AssetFile":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f3fiwdwb50"},{"Name":"integrity","Value":"sha256-61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw="},{"Name":"label","Value":"_framework/System.Resources.ResourceManager.wasm"}]},{"Route":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm","AssetFile":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000444642063"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2248"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f3fiwdwb50"},{"Name":"integrity","Value":"sha256-61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw="},{"Name":"label","Value":"_framework/System.Resources.ResourceManager.wasm"},{"Name":"original-resource","Value":"\"61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw=\""}]},{"Route":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm.gz","AssetFile":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2248"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f3fiwdwb50"},{"Name":"integrity","Value":"sha256-yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg="},{"Name":"label","Value":"_framework/System.Resources.ResourceManager.wasm.gz"}]},{"Route":"_framework/System.Resources.ResourceManager.wasm","AssetFile":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw="}]},{"Route":"_framework/System.Resources.ResourceManager.wasm","AssetFile":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000444642063"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2248"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw="},{"Name":"original-resource","Value":"\"61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw=\""}]},{"Route":"_framework/System.Resources.ResourceManager.wasm.gz","AssetFile":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2248"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg="}]},{"Route":"_framework/System.Resources.Writer.tx9namivq6.wasm","AssetFile":"_framework/System.Resources.Writer.tx9namivq6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"16661"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tx9namivq6"},{"Name":"integrity","Value":"sha256-EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw="},{"Name":"label","Value":"_framework/System.Resources.Writer.wasm"}]},{"Route":"_framework/System.Resources.Writer.tx9namivq6.wasm","AssetFile":"_framework/System.Resources.Writer.tx9namivq6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000131839156"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7584"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tx9namivq6"},{"Name":"integrity","Value":"sha256-EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw="},{"Name":"label","Value":"_framework/System.Resources.Writer.wasm"},{"Name":"original-resource","Value":"\"EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw=\""}]},{"Route":"_framework/System.Resources.Writer.tx9namivq6.wasm.gz","AssetFile":"_framework/System.Resources.Writer.tx9namivq6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7584"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tx9namivq6"},{"Name":"integrity","Value":"sha256-mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw="},{"Name":"label","Value":"_framework/System.Resources.Writer.wasm.gz"}]},{"Route":"_framework/System.Resources.Writer.wasm","AssetFile":"_framework/System.Resources.Writer.tx9namivq6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"16661"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw="}]},{"Route":"_framework/System.Resources.Writer.wasm","AssetFile":"_framework/System.Resources.Writer.tx9namivq6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000131839156"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7584"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw="},{"Name":"original-resource","Value":"\"EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw=\""}]},{"Route":"_framework/System.Resources.Writer.wasm.gz","AssetFile":"_framework/System.Resources.Writer.tx9namivq6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7584"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw="}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5yw8jyjkyt"},{"Name":"integrity","Value":"sha256-M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.Unsafe.wasm"}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000468164794"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2135"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5yw8jyjkyt"},{"Name":"integrity","Value":"sha256-M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.Unsafe.wasm"},{"Name":"original-resource","Value":"\"M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc=\""}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm.gz","AssetFile":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2135"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5yw8jyjkyt"},{"Name":"integrity","Value":"sha256-b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.Unsafe.wasm.gz"}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc="}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000468164794"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2135"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc="},{"Name":"original-resource","Value":"\"M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc=\""}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.wasm.gz","AssetFile":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2135"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks="}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ddbsai2xh9"},{"Name":"integrity","Value":"sha256-b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.VisualC.wasm"}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000327868852"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3049"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ddbsai2xh9"},{"Name":"integrity","Value":"sha256-b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.VisualC.wasm"},{"Name":"original-resource","Value":"\"b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM=\""}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm.gz","AssetFile":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3049"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ddbsai2xh9"},{"Name":"integrity","Value":"sha256-XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.VisualC.wasm.gz"}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM="}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000327868852"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3049"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM="},{"Name":"original-resource","Value":"\"b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM=\""}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.wasm.gz","AssetFile":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3049"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo="}]},{"Route":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm","AssetFile":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"7445"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f4fqaba1oz"},{"Name":"integrity","Value":"sha256-8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8="},{"Name":"label","Value":"_framework/System.Runtime.Extensions.wasm"}]},{"Route":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm","AssetFile":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000333555704"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f4fqaba1oz"},{"Name":"integrity","Value":"sha256-8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8="},{"Name":"label","Value":"_framework/System.Runtime.Extensions.wasm"},{"Name":"original-resource","Value":"\"8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8=\""}]},{"Route":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm.gz","AssetFile":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f4fqaba1oz"},{"Name":"integrity","Value":"sha256-UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM="},{"Name":"label","Value":"_framework/System.Runtime.Extensions.wasm.gz"}]},{"Route":"_framework/System.Runtime.Extensions.wasm","AssetFile":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"7445"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8="}]},{"Route":"_framework/System.Runtime.Extensions.wasm","AssetFile":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000333555704"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8="},{"Name":"original-resource","Value":"\"8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8=\""}]},{"Route":"_framework/System.Runtime.Extensions.wasm.gz","AssetFile":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM="}]},{"Route":"_framework/System.Runtime.Handles.kpe61fymig.wasm","AssetFile":"_framework/System.Runtime.Handles.kpe61fymig.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kpe61fymig"},{"Name":"integrity","Value":"sha256-+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ="},{"Name":"label","Value":"_framework/System.Runtime.Handles.wasm"}]},{"Route":"_framework/System.Runtime.Handles.kpe61fymig.wasm","AssetFile":"_framework/System.Runtime.Handles.kpe61fymig.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000451467269"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2214"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kpe61fymig"},{"Name":"integrity","Value":"sha256-+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ="},{"Name":"label","Value":"_framework/System.Runtime.Handles.wasm"},{"Name":"original-resource","Value":"\"+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ=\""}]},{"Route":"_framework/System.Runtime.Handles.kpe61fymig.wasm.gz","AssetFile":"_framework/System.Runtime.Handles.kpe61fymig.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2214"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kpe61fymig"},{"Name":"integrity","Value":"sha256-P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8="},{"Name":"label","Value":"_framework/System.Runtime.Handles.wasm.gz"}]},{"Route":"_framework/System.Runtime.Handles.wasm","AssetFile":"_framework/System.Runtime.Handles.kpe61fymig.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ="}]},{"Route":"_framework/System.Runtime.Handles.wasm","AssetFile":"_framework/System.Runtime.Handles.kpe61fymig.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000451467269"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2214"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ="},{"Name":"original-resource","Value":"\"+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ=\""}]},{"Route":"_framework/System.Runtime.Handles.wasm.gz","AssetFile":"_framework/System.Runtime.Handles.kpe61fymig.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2214"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8="}]},{"Route":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm","AssetFile":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"54549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"02r2ubft18"},{"Name":"integrity","Value":"sha256-iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.wasm"}]},{"Route":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm","AssetFile":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000042457436"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23552"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"02r2ubft18"},{"Name":"integrity","Value":"sha256-iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.wasm"},{"Name":"original-resource","Value":"\"iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI=\""}]},{"Route":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm.gz","AssetFile":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23552"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"02r2ubft18"},{"Name":"integrity","Value":"sha256-hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.wasm.gz"}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.wasm","AssetFile":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"79637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk="}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.wasm","AssetFile":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000031413942"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk="},{"Name":"original-resource","Value":"\"BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk=\""}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.wasm.gz","AssetFile":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A="}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm","AssetFile":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"79637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ythr5w8c2e"},{"Name":"integrity","Value":"sha256-BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.JavaScript.wasm"}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm","AssetFile":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000031413942"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ythr5w8c2e"},{"Name":"integrity","Value":"sha256-BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.JavaScript.wasm"},{"Name":"original-resource","Value":"\"BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk=\""}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm.gz","AssetFile":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ythr5w8c2e"},{"Name":"integrity","Value":"sha256-BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.JavaScript.wasm.gz"}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm","AssetFile":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"esodb2rpbi"},{"Name":"integrity","Value":"sha256-Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm"}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm","AssetFile":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000462962963"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2159"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"esodb2rpbi"},{"Name":"integrity","Value":"sha256-Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm"},{"Name":"original-resource","Value":"\"Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s=\""}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm.gz","AssetFile":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2159"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"esodb2rpbi"},{"Name":"integrity","Value":"sha256-XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm.gz"}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm","AssetFile":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s="}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm","AssetFile":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000462962963"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2159"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s="},{"Name":"original-resource","Value":"\"Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s=\""}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm.gz","AssetFile":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2159"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA="}]},{"Route":"_framework/System.Runtime.InteropServices.wasm","AssetFile":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"54549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI="}]},{"Route":"_framework/System.Runtime.InteropServices.wasm","AssetFile":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000042457436"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23552"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI="},{"Name":"original-resource","Value":"\"iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI=\""}]},{"Route":"_framework/System.Runtime.InteropServices.wasm.gz","AssetFile":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23552"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs="}]},{"Route":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm","AssetFile":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8lrpban8m"},{"Name":"integrity","Value":"sha256-vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk="},{"Name":"label","Value":"_framework/System.Runtime.Intrinsics.wasm"}]},{"Route":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm","AssetFile":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000351617440"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2843"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8lrpban8m"},{"Name":"integrity","Value":"sha256-vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk="},{"Name":"label","Value":"_framework/System.Runtime.Intrinsics.wasm"},{"Name":"original-resource","Value":"\"vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk=\""}]},{"Route":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm.gz","AssetFile":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2843"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8lrpban8m"},{"Name":"integrity","Value":"sha256-RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4="},{"Name":"label","Value":"_framework/System.Runtime.Intrinsics.wasm.gz"}]},{"Route":"_framework/System.Runtime.Intrinsics.wasm","AssetFile":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk="}]},{"Route":"_framework/System.Runtime.Intrinsics.wasm","AssetFile":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000351617440"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2843"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk="},{"Name":"original-resource","Value":"\"vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk=\""}]},{"Route":"_framework/System.Runtime.Intrinsics.wasm.gz","AssetFile":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2843"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4="}]},{"Route":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm","AssetFile":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bm8d2pac0a"},{"Name":"integrity","Value":"sha256-Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4="},{"Name":"label","Value":"_framework/System.Runtime.Loader.wasm"}]},{"Route":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm","AssetFile":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000429000429"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2330"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bm8d2pac0a"},{"Name":"integrity","Value":"sha256-Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4="},{"Name":"label","Value":"_framework/System.Runtime.Loader.wasm"},{"Name":"original-resource","Value":"\"Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4=\""}]},{"Route":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm.gz","AssetFile":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2330"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bm8d2pac0a"},{"Name":"integrity","Value":"sha256-InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns="},{"Name":"label","Value":"_framework/System.Runtime.Loader.wasm.gz"}]},{"Route":"_framework/System.Runtime.Loader.wasm","AssetFile":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4="}]},{"Route":"_framework/System.Runtime.Loader.wasm","AssetFile":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000429000429"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2330"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4="},{"Name":"original-resource","Value":"\"Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4=\""}]},{"Route":"_framework/System.Runtime.Loader.wasm.gz","AssetFile":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2330"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns="}]},{"Route":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm","AssetFile":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"134933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e3fl2oogjk"},{"Name":"integrity","Value":"sha256-Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4="},{"Name":"label","Value":"_framework/System.Runtime.Numerics.wasm"}]},{"Route":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm","AssetFile":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018948725"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"52773"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e3fl2oogjk"},{"Name":"integrity","Value":"sha256-Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4="},{"Name":"label","Value":"_framework/System.Runtime.Numerics.wasm"},{"Name":"original-resource","Value":"\"Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4=\""}]},{"Route":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm.gz","AssetFile":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"52773"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e3fl2oogjk"},{"Name":"integrity","Value":"sha256-aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs="},{"Name":"label","Value":"_framework/System.Runtime.Numerics.wasm.gz"}]},{"Route":"_framework/System.Runtime.Numerics.wasm","AssetFile":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"134933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4="}]},{"Route":"_framework/System.Runtime.Numerics.wasm","AssetFile":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018948725"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"52773"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4="},{"Name":"original-resource","Value":"\"Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4=\""}]},{"Route":"_framework/System.Runtime.Numerics.wasm.gz","AssetFile":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"52773"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs="}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm","AssetFile":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a0v88kqnif"},{"Name":"integrity","Value":"sha256-Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Formatters.wasm"}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm","AssetFile":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041467966"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24114"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a0v88kqnif"},{"Name":"integrity","Value":"sha256-Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Formatters.wasm"},{"Name":"original-resource","Value":"\"Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU=\""}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24114"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a0v88kqnif"},{"Name":"integrity","Value":"sha256-89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Formatters.wasm.gz"}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.wasm","AssetFile":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU="}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.wasm","AssetFile":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041467966"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24114"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU="},{"Name":"original-resource","Value":"\"Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU=\""}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24114"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4="}]},{"Route":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm","AssetFile":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pez04wd9mo"},{"Name":"integrity","Value":"sha256-vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Json.wasm"}]},{"Route":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm","AssetFile":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000441501104"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pez04wd9mo"},{"Name":"integrity","Value":"sha256-vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Json.wasm"},{"Name":"original-resource","Value":"\"vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw=\""}]},{"Route":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pez04wd9mo"},{"Name":"integrity","Value":"sha256-F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Json.wasm.gz"}]},{"Route":"_framework/System.Runtime.Serialization.Json.wasm","AssetFile":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw="}]},{"Route":"_framework/System.Runtime.Serialization.Json.wasm","AssetFile":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000441501104"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw="},{"Name":"original-resource","Value":"\"vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw=\""}]},{"Route":"_framework/System.Runtime.Serialization.Json.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM="}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.wasm","AssetFile":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY="}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.wasm","AssetFile":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000184501845"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY="},{"Name":"original-resource","Value":"\"hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY=\""}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g="}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm","AssetFile":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xy5d3j3dn1"},{"Name":"integrity","Value":"sha256-hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Primitives.wasm"}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm","AssetFile":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000184501845"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xy5d3j3dn1"},{"Name":"integrity","Value":"sha256-hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Primitives.wasm"},{"Name":"original-resource","Value":"\"hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY=\""}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xy5d3j3dn1"},{"Name":"integrity","Value":"sha256-nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Primitives.wasm.gz"}]},{"Route":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm","AssetFile":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mmwsbcsgly"},{"Name":"integrity","Value":"sha256-0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Xml.wasm"}]},{"Route":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm","AssetFile":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388953715"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2570"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mmwsbcsgly"},{"Name":"integrity","Value":"sha256-0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Xml.wasm"},{"Name":"original-resource","Value":"\"0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0=\""}]},{"Route":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2570"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mmwsbcsgly"},{"Name":"integrity","Value":"sha256-ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Xml.wasm.gz"}]},{"Route":"_framework/System.Runtime.Serialization.Xml.wasm","AssetFile":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0="}]},{"Route":"_framework/System.Runtime.Serialization.Xml.wasm","AssetFile":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388953715"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2570"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0="},{"Name":"original-resource","Value":"\"0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0=\""}]},{"Route":"_framework/System.Runtime.Serialization.Xml.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2570"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs="}]},{"Route":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm","AssetFile":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qfpmfujegm"},{"Name":"integrity","Value":"sha256-un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.wasm"}]},{"Route":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm","AssetFile":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000399042298"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2505"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qfpmfujegm"},{"Name":"integrity","Value":"sha256-un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.wasm"},{"Name":"original-resource","Value":"\"un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk=\""}]},{"Route":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2505"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qfpmfujegm"},{"Name":"integrity","Value":"sha256-wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.wasm.gz"}]},{"Route":"_framework/System.Runtime.Serialization.wasm","AssetFile":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk="}]},{"Route":"_framework/System.Runtime.Serialization.wasm","AssetFile":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000399042298"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2505"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk="},{"Name":"original-resource","Value":"\"un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk=\""}]},{"Route":"_framework/System.Runtime.Serialization.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2505"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g="}]},{"Route":"_framework/System.Runtime.k6ze2203p2.wasm","AssetFile":"_framework/System.Runtime.k6ze2203p2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6ze2203p2"},{"Name":"integrity","Value":"sha256-ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM="},{"Name":"label","Value":"_framework/System.Runtime.wasm"}]},{"Route":"_framework/System.Runtime.k6ze2203p2.wasm","AssetFile":"_framework/System.Runtime.k6ze2203p2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000092302012"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6ze2203p2"},{"Name":"integrity","Value":"sha256-ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM="},{"Name":"label","Value":"_framework/System.Runtime.wasm"},{"Name":"original-resource","Value":"\"ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM=\""}]},{"Route":"_framework/System.Runtime.k6ze2203p2.wasm.gz","AssetFile":"_framework/System.Runtime.k6ze2203p2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6ze2203p2"},{"Name":"integrity","Value":"sha256-yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4="},{"Name":"label","Value":"_framework/System.Runtime.wasm.gz"}]},{"Route":"_framework/System.Runtime.wasm","AssetFile":"_framework/System.Runtime.k6ze2203p2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM="}]},{"Route":"_framework/System.Runtime.wasm","AssetFile":"_framework/System.Runtime.k6ze2203p2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000092302012"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM="},{"Name":"original-resource","Value":"\"ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM=\""}]},{"Route":"_framework/System.Runtime.wasm.gz","AssetFile":"_framework/System.Runtime.k6ze2203p2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4="}]},{"Route":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm","AssetFile":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"47893"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4mxo8hy5cn"},{"Name":"integrity","Value":"sha256-1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA="},{"Name":"label","Value":"_framework/System.Security.AccessControl.wasm"}]},{"Route":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm","AssetFile":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000059421237"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4mxo8hy5cn"},{"Name":"integrity","Value":"sha256-1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA="},{"Name":"label","Value":"_framework/System.Security.AccessControl.wasm"},{"Name":"original-resource","Value":"\"1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA=\""}]},{"Route":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm.gz","AssetFile":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4mxo8hy5cn"},{"Name":"integrity","Value":"sha256-lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak="},{"Name":"label","Value":"_framework/System.Security.AccessControl.wasm.gz"}]},{"Route":"_framework/System.Security.AccessControl.wasm","AssetFile":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"47893"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA="}]},{"Route":"_framework/System.Security.AccessControl.wasm","AssetFile":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000059421237"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA="},{"Name":"original-resource","Value":"\"1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA=\""}]},{"Route":"_framework/System.Security.AccessControl.wasm.gz","AssetFile":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak="}]},{"Route":"_framework/System.Security.Claims.9n1yusa5e5.wasm","AssetFile":"_framework/System.Security.Claims.9n1yusa5e5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"44821"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9n1yusa5e5"},{"Name":"integrity","Value":"sha256-KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA="},{"Name":"label","Value":"_framework/System.Security.Claims.wasm"}]},{"Route":"_framework/System.Security.Claims.9n1yusa5e5.wasm","AssetFile":"_framework/System.Security.Claims.9n1yusa5e5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060397415"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16556"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9n1yusa5e5"},{"Name":"integrity","Value":"sha256-KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA="},{"Name":"label","Value":"_framework/System.Security.Claims.wasm"},{"Name":"original-resource","Value":"\"KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA=\""}]},{"Route":"_framework/System.Security.Claims.9n1yusa5e5.wasm.gz","AssetFile":"_framework/System.Security.Claims.9n1yusa5e5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16556"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9n1yusa5e5"},{"Name":"integrity","Value":"sha256-ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY="},{"Name":"label","Value":"_framework/System.Security.Claims.wasm.gz"}]},{"Route":"_framework/System.Security.Claims.wasm","AssetFile":"_framework/System.Security.Claims.9n1yusa5e5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"44821"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA="}]},{"Route":"_framework/System.Security.Claims.wasm","AssetFile":"_framework/System.Security.Claims.9n1yusa5e5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060397415"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16556"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA="},{"Name":"original-resource","Value":"\"KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA=\""}]},{"Route":"_framework/System.Security.Claims.wasm.gz","AssetFile":"_framework/System.Security.Claims.9n1yusa5e5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16556"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY="}]},{"Route":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm","AssetFile":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"642325"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5rp84ijz8t"},{"Name":"integrity","Value":"sha256-YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM="},{"Name":"label","Value":"_framework/System.Security.Cryptography.wasm"}]},{"Route":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm","AssetFile":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004398891"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"227329"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5rp84ijz8t"},{"Name":"integrity","Value":"sha256-YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM="},{"Name":"label","Value":"_framework/System.Security.Cryptography.wasm"},{"Name":"original-resource","Value":"\"YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM=\""}]},{"Route":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"227329"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5rp84ijz8t"},{"Name":"integrity","Value":"sha256-+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y="},{"Name":"label","Value":"_framework/System.Security.Cryptography.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm","AssetFile":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4dnz7b15a9"},{"Name":"integrity","Value":"sha256-CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Algorithms.wasm"}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm","AssetFile":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000368595651"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2712"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4dnz7b15a9"},{"Name":"integrity","Value":"sha256-CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Algorithms.wasm"},{"Name":"original-resource","Value":"\"CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0=\""}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2712"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4dnz7b15a9"},{"Name":"integrity","Value":"sha256-kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Algorithms.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.wasm","AssetFile":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0="}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.wasm","AssetFile":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000368595651"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2712"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0="},{"Name":"original-resource","Value":"\"CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0=\""}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2712"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A="}]},{"Route":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm","AssetFile":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyaxkkx3lb"},{"Name":"integrity","Value":"sha256-SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Cng.wasm"}]},{"Route":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm","AssetFile":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000403714170"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2476"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyaxkkx3lb"},{"Name":"integrity","Value":"sha256-SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Cng.wasm"},{"Name":"original-resource","Value":"\"SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug=\""}]},{"Route":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2476"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyaxkkx3lb"},{"Name":"integrity","Value":"sha256-xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Cng.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Cng.wasm","AssetFile":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug="}]},{"Route":"_framework/System.Security.Cryptography.Cng.wasm","AssetFile":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000403714170"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2476"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug="},{"Name":"original-resource","Value":"\"SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug=\""}]},{"Route":"_framework/System.Security.Cryptography.Cng.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2476"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178="}]},{"Route":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm","AssetFile":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"20t5iw27a6"},{"Name":"integrity","Value":"sha256-EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Csp.wasm"}]},{"Route":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm","AssetFile":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000428082192"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"20t5iw27a6"},{"Name":"integrity","Value":"sha256-EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Csp.wasm"},{"Name":"original-resource","Value":"\"EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M=\""}]},{"Route":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"20t5iw27a6"},{"Name":"integrity","Value":"sha256-lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Csp.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Csp.wasm","AssetFile":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M="}]},{"Route":"_framework/System.Security.Cryptography.Csp.wasm","AssetFile":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000428082192"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M="},{"Name":"original-resource","Value":"\"EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M=\""}]},{"Route":"_framework/System.Security.Cryptography.Csp.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek="}]},{"Route":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm","AssetFile":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0lu5m0tfx2"},{"Name":"integrity","Value":"sha256-7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Encoding.wasm"}]},{"Route":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm","AssetFile":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438404209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0lu5m0tfx2"},{"Name":"integrity","Value":"sha256-7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Encoding.wasm"},{"Name":"original-resource","Value":"\"7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU=\""}]},{"Route":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0lu5m0tfx2"},{"Name":"integrity","Value":"sha256-EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Encoding.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Encoding.wasm","AssetFile":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU="}]},{"Route":"_framework/System.Security.Cryptography.Encoding.wasm","AssetFile":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438404209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU="},{"Name":"original-resource","Value":"\"7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU=\""}]},{"Route":"_framework/System.Security.Cryptography.Encoding.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg="}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm","AssetFile":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m4pzjxi3g"},{"Name":"integrity","Value":"sha256-nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o="},{"Name":"label","Value":"_framework/System.Security.Cryptography.OpenSsl.wasm"}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm","AssetFile":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000449842555"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2222"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m4pzjxi3g"},{"Name":"integrity","Value":"sha256-nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o="},{"Name":"label","Value":"_framework/System.Security.Cryptography.OpenSsl.wasm"},{"Name":"original-resource","Value":"\"nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o=\""}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2222"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m4pzjxi3g"},{"Name":"integrity","Value":"sha256-vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM="},{"Name":"label","Value":"_framework/System.Security.Cryptography.OpenSsl.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.wasm","AssetFile":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o="}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.wasm","AssetFile":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000449842555"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2222"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o="},{"Name":"original-resource","Value":"\"nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o=\""}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2222"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM="}]},{"Route":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm","AssetFile":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7bcdd4uolu"},{"Name":"integrity","Value":"sha256-kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Primitives.wasm"}]},{"Route":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm","AssetFile":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000425894378"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2347"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7bcdd4uolu"},{"Name":"integrity","Value":"sha256-kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Primitives.wasm"},{"Name":"original-resource","Value":"\"kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0=\""}]},{"Route":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2347"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7bcdd4uolu"},{"Name":"integrity","Value":"sha256-o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Primitives.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Primitives.wasm","AssetFile":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0="}]},{"Route":"_framework/System.Security.Cryptography.Primitives.wasm","AssetFile":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000425894378"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2347"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0="},{"Name":"original-resource","Value":"\"kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0=\""}]},{"Route":"_framework/System.Security.Cryptography.Primitives.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2347"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE="}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm","AssetFile":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dmew7c9amv"},{"Name":"integrity","Value":"sha256-+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8="},{"Name":"label","Value":"_framework/System.Security.Cryptography.X509Certificates.wasm"}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm","AssetFile":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000374251497"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2671"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dmew7c9amv"},{"Name":"integrity","Value":"sha256-+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8="},{"Name":"label","Value":"_framework/System.Security.Cryptography.X509Certificates.wasm"},{"Name":"original-resource","Value":"\"+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8=\""}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2671"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dmew7c9amv"},{"Name":"integrity","Value":"sha256-KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw="},{"Name":"label","Value":"_framework/System.Security.Cryptography.X509Certificates.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.wasm","AssetFile":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8="}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.wasm","AssetFile":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000374251497"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2671"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8="},{"Name":"original-resource","Value":"\"+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8=\""}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2671"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw="}]},{"Route":"_framework/System.Security.Cryptography.wasm","AssetFile":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"642325"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM="}]},{"Route":"_framework/System.Security.Cryptography.wasm","AssetFile":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004398891"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"227329"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM="},{"Name":"original-resource","Value":"\"YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM=\""}]},{"Route":"_framework/System.Security.Cryptography.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"227329"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y="}]},{"Route":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm","AssetFile":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27413"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7ssqvw2wfy"},{"Name":"integrity","Value":"sha256-NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ="},{"Name":"label","Value":"_framework/System.Security.Principal.Windows.wasm"}]},{"Route":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm","AssetFile":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090171326"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11089"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7ssqvw2wfy"},{"Name":"integrity","Value":"sha256-NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ="},{"Name":"label","Value":"_framework/System.Security.Principal.Windows.wasm"},{"Name":"original-resource","Value":"\"NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ=\""}]},{"Route":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm.gz","AssetFile":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11089"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7ssqvw2wfy"},{"Name":"integrity","Value":"sha256-ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg="},{"Name":"label","Value":"_framework/System.Security.Principal.Windows.wasm.gz"}]},{"Route":"_framework/System.Security.Principal.Windows.wasm","AssetFile":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"27413"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ="}]},{"Route":"_framework/System.Security.Principal.Windows.wasm","AssetFile":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090171326"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11089"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ="},{"Name":"original-resource","Value":"\"NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ=\""}]},{"Route":"_framework/System.Security.Principal.Windows.wasm.gz","AssetFile":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11089"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg="}]},{"Route":"_framework/System.Security.Principal.j5dp7k8x6u.wasm","AssetFile":"_framework/System.Security.Principal.j5dp7k8x6u.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5dp7k8x6u"},{"Name":"integrity","Value":"sha256-KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no="},{"Name":"label","Value":"_framework/System.Security.Principal.wasm"}]},{"Route":"_framework/System.Security.Principal.j5dp7k8x6u.wasm","AssetFile":"_framework/System.Security.Principal.j5dp7k8x6u.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000459558824"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2175"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5dp7k8x6u"},{"Name":"integrity","Value":"sha256-KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no="},{"Name":"label","Value":"_framework/System.Security.Principal.wasm"},{"Name":"original-resource","Value":"\"KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no=\""}]},{"Route":"_framework/System.Security.Principal.j5dp7k8x6u.wasm.gz","AssetFile":"_framework/System.Security.Principal.j5dp7k8x6u.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2175"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5dp7k8x6u"},{"Name":"integrity","Value":"sha256-HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA="},{"Name":"label","Value":"_framework/System.Security.Principal.wasm.gz"}]},{"Route":"_framework/System.Security.Principal.wasm","AssetFile":"_framework/System.Security.Principal.j5dp7k8x6u.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no="}]},{"Route":"_framework/System.Security.Principal.wasm","AssetFile":"_framework/System.Security.Principal.j5dp7k8x6u.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000459558824"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2175"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no="},{"Name":"original-resource","Value":"\"KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no=\""}]},{"Route":"_framework/System.Security.Principal.wasm.gz","AssetFile":"_framework/System.Security.Principal.j5dp7k8x6u.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2175"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA="}]},{"Route":"_framework/System.Security.SecureString.7weoywtuje.wasm","AssetFile":"_framework/System.Security.SecureString.7weoywtuje.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7weoywtuje"},{"Name":"integrity","Value":"sha256-Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY="},{"Name":"label","Value":"_framework/System.Security.SecureString.wasm"}]},{"Route":"_framework/System.Security.SecureString.7weoywtuje.wasm","AssetFile":"_framework/System.Security.SecureString.7weoywtuje.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000453309157"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2205"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7weoywtuje"},{"Name":"integrity","Value":"sha256-Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY="},{"Name":"label","Value":"_framework/System.Security.SecureString.wasm"},{"Name":"original-resource","Value":"\"Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY=\""}]},{"Route":"_framework/System.Security.SecureString.7weoywtuje.wasm.gz","AssetFile":"_framework/System.Security.SecureString.7weoywtuje.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2205"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7weoywtuje"},{"Name":"integrity","Value":"sha256-z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM="},{"Name":"label","Value":"_framework/System.Security.SecureString.wasm.gz"}]},{"Route":"_framework/System.Security.SecureString.wasm","AssetFile":"_framework/System.Security.SecureString.7weoywtuje.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY="}]},{"Route":"_framework/System.Security.SecureString.wasm","AssetFile":"_framework/System.Security.SecureString.7weoywtuje.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000453309157"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2205"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY="},{"Name":"original-resource","Value":"\"Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY=\""}]},{"Route":"_framework/System.Security.SecureString.wasm.gz","AssetFile":"_framework/System.Security.SecureString.7weoywtuje.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2205"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM="}]},{"Route":"_framework/System.Security.snpv53zusk.wasm","AssetFile":"_framework/System.Security.snpv53zusk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"7957"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"snpv53zusk"},{"Name":"integrity","Value":"sha256-qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk="},{"Name":"label","Value":"_framework/System.Security.wasm"}]},{"Route":"_framework/System.Security.snpv53zusk.wasm","AssetFile":"_framework/System.Security.snpv53zusk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000336927224"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2967"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"snpv53zusk"},{"Name":"integrity","Value":"sha256-qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk="},{"Name":"label","Value":"_framework/System.Security.wasm"},{"Name":"original-resource","Value":"\"qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk=\""}]},{"Route":"_framework/System.Security.snpv53zusk.wasm.gz","AssetFile":"_framework/System.Security.snpv53zusk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2967"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"snpv53zusk"},{"Name":"integrity","Value":"sha256-l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk="},{"Name":"label","Value":"_framework/System.Security.wasm.gz"}]},{"Route":"_framework/System.Security.wasm","AssetFile":"_framework/System.Security.snpv53zusk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"7957"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk="}]},{"Route":"_framework/System.Security.wasm","AssetFile":"_framework/System.Security.snpv53zusk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000336927224"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2967"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk="},{"Name":"original-resource","Value":"\"qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk=\""}]},{"Route":"_framework/System.Security.wasm.gz","AssetFile":"_framework/System.Security.snpv53zusk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2967"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk="}]},{"Route":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm","AssetFile":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3f1khl8k32"},{"Name":"integrity","Value":"sha256-0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY="},{"Name":"label","Value":"_framework/System.ServiceModel.Web.wasm"}]},{"Route":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm","AssetFile":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000392464678"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2547"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3f1khl8k32"},{"Name":"integrity","Value":"sha256-0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY="},{"Name":"label","Value":"_framework/System.ServiceModel.Web.wasm"},{"Name":"original-resource","Value":"\"0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY=\""}]},{"Route":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm.gz","AssetFile":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2547"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3f1khl8k32"},{"Name":"integrity","Value":"sha256-E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4="},{"Name":"label","Value":"_framework/System.ServiceModel.Web.wasm.gz"}]},{"Route":"_framework/System.ServiceModel.Web.wasm","AssetFile":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY="}]},{"Route":"_framework/System.ServiceModel.Web.wasm","AssetFile":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000392464678"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2547"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY="},{"Name":"original-resource","Value":"\"0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY=\""}]},{"Route":"_framework/System.ServiceModel.Web.wasm.gz","AssetFile":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2547"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4="}]},{"Route":"_framework/System.ServiceProcess.a95c1olw0i.wasm","AssetFile":"_framework/System.ServiceProcess.a95c1olw0i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a95c1olw0i"},{"Name":"integrity","Value":"sha256-nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU="},{"Name":"label","Value":"_framework/System.ServiceProcess.wasm"}]},{"Route":"_framework/System.ServiceProcess.a95c1olw0i.wasm","AssetFile":"_framework/System.ServiceProcess.a95c1olw0i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000433275563"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a95c1olw0i"},{"Name":"integrity","Value":"sha256-nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU="},{"Name":"label","Value":"_framework/System.ServiceProcess.wasm"},{"Name":"original-resource","Value":"\"nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU=\""}]},{"Route":"_framework/System.ServiceProcess.a95c1olw0i.wasm.gz","AssetFile":"_framework/System.ServiceProcess.a95c1olw0i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a95c1olw0i"},{"Name":"integrity","Value":"sha256-EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q="},{"Name":"label","Value":"_framework/System.ServiceProcess.wasm.gz"}]},{"Route":"_framework/System.ServiceProcess.wasm","AssetFile":"_framework/System.ServiceProcess.a95c1olw0i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU="}]},{"Route":"_framework/System.ServiceProcess.wasm","AssetFile":"_framework/System.ServiceProcess.a95c1olw0i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000433275563"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU="},{"Name":"original-resource","Value":"\"nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU=\""}]},{"Route":"_framework/System.ServiceProcess.wasm.gz","AssetFile":"_framework/System.ServiceProcess.a95c1olw0i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q="}]},{"Route":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm","AssetFile":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"732437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8bhn50uz8f"},{"Name":"integrity","Value":"sha256-nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A="},{"Name":"label","Value":"_framework/System.Text.Encoding.CodePages.wasm"}]},{"Route":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm","AssetFile":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000001939067"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"515711"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8bhn50uz8f"},{"Name":"integrity","Value":"sha256-nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A="},{"Name":"label","Value":"_framework/System.Text.Encoding.CodePages.wasm"},{"Name":"original-resource","Value":"\"nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A=\""}]},{"Route":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm.gz","AssetFile":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"515711"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8bhn50uz8f"},{"Name":"integrity","Value":"sha256-hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y="},{"Name":"label","Value":"_framework/System.Text.Encoding.CodePages.wasm.gz"}]},{"Route":"_framework/System.Text.Encoding.CodePages.wasm","AssetFile":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"732437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A="}]},{"Route":"_framework/System.Text.Encoding.CodePages.wasm","AssetFile":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000001939067"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"515711"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A="},{"Name":"original-resource","Value":"\"nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A=\""}]},{"Route":"_framework/System.Text.Encoding.CodePages.wasm.gz","AssetFile":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"515711"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y="}]},{"Route":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm","AssetFile":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tqz9dyg6j7"},{"Name":"integrity","Value":"sha256-y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A="},{"Name":"label","Value":"_framework/System.Text.Encoding.Extensions.wasm"}]},{"Route":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm","AssetFile":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000442673749"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2258"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tqz9dyg6j7"},{"Name":"integrity","Value":"sha256-y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A="},{"Name":"label","Value":"_framework/System.Text.Encoding.Extensions.wasm"},{"Name":"original-resource","Value":"\"y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A=\""}]},{"Route":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm.gz","AssetFile":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2258"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tqz9dyg6j7"},{"Name":"integrity","Value":"sha256-jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k="},{"Name":"label","Value":"_framework/System.Text.Encoding.Extensions.wasm.gz"}]},{"Route":"_framework/System.Text.Encoding.Extensions.wasm","AssetFile":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A="}]},{"Route":"_framework/System.Text.Encoding.Extensions.wasm","AssetFile":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000442673749"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2258"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A="},{"Name":"original-resource","Value":"\"y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A=\""}]},{"Route":"_framework/System.Text.Encoding.Extensions.wasm.gz","AssetFile":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2258"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k="}]},{"Route":"_framework/System.Text.Encoding.s9ic8sulfi.wasm","AssetFile":"_framework/System.Text.Encoding.s9ic8sulfi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s9ic8sulfi"},{"Name":"integrity","Value":"sha256-gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg="},{"Name":"label","Value":"_framework/System.Text.Encoding.wasm"}]},{"Route":"_framework/System.Text.Encoding.s9ic8sulfi.wasm","AssetFile":"_framework/System.Text.Encoding.s9ic8sulfi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000445434298"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2244"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s9ic8sulfi"},{"Name":"integrity","Value":"sha256-gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg="},{"Name":"label","Value":"_framework/System.Text.Encoding.wasm"},{"Name":"original-resource","Value":"\"gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg=\""}]},{"Route":"_framework/System.Text.Encoding.s9ic8sulfi.wasm.gz","AssetFile":"_framework/System.Text.Encoding.s9ic8sulfi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2244"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s9ic8sulfi"},{"Name":"integrity","Value":"sha256-oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA="},{"Name":"label","Value":"_framework/System.Text.Encoding.wasm.gz"}]},{"Route":"_framework/System.Text.Encoding.wasm","AssetFile":"_framework/System.Text.Encoding.s9ic8sulfi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg="}]},{"Route":"_framework/System.Text.Encoding.wasm","AssetFile":"_framework/System.Text.Encoding.s9ic8sulfi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000445434298"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2244"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg="},{"Name":"original-resource","Value":"\"gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg=\""}]},{"Route":"_framework/System.Text.Encoding.wasm.gz","AssetFile":"_framework/System.Text.Encoding.s9ic8sulfi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2244"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA="}]},{"Route":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm","AssetFile":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"07hq35kp92"},{"Name":"integrity","Value":"sha256-dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE="},{"Name":"label","Value":"_framework/System.Text.Encodings.Web.wasm"}]},{"Route":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm","AssetFile":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000045293958"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"07hq35kp92"},{"Name":"integrity","Value":"sha256-dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE="},{"Name":"label","Value":"_framework/System.Text.Encodings.Web.wasm"},{"Name":"original-resource","Value":"\"dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE=\""}]},{"Route":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm.gz","AssetFile":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"07hq35kp92"},{"Name":"integrity","Value":"sha256-vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4="},{"Name":"label","Value":"_framework/System.Text.Encodings.Web.wasm.gz"}]},{"Route":"_framework/System.Text.Encodings.Web.wasm","AssetFile":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE="}]},{"Route":"_framework/System.Text.Encodings.Web.wasm","AssetFile":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000045293958"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE="},{"Name":"original-resource","Value":"\"dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE=\""}]},{"Route":"_framework/System.Text.Encodings.Web.wasm.gz","AssetFile":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4="}]},{"Route":"_framework/System.Text.Json.2alhj4y3bm.wasm","AssetFile":"_framework/System.Text.Json.2alhj4y3bm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"638741"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2alhj4y3bm"},{"Name":"integrity","Value":"sha256-BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY="},{"Name":"label","Value":"_framework/System.Text.Json.wasm"}]},{"Route":"_framework/System.Text.Json.2alhj4y3bm.wasm","AssetFile":"_framework/System.Text.Json.2alhj4y3bm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004372674"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"228692"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2alhj4y3bm"},{"Name":"integrity","Value":"sha256-BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY="},{"Name":"label","Value":"_framework/System.Text.Json.wasm"},{"Name":"original-resource","Value":"\"BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY=\""}]},{"Route":"_framework/System.Text.Json.2alhj4y3bm.wasm.gz","AssetFile":"_framework/System.Text.Json.2alhj4y3bm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"228692"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2alhj4y3bm"},{"Name":"integrity","Value":"sha256-L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw="},{"Name":"label","Value":"_framework/System.Text.Json.wasm.gz"}]},{"Route":"_framework/System.Text.Json.wasm","AssetFile":"_framework/System.Text.Json.2alhj4y3bm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"638741"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY="}]},{"Route":"_framework/System.Text.Json.wasm","AssetFile":"_framework/System.Text.Json.2alhj4y3bm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004372674"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"228692"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY="},{"Name":"original-resource","Value":"\"BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY=\""}]},{"Route":"_framework/System.Text.Json.wasm.gz","AssetFile":"_framework/System.Text.Json.2alhj4y3bm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"228692"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw="}]},{"Route":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm","AssetFile":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"374549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1qtkesphd"},{"Name":"integrity","Value":"sha256-FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ="},{"Name":"label","Value":"_framework/System.Text.RegularExpressions.wasm"}]},{"Route":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm","AssetFile":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006311418"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"158442"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1qtkesphd"},{"Name":"integrity","Value":"sha256-FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ="},{"Name":"label","Value":"_framework/System.Text.RegularExpressions.wasm"},{"Name":"original-resource","Value":"\"FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ=\""}]},{"Route":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm.gz","AssetFile":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"158442"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1qtkesphd"},{"Name":"integrity","Value":"sha256-BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U="},{"Name":"label","Value":"_framework/System.Text.RegularExpressions.wasm.gz"}]},{"Route":"_framework/System.Text.RegularExpressions.wasm","AssetFile":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"374549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ="}]},{"Route":"_framework/System.Text.RegularExpressions.wasm","AssetFile":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006311418"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"158442"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ="},{"Name":"original-resource","Value":"\"FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ=\""}]},{"Route":"_framework/System.Text.RegularExpressions.wasm.gz","AssetFile":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"158442"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U="}]},{"Route":"_framework/System.Threading.47ucbn1gg1.wasm","AssetFile":"_framework/System.Threading.47ucbn1gg1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"47ucbn1gg1"},{"Name":"integrity","Value":"sha256-ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts="},{"Name":"label","Value":"_framework/System.Threading.wasm"}]},{"Route":"_framework/System.Threading.47ucbn1gg1.wasm","AssetFile":"_framework/System.Threading.47ucbn1gg1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000068045727"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14695"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"47ucbn1gg1"},{"Name":"integrity","Value":"sha256-ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts="},{"Name":"label","Value":"_framework/System.Threading.wasm"},{"Name":"original-resource","Value":"\"ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts=\""}]},{"Route":"_framework/System.Threading.47ucbn1gg1.wasm.gz","AssetFile":"_framework/System.Threading.47ucbn1gg1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14695"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"47ucbn1gg1"},{"Name":"integrity","Value":"sha256-fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g="},{"Name":"label","Value":"_framework/System.Threading.wasm.gz"}]},{"Route":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm","AssetFile":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"23317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ruehy0ud5k"},{"Name":"integrity","Value":"sha256-c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s="},{"Name":"label","Value":"_framework/System.Threading.AccessControl.wasm"}]},{"Route":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm","AssetFile":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000117785630"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ruehy0ud5k"},{"Name":"integrity","Value":"sha256-c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s="},{"Name":"label","Value":"_framework/System.Threading.AccessControl.wasm"},{"Name":"original-resource","Value":"\"c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s=\""}]},{"Route":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm.gz","AssetFile":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ruehy0ud5k"},{"Name":"integrity","Value":"sha256-INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s="},{"Name":"label","Value":"_framework/System.Threading.AccessControl.wasm.gz"}]},{"Route":"_framework/System.Threading.AccessControl.wasm","AssetFile":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"23317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s="}]},{"Route":"_framework/System.Threading.AccessControl.wasm","AssetFile":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000117785630"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s="},{"Name":"original-resource","Value":"\"c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s=\""}]},{"Route":"_framework/System.Threading.AccessControl.wasm.gz","AssetFile":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s="}]},{"Route":"_framework/System.Threading.Channels.s3i62rxr2p.wasm","AssetFile":"_framework/System.Threading.Channels.s3i62rxr2p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"56085"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s3i62rxr2p"},{"Name":"integrity","Value":"sha256-2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4="},{"Name":"label","Value":"_framework/System.Threading.Channels.wasm"}]},{"Route":"_framework/System.Threading.Channels.s3i62rxr2p.wasm","AssetFile":"_framework/System.Threading.Channels.s3i62rxr2p.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040955072"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24416"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s3i62rxr2p"},{"Name":"integrity","Value":"sha256-2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4="},{"Name":"label","Value":"_framework/System.Threading.Channels.wasm"},{"Name":"original-resource","Value":"\"2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4=\""}]},{"Route":"_framework/System.Threading.Channels.s3i62rxr2p.wasm.gz","AssetFile":"_framework/System.Threading.Channels.s3i62rxr2p.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24416"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s3i62rxr2p"},{"Name":"integrity","Value":"sha256-u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo="},{"Name":"label","Value":"_framework/System.Threading.Channels.wasm.gz"}]},{"Route":"_framework/System.Threading.Channels.wasm","AssetFile":"_framework/System.Threading.Channels.s3i62rxr2p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"56085"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4="}]},{"Route":"_framework/System.Threading.Channels.wasm","AssetFile":"_framework/System.Threading.Channels.s3i62rxr2p.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040955072"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24416"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4="},{"Name":"original-resource","Value":"\"2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4=\""}]},{"Route":"_framework/System.Threading.Channels.wasm.gz","AssetFile":"_framework/System.Threading.Channels.s3i62rxr2p.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24416"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo="}]},{"Route":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm","AssetFile":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzl7igry1t"},{"Name":"integrity","Value":"sha256-ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8="},{"Name":"label","Value":"_framework/System.Threading.Overlapped.wasm"}]},{"Route":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm","AssetFile":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000431406385"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzl7igry1t"},{"Name":"integrity","Value":"sha256-ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8="},{"Name":"label","Value":"_framework/System.Threading.Overlapped.wasm"},{"Name":"original-resource","Value":"\"ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8=\""}]},{"Route":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm.gz","AssetFile":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzl7igry1t"},{"Name":"integrity","Value":"sha256-2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto="},{"Name":"label","Value":"_framework/System.Threading.Overlapped.wasm.gz"}]},{"Route":"_framework/System.Threading.Overlapped.wasm","AssetFile":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8="}]},{"Route":"_framework/System.Threading.Overlapped.wasm","AssetFile":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000431406385"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8="},{"Name":"original-resource","Value":"\"ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8=\""}]},{"Route":"_framework/System.Threading.Overlapped.wasm.gz","AssetFile":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto="}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm","AssetFile":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"175381"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"p9bjzp5pyo"},{"Name":"integrity","Value":"sha256-zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Dataflow.wasm"}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm","AssetFile":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013652623"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"73245"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"p9bjzp5pyo"},{"Name":"integrity","Value":"sha256-zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Dataflow.wasm"},{"Name":"original-resource","Value":"\"zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k=\""}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"73245"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"p9bjzp5pyo"},{"Name":"integrity","Value":"sha256-3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Dataflow.wasm.gz"}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.wasm","AssetFile":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"175381"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k="}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.wasm","AssetFile":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013652623"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"73245"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k="},{"Name":"original-resource","Value":"\"zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k=\""}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"73245"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U="}]},{"Route":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm","AssetFile":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"unp0hcfijn"},{"Name":"integrity","Value":"sha256-Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Extensions.wasm"}]},{"Route":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm","AssetFile":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000433275563"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"unp0hcfijn"},{"Name":"integrity","Value":"sha256-Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Extensions.wasm"},{"Name":"original-resource","Value":"\"Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4=\""}]},{"Route":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"unp0hcfijn"},{"Name":"integrity","Value":"sha256-+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Extensions.wasm.gz"}]},{"Route":"_framework/System.Threading.Tasks.Extensions.wasm","AssetFile":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4="}]},{"Route":"_framework/System.Threading.Tasks.Extensions.wasm","AssetFile":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000433275563"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4="},{"Name":"original-resource","Value":"\"Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4=\""}]},{"Route":"_framework/System.Threading.Tasks.Extensions.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw="}]},{"Route":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm","AssetFile":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"50965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hyku0ejwye"},{"Name":"integrity","Value":"sha256-ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Parallel.wasm"}]},{"Route":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm","AssetFile":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000047418085"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21088"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hyku0ejwye"},{"Name":"integrity","Value":"sha256-ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Parallel.wasm"},{"Name":"original-resource","Value":"\"ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo=\""}]},{"Route":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21088"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hyku0ejwye"},{"Name":"integrity","Value":"sha256-m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Parallel.wasm.gz"}]},{"Route":"_framework/System.Threading.Tasks.Parallel.wasm","AssetFile":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"50965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo="}]},{"Route":"_framework/System.Threading.Tasks.Parallel.wasm","AssetFile":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000047418085"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21088"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo="},{"Name":"original-resource","Value":"\"ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo=\""}]},{"Route":"_framework/System.Threading.Tasks.Parallel.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21088"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk="}]},{"Route":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm","AssetFile":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t0sjw89o0i"},{"Name":"integrity","Value":"sha256-YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo="},{"Name":"label","Value":"_framework/System.Threading.Tasks.wasm"}]},{"Route":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm","AssetFile":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388198758"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t0sjw89o0i"},{"Name":"integrity","Value":"sha256-YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo="},{"Name":"label","Value":"_framework/System.Threading.Tasks.wasm"},{"Name":"original-resource","Value":"\"YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo=\""}]},{"Route":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t0sjw89o0i"},{"Name":"integrity","Value":"sha256-Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE="},{"Name":"label","Value":"_framework/System.Threading.Tasks.wasm.gz"}]},{"Route":"_framework/System.Threading.Tasks.wasm","AssetFile":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo="}]},{"Route":"_framework/System.Threading.Tasks.wasm","AssetFile":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388198758"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo="},{"Name":"original-resource","Value":"\"YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo=\""}]},{"Route":"_framework/System.Threading.Tasks.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE="}]},{"Route":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm","AssetFile":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nfbg9v9bn0"},{"Name":"integrity","Value":"sha256-43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0="},{"Name":"label","Value":"_framework/System.Threading.Thread.wasm"}]},{"Route":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm","AssetFile":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000427533134"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2338"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nfbg9v9bn0"},{"Name":"integrity","Value":"sha256-43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0="},{"Name":"label","Value":"_framework/System.Threading.Thread.wasm"},{"Name":"original-resource","Value":"\"43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0=\""}]},{"Route":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm.gz","AssetFile":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2338"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nfbg9v9bn0"},{"Name":"integrity","Value":"sha256-FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE="},{"Name":"label","Value":"_framework/System.Threading.Thread.wasm.gz"}]},{"Route":"_framework/System.Threading.Thread.wasm","AssetFile":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0="}]},{"Route":"_framework/System.Threading.Thread.wasm","AssetFile":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000427533134"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2338"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0="},{"Name":"original-resource","Value":"\"43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0=\""}]},{"Route":"_framework/System.Threading.Thread.wasm.gz","AssetFile":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2338"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE="}]},{"Route":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm","AssetFile":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jrzo6stg1k"},{"Name":"integrity","Value":"sha256-D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas="},{"Name":"label","Value":"_framework/System.Threading.ThreadPool.wasm"}]},{"Route":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm","AssetFile":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000442282176"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2260"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jrzo6stg1k"},{"Name":"integrity","Value":"sha256-D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas="},{"Name":"label","Value":"_framework/System.Threading.ThreadPool.wasm"},{"Name":"original-resource","Value":"\"D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas=\""}]},{"Route":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm.gz","AssetFile":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2260"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jrzo6stg1k"},{"Name":"integrity","Value":"sha256-yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8="},{"Name":"label","Value":"_framework/System.Threading.ThreadPool.wasm.gz"}]},{"Route":"_framework/System.Threading.ThreadPool.wasm","AssetFile":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas="}]},{"Route":"_framework/System.Threading.ThreadPool.wasm","AssetFile":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000442282176"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2260"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas="},{"Name":"original-resource","Value":"\"D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas=\""}]},{"Route":"_framework/System.Threading.ThreadPool.wasm.gz","AssetFile":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2260"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8="}]},{"Route":"_framework/System.Threading.Timer.wasm","AssetFile":"_framework/System.Threading.Timer.y8l1kxazi5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0="}]},{"Route":"_framework/System.Threading.Timer.wasm","AssetFile":"_framework/System.Threading.Timer.y8l1kxazi5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000467726848"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2137"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0="},{"Name":"original-resource","Value":"\"0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0=\""}]},{"Route":"_framework/System.Threading.Timer.wasm.gz","AssetFile":"_framework/System.Threading.Timer.y8l1kxazi5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2137"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M="}]},{"Route":"_framework/System.Threading.Timer.y8l1kxazi5.wasm","AssetFile":"_framework/System.Threading.Timer.y8l1kxazi5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y8l1kxazi5"},{"Name":"integrity","Value":"sha256-0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0="},{"Name":"label","Value":"_framework/System.Threading.Timer.wasm"}]},{"Route":"_framework/System.Threading.Timer.y8l1kxazi5.wasm","AssetFile":"_framework/System.Threading.Timer.y8l1kxazi5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000467726848"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2137"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y8l1kxazi5"},{"Name":"integrity","Value":"sha256-0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0="},{"Name":"label","Value":"_framework/System.Threading.Timer.wasm"},{"Name":"original-resource","Value":"\"0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0=\""}]},{"Route":"_framework/System.Threading.Timer.y8l1kxazi5.wasm.gz","AssetFile":"_framework/System.Threading.Timer.y8l1kxazi5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2137"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y8l1kxazi5"},{"Name":"integrity","Value":"sha256-pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M="},{"Name":"label","Value":"_framework/System.Threading.Timer.wasm.gz"}]},{"Route":"_framework/System.Threading.wasm","AssetFile":"_framework/System.Threading.47ucbn1gg1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts="}]},{"Route":"_framework/System.Threading.wasm","AssetFile":"_framework/System.Threading.47ucbn1gg1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000068045727"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14695"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts="},{"Name":"original-resource","Value":"\"ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts=\""}]},{"Route":"_framework/System.Threading.wasm.gz","AssetFile":"_framework/System.Threading.47ucbn1gg1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14695"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g="}]},{"Route":"_framework/System.Transactions.Local.cig01jt23c.wasm","AssetFile":"_framework/System.Transactions.Local.cig01jt23c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"165653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cig01jt23c"},{"Name":"integrity","Value":"sha256-lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4="},{"Name":"label","Value":"_framework/System.Transactions.Local.wasm"}]},{"Route":"_framework/System.Transactions.Local.cig01jt23c.wasm","AssetFile":"_framework/System.Transactions.Local.cig01jt23c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000019435590"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"51451"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cig01jt23c"},{"Name":"integrity","Value":"sha256-lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4="},{"Name":"label","Value":"_framework/System.Transactions.Local.wasm"},{"Name":"original-resource","Value":"\"lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4=\""}]},{"Route":"_framework/System.Transactions.Local.cig01jt23c.wasm.gz","AssetFile":"_framework/System.Transactions.Local.cig01jt23c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"51451"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cig01jt23c"},{"Name":"integrity","Value":"sha256-ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8="},{"Name":"label","Value":"_framework/System.Transactions.Local.wasm.gz"}]},{"Route":"_framework/System.Transactions.Local.wasm","AssetFile":"_framework/System.Transactions.Local.cig01jt23c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"165653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4="}]},{"Route":"_framework/System.Transactions.Local.wasm","AssetFile":"_framework/System.Transactions.Local.cig01jt23c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000019435590"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"51451"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4="},{"Name":"original-resource","Value":"\"lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4=\""}]},{"Route":"_framework/System.Transactions.Local.wasm.gz","AssetFile":"_framework/System.Transactions.Local.cig01jt23c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"51451"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8="}]},{"Route":"_framework/System.Transactions.pl50n6qbg7.wasm","AssetFile":"_framework/System.Transactions.pl50n6qbg7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pl50n6qbg7"},{"Name":"integrity","Value":"sha256-XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio="},{"Name":"label","Value":"_framework/System.Transactions.wasm"}]},{"Route":"_framework/System.Transactions.pl50n6qbg7.wasm","AssetFile":"_framework/System.Transactions.pl50n6qbg7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000419287212"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2384"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pl50n6qbg7"},{"Name":"integrity","Value":"sha256-XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio="},{"Name":"label","Value":"_framework/System.Transactions.wasm"},{"Name":"original-resource","Value":"\"XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio=\""}]},{"Route":"_framework/System.Transactions.pl50n6qbg7.wasm.gz","AssetFile":"_framework/System.Transactions.pl50n6qbg7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2384"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pl50n6qbg7"},{"Name":"integrity","Value":"sha256-Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA="},{"Name":"label","Value":"_framework/System.Transactions.wasm.gz"}]},{"Route":"_framework/System.Transactions.wasm","AssetFile":"_framework/System.Transactions.pl50n6qbg7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio="}]},{"Route":"_framework/System.Transactions.wasm","AssetFile":"_framework/System.Transactions.pl50n6qbg7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000419287212"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2384"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio="},{"Name":"original-resource","Value":"\"XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio=\""}]},{"Route":"_framework/System.Transactions.wasm.gz","AssetFile":"_framework/System.Transactions.pl50n6qbg7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2384"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA="}]},{"Route":"_framework/System.ValueTuple.mj3r9p0pcw.wasm","AssetFile":"_framework/System.ValueTuple.mj3r9p0pcw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mj3r9p0pcw"},{"Name":"integrity","Value":"sha256-Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY="},{"Name":"label","Value":"_framework/System.ValueTuple.wasm"}]},{"Route":"_framework/System.ValueTuple.mj3r9p0pcw.wasm","AssetFile":"_framework/System.ValueTuple.mj3r9p0pcw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455788514"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2193"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mj3r9p0pcw"},{"Name":"integrity","Value":"sha256-Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY="},{"Name":"label","Value":"_framework/System.ValueTuple.wasm"},{"Name":"original-resource","Value":"\"Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY=\""}]},{"Route":"_framework/System.ValueTuple.mj3r9p0pcw.wasm.gz","AssetFile":"_framework/System.ValueTuple.mj3r9p0pcw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2193"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mj3r9p0pcw"},{"Name":"integrity","Value":"sha256-qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY="},{"Name":"label","Value":"_framework/System.ValueTuple.wasm.gz"}]},{"Route":"_framework/System.ValueTuple.wasm","AssetFile":"_framework/System.ValueTuple.mj3r9p0pcw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY="}]},{"Route":"_framework/System.ValueTuple.wasm","AssetFile":"_framework/System.ValueTuple.mj3r9p0pcw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455788514"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2193"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY="},{"Name":"original-resource","Value":"\"Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY=\""}]},{"Route":"_framework/System.ValueTuple.wasm.gz","AssetFile":"_framework/System.ValueTuple.mj3r9p0pcw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2193"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY="}]},{"Route":"_framework/System.Web.2a6wq9gv6d.wasm","AssetFile":"_framework/System.Web.2a6wq9gv6d.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2a6wq9gv6d"},{"Name":"integrity","Value":"sha256-Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk="},{"Name":"label","Value":"_framework/System.Web.wasm"}]},{"Route":"_framework/System.Web.2a6wq9gv6d.wasm","AssetFile":"_framework/System.Web.2a6wq9gv6d.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000469924812"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2127"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2a6wq9gv6d"},{"Name":"integrity","Value":"sha256-Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk="},{"Name":"label","Value":"_framework/System.Web.wasm"},{"Name":"original-resource","Value":"\"Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk=\""}]},{"Route":"_framework/System.Web.2a6wq9gv6d.wasm.gz","AssetFile":"_framework/System.Web.2a6wq9gv6d.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2127"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2a6wq9gv6d"},{"Name":"integrity","Value":"sha256-UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4="},{"Name":"label","Value":"_framework/System.Web.wasm.gz"}]},{"Route":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm","AssetFile":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"19733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3jfxpyq4in"},{"Name":"integrity","Value":"sha256-IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4="},{"Name":"label","Value":"_framework/System.Web.HttpUtility.wasm"}]},{"Route":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm","AssetFile":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000104766894"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9544"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3jfxpyq4in"},{"Name":"integrity","Value":"sha256-IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4="},{"Name":"label","Value":"_framework/System.Web.HttpUtility.wasm"},{"Name":"original-resource","Value":"\"IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4=\""}]},{"Route":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm.gz","AssetFile":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9544"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3jfxpyq4in"},{"Name":"integrity","Value":"sha256-eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg="},{"Name":"label","Value":"_framework/System.Web.HttpUtility.wasm.gz"}]},{"Route":"_framework/System.Web.HttpUtility.wasm","AssetFile":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"19733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4="}]},{"Route":"_framework/System.Web.HttpUtility.wasm","AssetFile":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000104766894"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9544"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4="},{"Name":"original-resource","Value":"\"IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4=\""}]},{"Route":"_framework/System.Web.HttpUtility.wasm.gz","AssetFile":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9544"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg="}]},{"Route":"_framework/System.Web.wasm","AssetFile":"_framework/System.Web.2a6wq9gv6d.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk="}]},{"Route":"_framework/System.Web.wasm","AssetFile":"_framework/System.Web.2a6wq9gv6d.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000469924812"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2127"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk="},{"Name":"original-resource","Value":"\"Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk=\""}]},{"Route":"_framework/System.Web.wasm.gz","AssetFile":"_framework/System.Web.2a6wq9gv6d.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2127"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4="}]},{"Route":"_framework/System.Windows.bw79ix589z.wasm","AssetFile":"_framework/System.Windows.bw79ix589z.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bw79ix589z"},{"Name":"integrity","Value":"sha256-O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA="},{"Name":"label","Value":"_framework/System.Windows.wasm"}]},{"Route":"_framework/System.Windows.bw79ix589z.wasm","AssetFile":"_framework/System.Windows.bw79ix589z.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438212095"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bw79ix589z"},{"Name":"integrity","Value":"sha256-O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA="},{"Name":"label","Value":"_framework/System.Windows.wasm"},{"Name":"original-resource","Value":"\"O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA=\""}]},{"Route":"_framework/System.Windows.bw79ix589z.wasm.gz","AssetFile":"_framework/System.Windows.bw79ix589z.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bw79ix589z"},{"Name":"integrity","Value":"sha256-YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs="},{"Name":"label","Value":"_framework/System.Windows.wasm.gz"}]},{"Route":"_framework/System.Windows.wasm","AssetFile":"_framework/System.Windows.bw79ix589z.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA="}]},{"Route":"_framework/System.Windows.wasm","AssetFile":"_framework/System.Windows.bw79ix589z.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438212095"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA="},{"Name":"original-resource","Value":"\"O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA=\""}]},{"Route":"_framework/System.Windows.wasm.gz","AssetFile":"_framework/System.Windows.bw79ix589z.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs="}]},{"Route":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm","AssetFile":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvnhbwdsg6"},{"Name":"integrity","Value":"sha256-I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE="},{"Name":"label","Value":"_framework/System.Xml.Linq.wasm"}]},{"Route":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm","AssetFile":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000452488688"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2209"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvnhbwdsg6"},{"Name":"integrity","Value":"sha256-I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE="},{"Name":"label","Value":"_framework/System.Xml.Linq.wasm"},{"Name":"original-resource","Value":"\"I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE=\""}]},{"Route":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm.gz","AssetFile":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2209"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvnhbwdsg6"},{"Name":"integrity","Value":"sha256-NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog="},{"Name":"label","Value":"_framework/System.Xml.Linq.wasm.gz"}]},{"Route":"_framework/System.Xml.Linq.wasm","AssetFile":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE="}]},{"Route":"_framework/System.Xml.Linq.wasm","AssetFile":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000452488688"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2209"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE="},{"Name":"original-resource","Value":"\"I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE=\""}]},{"Route":"_framework/System.Xml.Linq.wasm.gz","AssetFile":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2209"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog="}]},{"Route":"_framework/System.Xml.ReaderWriter.szsdminork.wasm","AssetFile":"_framework/System.Xml.ReaderWriter.szsdminork.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"szsdminork"},{"Name":"integrity","Value":"sha256-+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho="},{"Name":"label","Value":"_framework/System.Xml.ReaderWriter.wasm"}]},{"Route":"_framework/System.Xml.ReaderWriter.szsdminork.wasm","AssetFile":"_framework/System.Xml.ReaderWriter.szsdminork.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000248632521"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"szsdminork"},{"Name":"integrity","Value":"sha256-+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho="},{"Name":"label","Value":"_framework/System.Xml.ReaderWriter.wasm"},{"Name":"original-resource","Value":"\"+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho=\""}]},{"Route":"_framework/System.Xml.ReaderWriter.szsdminork.wasm.gz","AssetFile":"_framework/System.Xml.ReaderWriter.szsdminork.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"szsdminork"},{"Name":"integrity","Value":"sha256-v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI="},{"Name":"label","Value":"_framework/System.Xml.ReaderWriter.wasm.gz"}]},{"Route":"_framework/System.Xml.ReaderWriter.wasm","AssetFile":"_framework/System.Xml.ReaderWriter.szsdminork.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho="}]},{"Route":"_framework/System.Xml.ReaderWriter.wasm","AssetFile":"_framework/System.Xml.ReaderWriter.szsdminork.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000248632521"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho="},{"Name":"original-resource","Value":"\"+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho=\""}]},{"Route":"_framework/System.Xml.ReaderWriter.wasm.gz","AssetFile":"_framework/System.Xml.ReaderWriter.szsdminork.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI="}]},{"Route":"_framework/System.Xml.Serialization.b9imguls9w.wasm","AssetFile":"_framework/System.Xml.Serialization.b9imguls9w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b9imguls9w"},{"Name":"integrity","Value":"sha256-EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8="},{"Name":"label","Value":"_framework/System.Xml.Serialization.wasm"}]},{"Route":"_framework/System.Xml.Serialization.b9imguls9w.wasm","AssetFile":"_framework/System.Xml.Serialization.b9imguls9w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000443852641"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2252"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b9imguls9w"},{"Name":"integrity","Value":"sha256-EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8="},{"Name":"label","Value":"_framework/System.Xml.Serialization.wasm"},{"Name":"original-resource","Value":"\"EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8=\""}]},{"Route":"_framework/System.Xml.Serialization.b9imguls9w.wasm.gz","AssetFile":"_framework/System.Xml.Serialization.b9imguls9w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2252"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b9imguls9w"},{"Name":"integrity","Value":"sha256-UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M="},{"Name":"label","Value":"_framework/System.Xml.Serialization.wasm.gz"}]},{"Route":"_framework/System.Xml.Serialization.wasm","AssetFile":"_framework/System.Xml.Serialization.b9imguls9w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8="}]},{"Route":"_framework/System.Xml.Serialization.wasm","AssetFile":"_framework/System.Xml.Serialization.b9imguls9w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000443852641"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2252"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8="},{"Name":"original-resource","Value":"\"EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8=\""}]},{"Route":"_framework/System.Xml.Serialization.wasm.gz","AssetFile":"_framework/System.Xml.Serialization.b9imguls9w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2252"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M="}]},{"Route":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm","AssetFile":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8hg6c0at0c"},{"Name":"integrity","Value":"sha256-7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk="},{"Name":"label","Value":"_framework/System.Xml.XDocument.wasm"}]},{"Route":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm","AssetFile":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000417362270"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2395"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8hg6c0at0c"},{"Name":"integrity","Value":"sha256-7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk="},{"Name":"label","Value":"_framework/System.Xml.XDocument.wasm"},{"Name":"original-resource","Value":"\"7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk=\""}]},{"Route":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm.gz","AssetFile":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2395"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8hg6c0at0c"},{"Name":"integrity","Value":"sha256-JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU="},{"Name":"label","Value":"_framework/System.Xml.XDocument.wasm.gz"}]},{"Route":"_framework/System.Xml.XDocument.wasm","AssetFile":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk="}]},{"Route":"_framework/System.Xml.XDocument.wasm","AssetFile":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000417362270"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2395"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk="},{"Name":"original-resource","Value":"\"7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk=\""}]},{"Route":"_framework/System.Xml.XDocument.wasm.gz","AssetFile":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2395"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU="}]},{"Route":"_framework/System.Xml.XPath.11wk1hhnfk.wasm","AssetFile":"_framework/System.Xml.XPath.11wk1hhnfk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"11wk1hhnfk"},{"Name":"integrity","Value":"sha256-28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM="},{"Name":"label","Value":"_framework/System.Xml.XPath.wasm"}]},{"Route":"_framework/System.Xml.XPath.11wk1hhnfk.wasm","AssetFile":"_framework/System.Xml.XPath.11wk1hhnfk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000430848772"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2320"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"11wk1hhnfk"},{"Name":"integrity","Value":"sha256-28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM="},{"Name":"label","Value":"_framework/System.Xml.XPath.wasm"},{"Name":"original-resource","Value":"\"28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM=\""}]},{"Route":"_framework/System.Xml.XPath.11wk1hhnfk.wasm.gz","AssetFile":"_framework/System.Xml.XPath.11wk1hhnfk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2320"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"11wk1hhnfk"},{"Name":"integrity","Value":"sha256-5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM="},{"Name":"label","Value":"_framework/System.Xml.XPath.wasm.gz"}]},{"Route":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm","AssetFile":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g7i5gd64yo"},{"Name":"integrity","Value":"sha256-bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg="},{"Name":"label","Value":"_framework/System.Xml.XPath.XDocument.wasm"}]},{"Route":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm","AssetFile":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000401284109"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2491"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g7i5gd64yo"},{"Name":"integrity","Value":"sha256-bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg="},{"Name":"label","Value":"_framework/System.Xml.XPath.XDocument.wasm"},{"Name":"original-resource","Value":"\"bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg=\""}]},{"Route":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm.gz","AssetFile":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2491"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g7i5gd64yo"},{"Name":"integrity","Value":"sha256-6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918="},{"Name":"label","Value":"_framework/System.Xml.XPath.XDocument.wasm.gz"}]},{"Route":"_framework/System.Xml.XPath.XDocument.wasm","AssetFile":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg="}]},{"Route":"_framework/System.Xml.XPath.XDocument.wasm","AssetFile":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000401284109"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2491"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg="},{"Name":"original-resource","Value":"\"bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg=\""}]},{"Route":"_framework/System.Xml.XPath.XDocument.wasm.gz","AssetFile":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2491"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918="}]},{"Route":"_framework/System.Xml.XPath.wasm","AssetFile":"_framework/System.Xml.XPath.11wk1hhnfk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM="}]},{"Route":"_framework/System.Xml.XPath.wasm","AssetFile":"_framework/System.Xml.XPath.11wk1hhnfk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000430848772"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2320"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM="},{"Name":"original-resource","Value":"\"28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM=\""}]},{"Route":"_framework/System.Xml.XPath.wasm.gz","AssetFile":"_framework/System.Xml.XPath.11wk1hhnfk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2320"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM="}]},{"Route":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm","AssetFile":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"isetn6xlxa"},{"Name":"integrity","Value":"sha256-Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw="},{"Name":"label","Value":"_framework/System.Xml.XmlDocument.wasm"}]},{"Route":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm","AssetFile":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000423190859"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"isetn6xlxa"},{"Name":"integrity","Value":"sha256-Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw="},{"Name":"label","Value":"_framework/System.Xml.XmlDocument.wasm"},{"Name":"original-resource","Value":"\"Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw=\""}]},{"Route":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm.gz","AssetFile":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"isetn6xlxa"},{"Name":"integrity","Value":"sha256-520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs="},{"Name":"label","Value":"_framework/System.Xml.XmlDocument.wasm.gz"}]},{"Route":"_framework/System.Xml.XmlDocument.wasm","AssetFile":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw="}]},{"Route":"_framework/System.Xml.XmlDocument.wasm","AssetFile":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000423190859"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw="},{"Name":"original-resource","Value":"\"Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw=\""}]},{"Route":"_framework/System.Xml.XmlDocument.wasm.gz","AssetFile":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs="}]},{"Route":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm","AssetFile":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"7445"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"okgnp5v9bw"},{"Name":"integrity","Value":"sha256-WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U="},{"Name":"label","Value":"_framework/System.Xml.XmlSerializer.wasm"}]},{"Route":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm","AssetFile":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000349406010"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"okgnp5v9bw"},{"Name":"integrity","Value":"sha256-WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U="},{"Name":"label","Value":"_framework/System.Xml.XmlSerializer.wasm"},{"Name":"original-resource","Value":"\"WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U=\""}]},{"Route":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm.gz","AssetFile":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"okgnp5v9bw"},{"Name":"integrity","Value":"sha256-WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA="},{"Name":"label","Value":"_framework/System.Xml.XmlSerializer.wasm.gz"}]},{"Route":"_framework/System.Xml.XmlSerializer.wasm","AssetFile":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"7445"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U="}]},{"Route":"_framework/System.Xml.XmlSerializer.wasm","AssetFile":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000349406010"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U="},{"Name":"original-resource","Value":"\"WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U=\""}]},{"Route":"_framework/System.Xml.XmlSerializer.wasm.gz","AssetFile":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA="}]},{"Route":"_framework/System.Xml.wasm","AssetFile":"_framework/System.Xml.zjgi7nrlno.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas="}]},{"Route":"_framework/System.Xml.wasm","AssetFile":"_framework/System.Xml.zjgi7nrlno.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000237079184"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4217"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas="},{"Name":"original-resource","Value":"\"scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas=\""}]},{"Route":"_framework/System.Xml.wasm.gz","AssetFile":"_framework/System.Xml.zjgi7nrlno.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4217"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY="}]},{"Route":"_framework/System.Xml.zjgi7nrlno.wasm","AssetFile":"_framework/System.Xml.zjgi7nrlno.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zjgi7nrlno"},{"Name":"integrity","Value":"sha256-scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas="},{"Name":"label","Value":"_framework/System.Xml.wasm"}]},{"Route":"_framework/System.Xml.zjgi7nrlno.wasm","AssetFile":"_framework/System.Xml.zjgi7nrlno.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000237079184"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4217"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zjgi7nrlno"},{"Name":"integrity","Value":"sha256-scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas="},{"Name":"label","Value":"_framework/System.Xml.wasm"},{"Name":"original-resource","Value":"\"scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas=\""}]},{"Route":"_framework/System.Xml.zjgi7nrlno.wasm.gz","AssetFile":"_framework/System.Xml.zjgi7nrlno.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4217"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zjgi7nrlno"},{"Name":"integrity","Value":"sha256-Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY="},{"Name":"label","Value":"_framework/System.Xml.wasm.gz"}]},{"Route":"_framework/System.wasm","AssetFile":"_framework/System.7rk3uansaa.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"39701"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q="}]},{"Route":"_framework/System.wasm","AssetFile":"_framework/System.7rk3uansaa.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000084875233"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q="},{"Name":"original-resource","Value":"\"00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q=\""}]},{"Route":"_framework/System.wasm.gz","AssetFile":"_framework/System.7rk3uansaa.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI="}]},{"Route":"_framework/WindowsBase.wasm","AssetFile":"_framework/WindowsBase.wz82kkc1p3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ="}]},{"Route":"_framework/WindowsBase.wasm","AssetFile":"_framework/WindowsBase.wz82kkc1p3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000395726157"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2526"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ="},{"Name":"original-resource","Value":"\"DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ=\""}]},{"Route":"_framework/WindowsBase.wasm.gz","AssetFile":"_framework/WindowsBase.wz82kkc1p3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2526"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc="}]},{"Route":"_framework/WindowsBase.wz82kkc1p3.wasm","AssetFile":"_framework/WindowsBase.wz82kkc1p3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wz82kkc1p3"},{"Name":"integrity","Value":"sha256-DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ="},{"Name":"label","Value":"_framework/WindowsBase.wasm"}]},{"Route":"_framework/WindowsBase.wz82kkc1p3.wasm","AssetFile":"_framework/WindowsBase.wz82kkc1p3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000395726157"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2526"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wz82kkc1p3"},{"Name":"integrity","Value":"sha256-DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ="},{"Name":"label","Value":"_framework/WindowsBase.wasm"},{"Name":"original-resource","Value":"\"DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ=\""}]},{"Route":"_framework/WindowsBase.wz82kkc1p3.wasm.gz","AssetFile":"_framework/WindowsBase.wz82kkc1p3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2526"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wz82kkc1p3"},{"Name":"integrity","Value":"sha256-b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc="},{"Name":"label","Value":"_framework/WindowsBase.wasm.gz"}]},{"Route":"_framework/blazor.webassembly.js","AssetFile":"_framework/blazor.webassembly.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"60278"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3lCWrko3zwspV40aQhs2S/IMkRSarnHRKIdkHhuXIBA=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 20:10:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3lCWrko3zwspV40aQhs2S/IMkRSarnHRKIdkHhuXIBA="}]},{"Route":"_framework/blazor.webassembly.js","AssetFile":"_framework/blazor.webassembly.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053404539"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18724"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"5Igt0nmzlphL04ESrb7MBY9ts2dhz5i3UJ+aCoJbK0Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3lCWrko3zwspV40aQhs2S/IMkRSarnHRKIdkHhuXIBA="},{"Name":"original-resource","Value":"\"3lCWrko3zwspV40aQhs2S/IMkRSarnHRKIdkHhuXIBA=\""}]},{"Route":"_framework/blazor.webassembly.js.gz","AssetFile":"_framework/blazor.webassembly.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18724"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"5Igt0nmzlphL04ESrb7MBY9ts2dhz5i3UJ+aCoJbK0Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5Igt0nmzlphL04ESrb7MBY9ts2dhz5i3UJ+aCoJbK0Y="}]},{"Route":"_framework/dotnet.js","AssetFile":"_framework/dotnet.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"93305"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk="}]},{"Route":"_framework/dotnet.js","AssetFile":"_framework/dotnet.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000039508514"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25310"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk="},{"Name":"original-resource","Value":"\"WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk=\""}]},{"Route":"_framework/dotnet.js.clndu25lif.map","AssetFile":"_framework/dotnet.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"51818"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:10 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clndu25lif"},{"Name":"integrity","Value":"sha256-sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU="},{"Name":"label","Value":"_framework/dotnet.js.map"}]},{"Route":"_framework/dotnet.js.clndu25lif.map","AssetFile":"_framework/dotnet.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051805419"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19302"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clndu25lif"},{"Name":"integrity","Value":"sha256-sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU="},{"Name":"label","Value":"_framework/dotnet.js.map"},{"Name":"original-resource","Value":"\"sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU=\""}]},{"Route":"_framework/dotnet.js.clndu25lif.map.gz","AssetFile":"_framework/dotnet.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19302"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clndu25lif"},{"Name":"integrity","Value":"sha256-viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs="},{"Name":"label","Value":"_framework/dotnet.js.map.gz"}]},{"Route":"_framework/dotnet.js.gz","AssetFile":"_framework/dotnet.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25310"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I="}]},{"Route":"_framework/dotnet.js.map","AssetFile":"_framework/dotnet.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"51818"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:10 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU="}]},{"Route":"_framework/dotnet.js.map","AssetFile":"_framework/dotnet.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051805419"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19302"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU="},{"Name":"original-resource","Value":"\"sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU=\""}]},{"Route":"_framework/dotnet.js.map.gz","AssetFile":"_framework/dotnet.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19302"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs="}]},{"Route":"_framework/dotnet.kx7meqmil2.js","AssetFile":"_framework/dotnet.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"93305"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"PreloadAs","Value":"script"},{"Name":"PreloadCrossorigin","Value":"anonymous"},{"Name":"PreloadGroup","Value":"webassembly"},{"Name":"PreloadOrder","Value":"1"},{"Name":"PreloadPriority","Value":"high"},{"Name":"PreloadRel","Value":"preload"},{"Name":"fingerprint","Value":"kx7meqmil2"},{"Name":"integrity","Value":"sha256-WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk="},{"Name":"label","Value":"_framework/dotnet.js"}]},{"Route":"_framework/dotnet.kx7meqmil2.js","AssetFile":"_framework/dotnet.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000039508514"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25310"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"PreloadAs","Value":"script"},{"Name":"PreloadCrossorigin","Value":"anonymous"},{"Name":"PreloadGroup","Value":"webassembly"},{"Name":"PreloadOrder","Value":"1"},{"Name":"PreloadPriority","Value":"high"},{"Name":"PreloadRel","Value":"preload"},{"Name":"fingerprint","Value":"kx7meqmil2"},{"Name":"integrity","Value":"sha256-WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk="},{"Name":"label","Value":"_framework/dotnet.js"},{"Name":"original-resource","Value":"\"WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk=\""}]},{"Route":"_framework/dotnet.kx7meqmil2.js.gz","AssetFile":"_framework/dotnet.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25310"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kx7meqmil2"},{"Name":"integrity","Value":"sha256-Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I="},{"Name":"label","Value":"_framework/dotnet.js.gz"}]},{"Route":"_framework/dotnet.native.53ez3dx5uy.wasm","AssetFile":"_framework/dotnet.native.53ez3dx5uy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3002101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:42 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"53ez3dx5uy"},{"Name":"integrity","Value":"sha256-Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU="},{"Name":"label","Value":"_framework/dotnet.native.wasm"}]},{"Route":"_framework/dotnet.native.53ez3dx5uy.wasm","AssetFile":"_framework/dotnet.native.53ez3dx5uy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000842441"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1187026"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"53ez3dx5uy"},{"Name":"integrity","Value":"sha256-Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU="},{"Name":"label","Value":"_framework/dotnet.native.wasm"},{"Name":"original-resource","Value":"\"Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU=\""}]},{"Route":"_framework/dotnet.native.53ez3dx5uy.wasm.gz","AssetFile":"_framework/dotnet.native.53ez3dx5uy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1187026"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"53ez3dx5uy"},{"Name":"integrity","Value":"sha256-SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw="},{"Name":"label","Value":"_framework/dotnet.native.wasm.gz"}]},{"Route":"_framework/dotnet.native.js","AssetFile":"_framework/dotnet.native.ykrnppwhq2.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"145050"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:42 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U="}]},{"Route":"_framework/dotnet.native.js","AssetFile":"_framework/dotnet.native.ykrnppwhq2.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000028845876"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"34666"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U="},{"Name":"original-resource","Value":"\"nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U=\""}]},{"Route":"_framework/dotnet.native.js.gz","AssetFile":"_framework/dotnet.native.ykrnppwhq2.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"34666"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0="}]},{"Route":"_framework/dotnet.native.wasm","AssetFile":"_framework/dotnet.native.53ez3dx5uy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3002101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:42 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU="}]},{"Route":"_framework/dotnet.native.wasm","AssetFile":"_framework/dotnet.native.53ez3dx5uy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000842441"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1187026"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU="},{"Name":"original-resource","Value":"\"Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU=\""}]},{"Route":"_framework/dotnet.native.wasm.gz","AssetFile":"_framework/dotnet.native.53ez3dx5uy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1187026"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw="}]},{"Route":"_framework/dotnet.native.ykrnppwhq2.js","AssetFile":"_framework/dotnet.native.ykrnppwhq2.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"145050"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:42 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ykrnppwhq2"},{"Name":"integrity","Value":"sha256-nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U="},{"Name":"label","Value":"_framework/dotnet.native.js"}]},{"Route":"_framework/dotnet.native.ykrnppwhq2.js","AssetFile":"_framework/dotnet.native.ykrnppwhq2.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000028845876"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"34666"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ykrnppwhq2"},{"Name":"integrity","Value":"sha256-nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U="},{"Name":"label","Value":"_framework/dotnet.native.js"},{"Name":"original-resource","Value":"\"nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U=\""}]},{"Route":"_framework/dotnet.native.ykrnppwhq2.js.gz","AssetFile":"_framework/dotnet.native.ykrnppwhq2.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"34666"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ykrnppwhq2"},{"Name":"integrity","Value":"sha256-iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0="},{"Name":"label","Value":"_framework/dotnet.native.js.gz"}]},{"Route":"_framework/dotnet.runtime.js","AssetFile":"_framework/dotnet.runtime.peu2mfb29t.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"198479"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:16 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM="}]},{"Route":"_framework/dotnet.runtime.js","AssetFile":"_framework/dotnet.runtime.peu2mfb29t.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017664099"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56611"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM="},{"Name":"original-resource","Value":"\"cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM=\""}]},{"Route":"_framework/dotnet.runtime.js.gz","AssetFile":"_framework/dotnet.runtime.peu2mfb29t.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56611"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak="}]},{"Route":"_framework/dotnet.runtime.js.map","AssetFile":"_framework/dotnet.runtime.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"276757"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:16 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE="}]},{"Route":"_framework/dotnet.runtime.js.map","AssetFile":"_framework/dotnet.runtime.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011299052"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"88502"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE="},{"Name":"original-resource","Value":"\"+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE=\""}]},{"Route":"_framework/dotnet.runtime.js.map.gz","AssetFile":"_framework/dotnet.runtime.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"88502"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4="}]},{"Route":"_framework/dotnet.runtime.js.y1cse46x0j.map","AssetFile":"_framework/dotnet.runtime.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"276757"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:16 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y1cse46x0j"},{"Name":"integrity","Value":"sha256-+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE="},{"Name":"label","Value":"_framework/dotnet.runtime.js.map"}]},{"Route":"_framework/dotnet.runtime.js.y1cse46x0j.map","AssetFile":"_framework/dotnet.runtime.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011299052"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"88502"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y1cse46x0j"},{"Name":"integrity","Value":"sha256-+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE="},{"Name":"label","Value":"_framework/dotnet.runtime.js.map"},{"Name":"original-resource","Value":"\"+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE=\""}]},{"Route":"_framework/dotnet.runtime.js.y1cse46x0j.map.gz","AssetFile":"_framework/dotnet.runtime.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"88502"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y1cse46x0j"},{"Name":"integrity","Value":"sha256-8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4="},{"Name":"label","Value":"_framework/dotnet.runtime.js.map.gz"}]},{"Route":"_framework/dotnet.runtime.peu2mfb29t.js","AssetFile":"_framework/dotnet.runtime.peu2mfb29t.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"198479"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:16 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"peu2mfb29t"},{"Name":"integrity","Value":"sha256-cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM="},{"Name":"label","Value":"_framework/dotnet.runtime.js"}]},{"Route":"_framework/dotnet.runtime.peu2mfb29t.js","AssetFile":"_framework/dotnet.runtime.peu2mfb29t.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017664099"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56611"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"peu2mfb29t"},{"Name":"integrity","Value":"sha256-cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM="},{"Name":"label","Value":"_framework/dotnet.runtime.js"},{"Name":"original-resource","Value":"\"cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM=\""}]},{"Route":"_framework/dotnet.runtime.peu2mfb29t.js.gz","AssetFile":"_framework/dotnet.runtime.peu2mfb29t.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56611"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"peu2mfb29t"},{"Name":"integrity","Value":"sha256-1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak="},{"Name":"label","Value":"_framework/dotnet.runtime.js.gz"}]},{"Route":"_framework/icudt_CJK.dat","AssetFile":"_framework/icudt_CJK.tjcz0u77k5.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"956416"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk="}]},{"Route":"_framework/icudt_CJK.dat","AssetFile":"_framework/icudt_CJK.tjcz0u77k5.dat.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003002002"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"333110"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk="},{"Name":"original-resource","Value":"\"SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=\""}]},{"Route":"_framework/icudt_CJK.dat.gz","AssetFile":"_framework/icudt_CJK.tjcz0u77k5.dat.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"333110"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g="}]},{"Route":"_framework/icudt_CJK.tjcz0u77k5.dat","AssetFile":"_framework/icudt_CJK.tjcz0u77k5.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"956416"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tjcz0u77k5"},{"Name":"integrity","Value":"sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk="},{"Name":"label","Value":"_framework/icudt_CJK.dat"}]},{"Route":"_framework/icudt_CJK.tjcz0u77k5.dat","AssetFile":"_framework/icudt_CJK.tjcz0u77k5.dat.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003002002"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"333110"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tjcz0u77k5"},{"Name":"integrity","Value":"sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk="},{"Name":"label","Value":"_framework/icudt_CJK.dat"},{"Name":"original-resource","Value":"\"SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=\""}]},{"Route":"_framework/icudt_CJK.tjcz0u77k5.dat.gz","AssetFile":"_framework/icudt_CJK.tjcz0u77k5.dat.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"333110"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tjcz0u77k5"},{"Name":"integrity","Value":"sha256-JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g="},{"Name":"label","Value":"_framework/icudt_CJK.dat.gz"}]},{"Route":"_framework/icudt_EFIGS.dat","AssetFile":"_framework/icudt_EFIGS.tptq2av103.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"550832"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc="}]},{"Route":"_framework/icudt_EFIGS.dat","AssetFile":"_framework/icudt_EFIGS.tptq2av103.dat.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005101052"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196037"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc="},{"Name":"original-resource","Value":"\"8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=\""}]},{"Route":"_framework/icudt_EFIGS.dat.gz","AssetFile":"_framework/icudt_EFIGS.tptq2av103.dat.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196037"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE="}]},{"Route":"_framework/icudt_EFIGS.tptq2av103.dat","AssetFile":"_framework/icudt_EFIGS.tptq2av103.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"550832"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tptq2av103"},{"Name":"integrity","Value":"sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc="},{"Name":"label","Value":"_framework/icudt_EFIGS.dat"}]},{"Route":"_framework/icudt_EFIGS.tptq2av103.dat","AssetFile":"_framework/icudt_EFIGS.tptq2av103.dat.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005101052"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196037"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tptq2av103"},{"Name":"integrity","Value":"sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc="},{"Name":"label","Value":"_framework/icudt_EFIGS.dat"},{"Name":"original-resource","Value":"\"8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=\""}]},{"Route":"_framework/icudt_EFIGS.tptq2av103.dat.gz","AssetFile":"_framework/icudt_EFIGS.tptq2av103.dat.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196037"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tptq2av103"},{"Name":"integrity","Value":"sha256-G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE="},{"Name":"label","Value":"_framework/icudt_EFIGS.dat.gz"}]},{"Route":"_framework/icudt_no_CJK.dat","AssetFile":"_framework/icudt_no_CJK.lfu7j35m59.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1107168"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs="}]},{"Route":"_framework/icudt_no_CJK.dat","AssetFile":"_framework/icudt_no_CJK.lfu7j35m59.dat.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003148426"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"317618"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs="},{"Name":"original-resource","Value":"\"L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs=\""}]},{"Route":"_framework/icudt_no_CJK.dat.gz","AssetFile":"_framework/icudt_no_CJK.lfu7j35m59.dat.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"317618"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk="}]},{"Route":"_framework/icudt_no_CJK.lfu7j35m59.dat","AssetFile":"_framework/icudt_no_CJK.lfu7j35m59.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1107168"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lfu7j35m59"},{"Name":"integrity","Value":"sha256-L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs="},{"Name":"label","Value":"_framework/icudt_no_CJK.dat"}]},{"Route":"_framework/icudt_no_CJK.lfu7j35m59.dat","AssetFile":"_framework/icudt_no_CJK.lfu7j35m59.dat.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003148426"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"317618"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lfu7j35m59"},{"Name":"integrity","Value":"sha256-L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs="},{"Name":"label","Value":"_framework/icudt_no_CJK.dat"},{"Name":"original-resource","Value":"\"L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs=\""}]},{"Route":"_framework/icudt_no_CJK.lfu7j35m59.dat.gz","AssetFile":"_framework/icudt_no_CJK.lfu7j35m59.dat.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"317618"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lfu7j35m59"},{"Name":"integrity","Value":"sha256-S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk="},{"Name":"label","Value":"_framework/icudt_no_CJK.dat.gz"}]},{"Route":"_framework/mscorlib.555t1ekkz8.wasm","AssetFile":"_framework/mscorlib.555t1ekkz8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"49429"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"555t1ekkz8"},{"Name":"integrity","Value":"sha256-SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M="},{"Name":"label","Value":"_framework/mscorlib.wasm"}]},{"Route":"_framework/mscorlib.555t1ekkz8.wasm","AssetFile":"_framework/mscorlib.555t1ekkz8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067417245"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"555t1ekkz8"},{"Name":"integrity","Value":"sha256-SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M="},{"Name":"label","Value":"_framework/mscorlib.wasm"},{"Name":"original-resource","Value":"\"SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M=\""}]},{"Route":"_framework/mscorlib.555t1ekkz8.wasm.gz","AssetFile":"_framework/mscorlib.555t1ekkz8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"555t1ekkz8"},{"Name":"integrity","Value":"sha256-qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4="},{"Name":"label","Value":"_framework/mscorlib.wasm.gz"}]},{"Route":"_framework/mscorlib.wasm","AssetFile":"_framework/mscorlib.555t1ekkz8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"49429"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M="}]},{"Route":"_framework/mscorlib.wasm","AssetFile":"_framework/mscorlib.555t1ekkz8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067417245"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M="},{"Name":"original-resource","Value":"\"SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M=\""}]},{"Route":"_framework/mscorlib.wasm.gz","AssetFile":"_framework/mscorlib.555t1ekkz8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4="}]},{"Route":"_framework/netstandard.0e3bjkca9m.wasm","AssetFile":"_framework/netstandard.0e3bjkca9m.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"90389"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0e3bjkca9m"},{"Name":"integrity","Value":"sha256-6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs="},{"Name":"label","Value":"_framework/netstandard.wasm"}]},{"Route":"_framework/netstandard.0e3bjkca9m.wasm","AssetFile":"_framework/netstandard.0e3bjkca9m.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038333269"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26086"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0e3bjkca9m"},{"Name":"integrity","Value":"sha256-6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs="},{"Name":"label","Value":"_framework/netstandard.wasm"},{"Name":"original-resource","Value":"\"6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs=\""}]},{"Route":"_framework/netstandard.0e3bjkca9m.wasm.gz","AssetFile":"_framework/netstandard.0e3bjkca9m.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26086"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0e3bjkca9m"},{"Name":"integrity","Value":"sha256-GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE="},{"Name":"label","Value":"_framework/netstandard.wasm.gz"}]},{"Route":"_framework/netstandard.wasm","AssetFile":"_framework/netstandard.0e3bjkca9m.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"90389"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs="}]},{"Route":"_framework/netstandard.wasm","AssetFile":"_framework/netstandard.0e3bjkca9m.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038333269"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26086"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs="},{"Name":"original-resource","Value":"\"6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs=\""}]},{"Route":"_framework/netstandard.wasm.gz","AssetFile":"_framework/netstandard.0e3bjkca9m.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26086"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE="}]},{"Route":"appsettings.Development.json","AssetFile":"appsettings.Development.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009174311927"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"original-resource","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""}]},{"Route":"appsettings.Development.json","AssetFile":"appsettings.Development.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="}]},{"Route":"appsettings.Development.json.gz","AssetFile":"appsettings.Development.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4="}]},{"Route":"appsettings.Development.x0ueugt8gp.json","AssetFile":"appsettings.Development.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009174311927"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"label","Value":"appsettings.Development.json"},{"Name":"original-resource","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""}]},{"Route":"appsettings.Development.x0ueugt8gp.json","AssetFile":"appsettings.Development.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"label","Value":"appsettings.Development.json"}]},{"Route":"appsettings.Development.x0ueugt8gp.json.gz","AssetFile":"appsettings.Development.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4="},{"Name":"label","Value":"appsettings.Development.json.gz"}]},{"Route":"appsettings.json","AssetFile":"appsettings.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009174311927"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"original-resource","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""}]},{"Route":"appsettings.json","AssetFile":"appsettings.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="}]},{"Route":"appsettings.json.gz","AssetFile":"appsettings.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4="}]},{"Route":"appsettings.x0ueugt8gp.json","AssetFile":"appsettings.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009174311927"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"label","Value":"appsettings.json"},{"Name":"original-resource","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""}]},{"Route":"appsettings.x0ueugt8gp.json","AssetFile":"appsettings.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"label","Value":"appsettings.json"}]},{"Route":"appsettings.x0ueugt8gp.json.gz","AssetFile":"appsettings.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4="},{"Name":"label","Value":"appsettings.json.gz"}]}]} \ No newline at end of file diff --git a/OnProfNext/bin/Debug/net10.0/OnProfNext.Client.staticwebassets.runtime.json b/OnProfNext/bin/Debug/net10.0/OnProfNext.Client.staticwebassets.runtime.json new file mode 100644 index 0000000..38d5115 --- /dev/null +++ b/OnProfNext/bin/Debug/net10.0/OnProfNext.Client.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\","D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\scopedcss\\bundle\\","D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\","C:\\Users\\wiela\\.nuget\\packages\\microsoft.dotnet.hotreload.webassembly.browser\\10.0.201\\staticwebassets\\","C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\"],"Root":{"Children":{"appsettings.Development.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"appsettings.Development.json"},"Patterns":null},"appsettings.Development.json.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"bfkt9xtjsh-{0}-x0ueugt8gp-x0ueugt8gp.gz"},"Patterns":null},"appsettings.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"appsettings.json"},"Patterns":null},"appsettings.json.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3hvscw4lq4-{0}-x0ueugt8gp-x0ueugt8gp.gz"},"Patterns":null},"OnProfNext.Client.styles.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"OnProfNext.Client.styles.css"},"Patterns":null},"OnProfNext.Client.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hd2b1ihltm-{0}-uzl7ca9j9c-uzl7ca9j9c.gz"},"Patterns":null},"_framework":{"Children":{"blazor.webassembly.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/blazor.webassembly.js"},"Patterns":null},"blazor.webassembly.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vbwtfewq79-{0}-66stpp682q-66stpp682q.gz"},"Patterns":null},"dotnet.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/dotnet.js"},"Patterns":null},"dotnet.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"qz9h56e7z8-{0}-kx7meqmil2-kx7meqmil2.gz"},"Patterns":null},"dotnet.js.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/dotnet.js.map"},"Patterns":null},"dotnet.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jg5bcwzjkb-{0}-clndu25lif-clndu25lif.gz"},"Patterns":null},"dotnet.native.53ez3dx5uy.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/dotnet.native.53ez3dx5uy.wasm"},"Patterns":null},"dotnet.native.53ez3dx5uy.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"4gmvxkcg2g-{0}-53ez3dx5uy-53ez3dx5uy.gz"},"Patterns":null},"dotnet.native.ykrnppwhq2.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/dotnet.native.ykrnppwhq2.js"},"Patterns":null},"dotnet.native.ykrnppwhq2.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"4131vl2c0u-{0}-ykrnppwhq2-ykrnppwhq2.gz"},"Patterns":null},"dotnet.runtime.js.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/dotnet.runtime.js.map"},"Patterns":null},"dotnet.runtime.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"6fczie0f1k-{0}-y1cse46x0j-y1cse46x0j.gz"},"Patterns":null},"dotnet.runtime.peu2mfb29t.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/dotnet.runtime.peu2mfb29t.js"},"Patterns":null},"dotnet.runtime.peu2mfb29t.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"arn1xqjw1x-{0}-peu2mfb29t-peu2mfb29t.gz"},"Patterns":null},"icudt_CJK.tjcz0u77k5.dat":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/icudt_CJK.tjcz0u77k5.dat"},"Patterns":null},"icudt_CJK.tjcz0u77k5.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"2noakrdf2j-{0}-tjcz0u77k5-tjcz0u77k5.gz"},"Patterns":null},"icudt_EFIGS.tptq2av103.dat":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/icudt_EFIGS.tptq2av103.dat"},"Patterns":null},"icudt_EFIGS.tptq2av103.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"yee81ivl95-{0}-tptq2av103-tptq2av103.gz"},"Patterns":null},"icudt_no_CJK.lfu7j35m59.dat":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/icudt_no_CJK.lfu7j35m59.dat"},"Patterns":null},"icudt_no_CJK.lfu7j35m59.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gnkv5k3g9v-{0}-lfu7j35m59-lfu7j35m59.gz"},"Patterns":null},"Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm"},"Patterns":null},"Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"5g3srlr8jx-{0}-roqc1km2rj-roqc1km2rj.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm"},"Patterns":null},"Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"qlfvznror3-{0}-zrueb40r85-zrueb40r85.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.uddsvpv1sv.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm"},"Patterns":null},"Microsoft.AspNetCore.Components.uddsvpv1sv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fs9spivh8g-{0}-uddsvpv1sv-uddsvpv1sv.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm"},"Patterns":null},"Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gx4y3aoczp-{0}-g5qdp1mxha-g5qdp1mxha.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm"},"Patterns":null},"Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"mx4r46cpu7-{0}-9mjwvs1qyp-9mjwvs1qyp.gz"},"Patterns":null},"Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm"},"Patterns":null},"Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zpx4nb1yyz-{0}-m3mxap0jif-m3mxap0jif.gz"},"Patterns":null},"Microsoft.CSharp.452y5fjxmv.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.CSharp.452y5fjxmv.wasm"},"Patterns":null},"Microsoft.CSharp.452y5fjxmv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"yva5srnvsu-{0}-452y5fjxmv-452y5fjxmv.gz"},"Patterns":null},"Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm"},"Patterns":null},"Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3of7h5c6n8-{0}-hrhwg3a64c-hrhwg3a64c.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm"},"Patterns":null},"Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"s4opith0ak-{0}-thew1o6jcx-thew1o6jcx.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm"},"Patterns":null},"Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"11oooy7jd2-{0}-7o70008j8o-7o70008j8o.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm"},"Patterns":null},"Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"dnrp0xl7wy-{0}-fgwnqtu7qk-fgwnqtu7qk.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm"},"Patterns":null},"Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vhumncwy1p-{0}-ouivavlhyy-ouivavlhyy.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm"},"Patterns":null},"Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"69vphje66t-{0}-giv4t23za9-giv4t23za9.gz"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kstk0dzyw1-{0}-ud13mwbta3-ud13mwbta3.gz"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"epsgnejg6l-{0}-vs620n44bv-vs620n44bv.gz"},"Patterns":null},"Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm"},"Patterns":null},"Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0o3yap4xcv-{0}-v59ymogeuz-v59ymogeuz.gz"},"Patterns":null},"Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm"},"Patterns":null},"Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3rwukvhyra-{0}-jnogfbng3i-jnogfbng3i.gz"},"Patterns":null},"Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm"},"Patterns":null},"Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ezxlu8d1x1-{0}-ssv83rveyv-ssv83rveyv.gz"},"Patterns":null},"Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm"},"Patterns":null},"Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"keeokmerp8-{0}-8gz29xpyh3-8gz29xpyh3.gz"},"Patterns":null},"Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm"},"Patterns":null},"Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"l2v44xhbzj-{0}-ozuva4e3vv-ozuva4e3vv.gz"},"Patterns":null},"Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm"},"Patterns":null},"Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tezhiquus4-{0}-6jkolue1ka-6jkolue1ka.gz"},"Patterns":null},"Microsoft.Extensions.Localization.xcslyy3nju.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm"},"Patterns":null},"Microsoft.Extensions.Localization.xcslyy3nju.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"84jx0dmgdc-{0}-xcslyy3nju-xcslyy3nju.gz"},"Patterns":null},"Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm"},"Patterns":null},"Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"sn0mpm6uvc-{0}-1q3x7vre4l-1q3x7vre4l.gz"},"Patterns":null},"Microsoft.Extensions.Logging.y4ydx3rk2c.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm"},"Patterns":null},"Microsoft.Extensions.Logging.y4ydx3rk2c.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"oix89w3uk2-{0}-y4ydx3rk2c-y4ydx3rk2c.gz"},"Patterns":null},"Microsoft.Extensions.Options.2rz5zbidnd.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm"},"Patterns":null},"Microsoft.Extensions.Options.2rz5zbidnd.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"u4abyqnekj-{0}-2rz5zbidnd-2rz5zbidnd.gz"},"Patterns":null},"Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm"},"Patterns":null},"Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ozc2mb3rdz-{0}-zmb03w0weu-zmb03w0weu.gz"},"Patterns":null},"Microsoft.Extensions.Primitives.bd164v6l3f.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm"},"Patterns":null},"Microsoft.Extensions.Primitives.bd164v6l3f.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"co27dkpaxa-{0}-bd164v6l3f-bd164v6l3f.gz"},"Patterns":null},"Microsoft.Extensions.Validation.r1sv3m5lsf.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm"},"Patterns":null},"Microsoft.Extensions.Validation.r1sv3m5lsf.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fappprmifz-{0}-r1sv3m5lsf-r1sv3m5lsf.gz"},"Patterns":null},"Microsoft.JSInterop.1r0ampr2q1.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm"},"Patterns":null},"Microsoft.JSInterop.1r0ampr2q1.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"pro4ajsvfg-{0}-1r0ampr2q1-1r0ampr2q1.gz"},"Patterns":null},"Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm"},"Patterns":null},"Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"6mv5cent6u-{0}-oz8fkrrrd6-oz8fkrrrd6.gz"},"Patterns":null},"Microsoft.VisualBasic.91iw3j3d9p.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm"},"Patterns":null},"Microsoft.VisualBasic.91iw3j3d9p.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"akapjt0sxo-{0}-91iw3j3d9p-91iw3j3d9p.gz"},"Patterns":null},"Microsoft.VisualBasic.Core.re3geseai5.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm"},"Patterns":null},"Microsoft.VisualBasic.Core.re3geseai5.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"du4skpg5oq-{0}-re3geseai5-re3geseai5.gz"},"Patterns":null},"Microsoft.Win32.Primitives.2mjytoh92q.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm"},"Patterns":null},"Microsoft.Win32.Primitives.2mjytoh92q.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"i7n8kqec4e-{0}-2mjytoh92q-2mjytoh92q.gz"},"Patterns":null},"Microsoft.Win32.Registry.yz8nt3ycsq.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm"},"Patterns":null},"Microsoft.Win32.Registry.yz8nt3ycsq.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"553rwsqb4a-{0}-yz8nt3ycsq-yz8nt3ycsq.gz"},"Patterns":null},"mscorlib.555t1ekkz8.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/mscorlib.555t1ekkz8.wasm"},"Patterns":null},"mscorlib.555t1ekkz8.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"6ixuumt5h1-{0}-555t1ekkz8-555t1ekkz8.gz"},"Patterns":null},"MudBlazor.k6079czmkm.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/MudBlazor.k6079czmkm.wasm"},"Patterns":null},"MudBlazor.k6079czmkm.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"w2iaa8sc3u-{0}-k6079czmkm-k6079czmkm.gz"},"Patterns":null},"netstandard.0e3bjkca9m.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/netstandard.0e3bjkca9m.wasm"},"Patterns":null},"netstandard.0e3bjkca9m.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8dl34ipw8j-{0}-0e3bjkca9m-0e3bjkca9m.gz"},"Patterns":null},"OnProfNext.Client.lplk7v275j.pdb":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/OnProfNext.Client.lplk7v275j.pdb"},"Patterns":null},"OnProfNext.Client.lplk7v275j.pdb.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"cycczivqx5-{0}-lplk7v275j-lplk7v275j.gz"},"Patterns":null},"OnProfNext.Client.xhq6acanj0.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/OnProfNext.Client.xhq6acanj0.wasm"},"Patterns":null},"OnProfNext.Client.xhq6acanj0.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"f6u1msztxb-{0}-xhq6acanj0-xhq6acanj0.gz"},"Patterns":null},"System.7rk3uansaa.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.7rk3uansaa.wasm"},"Patterns":null},"System.7rk3uansaa.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"5onvg4v1ie-{0}-7rk3uansaa-7rk3uansaa.gz"},"Patterns":null},"System.AppContext.uwq3fpef1w.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.AppContext.uwq3fpef1w.wasm"},"Patterns":null},"System.AppContext.uwq3fpef1w.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jcwxb5s78i-{0}-uwq3fpef1w-uwq3fpef1w.gz"},"Patterns":null},"System.Buffers.m4yhcvz2y2.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Buffers.m4yhcvz2y2.wasm"},"Patterns":null},"System.Buffers.m4yhcvz2y2.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8u2rup9szd-{0}-m4yhcvz2y2-m4yhcvz2y2.gz"},"Patterns":null},"System.Collections.63jrcion39.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Collections.63jrcion39.wasm"},"Patterns":null},"System.Collections.63jrcion39.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3zhncs8zdy-{0}-63jrcion39-63jrcion39.gz"},"Patterns":null},"System.Collections.Concurrent.1zv6wuzklu.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm"},"Patterns":null},"System.Collections.Concurrent.1zv6wuzklu.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"niv8zsbxhl-{0}-1zv6wuzklu-1zv6wuzklu.gz"},"Patterns":null},"System.Collections.Immutable.6uzpuv4o5d.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm"},"Patterns":null},"System.Collections.Immutable.6uzpuv4o5d.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3k0w0ci5df-{0}-6uzpuv4o5d-6uzpuv4o5d.gz"},"Patterns":null},"System.Collections.NonGeneric.k5rgagff9o.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm"},"Patterns":null},"System.Collections.NonGeneric.k5rgagff9o.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"r1c02csw1u-{0}-k5rgagff9o-k5rgagff9o.gz"},"Patterns":null},"System.Collections.Specialized.84wojkejb4.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Collections.Specialized.84wojkejb4.wasm"},"Patterns":null},"System.Collections.Specialized.84wojkejb4.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"q6am3o85wz-{0}-84wojkejb4-84wojkejb4.gz"},"Patterns":null},"System.ComponentModel.Annotations.cjsvkufomv.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm"},"Patterns":null},"System.ComponentModel.Annotations.cjsvkufomv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"wj9cgpvw17-{0}-cjsvkufomv-cjsvkufomv.gz"},"Patterns":null},"System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm"},"Patterns":null},"System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jimv6lw5j5-{0}-vpng0qt4u6-vpng0qt4u6.gz"},"Patterns":null},"System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm"},"Patterns":null},"System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ixx2bqnfah-{0}-en4q13ibd5-en4q13ibd5.gz"},"Patterns":null},"System.ComponentModel.m11rh1qn2x.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.ComponentModel.m11rh1qn2x.wasm"},"Patterns":null},"System.ComponentModel.m11rh1qn2x.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ffumllgt4m-{0}-m11rh1qn2x-m11rh1qn2x.gz"},"Patterns":null},"System.ComponentModel.Primitives.u0y5oi3qdg.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm"},"Patterns":null},"System.ComponentModel.Primitives.u0y5oi3qdg.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"nu73pdet4t-{0}-u0y5oi3qdg-u0y5oi3qdg.gz"},"Patterns":null},"System.ComponentModel.TypeConverter.e2hbv9lola.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm"},"Patterns":null},"System.ComponentModel.TypeConverter.e2hbv9lola.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gpzobq46fp-{0}-e2hbv9lola-e2hbv9lola.gz"},"Patterns":null},"System.Configuration.j8qjkqg593.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Configuration.j8qjkqg593.wasm"},"Patterns":null},"System.Configuration.j8qjkqg593.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"o9xpqh7wzb-{0}-j8qjkqg593-j8qjkqg593.gz"},"Patterns":null},"System.Console.x9at0eh4vs.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Console.x9at0eh4vs.wasm"},"Patterns":null},"System.Console.x9at0eh4vs.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ea8uo6cwb8-{0}-x9at0eh4vs-x9at0eh4vs.gz"},"Patterns":null},"System.Core.ickp29885z.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Core.ickp29885z.wasm"},"Patterns":null},"System.Core.ickp29885z.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"edgswerp4g-{0}-ickp29885z-ickp29885z.gz"},"Patterns":null},"System.Data.0h75nr7qqd.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Data.0h75nr7qqd.wasm"},"Patterns":null},"System.Data.0h75nr7qqd.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"y20kxtztgi-{0}-0h75nr7qqd-0h75nr7qqd.gz"},"Patterns":null},"System.Data.Common.4wisaz8pj4.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Data.Common.4wisaz8pj4.wasm"},"Patterns":null},"System.Data.Common.4wisaz8pj4.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"68hq2gv5cb-{0}-4wisaz8pj4-4wisaz8pj4.gz"},"Patterns":null},"System.Data.DataSetExtensions.904tnen1ot.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm"},"Patterns":null},"System.Data.DataSetExtensions.904tnen1ot.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"sm8o0gwk5g-{0}-904tnen1ot-904tnen1ot.gz"},"Patterns":null},"System.Diagnostics.Contracts.z1eotzj35n.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm"},"Patterns":null},"System.Diagnostics.Contracts.z1eotzj35n.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"wgdliulfxe-{0}-z1eotzj35n-z1eotzj35n.gz"},"Patterns":null},"System.Diagnostics.Debug.aeh9b1tcuc.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm"},"Patterns":null},"System.Diagnostics.Debug.aeh9b1tcuc.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"i9mn6d27vy-{0}-aeh9b1tcuc-aeh9b1tcuc.gz"},"Patterns":null},"System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm"},"Patterns":null},"System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lgx6p69ons-{0}-ou2dt7nfo2-ou2dt7nfo2.gz"},"Patterns":null},"System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm"},"Patterns":null},"System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"i7dsezujyr-{0}-kv9gl8mgag-kv9gl8mgag.gz"},"Patterns":null},"System.Diagnostics.Process.lqtqkmw274.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm"},"Patterns":null},"System.Diagnostics.Process.lqtqkmw274.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"67s0zux9y9-{0}-lqtqkmw274-lqtqkmw274.gz"},"Patterns":null},"System.Diagnostics.StackTrace.wvlboxd9cz.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm"},"Patterns":null},"System.Diagnostics.StackTrace.wvlboxd9cz.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ae1qv5wfu3-{0}-wvlboxd9cz-wvlboxd9cz.gz"},"Patterns":null},"System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm"},"Patterns":null},"System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"5psn88uayv-{0}-mx5w1z1p6w-mx5w1z1p6w.gz"},"Patterns":null},"System.Diagnostics.Tools.862j1ozg5o.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm"},"Patterns":null},"System.Diagnostics.Tools.862j1ozg5o.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"6yvil548ai-{0}-862j1ozg5o-862j1ozg5o.gz"},"Patterns":null},"System.Diagnostics.TraceSource.j08okd90mo.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm"},"Patterns":null},"System.Diagnostics.TraceSource.j08okd90mo.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"w9uuhprkgr-{0}-j08okd90mo-j08okd90mo.gz"},"Patterns":null},"System.Diagnostics.Tracing.bnz7jo4op8.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm"},"Patterns":null},"System.Diagnostics.Tracing.bnz7jo4op8.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ymz6pz7ujf-{0}-bnz7jo4op8-bnz7jo4op8.gz"},"Patterns":null},"System.Drawing.Primitives.k3z431p3v7.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm"},"Patterns":null},"System.Drawing.Primitives.k3z431p3v7.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"beyjjw9nw7-{0}-k3z431p3v7-k3z431p3v7.gz"},"Patterns":null},"System.Drawing.v0usa2s224.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Drawing.v0usa2s224.wasm"},"Patterns":null},"System.Drawing.v0usa2s224.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"bm4t56k5pn-{0}-v0usa2s224-v0usa2s224.gz"},"Patterns":null},"System.Dynamic.Runtime.iktlm0yhdx.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm"},"Patterns":null},"System.Dynamic.Runtime.iktlm0yhdx.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"95o3q4uwxv-{0}-iktlm0yhdx-iktlm0yhdx.gz"},"Patterns":null},"System.Formats.Asn1.9iyl1hnh76.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm"},"Patterns":null},"System.Formats.Asn1.9iyl1hnh76.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"2eqyybz3l2-{0}-9iyl1hnh76-9iyl1hnh76.gz"},"Patterns":null},"System.Formats.Tar.9ikmelhi7g.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Formats.Tar.9ikmelhi7g.wasm"},"Patterns":null},"System.Formats.Tar.9ikmelhi7g.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"aawrgxq7b9-{0}-9ikmelhi7g-9ikmelhi7g.gz"},"Patterns":null},"System.Globalization.4ulc930few.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Globalization.4ulc930few.wasm"},"Patterns":null},"System.Globalization.4ulc930few.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"nvjr9jta08-{0}-4ulc930few-4ulc930few.gz"},"Patterns":null},"System.Globalization.Calendars.e8yl47y6cv.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm"},"Patterns":null},"System.Globalization.Calendars.e8yl47y6cv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"g4w42juzkx-{0}-e8yl47y6cv-e8yl47y6cv.gz"},"Patterns":null},"System.Globalization.Extensions.fvxkfs32tv.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm"},"Patterns":null},"System.Globalization.Extensions.fvxkfs32tv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"g3b5a282rj-{0}-fvxkfs32tv-fvxkfs32tv.gz"},"Patterns":null},"System.IO.Compression.Brotli.ibxx4kh8c6.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm"},"Patterns":null},"System.IO.Compression.Brotli.ibxx4kh8c6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"flmzbagm0p-{0}-ibxx4kh8c6-ibxx4kh8c6.gz"},"Patterns":null},"System.IO.Compression.FileSystem.bselp9vv9w.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm"},"Patterns":null},"System.IO.Compression.FileSystem.bselp9vv9w.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ffagyufl1o-{0}-bselp9vv9w-bselp9vv9w.gz"},"Patterns":null},"System.IO.Compression.sgbc42zrd8.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.Compression.sgbc42zrd8.wasm"},"Patterns":null},"System.IO.Compression.sgbc42zrd8.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"mk5261bq2v-{0}-sgbc42zrd8-sgbc42zrd8.gz"},"Patterns":null},"System.IO.Compression.ZipFile.b0ha8vyo8i.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm"},"Patterns":null},"System.IO.Compression.ZipFile.b0ha8vyo8i.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"a99cqvh69a-{0}-b0ha8vyo8i-b0ha8vyo8i.gz"},"Patterns":null},"System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm"},"Patterns":null},"System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"m3i6jtsneo-{0}-oi9xn5s0h3-oi9xn5s0h3.gz"},"Patterns":null},"System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm"},"Patterns":null},"System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8i8whn9pm1-{0}-fi1uhp9255-fi1uhp9255.gz"},"Patterns":null},"System.IO.FileSystem.fktu0k4b93.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.FileSystem.fktu0k4b93.wasm"},"Patterns":null},"System.IO.FileSystem.fktu0k4b93.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vnqjd4ny0q-{0}-fktu0k4b93-fktu0k4b93.gz"},"Patterns":null},"System.IO.FileSystem.Primitives.6j2ed42ac7.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm"},"Patterns":null},"System.IO.FileSystem.Primitives.6j2ed42ac7.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kzc385ysv6-{0}-6j2ed42ac7-6j2ed42ac7.gz"},"Patterns":null},"System.IO.FileSystem.Watcher.v9i07bnq2k.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm"},"Patterns":null},"System.IO.FileSystem.Watcher.v9i07bnq2k.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"m428rlfc87-{0}-v9i07bnq2k-v9i07bnq2k.gz"},"Patterns":null},"System.IO.i9g92fmb9y.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.i9g92fmb9y.wasm"},"Patterns":null},"System.IO.i9g92fmb9y.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kukm29h8dt-{0}-i9g92fmb9y-i9g92fmb9y.gz"},"Patterns":null},"System.IO.IsolatedStorage.8ll4gxwfs1.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm"},"Patterns":null},"System.IO.IsolatedStorage.8ll4gxwfs1.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"na7pgc18jv-{0}-8ll4gxwfs1-8ll4gxwfs1.gz"},"Patterns":null},"System.IO.MemoryMappedFiles.6do4olk7ib.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm"},"Patterns":null},"System.IO.MemoryMappedFiles.6do4olk7ib.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rsffl3vumf-{0}-6do4olk7ib-6do4olk7ib.gz"},"Patterns":null},"System.IO.Pipelines.21z0t9w6sq.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm"},"Patterns":null},"System.IO.Pipelines.21z0t9w6sq.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"pxy8xfz0ow-{0}-21z0t9w6sq-21z0t9w6sq.gz"},"Patterns":null},"System.IO.Pipes.AccessControl.5lvzz4lks7.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm"},"Patterns":null},"System.IO.Pipes.AccessControl.5lvzz4lks7.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lvyasyre47-{0}-5lvzz4lks7-5lvzz4lks7.gz"},"Patterns":null},"System.IO.Pipes.xosph8vk4a.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.Pipes.xosph8vk4a.wasm"},"Patterns":null},"System.IO.Pipes.xosph8vk4a.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vjl93wt59v-{0}-xosph8vk4a-xosph8vk4a.gz"},"Patterns":null},"System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm"},"Patterns":null},"System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"dzqyarawy9-{0}-d1pja42pyi-d1pja42pyi.gz"},"Patterns":null},"System.Linq.AsyncEnumerable.4m1mh525k0.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm"},"Patterns":null},"System.Linq.AsyncEnumerable.4m1mh525k0.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"1u9lol5zjk-{0}-4m1mh525k0-4m1mh525k0.gz"},"Patterns":null},"System.Linq.Expressions.4nat0rber0.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Linq.Expressions.4nat0rber0.wasm"},"Patterns":null},"System.Linq.Expressions.4nat0rber0.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"r0xa1dsvvu-{0}-4nat0rber0-4nat0rber0.gz"},"Patterns":null},"System.Linq.Parallel.qf7zemz9aw.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm"},"Patterns":null},"System.Linq.Parallel.qf7zemz9aw.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"35llacexwm-{0}-qf7zemz9aw-qf7zemz9aw.gz"},"Patterns":null},"System.Linq.Queryable.vwinf8twbn.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Linq.Queryable.vwinf8twbn.wasm"},"Patterns":null},"System.Linq.Queryable.vwinf8twbn.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hylqczc46z-{0}-vwinf8twbn-vwinf8twbn.gz"},"Patterns":null},"System.Linq.rp2jklkmsi.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Linq.rp2jklkmsi.wasm"},"Patterns":null},"System.Linq.rp2jklkmsi.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"p0pe0blimm-{0}-rp2jklkmsi-rp2jklkmsi.gz"},"Patterns":null},"System.Memory.3r0soomurg.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Memory.3r0soomurg.wasm"},"Patterns":null},"System.Memory.3r0soomurg.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zip5atfnk1-{0}-3r0soomurg-3r0soomurg.gz"},"Patterns":null},"System.Net.Http.9rl4gopayw.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.Http.9rl4gopayw.wasm"},"Patterns":null},"System.Net.Http.9rl4gopayw.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hz1tpel2o0-{0}-9rl4gopayw-9rl4gopayw.gz"},"Patterns":null},"System.Net.Http.Json.t9gqpmtbpb.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm"},"Patterns":null},"System.Net.Http.Json.t9gqpmtbpb.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zxgtro8yo7-{0}-t9gqpmtbpb-t9gqpmtbpb.gz"},"Patterns":null},"System.Net.HttpListener.zg37o92yol.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.HttpListener.zg37o92yol.wasm"},"Patterns":null},"System.Net.HttpListener.zg37o92yol.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"mkyh3erkm9-{0}-zg37o92yol-zg37o92yol.gz"},"Patterns":null},"System.Net.Mail.qk214miut2.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.Mail.qk214miut2.wasm"},"Patterns":null},"System.Net.Mail.qk214miut2.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"019ldzgpk2-{0}-qk214miut2-qk214miut2.gz"},"Patterns":null},"System.Net.NameResolution.50dzekuu9x.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.NameResolution.50dzekuu9x.wasm"},"Patterns":null},"System.Net.NameResolution.50dzekuu9x.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ui1ul8tpby-{0}-50dzekuu9x-50dzekuu9x.gz"},"Patterns":null},"System.Net.NetworkInformation.k8343mqust.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.NetworkInformation.k8343mqust.wasm"},"Patterns":null},"System.Net.NetworkInformation.k8343mqust.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"luuq2ppq8r-{0}-k8343mqust-k8343mqust.gz"},"Patterns":null},"System.Net.Ping.00vh2kvsiz.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.Ping.00vh2kvsiz.wasm"},"Patterns":null},"System.Net.Ping.00vh2kvsiz.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"yswenxxy60-{0}-00vh2kvsiz-00vh2kvsiz.gz"},"Patterns":null},"System.Net.Primitives.whs5oed1wm.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.Primitives.whs5oed1wm.wasm"},"Patterns":null},"System.Net.Primitives.whs5oed1wm.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"e2kh1woy2q-{0}-whs5oed1wm-whs5oed1wm.gz"},"Patterns":null},"System.Net.Quic.grloe2ix5j.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.Quic.grloe2ix5j.wasm"},"Patterns":null},"System.Net.Quic.grloe2ix5j.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"t7lpa3lwov-{0}-grloe2ix5j-grloe2ix5j.gz"},"Patterns":null},"System.Net.Requests.r8ar2pd94c.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.Requests.r8ar2pd94c.wasm"},"Patterns":null},"System.Net.Requests.r8ar2pd94c.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zy4nys0fbm-{0}-r8ar2pd94c-r8ar2pd94c.gz"},"Patterns":null},"System.Net.Security.yn3zcskz4j.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.Security.yn3zcskz4j.wasm"},"Patterns":null},"System.Net.Security.yn3zcskz4j.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"iem13k4n35-{0}-yn3zcskz4j-yn3zcskz4j.gz"},"Patterns":null},"System.Net.ServerSentEvents.37wbq4jfsy.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm"},"Patterns":null},"System.Net.ServerSentEvents.37wbq4jfsy.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"t2mopjsgs5-{0}-37wbq4jfsy-37wbq4jfsy.gz"},"Patterns":null},"System.Net.ServicePoint.j436yqvrg9.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm"},"Patterns":null},"System.Net.ServicePoint.j436yqvrg9.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"sz4qmwa0cz-{0}-j436yqvrg9-j436yqvrg9.gz"},"Patterns":null},"System.Net.Sockets.utzdm9sw2p.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.Sockets.utzdm9sw2p.wasm"},"Patterns":null},"System.Net.Sockets.utzdm9sw2p.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ozd9l95cy8-{0}-utzdm9sw2p-utzdm9sw2p.gz"},"Patterns":null},"System.Net.WebClient.e5a4gx4ylt.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm"},"Patterns":null},"System.Net.WebClient.e5a4gx4ylt.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0qximx7h6w-{0}-e5a4gx4ylt-e5a4gx4ylt.gz"},"Patterns":null},"System.Net.WebHeaderCollection.rbzkmij005.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm"},"Patterns":null},"System.Net.WebHeaderCollection.rbzkmij005.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"xfyu8pi705-{0}-rbzkmij005-rbzkmij005.gz"},"Patterns":null},"System.Net.WebProxy.38jcv8jeeu.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm"},"Patterns":null},"System.Net.WebProxy.38jcv8jeeu.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kwztau0oyy-{0}-38jcv8jeeu-38jcv8jeeu.gz"},"Patterns":null},"System.Net.WebSockets.Client.nv5izr3rt6.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm"},"Patterns":null},"System.Net.WebSockets.Client.nv5izr3rt6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zc08r46902-{0}-nv5izr3rt6-nv5izr3rt6.gz"},"Patterns":null},"System.Net.WebSockets.hdzn84g6uh.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm"},"Patterns":null},"System.Net.WebSockets.hdzn84g6uh.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ttu14uxg7m-{0}-hdzn84g6uh-hdzn84g6uh.gz"},"Patterns":null},"System.Net.zku96ychk7.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Net.zku96ychk7.wasm"},"Patterns":null},"System.Net.zku96ychk7.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"mwxs9jgpi5-{0}-zku96ychk7-zku96ychk7.gz"},"Patterns":null},"System.Numerics.on9qk50okp.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Numerics.on9qk50okp.wasm"},"Patterns":null},"System.Numerics.on9qk50okp.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fmcag5xdn2-{0}-on9qk50okp-on9qk50okp.gz"},"Patterns":null},"System.Numerics.Vectors.1l8xruz8uh.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm"},"Patterns":null},"System.Numerics.Vectors.1l8xruz8uh.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tmgotixosa-{0}-1l8xruz8uh-1l8xruz8uh.gz"},"Patterns":null},"System.ObjectModel.4omhtq90sd.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.ObjectModel.4omhtq90sd.wasm"},"Patterns":null},"System.ObjectModel.4omhtq90sd.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"f62yejuwjc-{0}-4omhtq90sd-4omhtq90sd.gz"},"Patterns":null},"System.Private.CoreLib.koxlwnosh6.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Private.CoreLib.koxlwnosh6.wasm"},"Patterns":null},"System.Private.CoreLib.koxlwnosh6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3zyfvkhmnk-{0}-koxlwnosh6-koxlwnosh6.gz"},"Patterns":null},"System.Private.DataContractSerialization.zlwtcvnuqv.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm"},"Patterns":null},"System.Private.DataContractSerialization.zlwtcvnuqv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"g0qzdert85-{0}-zlwtcvnuqv-zlwtcvnuqv.gz"},"Patterns":null},"System.Private.Uri.clehp4avpy.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Private.Uri.clehp4avpy.wasm"},"Patterns":null},"System.Private.Uri.clehp4avpy.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"e67ma35du3-{0}-clehp4avpy-clehp4avpy.gz"},"Patterns":null},"System.Private.Xml.g9rvjereoe.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Private.Xml.g9rvjereoe.wasm"},"Patterns":null},"System.Private.Xml.g9rvjereoe.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"byxake4xdz-{0}-g9rvjereoe-g9rvjereoe.gz"},"Patterns":null},"System.Private.Xml.Linq.ga3n3gh9b6.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm"},"Patterns":null},"System.Private.Xml.Linq.ga3n3gh9b6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"93opzeh57b-{0}-ga3n3gh9b6-ga3n3gh9b6.gz"},"Patterns":null},"System.Reflection.DispatchProxy.b7qn4zpc0q.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm"},"Patterns":null},"System.Reflection.DispatchProxy.b7qn4zpc0q.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jjcxq3ejac-{0}-b7qn4zpc0q-b7qn4zpc0q.gz"},"Patterns":null},"System.Reflection.Emit.3t7flfwg7o.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm"},"Patterns":null},"System.Reflection.Emit.3t7flfwg7o.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"p1p1dduoka-{0}-3t7flfwg7o-3t7flfwg7o.gz"},"Patterns":null},"System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm"},"Patterns":null},"System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"i8msa0z88m-{0}-x0vkqyycss-x0vkqyycss.gz"},"Patterns":null},"System.Reflection.Emit.Lightweight.3tzjd7znni.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm"},"Patterns":null},"System.Reflection.Emit.Lightweight.3tzjd7znni.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gremm5qhcr-{0}-3tzjd7znni-3tzjd7znni.gz"},"Patterns":null},"System.Reflection.Extensions.ymwga5opgl.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm"},"Patterns":null},"System.Reflection.Extensions.ymwga5opgl.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vtgrfa0p11-{0}-ymwga5opgl-ymwga5opgl.gz"},"Patterns":null},"System.Reflection.Metadata.9lgg9wjd2a.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm"},"Patterns":null},"System.Reflection.Metadata.9lgg9wjd2a.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"k6k7jlyl2f-{0}-9lgg9wjd2a-9lgg9wjd2a.gz"},"Patterns":null},"System.Reflection.Primitives.n2ngq6as7g.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm"},"Patterns":null},"System.Reflection.Primitives.n2ngq6as7g.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tdpp3qw974-{0}-n2ngq6as7g-n2ngq6as7g.gz"},"Patterns":null},"System.Reflection.TypeExtensions.ivmzcfvrc6.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm"},"Patterns":null},"System.Reflection.TypeExtensions.ivmzcfvrc6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hoalsbog2o-{0}-ivmzcfvrc6-ivmzcfvrc6.gz"},"Patterns":null},"System.Reflection.v4mfyzbte8.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Reflection.v4mfyzbte8.wasm"},"Patterns":null},"System.Reflection.v4mfyzbte8.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"m0i5wjywsx-{0}-v4mfyzbte8-v4mfyzbte8.gz"},"Patterns":null},"System.Resources.Reader.c9z9nieytf.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Resources.Reader.c9z9nieytf.wasm"},"Patterns":null},"System.Resources.Reader.c9z9nieytf.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"xtefui8dpc-{0}-c9z9nieytf-c9z9nieytf.gz"},"Patterns":null},"System.Resources.ResourceManager.f3fiwdwb50.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm"},"Patterns":null},"System.Resources.ResourceManager.f3fiwdwb50.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"qrheoix2ig-{0}-f3fiwdwb50-f3fiwdwb50.gz"},"Patterns":null},"System.Resources.Writer.tx9namivq6.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Resources.Writer.tx9namivq6.wasm"},"Patterns":null},"System.Resources.Writer.tx9namivq6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"szit2ufpnx-{0}-tx9namivq6-tx9namivq6.gz"},"Patterns":null},"System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm"},"Patterns":null},"System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3txc49hfsy-{0}-5yw8jyjkyt-5yw8jyjkyt.gz"},"Patterns":null},"System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm"},"Patterns":null},"System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"me1or200pv-{0}-ddbsai2xh9-ddbsai2xh9.gz"},"Patterns":null},"System.Runtime.Extensions.f4fqaba1oz.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm"},"Patterns":null},"System.Runtime.Extensions.f4fqaba1oz.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"4syo1xqmc8-{0}-f4fqaba1oz-f4fqaba1oz.gz"},"Patterns":null},"System.Runtime.Handles.kpe61fymig.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.Handles.kpe61fymig.wasm"},"Patterns":null},"System.Runtime.Handles.kpe61fymig.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fz4pecsmjf-{0}-kpe61fymig-kpe61fymig.gz"},"Patterns":null},"System.Runtime.InteropServices.02r2ubft18.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm"},"Patterns":null},"System.Runtime.InteropServices.02r2ubft18.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0st0knthx5-{0}-02r2ubft18-02r2ubft18.gz"},"Patterns":null},"System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm"},"Patterns":null},"System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"h9925thw3k-{0}-ythr5w8c2e-ythr5w8c2e.gz"},"Patterns":null},"System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm"},"Patterns":null},"System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zx6kj3xmnr-{0}-esodb2rpbi-esodb2rpbi.gz"},"Patterns":null},"System.Runtime.Intrinsics.j8lrpban8m.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm"},"Patterns":null},"System.Runtime.Intrinsics.j8lrpban8m.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"7yd9j54hd0-{0}-j8lrpban8m-j8lrpban8m.gz"},"Patterns":null},"System.Runtime.k6ze2203p2.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.k6ze2203p2.wasm"},"Patterns":null},"System.Runtime.k6ze2203p2.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"9ru0gm9zti-{0}-k6ze2203p2-k6ze2203p2.gz"},"Patterns":null},"System.Runtime.Loader.bm8d2pac0a.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm"},"Patterns":null},"System.Runtime.Loader.bm8d2pac0a.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"06jmrwgemt-{0}-bm8d2pac0a-bm8d2pac0a.gz"},"Patterns":null},"System.Runtime.Numerics.e3fl2oogjk.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm"},"Patterns":null},"System.Runtime.Numerics.e3fl2oogjk.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"b1pqie8d42-{0}-e3fl2oogjk-e3fl2oogjk.gz"},"Patterns":null},"System.Runtime.Serialization.Formatters.a0v88kqnif.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm"},"Patterns":null},"System.Runtime.Serialization.Formatters.a0v88kqnif.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"4k92vl8md2-{0}-a0v88kqnif-a0v88kqnif.gz"},"Patterns":null},"System.Runtime.Serialization.Json.pez04wd9mo.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm"},"Patterns":null},"System.Runtime.Serialization.Json.pez04wd9mo.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"wxwyng4xk0-{0}-pez04wd9mo-pez04wd9mo.gz"},"Patterns":null},"System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm"},"Patterns":null},"System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"j81tt1y6rj-{0}-xy5d3j3dn1-xy5d3j3dn1.gz"},"Patterns":null},"System.Runtime.Serialization.qfpmfujegm.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm"},"Patterns":null},"System.Runtime.Serialization.qfpmfujegm.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"mkj61d469a-{0}-qfpmfujegm-qfpmfujegm.gz"},"Patterns":null},"System.Runtime.Serialization.Xml.mmwsbcsgly.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm"},"Patterns":null},"System.Runtime.Serialization.Xml.mmwsbcsgly.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8pmauzinw9-{0}-mmwsbcsgly-mmwsbcsgly.gz"},"Patterns":null},"System.Security.AccessControl.4mxo8hy5cn.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm"},"Patterns":null},"System.Security.AccessControl.4mxo8hy5cn.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"9n1qe841ua-{0}-4mxo8hy5cn-4mxo8hy5cn.gz"},"Patterns":null},"System.Security.Claims.9n1yusa5e5.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.Claims.9n1yusa5e5.wasm"},"Patterns":null},"System.Security.Claims.9n1yusa5e5.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"awwlmj7zy5-{0}-9n1yusa5e5-9n1yusa5e5.gz"},"Patterns":null},"System.Security.Cryptography.5rp84ijz8t.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm"},"Patterns":null},"System.Security.Cryptography.5rp84ijz8t.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gqmneoqstx-{0}-5rp84ijz8t-5rp84ijz8t.gz"},"Patterns":null},"System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm"},"Patterns":null},"System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"m02xm5ue7p-{0}-4dnz7b15a9-4dnz7b15a9.gz"},"Patterns":null},"System.Security.Cryptography.Cng.dyaxkkx3lb.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm"},"Patterns":null},"System.Security.Cryptography.Cng.dyaxkkx3lb.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jhjpqkptaq-{0}-dyaxkkx3lb-dyaxkkx3lb.gz"},"Patterns":null},"System.Security.Cryptography.Csp.20t5iw27a6.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm"},"Patterns":null},"System.Security.Cryptography.Csp.20t5iw27a6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"v9jar86jna-{0}-20t5iw27a6-20t5iw27a6.gz"},"Patterns":null},"System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm"},"Patterns":null},"System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"uu7wfp4do2-{0}-0lu5m0tfx2-0lu5m0tfx2.gz"},"Patterns":null},"System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm"},"Patterns":null},"System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"12m83h5a1i-{0}-4m4pzjxi3g-4m4pzjxi3g.gz"},"Patterns":null},"System.Security.Cryptography.Primitives.7bcdd4uolu.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm"},"Patterns":null},"System.Security.Cryptography.Primitives.7bcdd4uolu.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ly70359tb6-{0}-7bcdd4uolu-7bcdd4uolu.gz"},"Patterns":null},"System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm"},"Patterns":null},"System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rz1qtq0z6d-{0}-dmew7c9amv-dmew7c9amv.gz"},"Patterns":null},"System.Security.Principal.j5dp7k8x6u.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.Principal.j5dp7k8x6u.wasm"},"Patterns":null},"System.Security.Principal.j5dp7k8x6u.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8ynwqwcefg-{0}-j5dp7k8x6u-j5dp7k8x6u.gz"},"Patterns":null},"System.Security.Principal.Windows.7ssqvw2wfy.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm"},"Patterns":null},"System.Security.Principal.Windows.7ssqvw2wfy.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"sl0sft7bkv-{0}-7ssqvw2wfy-7ssqvw2wfy.gz"},"Patterns":null},"System.Security.SecureString.7weoywtuje.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.SecureString.7weoywtuje.wasm"},"Patterns":null},"System.Security.SecureString.7weoywtuje.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ogcs9ucvrf-{0}-7weoywtuje-7weoywtuje.gz"},"Patterns":null},"System.Security.snpv53zusk.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Security.snpv53zusk.wasm"},"Patterns":null},"System.Security.snpv53zusk.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8srr1acehr-{0}-snpv53zusk-snpv53zusk.gz"},"Patterns":null},"System.ServiceModel.Web.3f1khl8k32.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm"},"Patterns":null},"System.ServiceModel.Web.3f1khl8k32.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"i30lqfoca8-{0}-3f1khl8k32-3f1khl8k32.gz"},"Patterns":null},"System.ServiceProcess.a95c1olw0i.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.ServiceProcess.a95c1olw0i.wasm"},"Patterns":null},"System.ServiceProcess.a95c1olw0i.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zlxnfbxifc-{0}-a95c1olw0i-a95c1olw0i.gz"},"Patterns":null},"System.Text.Encoding.CodePages.8bhn50uz8f.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm"},"Patterns":null},"System.Text.Encoding.CodePages.8bhn50uz8f.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"d2kqqmb0bv-{0}-8bhn50uz8f-8bhn50uz8f.gz"},"Patterns":null},"System.Text.Encoding.Extensions.tqz9dyg6j7.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm"},"Patterns":null},"System.Text.Encoding.Extensions.tqz9dyg6j7.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"m10se0yx1g-{0}-tqz9dyg6j7-tqz9dyg6j7.gz"},"Patterns":null},"System.Text.Encoding.s9ic8sulfi.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Text.Encoding.s9ic8sulfi.wasm"},"Patterns":null},"System.Text.Encoding.s9ic8sulfi.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"w4xw0gq3pj-{0}-s9ic8sulfi-s9ic8sulfi.gz"},"Patterns":null},"System.Text.Encodings.Web.07hq35kp92.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm"},"Patterns":null},"System.Text.Encodings.Web.07hq35kp92.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"wqsee81gb1-{0}-07hq35kp92-07hq35kp92.gz"},"Patterns":null},"System.Text.Json.2alhj4y3bm.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Text.Json.2alhj4y3bm.wasm"},"Patterns":null},"System.Text.Json.2alhj4y3bm.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0064fe6uur-{0}-2alhj4y3bm-2alhj4y3bm.gz"},"Patterns":null},"System.Text.RegularExpressions.h1qtkesphd.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm"},"Patterns":null},"System.Text.RegularExpressions.h1qtkesphd.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"7d15z782y2-{0}-h1qtkesphd-h1qtkesphd.gz"},"Patterns":null},"System.Threading.47ucbn1gg1.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Threading.47ucbn1gg1.wasm"},"Patterns":null},"System.Threading.47ucbn1gg1.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"e2ypaal8k2-{0}-47ucbn1gg1-47ucbn1gg1.gz"},"Patterns":null},"System.Threading.AccessControl.ruehy0ud5k.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm"},"Patterns":null},"System.Threading.AccessControl.ruehy0ud5k.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lbcric48ji-{0}-ruehy0ud5k-ruehy0ud5k.gz"},"Patterns":null},"System.Threading.Channels.s3i62rxr2p.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Threading.Channels.s3i62rxr2p.wasm"},"Patterns":null},"System.Threading.Channels.s3i62rxr2p.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rma0vjtbld-{0}-s3i62rxr2p-s3i62rxr2p.gz"},"Patterns":null},"System.Threading.Overlapped.lzl7igry1t.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm"},"Patterns":null},"System.Threading.Overlapped.lzl7igry1t.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ywpa2qpg55-{0}-lzl7igry1t-lzl7igry1t.gz"},"Patterns":null},"System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm"},"Patterns":null},"System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"to8tkrj8cc-{0}-p9bjzp5pyo-p9bjzp5pyo.gz"},"Patterns":null},"System.Threading.Tasks.Extensions.unp0hcfijn.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm"},"Patterns":null},"System.Threading.Tasks.Extensions.unp0hcfijn.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"7o4w0lfocu-{0}-unp0hcfijn-unp0hcfijn.gz"},"Patterns":null},"System.Threading.Tasks.Parallel.hyku0ejwye.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm"},"Patterns":null},"System.Threading.Tasks.Parallel.hyku0ejwye.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ohlfbgu01g-{0}-hyku0ejwye-hyku0ejwye.gz"},"Patterns":null},"System.Threading.Tasks.t0sjw89o0i.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm"},"Patterns":null},"System.Threading.Tasks.t0sjw89o0i.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8rrnar5gtv-{0}-t0sjw89o0i-t0sjw89o0i.gz"},"Patterns":null},"System.Threading.Thread.nfbg9v9bn0.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm"},"Patterns":null},"System.Threading.Thread.nfbg9v9bn0.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"wi7nbv7im4-{0}-nfbg9v9bn0-nfbg9v9bn0.gz"},"Patterns":null},"System.Threading.ThreadPool.jrzo6stg1k.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm"},"Patterns":null},"System.Threading.ThreadPool.jrzo6stg1k.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"5g4i44bi6s-{0}-jrzo6stg1k-jrzo6stg1k.gz"},"Patterns":null},"System.Threading.Timer.y8l1kxazi5.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Threading.Timer.y8l1kxazi5.wasm"},"Patterns":null},"System.Threading.Timer.y8l1kxazi5.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hq538hfxem-{0}-y8l1kxazi5-y8l1kxazi5.gz"},"Patterns":null},"System.Transactions.Local.cig01jt23c.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Transactions.Local.cig01jt23c.wasm"},"Patterns":null},"System.Transactions.Local.cig01jt23c.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"uz6wr238mp-{0}-cig01jt23c-cig01jt23c.gz"},"Patterns":null},"System.Transactions.pl50n6qbg7.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Transactions.pl50n6qbg7.wasm"},"Patterns":null},"System.Transactions.pl50n6qbg7.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kmdzqqqt27-{0}-pl50n6qbg7-pl50n6qbg7.gz"},"Patterns":null},"System.ValueTuple.mj3r9p0pcw.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.ValueTuple.mj3r9p0pcw.wasm"},"Patterns":null},"System.ValueTuple.mj3r9p0pcw.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"dy6tcjmb9q-{0}-mj3r9p0pcw-mj3r9p0pcw.gz"},"Patterns":null},"System.Web.2a6wq9gv6d.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Web.2a6wq9gv6d.wasm"},"Patterns":null},"System.Web.2a6wq9gv6d.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"iok845swr0-{0}-2a6wq9gv6d-2a6wq9gv6d.gz"},"Patterns":null},"System.Web.HttpUtility.3jfxpyq4in.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm"},"Patterns":null},"System.Web.HttpUtility.3jfxpyq4in.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"pfi56k79hn-{0}-3jfxpyq4in-3jfxpyq4in.gz"},"Patterns":null},"System.Windows.bw79ix589z.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Windows.bw79ix589z.wasm"},"Patterns":null},"System.Windows.bw79ix589z.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tvvpa50077-{0}-bw79ix589z-bw79ix589z.gz"},"Patterns":null},"System.Xml.Linq.nvnhbwdsg6.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm"},"Patterns":null},"System.Xml.Linq.nvnhbwdsg6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"79deazooef-{0}-nvnhbwdsg6-nvnhbwdsg6.gz"},"Patterns":null},"System.Xml.ReaderWriter.szsdminork.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Xml.ReaderWriter.szsdminork.wasm"},"Patterns":null},"System.Xml.ReaderWriter.szsdminork.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kmp1cwjk7f-{0}-szsdminork-szsdminork.gz"},"Patterns":null},"System.Xml.Serialization.b9imguls9w.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Xml.Serialization.b9imguls9w.wasm"},"Patterns":null},"System.Xml.Serialization.b9imguls9w.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"cagt9idkdm-{0}-b9imguls9w-b9imguls9w.gz"},"Patterns":null},"System.Xml.XDocument.8hg6c0at0c.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm"},"Patterns":null},"System.Xml.XDocument.8hg6c0at0c.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"blwck2749u-{0}-8hg6c0at0c-8hg6c0at0c.gz"},"Patterns":null},"System.Xml.XmlDocument.isetn6xlxa.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm"},"Patterns":null},"System.Xml.XmlDocument.isetn6xlxa.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ww3wnv8b6s-{0}-isetn6xlxa-isetn6xlxa.gz"},"Patterns":null},"System.Xml.XmlSerializer.okgnp5v9bw.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm"},"Patterns":null},"System.Xml.XmlSerializer.okgnp5v9bw.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"qt3o35adbl-{0}-okgnp5v9bw-okgnp5v9bw.gz"},"Patterns":null},"System.Xml.XPath.11wk1hhnfk.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Xml.XPath.11wk1hhnfk.wasm"},"Patterns":null},"System.Xml.XPath.11wk1hhnfk.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"xo45czuveq-{0}-11wk1hhnfk-11wk1hhnfk.gz"},"Patterns":null},"System.Xml.XPath.XDocument.g7i5gd64yo.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm"},"Patterns":null},"System.Xml.XPath.XDocument.g7i5gd64yo.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gsr2zhdiud-{0}-g7i5gd64yo-g7i5gd64yo.gz"},"Patterns":null},"System.Xml.zjgi7nrlno.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/System.Xml.zjgi7nrlno.wasm"},"Patterns":null},"System.Xml.zjgi7nrlno.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ra6e7v46m5-{0}-zjgi7nrlno-zjgi7nrlno.gz"},"Patterns":null},"WindowsBase.wz82kkc1p3.wasm":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"_framework/WindowsBase.wz82kkc1p3.wasm"},"Patterns":null},"WindowsBase.wz82kkc1p3.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"10vfj5e8p2-{0}-wz82kkc1p3-wz82kkc1p3.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Layout":{"Children":{"ReconnectModal.razor.js":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"Layout/ReconnectModal.razor.js"},"Patterns":null},"ReconnectModal.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ug9ge1behf-{0}-ycbzh0sbjd-ycbzh0sbjd.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"_content":{"Children":{"Microsoft.DotNet.HotReload.WebAssembly.Browser":{"Children":{"Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js"},"Patterns":null}},"Asset":null,"Patterns":null},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"MudBlazor.min.js"},"Patterns":null},"MudBlazor.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"MudBlazor.min.js.map"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/OnProfNext/bin/Debug/net10.0/OnProfNext.deps.json b/OnProfNext/bin/Debug/net10.0/OnProfNext.deps.json new file mode 100644 index 0000000..2fca596 --- /dev/null +++ b/OnProfNext/bin/Debug/net10.0/OnProfNext.deps.json @@ -0,0 +1,126 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "OnProfNext/1.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Components.WebAssembly.Server": "10.0.5", + "OnProfNext.Client": "1.0.0" + }, + "runtime": { + "OnProfNext.dll": {} + } + }, + "Microsoft.AspNetCore.Components.WebAssembly/10.0.5": { + "dependencies": { + "Microsoft.JSInterop.WebAssembly": "10.0.5" + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Components.WebAssembly.dll": { + "assemblyVersion": "10.0.5.0", + "fileVersion": "10.0.526.15411" + } + } + }, + "Microsoft.AspNetCore.Components.WebAssembly.Server/10.0.5": { + "dependencies": { + "Microsoft.AspNetCore.Components.WebAssembly": "10.0.5" + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Components.WebAssembly.Server.dll": { + "assemblyVersion": "10.0.5.0", + "fileVersion": "10.0.526.15411" + } + } + }, + "Microsoft.DotNet.HotReload.WebAssembly.Browser/10.0.201": { + "runtime": { + "lib/net10.0/Microsoft.DotNet.HotReload.WebAssembly.Browser.dll": { + "assemblyVersion": "10.0.201.0", + "fileVersion": "10.2.126.15422" + } + } + }, + "Microsoft.JSInterop.WebAssembly/10.0.5": { + "runtime": { + "lib/net10.0/Microsoft.JSInterop.WebAssembly.dll": { + "assemblyVersion": "10.0.5.0", + "fileVersion": "10.0.526.15411" + } + } + }, + "MudBlazor/9.2.0": { + "runtime": { + "lib/net10.0/MudBlazor.dll": { + "assemblyVersion": "9.2.0.0", + "fileVersion": "9.2.0.0" + } + } + }, + "OnProfNext.Client/1.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Components.WebAssembly": "10.0.5", + "Microsoft.DotNet.HotReload.WebAssembly.Browser": "10.0.201", + "MudBlazor": "9.2.0" + }, + "runtime": { + "OnProfNext.Client.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "OnProfNext/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.WebAssembly/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fjmhjvZpYTJVl/sxpDStP8+fQ6XEG8r9iuhafuTCp2nAAGPcJhsSND58he9BOekbxs6nMv2OECUGwtWqHBGFcg==", + "path": "microsoft.aspnetcore.components.webassembly/10.0.5", + "hashPath": "microsoft.aspnetcore.components.webassembly.10.0.5.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components.WebAssembly.Server/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wDK4Yiuz9oq3LLO8ies4UzpRLGQ56WGHj099h0MzkFyU8YcaZJ9h76ZkBpcgJQPNECjxL0lXg4hQz2fhrt0qHQ==", + "path": "microsoft.aspnetcore.components.webassembly.server/10.0.5", + "hashPath": "microsoft.aspnetcore.components.webassembly.server.10.0.5.nupkg.sha512" + }, + "Microsoft.DotNet.HotReload.WebAssembly.Browser/10.0.201": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4EAMH3CqtVwVm7Sx4DnNtZj/J0b+A1YGcTnCL6prhQ8ZHlwbVtZ3RmSyJdi85mSnLl+u94aVr8fElRGkjZkKmw==", + "path": "microsoft.dotnet.hotreload.webassembly.browser/10.0.201", + "hashPath": "microsoft.dotnet.hotreload.webassembly.browser.10.0.201.nupkg.sha512" + }, + "Microsoft.JSInterop.WebAssembly/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9iva1I1opPJA1xMSGTNmbyLhyzw383l6StST9gebB/UEBrYuadzwsv7O3eKAhmJVsPUGy6wWo4SVUcfFnPNQXA==", + "path": "microsoft.jsinterop.webassembly/10.0.5", + "hashPath": "microsoft.jsinterop.webassembly.10.0.5.nupkg.sha512" + }, + "MudBlazor/9.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ckAndxv3to3CahczgLrqKdzhPV3750B7taqICSIAdKXoh0dSyqcUcjAI5YlE5s7NB7C+NdpkfWpK+dKQwxvUOA==", + "path": "mudblazor/9.2.0", + "hashPath": "mudblazor.9.2.0.nupkg.sha512" + }, + "OnProfNext.Client/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/OnProfNext/bin/Debug/net10.0/OnProfNext.dll b/OnProfNext/bin/Debug/net10.0/OnProfNext.dll new file mode 100644 index 0000000..5b47cc5 Binary files /dev/null and b/OnProfNext/bin/Debug/net10.0/OnProfNext.dll differ diff --git a/OnProfNext/bin/Debug/net10.0/OnProfNext.exe b/OnProfNext/bin/Debug/net10.0/OnProfNext.exe new file mode 100644 index 0000000..b4571cc Binary files /dev/null and b/OnProfNext/bin/Debug/net10.0/OnProfNext.exe differ diff --git a/OnProfNext/bin/Debug/net10.0/OnProfNext.pdb b/OnProfNext/bin/Debug/net10.0/OnProfNext.pdb new file mode 100644 index 0000000..c9ec750 Binary files /dev/null and b/OnProfNext/bin/Debug/net10.0/OnProfNext.pdb differ diff --git a/OnProfNext/bin/Debug/net10.0/OnProfNext.runtimeconfig.json b/OnProfNext/bin/Debug/net10.0/OnProfNext.runtimeconfig.json new file mode 100644 index 0000000..8b09022 --- /dev/null +++ b/OnProfNext/bin/Debug/net10.0/OnProfNext.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net10.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "10.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "10.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false, + "Microsoft.AspNetCore.Components.Endpoints.NavigationManager.DisableThrowNavigationException": true + } + } +} \ No newline at end of file diff --git a/OnProfNext/bin/Debug/net10.0/OnProfNext.staticwebassets.endpoints.json b/OnProfNext/bin/Debug/net10.0/OnProfNext.staticwebassets.endpoints.json new file mode 100644 index 0000000..2471fb9 --- /dev/null +++ b/OnProfNext/bin/Debug/net10.0/OnProfNext.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"Layout/ReconnectModal.razor.js","AssetFile":"Layout/ReconnectModal.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2746"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4="},{"Name":"script-type","Value":"module"}]},{"Route":"Layout/ReconnectModal.razor.js","AssetFile":"Layout/ReconnectModal.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001269035533"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"787"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4="},{"Name":"original-resource","Value":"\"QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4=\""},{"Name":"script-type","Value":"module"}]},{"Route":"Layout/ReconnectModal.razor.js.gz","AssetFile":"Layout/ReconnectModal.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"787"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA="}]},{"Route":"Layout/ReconnectModal.ycbzh0sbjd.razor.js","AssetFile":"Layout/ReconnectModal.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2746"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ycbzh0sbjd"},{"Name":"integrity","Value":"sha256-QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4="},{"Name":"label","Value":"Layout/ReconnectModal.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"Layout/ReconnectModal.ycbzh0sbjd.razor.js","AssetFile":"Layout/ReconnectModal.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001269035533"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"787"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ycbzh0sbjd"},{"Name":"integrity","Value":"sha256-QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4="},{"Name":"label","Value":"Layout/ReconnectModal.razor.js"},{"Name":"original-resource","Value":"\"QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4=\""},{"Name":"script-type","Value":"module"}]},{"Route":"Layout/ReconnectModal.ycbzh0sbjd.razor.js.gz","AssetFile":"Layout/ReconnectModal.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"787"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ycbzh0sbjd"},{"Name":"integrity","Value":"sha256-rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA="},{"Name":"label","Value":"Layout/ReconnectModal.razor.js.gz"}]},{"Route":"OnProfNext.0i02oychrm.modules.json","AssetFile":"OnProfNext.modules.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.008849557522"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"112"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"1KA3582Q2/tA0+cdRJztNonDmZZ3aFTsIlXYblwuK8w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0i02oychrm"},{"Name":"integrity","Value":"sha256-CE+c7ulk9jNoFA+3UHSG2yOt3rfyHQQDAmYZ9fTpBe0="},{"Name":"label","Value":"OnProfNext.modules.json"},{"Name":"original-resource","Value":"\"CE+c7ulk9jNoFA+3UHSG2yOt3rfyHQQDAmYZ9fTpBe0=\""}]},{"Route":"OnProfNext.0i02oychrm.modules.json","AssetFile":"OnProfNext.modules.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"137"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"CE+c7ulk9jNoFA+3UHSG2yOt3rfyHQQDAmYZ9fTpBe0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0i02oychrm"},{"Name":"integrity","Value":"sha256-CE+c7ulk9jNoFA+3UHSG2yOt3rfyHQQDAmYZ9fTpBe0="},{"Name":"label","Value":"OnProfNext.modules.json"}]},{"Route":"OnProfNext.0i02oychrm.modules.json.gz","AssetFile":"OnProfNext.modules.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"112"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"1KA3582Q2/tA0+cdRJztNonDmZZ3aFTsIlXYblwuK8w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0i02oychrm"},{"Name":"integrity","Value":"sha256-1KA3582Q2/tA0+cdRJztNonDmZZ3aFTsIlXYblwuK8w="},{"Name":"label","Value":"OnProfNext.modules.json.gz"}]},{"Route":"OnProfNext.Client.bundle.scp.css","AssetFile":"OnProfNext.Client.uzl7ca9j9c.bundle.scp.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000690131125"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1448"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4="},{"Name":"original-resource","Value":"\"5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4=\""}]},{"Route":"OnProfNext.Client.bundle.scp.css","AssetFile":"OnProfNext.Client.uzl7ca9j9c.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6834"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4="}]},{"Route":"OnProfNext.Client.bundle.scp.css.gz","AssetFile":"OnProfNext.Client.uzl7ca9j9c.bundle.scp.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1448"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o="}]},{"Route":"OnProfNext.Client.uzl7ca9j9c.bundle.scp.css","AssetFile":"OnProfNext.Client.uzl7ca9j9c.bundle.scp.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000690131125"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1448"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uzl7ca9j9c"},{"Name":"integrity","Value":"sha256-5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4="},{"Name":"label","Value":"OnProfNext.Client.bundle.scp.css"},{"Name":"original-resource","Value":"\"5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4=\""}]},{"Route":"OnProfNext.Client.uzl7ca9j9c.bundle.scp.css","AssetFile":"OnProfNext.Client.uzl7ca9j9c.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6834"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uzl7ca9j9c"},{"Name":"integrity","Value":"sha256-5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4="},{"Name":"label","Value":"OnProfNext.Client.bundle.scp.css"}]},{"Route":"OnProfNext.Client.uzl7ca9j9c.bundle.scp.css.gz","AssetFile":"OnProfNext.Client.uzl7ca9j9c.bundle.scp.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1448"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uzl7ca9j9c"},{"Name":"integrity","Value":"sha256-UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o="},{"Name":"label","Value":"OnProfNext.Client.bundle.scp.css.gz"}]},{"Route":"OnProfNext.modules.json","AssetFile":"OnProfNext.modules.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.008849557522"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"112"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"1KA3582Q2/tA0+cdRJztNonDmZZ3aFTsIlXYblwuK8w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CE+c7ulk9jNoFA+3UHSG2yOt3rfyHQQDAmYZ9fTpBe0="},{"Name":"original-resource","Value":"\"CE+c7ulk9jNoFA+3UHSG2yOt3rfyHQQDAmYZ9fTpBe0=\""}]},{"Route":"OnProfNext.modules.json","AssetFile":"OnProfNext.modules.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"137"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"CE+c7ulk9jNoFA+3UHSG2yOt3rfyHQQDAmYZ9fTpBe0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CE+c7ulk9jNoFA+3UHSG2yOt3rfyHQQDAmYZ9fTpBe0="}]},{"Route":"OnProfNext.modules.json.gz","AssetFile":"OnProfNext.modules.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"112"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"1KA3582Q2/tA0+cdRJztNonDmZZ3aFTsIlXYblwuK8w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1KA3582Q2/tA0+cdRJztNonDmZZ3aFTsIlXYblwuK8w="}]},{"Route":"OnProfNext.sif51eb7xk.styles.css","AssetFile":"OnProfNext.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.012658227848"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"78"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"e1xci9FnhjZKLfRTggJi4ZGIrW3ZuGNWybwpVURsUzc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Link","Value":"; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sif51eb7xk"},{"Name":"integrity","Value":"sha256-LBlTGafUdF+7cyLWp5h9/a1ppSj16g8eniJ/4XVjv84="},{"Name":"label","Value":"OnProfNext.styles.css"},{"Name":"original-resource","Value":"\"LBlTGafUdF+7cyLWp5h9/a1ppSj16g8eniJ/4XVjv84=\""}]},{"Route":"OnProfNext.sif51eb7xk.styles.css","AssetFile":"OnProfNext.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"58"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LBlTGafUdF+7cyLWp5h9/a1ppSj16g8eniJ/4XVjv84=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Link","Value":"; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sif51eb7xk"},{"Name":"integrity","Value":"sha256-LBlTGafUdF+7cyLWp5h9/a1ppSj16g8eniJ/4XVjv84="},{"Name":"label","Value":"OnProfNext.styles.css"}]},{"Route":"OnProfNext.sif51eb7xk.styles.css.gz","AssetFile":"OnProfNext.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"78"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"e1xci9FnhjZKLfRTggJi4ZGIrW3ZuGNWybwpVURsUzc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sif51eb7xk"},{"Name":"integrity","Value":"sha256-e1xci9FnhjZKLfRTggJi4ZGIrW3ZuGNWybwpVURsUzc="},{"Name":"label","Value":"OnProfNext.styles.css.gz"}]},{"Route":"OnProfNext.styles.css","AssetFile":"OnProfNext.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.012658227848"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"78"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"e1xci9FnhjZKLfRTggJi4ZGIrW3ZuGNWybwpVURsUzc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Link","Value":"; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LBlTGafUdF+7cyLWp5h9/a1ppSj16g8eniJ/4XVjv84="},{"Name":"original-resource","Value":"\"LBlTGafUdF+7cyLWp5h9/a1ppSj16g8eniJ/4XVjv84=\""}]},{"Route":"OnProfNext.styles.css","AssetFile":"OnProfNext.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"58"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LBlTGafUdF+7cyLWp5h9/a1ppSj16g8eniJ/4XVjv84=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Link","Value":"; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LBlTGafUdF+7cyLWp5h9/a1ppSj16g8eniJ/4XVjv84="}]},{"Route":"OnProfNext.styles.css.gz","AssetFile":"OnProfNext.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"78"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"e1xci9FnhjZKLfRTggJi4ZGIrW3ZuGNWybwpVURsUzc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-e1xci9FnhjZKLfRTggJi4ZGIrW3ZuGNWybwpVURsUzc="}]},{"Route":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js","AssetFile":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1862"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"A8e6zZwhOqf7lDQqbbCYcAUv4wGE9aQxOo4WyYxR//0=\""},{"Name":"Last-Modified","Value":"Wed, 04 Mar 2026 01:26:18 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"dependency-group","Value":"js-initializer"},{"Name":"fingerprint","Value":"99zm1jdh75"},{"Name":"integrity","Value":"sha256-A8e6zZwhOqf7lDQqbbCYcAUv4wGE9aQxOo4WyYxR//0="},{"Name":"label","Value":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js.gz","AssetFile":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"696"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"g7DwAhdgl0oKXmpsFbRzF03rilX1aNUWw1Xnn8Loe4k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-g7DwAhdgl0oKXmpsFbRzF03rilX1aNUWw1Xnn8Loe4k="}]},{"Route":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js","AssetFile":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1862"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"A8e6zZwhOqf7lDQqbbCYcAUv4wGE9aQxOo4WyYxR//0=\""},{"Name":"Last-Modified","Value":"Wed, 04 Mar 2026 01:26:18 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"dependency-group","Value":"js-initializer"},{"Name":"integrity","Value":"sha256-A8e6zZwhOqf7lDQqbbCYcAUv4wGE9aQxOo4WyYxR//0="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js","AssetFile":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001434720230"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"696"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"g7DwAhdgl0oKXmpsFbRzF03rilX1aNUWw1Xnn8Loe4k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"dependency-group","Value":"js-initializer"},{"Name":"integrity","Value":"sha256-A8e6zZwhOqf7lDQqbbCYcAUv4wGE9aQxOo4WyYxR//0="},{"Name":"original-resource","Value":"\"A8e6zZwhOqf7lDQqbbCYcAUv4wGE9aQxOo4WyYxR//0=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/MudBlazor/MudBlazor.min.8dleymzaev.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"64944"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"VHJcGholtUHNobadpTrhyE/VCi90X4p12vYD83bzI04=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:27 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8dleymzaev"},{"Name":"integrity","Value":"sha256-VHJcGholtUHNobadpTrhyE/VCi90X4p12vYD83bzI04="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js"}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"607258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"kBmVfU2BqUZUT8HPz7NUnkObDjxYKbSWXF5q33paHM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kBmVfU2BqUZUT8HPz7NUnkObDjxYKbSWXF5q33paHM0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015266010"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65504"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"3NW/7qanjyyKjmM6tVvxaZsoz0x42qzljiuPWKrKuEA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kBmVfU2BqUZUT8HPz7NUnkObDjxYKbSWXF5q33paHM0="},{"Name":"original-resource","Value":"\"kBmVfU2BqUZUT8HPz7NUnkObDjxYKbSWXF5q33paHM0=\""}]},{"Route":"_content/MudBlazor/MudBlazor.min.css.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65504"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"3NW/7qanjyyKjmM6tVvxaZsoz0x42qzljiuPWKrKuEA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3NW/7qanjyyKjmM6tVvxaZsoz0x42qzljiuPWKrKuEA="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"64944"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"VHJcGholtUHNobadpTrhyE/VCi90X4p12vYD83bzI04=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VHJcGholtUHNobadpTrhyE/VCi90X4p12vYD83bzI04="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000063047727"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15860"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ydhcmXIIRl5uGo/vdFRnFzlF8jEiRYezMmXg9Omen8s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VHJcGholtUHNobadpTrhyE/VCi90X4p12vYD83bzI04="},{"Name":"original-resource","Value":"\"VHJcGholtUHNobadpTrhyE/VCi90X4p12vYD83bzI04=\""}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.0ykner63ol.map","AssetFile":"_content/MudBlazor/MudBlazor.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"236222"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"yAPYxO0UcV5YvjmoVWBh8O+tMbwO9AMZv1RMPdpxE0Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:27 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0ykner63ol"},{"Name":"integrity","Value":"sha256-yAPYxO0UcV5YvjmoVWBh8O+tMbwO9AMZv1RMPdpxE0Q="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js.map"}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15860"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ydhcmXIIRl5uGo/vdFRnFzlF8jEiRYezMmXg9Omen8s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ydhcmXIIRl5uGo/vdFRnFzlF8jEiRYezMmXg9Omen8s="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.map","AssetFile":"_content/MudBlazor/MudBlazor.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"236222"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"yAPYxO0UcV5YvjmoVWBh8O+tMbwO9AMZv1RMPdpxE0Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yAPYxO0UcV5YvjmoVWBh8O+tMbwO9AMZv1RMPdpxE0Q="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.map","AssetFile":"_content/MudBlazor/MudBlazor.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000019868471"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"50330"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YnlPux4qBuGLWhihs+JuLReInvzFXtqDTWrJOmgWE5Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yAPYxO0UcV5YvjmoVWBh8O+tMbwO9AMZv1RMPdpxE0Q="},{"Name":"original-resource","Value":"\"yAPYxO0UcV5YvjmoVWBh8O+tMbwO9AMZv1RMPdpxE0Q=\""}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.map.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"50330"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YnlPux4qBuGLWhihs+JuLReInvzFXtqDTWrJOmgWE5Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YnlPux4qBuGLWhihs+JuLReInvzFXtqDTWrJOmgWE5Y="}]},{"Route":"_content/MudBlazor/MudBlazor.min.o2b68hjqqd.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"607258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"kBmVfU2BqUZUT8HPz7NUnkObDjxYKbSWXF5q33paHM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:28 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"o2b68hjqqd"},{"Name":"integrity","Value":"sha256-kBmVfU2BqUZUT8HPz7NUnkObDjxYKbSWXF5q33paHM0="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.css"}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"45333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"roqc1km2rj"},{"Name":"integrity","Value":"sha256-G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Authorization.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000050676532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"roqc1km2rj"},{"Name":"integrity","Value":"sha256-G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Authorization.wasm"},{"Name":"original-resource","Value":"\"G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"roqc1km2rj"},{"Name":"integrity","Value":"sha256-6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Authorization.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"45333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc="}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000050676532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc="},{"Name":"original-resource","Value":"\"G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000057547333"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17376"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ="},{"Name":"original-resource","Value":"\"sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17376"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zrueb40r85"},{"Name":"integrity","Value":"sha256-sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Forms.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000057547333"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17376"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zrueb40r85"},{"Name":"integrity","Value":"sha256-sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Forms.wasm"},{"Name":"original-resource","Value":"\"sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17376"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zrueb40r85"},{"Name":"integrity","Value":"sha256-FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Forms.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"178965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g5qdp1mxha"},{"Name":"integrity","Value":"sha256-XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Web.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013971749"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"71572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g5qdp1mxha"},{"Name":"integrity","Value":"sha256-XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Web.wasm"},{"Name":"original-resource","Value":"\"XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"71572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g5qdp1mxha"},{"Name":"integrity","Value":"sha256-Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Web.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"178965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013971749"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"71572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU="},{"Name":"original-resource","Value":"\"XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"71572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"155925"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9mjwvs1qyp"},{"Name":"integrity","Value":"sha256-r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000016249330"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"61540"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9mjwvs1qyp"},{"Name":"integrity","Value":"sha256-r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm"},{"Name":"original-resource","Value":"\"r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"61540"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9mjwvs1qyp"},{"Name":"integrity","Value":"sha256-WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"155925"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000016249330"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"61540"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4="},{"Name":"original-resource","Value":"\"r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"61540"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"388885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uddsvpv1sv"},{"Name":"integrity","Value":"sha256-wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006481638"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"154281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uddsvpv1sv"},{"Name":"integrity","Value":"sha256-wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.wasm"},{"Name":"original-resource","Value":"\"wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"154281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uddsvpv1sv"},{"Name":"integrity","Value":"sha256-1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"388885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006481638"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"154281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4="},{"Name":"original-resource","Value":"\"wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"154281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk="}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m3mxap0jif"},{"Name":"integrity","Value":"sha256-3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Metadata.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000405350628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2466"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m3mxap0jif"},{"Name":"integrity","Value":"sha256-3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Metadata.wasm"},{"Name":"original-resource","Value":"\"3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2466"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m3mxap0jif"},{"Name":"integrity","Value":"sha256-NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Metadata.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ="}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000405350628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2466"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ="},{"Name":"original-resource","Value":"\"3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2466"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU="}]},{"Route":"_framework/Microsoft.CSharp.452y5fjxmv.wasm","AssetFile":"_framework/Microsoft.CSharp.452y5fjxmv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"301333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"452y5fjxmv"},{"Name":"integrity","Value":"sha256-qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g="},{"Name":"label","Value":"_framework/Microsoft.CSharp.wasm"}]},{"Route":"_framework/Microsoft.CSharp.452y5fjxmv.wasm","AssetFile":"_framework/Microsoft.CSharp.452y5fjxmv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000007583628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"131862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"452y5fjxmv"},{"Name":"integrity","Value":"sha256-qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g="},{"Name":"label","Value":"_framework/Microsoft.CSharp.wasm"},{"Name":"original-resource","Value":"\"qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g=\""}]},{"Route":"_framework/Microsoft.CSharp.452y5fjxmv.wasm.gz","AssetFile":"_framework/Microsoft.CSharp.452y5fjxmv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"131862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"452y5fjxmv"},{"Name":"integrity","Value":"sha256-SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU="},{"Name":"label","Value":"_framework/Microsoft.CSharp.wasm.gz"}]},{"Route":"_framework/Microsoft.CSharp.wasm","AssetFile":"_framework/Microsoft.CSharp.452y5fjxmv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"301333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g="}]},{"Route":"_framework/Microsoft.CSharp.wasm","AssetFile":"_framework/Microsoft.CSharp.452y5fjxmv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000007583628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"131862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g="},{"Name":"original-resource","Value":"\"qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g=\""}]},{"Route":"_framework/Microsoft.CSharp.wasm.gz","AssetFile":"_framework/Microsoft.CSharp.452y5fjxmv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"131862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU="}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm","AssetFile":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"56085"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrhwg3a64c"},{"Name":"integrity","Value":"sha256-7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU="},{"Name":"label","Value":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm"}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm","AssetFile":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040950041"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrhwg3a64c"},{"Name":"integrity","Value":"sha256-7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU="},{"Name":"label","Value":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm"},{"Name":"original-resource","Value":"\"7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU=\""}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm.gz","AssetFile":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrhwg3a64c"},{"Name":"integrity","Value":"sha256-2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw="},{"Name":"label","Value":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz"}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm","AssetFile":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"56085"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU="}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm","AssetFile":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040950041"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU="},{"Name":"original-resource","Value":"\"7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU=\""}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz","AssetFile":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"thew1o6jcx"},{"Name":"integrity","Value":"sha256-YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000123502532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8096"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"thew1o6jcx"},{"Name":"integrity","Value":"sha256-YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm"},{"Name":"original-resource","Value":"\"YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8096"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"thew1o6jcx"},{"Name":"integrity","Value":"sha256-TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000123502532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8096"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0="},{"Name":"original-resource","Value":"\"YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8096"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"33045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7o70008j8o"},{"Name":"integrity","Value":"sha256-KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Binder.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000070556692"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14172"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7o70008j8o"},{"Name":"integrity","Value":"sha256-KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Binder.wasm"},{"Name":"original-resource","Value":"\"KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14172"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7o70008j8o"},{"Name":"integrity","Value":"sha256-c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Binder.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"33045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000070556692"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14172"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70="},{"Name":"original-resource","Value":"\"KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14172"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ouivavlhyy"},{"Name":"integrity","Value":"sha256-MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000125219133"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7985"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ouivavlhyy"},{"Name":"integrity","Value":"sha256-MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm"},{"Name":"original-resource","Value":"\"MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7985"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ouivavlhyy"},{"Name":"integrity","Value":"sha256-a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000125219133"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7985"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8="},{"Name":"original-resource","Value":"\"MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7985"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"17685"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"giv4t23za9"},{"Name":"integrity","Value":"sha256-iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Json.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000127177922"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"giv4t23za9"},{"Name":"integrity","Value":"sha256-iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Json.wasm"},{"Name":"original-resource","Value":"\"iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"giv4t23za9"},{"Name":"integrity","Value":"sha256-kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Json.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"17685"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000127177922"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg="},{"Name":"original-resource","Value":"\"iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fgwnqtu7qk"},{"Name":"integrity","Value":"sha256-D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000064616180"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15475"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fgwnqtu7qk"},{"Name":"integrity","Value":"sha256-D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.wasm"},{"Name":"original-resource","Value":"\"D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15475"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fgwnqtu7qk"},{"Name":"integrity","Value":"sha256-bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000064616180"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15475"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY="},{"Name":"original-resource","Value":"\"D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15475"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0="}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ud13mwbta3"},{"Name":"integrity","Value":"sha256-PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000046012976"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ud13mwbta3"},{"Name":"integrity","Value":"sha256-PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm"},{"Name":"original-resource","Value":"\"PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM=\""}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ud13mwbta3"},{"Name":"integrity","Value":"sha256-UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM="}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000046012976"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM="},{"Name":"original-resource","Value":"\"PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM=\""}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU="}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"85269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vs620n44bv"},{"Name":"integrity","Value":"sha256-EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.wasm"}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000027365771"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"36541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vs620n44bv"},{"Name":"integrity","Value":"sha256-EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.wasm"},{"Name":"original-resource","Value":"\"EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ=\""}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"36541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vs620n44bv"},{"Name":"integrity","Value":"sha256-KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"85269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ="}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000027365771"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"36541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ="},{"Name":"original-resource","Value":"\"EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ=\""}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"36541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA="}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"20757"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v59ymogeuz"},{"Name":"integrity","Value":"sha256-4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000116468670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8585"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v59ymogeuz"},{"Name":"integrity","Value":"sha256-4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm"},{"Name":"original-resource","Value":"\"4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA=\""}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8585"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v59ymogeuz"},{"Name":"integrity","Value":"sha256-q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"20757"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA="}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000116468670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8585"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA="},{"Name":"original-resource","Value":"\"4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA=\""}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8585"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4="}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"25877"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jnogfbng3i"},{"Name":"integrity","Value":"sha256-MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000082706145"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12090"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jnogfbng3i"},{"Name":"integrity","Value":"sha256-MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.wasm"},{"Name":"original-resource","Value":"\"MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo=\""}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12090"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jnogfbng3i"},{"Name":"integrity","Value":"sha256-UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"25877"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo="}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000082706145"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12090"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo="},{"Name":"original-resource","Value":"\"MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo=\""}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12090"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk="}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ssv83rveyv"},{"Name":"integrity","Value":"sha256-/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000176897223"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5652"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ssv83rveyv"},{"Name":"integrity","Value":"sha256-/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm"},{"Name":"original-resource","Value":"\"/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8=\""}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5652"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ssv83rveyv"},{"Name":"integrity","Value":"sha256-kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8="}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000176897223"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5652"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8="},{"Name":"original-resource","Value":"\"/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8=\""}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5652"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4="}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"35093"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8gz29xpyh3"},{"Name":"integrity","Value":"sha256-CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm"}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060793969"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16448"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8gz29xpyh3"},{"Name":"integrity","Value":"sha256-CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm"},{"Name":"original-resource","Value":"\"CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0=\""}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16448"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8gz29xpyh3"},{"Name":"integrity","Value":"sha256-RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"35093"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0="}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060793969"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16448"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0="},{"Name":"original-resource","Value":"\"CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0=\""}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16448"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo="}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm","AssetFile":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozuva4e3vv"},{"Name":"integrity","Value":"sha256-pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm"}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm","AssetFile":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000058941412"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozuva4e3vv"},{"Name":"integrity","Value":"sha256-pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm"},{"Name":"original-resource","Value":"\"pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI=\""}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozuva4e3vv"},{"Name":"integrity","Value":"sha256-QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm","AssetFile":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI="}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm","AssetFile":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000058941412"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI="},{"Name":"original-resource","Value":"\"pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI=\""}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY="}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"8981"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6jkolue1ka"},{"Name":"integrity","Value":"sha256-8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000261164795"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6jkolue1ka"},{"Name":"integrity","Value":"sha256-8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm"},{"Name":"original-resource","Value":"\"8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4=\""}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6jkolue1ka"},{"Name":"integrity","Value":"sha256-5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"8981"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4="}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000261164795"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4="},{"Name":"original-resource","Value":"\"8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4=\""}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8="}]},{"Route":"_framework/Microsoft.Extensions.Localization.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"21269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs="}]},{"Route":"_framework/Microsoft.Extensions.Localization.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000100050025"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9994"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs="},{"Name":"original-resource","Value":"\"L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs=\""}]},{"Route":"_framework/Microsoft.Extensions.Localization.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9994"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM="}]},{"Route":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"21269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xcslyy3nju"},{"Name":"integrity","Value":"sha256-L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000100050025"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9994"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xcslyy3nju"},{"Name":"integrity","Value":"sha256-L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.wasm"},{"Name":"original-resource","Value":"\"L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs=\""}]},{"Route":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9994"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xcslyy3nju"},{"Name":"integrity","Value":"sha256-LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"56597"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1q3x7vre4l"},{"Name":"integrity","Value":"sha256-5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040832993"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1q3x7vre4l"},{"Name":"integrity","Value":"sha256-5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm"},{"Name":"original-resource","Value":"\"5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI=\""}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1q3x7vre4l"},{"Name":"integrity","Value":"sha256-wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"56597"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI="}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040832993"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI="},{"Name":"original-resource","Value":"\"5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI=\""}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo="}]},{"Route":"_framework/Microsoft.Extensions.Logging.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"41237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis="}]},{"Route":"_framework/Microsoft.Extensions.Logging.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053708577"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18618"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis="},{"Name":"original-resource","Value":"\"7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis=\""}]},{"Route":"_framework/Microsoft.Extensions.Logging.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18618"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q="}]},{"Route":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"41237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y4ydx3rk2c"},{"Name":"integrity","Value":"sha256-7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053708577"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18618"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y4ydx3rk2c"},{"Name":"integrity","Value":"sha256-7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.wasm"},{"Name":"original-resource","Value":"\"7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis=\""}]},{"Route":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18618"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y4ydx3rk2c"},{"Name":"integrity","Value":"sha256-CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55061"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2rz5zbidnd"},{"Name":"integrity","Value":"sha256-PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000042529664"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23512"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2rz5zbidnd"},{"Name":"integrity","Value":"sha256-PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.wasm"},{"Name":"original-resource","Value":"\"PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY=\""}]},{"Route":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23512"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2rz5zbidnd"},{"Name":"integrity","Value":"sha256-nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U="}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000196001568"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U="},{"Name":"original-resource","Value":"\"652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U=\""}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I="}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zmb03w0weu"},{"Name":"integrity","Value":"sha256-652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000196001568"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zmb03w0weu"},{"Name":"integrity","Value":"sha256-652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm"},{"Name":"original-resource","Value":"\"652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U=\""}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zmb03w0weu"},{"Name":"integrity","Value":"sha256-i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Options.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"55061"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY="}]},{"Route":"_framework/Microsoft.Extensions.Options.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000042529664"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23512"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY="},{"Name":"original-resource","Value":"\"PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY=\""}]},{"Route":"_framework/Microsoft.Extensions.Options.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23512"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4="}]},{"Route":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm","AssetFile":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bd164v6l3f"},{"Name":"integrity","Value":"sha256-b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Primitives.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm","AssetFile":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000065582371"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15247"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bd164v6l3f"},{"Name":"integrity","Value":"sha256-b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Primitives.wasm"},{"Name":"original-resource","Value":"\"b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo=\""}]},{"Route":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15247"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bd164v6l3f"},{"Name":"integrity","Value":"sha256-WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Primitives.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Primitives.wasm","AssetFile":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo="}]},{"Route":"_framework/Microsoft.Extensions.Primitives.wasm","AssetFile":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000065582371"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15247"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo="},{"Name":"original-resource","Value":"\"b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo=\""}]},{"Route":"_framework/Microsoft.Extensions.Primitives.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15247"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8="}]},{"Route":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm","AssetFile":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"33045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r1sv3m5lsf"},{"Name":"integrity","Value":"sha256-QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Validation.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm","AssetFile":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000069232899"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14443"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r1sv3m5lsf"},{"Name":"integrity","Value":"sha256-QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Validation.wasm"},{"Name":"original-resource","Value":"\"QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk=\""}]},{"Route":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14443"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r1sv3m5lsf"},{"Name":"integrity","Value":"sha256-4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Validation.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Validation.wasm","AssetFile":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"33045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk="}]},{"Route":"_framework/Microsoft.Extensions.Validation.wasm","AssetFile":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000069232899"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14443"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk="},{"Name":"original-resource","Value":"\"QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk=\""}]},{"Route":"_framework/Microsoft.Extensions.Validation.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14443"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0="}]},{"Route":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm","AssetFile":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"64789"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1r0ampr2q1"},{"Name":"integrity","Value":"sha256-TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.wasm"}]},{"Route":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm","AssetFile":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000036331928"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"27523"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1r0ampr2q1"},{"Name":"integrity","Value":"sha256-TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.wasm"},{"Name":"original-resource","Value":"\"TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA=\""}]},{"Route":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm.gz","AssetFile":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"27523"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1r0ampr2q1"},{"Name":"integrity","Value":"sha256-5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.wasm.gz"}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm","AssetFile":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"14613"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oz8fkrrrd6"},{"Name":"integrity","Value":"sha256-vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.WebAssembly.wasm"}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm","AssetFile":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000145730108"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oz8fkrrrd6"},{"Name":"integrity","Value":"sha256-vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.WebAssembly.wasm"},{"Name":"original-resource","Value":"\"vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU=\""}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm.gz","AssetFile":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oz8fkrrrd6"},{"Name":"integrity","Value":"sha256-50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.WebAssembly.wasm.gz"}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.wasm","AssetFile":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"14613"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU="}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.wasm","AssetFile":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000145730108"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU="},{"Name":"original-resource","Value":"\"vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU=\""}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.wasm.gz","AssetFile":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA="}]},{"Route":"_framework/Microsoft.JSInterop.wasm","AssetFile":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"64789"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA="}]},{"Route":"_framework/Microsoft.JSInterop.wasm","AssetFile":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000036331928"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"27523"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA="},{"Name":"original-resource","Value":"\"TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA=\""}]},{"Route":"_framework/Microsoft.JSInterop.wasm.gz","AssetFile":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"27523"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0="}]},{"Route":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm","AssetFile":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"91iw3j3d9p"},{"Name":"integrity","Value":"sha256-TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.wasm"}]},{"Route":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm","AssetFile":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000349162011"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2863"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"91iw3j3d9p"},{"Name":"integrity","Value":"sha256-TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.wasm"},{"Name":"original-resource","Value":"\"TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM=\""}]},{"Route":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm.gz","AssetFile":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2863"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"91iw3j3d9p"},{"Name":"integrity","Value":"sha256-O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.wasm.gz"}]},{"Route":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm","AssetFile":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"418581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"re3geseai5"},{"Name":"integrity","Value":"sha256-vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.Core.wasm"}]},{"Route":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm","AssetFile":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005991109"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"166913"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"re3geseai5"},{"Name":"integrity","Value":"sha256-vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.Core.wasm"},{"Name":"original-resource","Value":"\"vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0=\""}]},{"Route":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm.gz","AssetFile":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"166913"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"re3geseai5"},{"Name":"integrity","Value":"sha256-09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.Core.wasm.gz"}]},{"Route":"_framework/Microsoft.VisualBasic.Core.wasm","AssetFile":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"418581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0="}]},{"Route":"_framework/Microsoft.VisualBasic.Core.wasm","AssetFile":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005991109"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"166913"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0="},{"Name":"original-resource","Value":"\"vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0=\""}]},{"Route":"_framework/Microsoft.VisualBasic.Core.wasm.gz","AssetFile":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"166913"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc="}]},{"Route":"_framework/Microsoft.VisualBasic.wasm","AssetFile":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM="}]},{"Route":"_framework/Microsoft.VisualBasic.wasm","AssetFile":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000349162011"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2863"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM="},{"Name":"original-resource","Value":"\"TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM=\""}]},{"Route":"_framework/Microsoft.VisualBasic.wasm.gz","AssetFile":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2863"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as="}]},{"Route":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm","AssetFile":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mjytoh92q"},{"Name":"integrity","Value":"sha256-NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM="},{"Name":"label","Value":"_framework/Microsoft.Win32.Primitives.wasm"}]},{"Route":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm","AssetFile":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000451059991"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2216"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mjytoh92q"},{"Name":"integrity","Value":"sha256-NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM="},{"Name":"label","Value":"_framework/Microsoft.Win32.Primitives.wasm"},{"Name":"original-resource","Value":"\"NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM=\""}]},{"Route":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm.gz","AssetFile":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2216"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mjytoh92q"},{"Name":"integrity","Value":"sha256-JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As="},{"Name":"label","Value":"_framework/Microsoft.Win32.Primitives.wasm.gz"}]},{"Route":"_framework/Microsoft.Win32.Primitives.wasm","AssetFile":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM="}]},{"Route":"_framework/Microsoft.Win32.Primitives.wasm","AssetFile":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000451059991"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2216"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM="},{"Name":"original-resource","Value":"\"NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM=\""}]},{"Route":"_framework/Microsoft.Win32.Primitives.wasm.gz","AssetFile":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2216"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As="}]},{"Route":"_framework/Microsoft.Win32.Registry.wasm","AssetFile":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU="}]},{"Route":"_framework/Microsoft.Win32.Registry.wasm","AssetFile":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000109733348"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9112"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU="},{"Name":"original-resource","Value":"\"sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU=\""}]},{"Route":"_framework/Microsoft.Win32.Registry.wasm.gz","AssetFile":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9112"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk="}]},{"Route":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm","AssetFile":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yz8nt3ycsq"},{"Name":"integrity","Value":"sha256-sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU="},{"Name":"label","Value":"_framework/Microsoft.Win32.Registry.wasm"}]},{"Route":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm","AssetFile":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000109733348"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9112"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yz8nt3ycsq"},{"Name":"integrity","Value":"sha256-sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU="},{"Name":"label","Value":"_framework/Microsoft.Win32.Registry.wasm"},{"Name":"original-resource","Value":"\"sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU=\""}]},{"Route":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm.gz","AssetFile":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9112"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yz8nt3ycsq"},{"Name":"integrity","Value":"sha256-gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk="},{"Name":"label","Value":"_framework/Microsoft.Win32.Registry.wasm.gz"}]},{"Route":"_framework/MudBlazor.k6079czmkm.wasm","AssetFile":"_framework/MudBlazor.k6079czmkm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10119449"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6079czmkm"},{"Name":"integrity","Value":"sha256-rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI="},{"Name":"label","Value":"_framework/MudBlazor.wasm"}]},{"Route":"_framework/MudBlazor.k6079czmkm.wasm","AssetFile":"_framework/MudBlazor.k6079czmkm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000444516"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2249638"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6079czmkm"},{"Name":"integrity","Value":"sha256-rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI="},{"Name":"label","Value":"_framework/MudBlazor.wasm"},{"Name":"original-resource","Value":"\"rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI=\""}]},{"Route":"_framework/MudBlazor.k6079czmkm.wasm.gz","AssetFile":"_framework/MudBlazor.k6079czmkm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2249638"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6079czmkm"},{"Name":"integrity","Value":"sha256-dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM="},{"Name":"label","Value":"_framework/MudBlazor.wasm.gz"}]},{"Route":"_framework/MudBlazor.wasm","AssetFile":"_framework/MudBlazor.k6079czmkm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10119449"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI="}]},{"Route":"_framework/MudBlazor.wasm","AssetFile":"_framework/MudBlazor.k6079czmkm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000444516"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2249638"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI="},{"Name":"original-resource","Value":"\"rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI=\""}]},{"Route":"_framework/MudBlazor.wasm.gz","AssetFile":"_framework/MudBlazor.k6079czmkm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2249638"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM="}]},{"Route":"_framework/OnProfNext.Client.lplk7v275j.pdb","AssetFile":"_framework/OnProfNext.Client.lplk7v275j.pdb","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"33624"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lplk7v275j"},{"Name":"integrity","Value":"sha256-FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0="},{"Name":"label","Value":"_framework/OnProfNext.Client.pdb"}]},{"Route":"_framework/OnProfNext.Client.lplk7v275j.pdb","AssetFile":"_framework/OnProfNext.Client.lplk7v275j.pdb.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038227761"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26158"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lplk7v275j"},{"Name":"integrity","Value":"sha256-FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0="},{"Name":"label","Value":"_framework/OnProfNext.Client.pdb"},{"Name":"original-resource","Value":"\"FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0=\""}]},{"Route":"_framework/OnProfNext.Client.lplk7v275j.pdb.gz","AssetFile":"_framework/OnProfNext.Client.lplk7v275j.pdb.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26158"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lplk7v275j"},{"Name":"integrity","Value":"sha256-4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU="},{"Name":"label","Value":"_framework/OnProfNext.Client.pdb.gz"}]},{"Route":"_framework/OnProfNext.Client.pdb","AssetFile":"_framework/OnProfNext.Client.lplk7v275j.pdb","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"33624"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0="}]},{"Route":"_framework/OnProfNext.Client.pdb","AssetFile":"_framework/OnProfNext.Client.lplk7v275j.pdb.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038227761"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26158"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0="},{"Name":"original-resource","Value":"\"FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0=\""}]},{"Route":"_framework/OnProfNext.Client.pdb.gz","AssetFile":"_framework/OnProfNext.Client.lplk7v275j.pdb.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26158"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU="}]},{"Route":"_framework/OnProfNext.Client.wasm","AssetFile":"_framework/OnProfNext.Client.xhq6acanj0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"42261"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc="}]},{"Route":"_framework/OnProfNext.Client.wasm","AssetFile":"_framework/OnProfNext.Client.xhq6acanj0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067344602"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14848"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc="},{"Name":"original-resource","Value":"\"pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc=\""}]},{"Route":"_framework/OnProfNext.Client.wasm.gz","AssetFile":"_framework/OnProfNext.Client.xhq6acanj0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14848"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA="}]},{"Route":"_framework/OnProfNext.Client.xhq6acanj0.wasm","AssetFile":"_framework/OnProfNext.Client.xhq6acanj0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"42261"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xhq6acanj0"},{"Name":"integrity","Value":"sha256-pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc="},{"Name":"label","Value":"_framework/OnProfNext.Client.wasm"}]},{"Route":"_framework/OnProfNext.Client.xhq6acanj0.wasm","AssetFile":"_framework/OnProfNext.Client.xhq6acanj0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067344602"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14848"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xhq6acanj0"},{"Name":"integrity","Value":"sha256-pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc="},{"Name":"label","Value":"_framework/OnProfNext.Client.wasm"},{"Name":"original-resource","Value":"\"pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc=\""}]},{"Route":"_framework/OnProfNext.Client.xhq6acanj0.wasm.gz","AssetFile":"_framework/OnProfNext.Client.xhq6acanj0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14848"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xhq6acanj0"},{"Name":"integrity","Value":"sha256-UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA="},{"Name":"label","Value":"_framework/OnProfNext.Client.wasm.gz"}]},{"Route":"_framework/System.7rk3uansaa.wasm","AssetFile":"_framework/System.7rk3uansaa.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"39701"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7rk3uansaa"},{"Name":"integrity","Value":"sha256-00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q="},{"Name":"label","Value":"_framework/System.wasm"}]},{"Route":"_framework/System.7rk3uansaa.wasm","AssetFile":"_framework/System.7rk3uansaa.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000084875233"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7rk3uansaa"},{"Name":"integrity","Value":"sha256-00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q="},{"Name":"label","Value":"_framework/System.wasm"},{"Name":"original-resource","Value":"\"00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q=\""}]},{"Route":"_framework/System.7rk3uansaa.wasm.gz","AssetFile":"_framework/System.7rk3uansaa.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7rk3uansaa"},{"Name":"integrity","Value":"sha256-KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI="},{"Name":"label","Value":"_framework/System.wasm.gz"}]},{"Route":"_framework/System.AppContext.uwq3fpef1w.wasm","AssetFile":"_framework/System.AppContext.uwq3fpef1w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uwq3fpef1w"},{"Name":"integrity","Value":"sha256-/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA="},{"Name":"label","Value":"_framework/System.AppContext.wasm"}]},{"Route":"_framework/System.AppContext.uwq3fpef1w.wasm","AssetFile":"_framework/System.AppContext.uwq3fpef1w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000472589792"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2115"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uwq3fpef1w"},{"Name":"integrity","Value":"sha256-/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA="},{"Name":"label","Value":"_framework/System.AppContext.wasm"},{"Name":"original-resource","Value":"\"/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA=\""}]},{"Route":"_framework/System.AppContext.uwq3fpef1w.wasm.gz","AssetFile":"_framework/System.AppContext.uwq3fpef1w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2115"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uwq3fpef1w"},{"Name":"integrity","Value":"sha256-Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8="},{"Name":"label","Value":"_framework/System.AppContext.wasm.gz"}]},{"Route":"_framework/System.AppContext.wasm","AssetFile":"_framework/System.AppContext.uwq3fpef1w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA="}]},{"Route":"_framework/System.AppContext.wasm","AssetFile":"_framework/System.AppContext.uwq3fpef1w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000472589792"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2115"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA="},{"Name":"original-resource","Value":"\"/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA=\""}]},{"Route":"_framework/System.AppContext.wasm.gz","AssetFile":"_framework/System.AppContext.uwq3fpef1w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2115"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8="}]},{"Route":"_framework/System.Buffers.m4yhcvz2y2.wasm","AssetFile":"_framework/System.Buffers.m4yhcvz2y2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m4yhcvz2y2"},{"Name":"integrity","Value":"sha256-+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g="},{"Name":"label","Value":"_framework/System.Buffers.wasm"}]},{"Route":"_framework/System.Buffers.m4yhcvz2y2.wasm","AssetFile":"_framework/System.Buffers.m4yhcvz2y2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000472143532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2117"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m4yhcvz2y2"},{"Name":"integrity","Value":"sha256-+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g="},{"Name":"label","Value":"_framework/System.Buffers.wasm"},{"Name":"original-resource","Value":"\"+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g=\""}]},{"Route":"_framework/System.Buffers.m4yhcvz2y2.wasm.gz","AssetFile":"_framework/System.Buffers.m4yhcvz2y2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2117"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m4yhcvz2y2"},{"Name":"integrity","Value":"sha256-Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g="},{"Name":"label","Value":"_framework/System.Buffers.wasm.gz"}]},{"Route":"_framework/System.Buffers.wasm","AssetFile":"_framework/System.Buffers.m4yhcvz2y2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g="}]},{"Route":"_framework/System.Buffers.wasm","AssetFile":"_framework/System.Buffers.m4yhcvz2y2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000472143532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2117"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g="},{"Name":"original-resource","Value":"\"+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g=\""}]},{"Route":"_framework/System.Buffers.wasm.gz","AssetFile":"_framework/System.Buffers.m4yhcvz2y2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2117"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g="}]},{"Route":"_framework/System.Collections.63jrcion39.wasm","AssetFile":"_framework/System.Collections.63jrcion39.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"102677"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63jrcion39"},{"Name":"integrity","Value":"sha256-Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg="},{"Name":"label","Value":"_framework/System.Collections.wasm"}]},{"Route":"_framework/System.Collections.63jrcion39.wasm","AssetFile":"_framework/System.Collections.63jrcion39.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023100023"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"43289"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63jrcion39"},{"Name":"integrity","Value":"sha256-Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg="},{"Name":"label","Value":"_framework/System.Collections.wasm"},{"Name":"original-resource","Value":"\"Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg=\""}]},{"Route":"_framework/System.Collections.63jrcion39.wasm.gz","AssetFile":"_framework/System.Collections.63jrcion39.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"43289"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63jrcion39"},{"Name":"integrity","Value":"sha256-vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU="},{"Name":"label","Value":"_framework/System.Collections.wasm.gz"}]},{"Route":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm","AssetFile":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"78613"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1zv6wuzklu"},{"Name":"integrity","Value":"sha256-XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw="},{"Name":"label","Value":"_framework/System.Collections.Concurrent.wasm"}]},{"Route":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm","AssetFile":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029696502"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33673"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1zv6wuzklu"},{"Name":"integrity","Value":"sha256-XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw="},{"Name":"label","Value":"_framework/System.Collections.Concurrent.wasm"},{"Name":"original-resource","Value":"\"XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw=\""}]},{"Route":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm.gz","AssetFile":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33673"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1zv6wuzklu"},{"Name":"integrity","Value":"sha256-LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU="},{"Name":"label","Value":"_framework/System.Collections.Concurrent.wasm.gz"}]},{"Route":"_framework/System.Collections.Concurrent.wasm","AssetFile":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"78613"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw="}]},{"Route":"_framework/System.Collections.Concurrent.wasm","AssetFile":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029696502"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33673"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw="},{"Name":"original-resource","Value":"\"XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw=\""}]},{"Route":"_framework/System.Collections.Concurrent.wasm.gz","AssetFile":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33673"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU="}]},{"Route":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm","AssetFile":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"240917"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6uzpuv4o5d"},{"Name":"integrity","Value":"sha256-UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE="},{"Name":"label","Value":"_framework/System.Collections.Immutable.wasm"}]},{"Route":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm","AssetFile":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010198462"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"98053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6uzpuv4o5d"},{"Name":"integrity","Value":"sha256-UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE="},{"Name":"label","Value":"_framework/System.Collections.Immutable.wasm"},{"Name":"original-resource","Value":"\"UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE=\""}]},{"Route":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm.gz","AssetFile":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"98053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6uzpuv4o5d"},{"Name":"integrity","Value":"sha256-FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI="},{"Name":"label","Value":"_framework/System.Collections.Immutable.wasm.gz"}]},{"Route":"_framework/System.Collections.Immutable.wasm","AssetFile":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"240917"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE="}]},{"Route":"_framework/System.Collections.Immutable.wasm","AssetFile":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010198462"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"98053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE="},{"Name":"original-resource","Value":"\"UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE=\""}]},{"Route":"_framework/System.Collections.Immutable.wasm.gz","AssetFile":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"98053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI="}]},{"Route":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm","AssetFile":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k5rgagff9o"},{"Name":"integrity","Value":"sha256-eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q="},{"Name":"label","Value":"_framework/System.Collections.NonGeneric.wasm"}]},{"Route":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm","AssetFile":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067944014"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14717"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k5rgagff9o"},{"Name":"integrity","Value":"sha256-eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q="},{"Name":"label","Value":"_framework/System.Collections.NonGeneric.wasm"},{"Name":"original-resource","Value":"\"eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q=\""}]},{"Route":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm.gz","AssetFile":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14717"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k5rgagff9o"},{"Name":"integrity","Value":"sha256-RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M="},{"Name":"label","Value":"_framework/System.Collections.NonGeneric.wasm.gz"}]},{"Route":"_framework/System.Collections.NonGeneric.wasm","AssetFile":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q="}]},{"Route":"_framework/System.Collections.NonGeneric.wasm","AssetFile":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067944014"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14717"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q="},{"Name":"original-resource","Value":"\"eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q=\""}]},{"Route":"_framework/System.Collections.NonGeneric.wasm.gz","AssetFile":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14717"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M="}]},{"Route":"_framework/System.Collections.Specialized.84wojkejb4.wasm","AssetFile":"_framework/System.Collections.Specialized.84wojkejb4.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"84wojkejb4"},{"Name":"integrity","Value":"sha256-mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74="},{"Name":"label","Value":"_framework/System.Collections.Specialized.wasm"}]},{"Route":"_framework/System.Collections.Specialized.84wojkejb4.wasm","AssetFile":"_framework/System.Collections.Specialized.84wojkejb4.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061218243"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16334"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"84wojkejb4"},{"Name":"integrity","Value":"sha256-mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74="},{"Name":"label","Value":"_framework/System.Collections.Specialized.wasm"},{"Name":"original-resource","Value":"\"mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74=\""}]},{"Route":"_framework/System.Collections.Specialized.84wojkejb4.wasm.gz","AssetFile":"_framework/System.Collections.Specialized.84wojkejb4.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16334"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"84wojkejb4"},{"Name":"integrity","Value":"sha256-iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0="},{"Name":"label","Value":"_framework/System.Collections.Specialized.wasm.gz"}]},{"Route":"_framework/System.Collections.Specialized.wasm","AssetFile":"_framework/System.Collections.Specialized.84wojkejb4.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74="}]},{"Route":"_framework/System.Collections.Specialized.wasm","AssetFile":"_framework/System.Collections.Specialized.84wojkejb4.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061218243"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16334"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74="},{"Name":"original-resource","Value":"\"mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74=\""}]},{"Route":"_framework/System.Collections.Specialized.wasm.gz","AssetFile":"_framework/System.Collections.Specialized.84wojkejb4.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16334"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0="}]},{"Route":"_framework/System.Collections.wasm","AssetFile":"_framework/System.Collections.63jrcion39.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"102677"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg="}]},{"Route":"_framework/System.Collections.wasm","AssetFile":"_framework/System.Collections.63jrcion39.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023100023"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"43289"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg="},{"Name":"original-resource","Value":"\"Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg=\""}]},{"Route":"_framework/System.Collections.wasm.gz","AssetFile":"_framework/System.Collections.63jrcion39.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"43289"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU="}]},{"Route":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm","AssetFile":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"92437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cjsvkufomv"},{"Name":"integrity","Value":"sha256-yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg="},{"Name":"label","Value":"_framework/System.ComponentModel.Annotations.wasm"}]},{"Route":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm","AssetFile":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000027950137"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cjsvkufomv"},{"Name":"integrity","Value":"sha256-yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg="},{"Name":"label","Value":"_framework/System.ComponentModel.Annotations.wasm"},{"Name":"original-resource","Value":"\"yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg=\""}]},{"Route":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm.gz","AssetFile":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cjsvkufomv"},{"Name":"integrity","Value":"sha256-6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM="},{"Name":"label","Value":"_framework/System.ComponentModel.Annotations.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.Annotations.wasm","AssetFile":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"92437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg="}]},{"Route":"_framework/System.ComponentModel.Annotations.wasm","AssetFile":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000027950137"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg="},{"Name":"original-resource","Value":"\"yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg=\""}]},{"Route":"_framework/System.ComponentModel.Annotations.wasm.gz","AssetFile":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM="}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm","AssetFile":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vpng0qt4u6"},{"Name":"integrity","Value":"sha256-7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o="},{"Name":"label","Value":"_framework/System.ComponentModel.DataAnnotations.wasm"}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm","AssetFile":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000386996904"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2583"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vpng0qt4u6"},{"Name":"integrity","Value":"sha256-7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o="},{"Name":"label","Value":"_framework/System.ComponentModel.DataAnnotations.wasm"},{"Name":"original-resource","Value":"\"7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o=\""}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm.gz","AssetFile":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2583"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vpng0qt4u6"},{"Name":"integrity","Value":"sha256-BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs="},{"Name":"label","Value":"_framework/System.ComponentModel.DataAnnotations.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.wasm","AssetFile":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o="}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.wasm","AssetFile":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000386996904"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2583"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o="},{"Name":"original-resource","Value":"\"7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o=\""}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.wasm.gz","AssetFile":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2583"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs="}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm","AssetFile":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"16149"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"en4q13ibd5"},{"Name":"integrity","Value":"sha256-9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38="},{"Name":"label","Value":"_framework/System.ComponentModel.EventBasedAsync.wasm"}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm","AssetFile":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000147536146"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"en4q13ibd5"},{"Name":"integrity","Value":"sha256-9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38="},{"Name":"label","Value":"_framework/System.ComponentModel.EventBasedAsync.wasm"},{"Name":"original-resource","Value":"\"9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38=\""}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm.gz","AssetFile":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"en4q13ibd5"},{"Name":"integrity","Value":"sha256-G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU="},{"Name":"label","Value":"_framework/System.ComponentModel.EventBasedAsync.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.wasm","AssetFile":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"16149"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38="}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.wasm","AssetFile":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000147536146"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38="},{"Name":"original-resource","Value":"\"9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38=\""}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.wasm.gz","AssetFile":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU="}]},{"Route":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm","AssetFile":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u0y5oi3qdg"},{"Name":"integrity","Value":"sha256-fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4="},{"Name":"label","Value":"_framework/System.ComponentModel.Primitives.wasm"}]},{"Route":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm","AssetFile":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000074493445"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13423"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u0y5oi3qdg"},{"Name":"integrity","Value":"sha256-fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4="},{"Name":"label","Value":"_framework/System.ComponentModel.Primitives.wasm"},{"Name":"original-resource","Value":"\"fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4=\""}]},{"Route":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm.gz","AssetFile":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13423"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u0y5oi3qdg"},{"Name":"integrity","Value":"sha256-yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM="},{"Name":"label","Value":"_framework/System.ComponentModel.Primitives.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.Primitives.wasm","AssetFile":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4="}]},{"Route":"_framework/System.ComponentModel.Primitives.wasm","AssetFile":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000074493445"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13423"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4="},{"Name":"original-resource","Value":"\"fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4=\""}]},{"Route":"_framework/System.ComponentModel.Primitives.wasm.gz","AssetFile":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13423"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM="}]},{"Route":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm","AssetFile":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"306453"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e2hbv9lola"},{"Name":"integrity","Value":"sha256-Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco="},{"Name":"label","Value":"_framework/System.ComponentModel.TypeConverter.wasm"}]},{"Route":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm","AssetFile":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008143389"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"122798"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e2hbv9lola"},{"Name":"integrity","Value":"sha256-Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco="},{"Name":"label","Value":"_framework/System.ComponentModel.TypeConverter.wasm"},{"Name":"original-resource","Value":"\"Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco=\""}]},{"Route":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm.gz","AssetFile":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"122798"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e2hbv9lola"},{"Name":"integrity","Value":"sha256-pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs="},{"Name":"label","Value":"_framework/System.ComponentModel.TypeConverter.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.TypeConverter.wasm","AssetFile":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"306453"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco="}]},{"Route":"_framework/System.ComponentModel.TypeConverter.wasm","AssetFile":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008143389"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"122798"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco="},{"Name":"original-resource","Value":"\"Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco=\""}]},{"Route":"_framework/System.ComponentModel.TypeConverter.wasm.gz","AssetFile":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"122798"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs="}]},{"Route":"_framework/System.ComponentModel.m11rh1qn2x.wasm","AssetFile":"_framework/System.ComponentModel.m11rh1qn2x.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m11rh1qn2x"},{"Name":"integrity","Value":"sha256-9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ="},{"Name":"label","Value":"_framework/System.ComponentModel.wasm"}]},{"Route":"_framework/System.ComponentModel.m11rh1qn2x.wasm","AssetFile":"_framework/System.ComponentModel.m11rh1qn2x.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388651380"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m11rh1qn2x"},{"Name":"integrity","Value":"sha256-9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ="},{"Name":"label","Value":"_framework/System.ComponentModel.wasm"},{"Name":"original-resource","Value":"\"9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ=\""}]},{"Route":"_framework/System.ComponentModel.m11rh1qn2x.wasm.gz","AssetFile":"_framework/System.ComponentModel.m11rh1qn2x.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m11rh1qn2x"},{"Name":"integrity","Value":"sha256-4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4="},{"Name":"label","Value":"_framework/System.ComponentModel.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.wasm","AssetFile":"_framework/System.ComponentModel.m11rh1qn2x.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ="}]},{"Route":"_framework/System.ComponentModel.wasm","AssetFile":"_framework/System.ComponentModel.m11rh1qn2x.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388651380"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ="},{"Name":"original-resource","Value":"\"9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ=\""}]},{"Route":"_framework/System.ComponentModel.wasm.gz","AssetFile":"_framework/System.ComponentModel.m11rh1qn2x.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4="}]},{"Route":"_framework/System.Configuration.j8qjkqg593.wasm","AssetFile":"_framework/System.Configuration.j8qjkqg593.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"8981"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8qjkqg593"},{"Name":"integrity","Value":"sha256-bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU="},{"Name":"label","Value":"_framework/System.Configuration.wasm"}]},{"Route":"_framework/System.Configuration.j8qjkqg593.wasm","AssetFile":"_framework/System.Configuration.j8qjkqg593.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000320204931"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3122"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8qjkqg593"},{"Name":"integrity","Value":"sha256-bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU="},{"Name":"label","Value":"_framework/System.Configuration.wasm"},{"Name":"original-resource","Value":"\"bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU=\""}]},{"Route":"_framework/System.Configuration.j8qjkqg593.wasm.gz","AssetFile":"_framework/System.Configuration.j8qjkqg593.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3122"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8qjkqg593"},{"Name":"integrity","Value":"sha256-KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA="},{"Name":"label","Value":"_framework/System.Configuration.wasm.gz"}]},{"Route":"_framework/System.Configuration.wasm","AssetFile":"_framework/System.Configuration.j8qjkqg593.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"8981"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU="}]},{"Route":"_framework/System.Configuration.wasm","AssetFile":"_framework/System.Configuration.j8qjkqg593.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000320204931"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3122"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU="},{"Name":"original-resource","Value":"\"bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU=\""}]},{"Route":"_framework/System.Configuration.wasm.gz","AssetFile":"_framework/System.Configuration.j8qjkqg593.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3122"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA="}]},{"Route":"_framework/System.Console.wasm","AssetFile":"_framework/System.Console.x9at0eh4vs.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"43797"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI="}]},{"Route":"_framework/System.Console.wasm","AssetFile":"_framework/System.Console.x9at0eh4vs.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051570316"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI="},{"Name":"original-resource","Value":"\"ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI=\""}]},{"Route":"_framework/System.Console.wasm.gz","AssetFile":"_framework/System.Console.x9at0eh4vs.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM="}]},{"Route":"_framework/System.Console.x9at0eh4vs.wasm","AssetFile":"_framework/System.Console.x9at0eh4vs.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"43797"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x9at0eh4vs"},{"Name":"integrity","Value":"sha256-ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI="},{"Name":"label","Value":"_framework/System.Console.wasm"}]},{"Route":"_framework/System.Console.x9at0eh4vs.wasm","AssetFile":"_framework/System.Console.x9at0eh4vs.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051570316"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x9at0eh4vs"},{"Name":"integrity","Value":"sha256-ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI="},{"Name":"label","Value":"_framework/System.Console.wasm"},{"Name":"original-resource","Value":"\"ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI=\""}]},{"Route":"_framework/System.Console.x9at0eh4vs.wasm.gz","AssetFile":"_framework/System.Console.x9at0eh4vs.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x9at0eh4vs"},{"Name":"integrity","Value":"sha256-EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM="},{"Name":"label","Value":"_framework/System.Console.wasm.gz"}]},{"Route":"_framework/System.Core.ickp29885z.wasm","AssetFile":"_framework/System.Core.ickp29885z.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ickp29885z"},{"Name":"integrity","Value":"sha256-vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU="},{"Name":"label","Value":"_framework/System.Core.wasm"}]},{"Route":"_framework/System.Core.ickp29885z.wasm","AssetFile":"_framework/System.Core.ickp29885z.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000219346348"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ickp29885z"},{"Name":"integrity","Value":"sha256-vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU="},{"Name":"label","Value":"_framework/System.Core.wasm"},{"Name":"original-resource","Value":"\"vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU=\""}]},{"Route":"_framework/System.Core.ickp29885z.wasm.gz","AssetFile":"_framework/System.Core.ickp29885z.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ickp29885z"},{"Name":"integrity","Value":"sha256-RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4="},{"Name":"label","Value":"_framework/System.Core.wasm.gz"}]},{"Route":"_framework/System.Core.wasm","AssetFile":"_framework/System.Core.ickp29885z.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU="}]},{"Route":"_framework/System.Core.wasm","AssetFile":"_framework/System.Core.ickp29885z.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000219346348"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU="},{"Name":"original-resource","Value":"\"vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU=\""}]},{"Route":"_framework/System.Core.wasm.gz","AssetFile":"_framework/System.Core.ickp29885z.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4="}]},{"Route":"_framework/System.Data.0h75nr7qqd.wasm","AssetFile":"_framework/System.Data.0h75nr7qqd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"15125"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0h75nr7qqd"},{"Name":"integrity","Value":"sha256-7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg="},{"Name":"label","Value":"_framework/System.Data.wasm"}]},{"Route":"_framework/System.Data.0h75nr7qqd.wasm","AssetFile":"_framework/System.Data.0h75nr7qqd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000199084213"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5022"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0h75nr7qqd"},{"Name":"integrity","Value":"sha256-7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg="},{"Name":"label","Value":"_framework/System.Data.wasm"},{"Name":"original-resource","Value":"\"7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg=\""}]},{"Route":"_framework/System.Data.0h75nr7qqd.wasm.gz","AssetFile":"_framework/System.Data.0h75nr7qqd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5022"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0h75nr7qqd"},{"Name":"integrity","Value":"sha256-8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE="},{"Name":"label","Value":"_framework/System.Data.wasm.gz"}]},{"Route":"_framework/System.Data.Common.4wisaz8pj4.wasm","AssetFile":"_framework/System.Data.Common.4wisaz8pj4.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1007893"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4wisaz8pj4"},{"Name":"integrity","Value":"sha256-pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q="},{"Name":"label","Value":"_framework/System.Data.Common.wasm"}]},{"Route":"_framework/System.Data.Common.4wisaz8pj4.wasm","AssetFile":"_framework/System.Data.Common.4wisaz8pj4.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000002663974"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"375378"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4wisaz8pj4"},{"Name":"integrity","Value":"sha256-pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q="},{"Name":"label","Value":"_framework/System.Data.Common.wasm"},{"Name":"original-resource","Value":"\"pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q=\""}]},{"Route":"_framework/System.Data.Common.4wisaz8pj4.wasm.gz","AssetFile":"_framework/System.Data.Common.4wisaz8pj4.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"375378"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4wisaz8pj4"},{"Name":"integrity","Value":"sha256-ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A="},{"Name":"label","Value":"_framework/System.Data.Common.wasm.gz"}]},{"Route":"_framework/System.Data.Common.wasm","AssetFile":"_framework/System.Data.Common.4wisaz8pj4.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1007893"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q="}]},{"Route":"_framework/System.Data.Common.wasm","AssetFile":"_framework/System.Data.Common.4wisaz8pj4.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000002663974"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"375378"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q="},{"Name":"original-resource","Value":"\"pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q=\""}]},{"Route":"_framework/System.Data.Common.wasm.gz","AssetFile":"_framework/System.Data.Common.4wisaz8pj4.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"375378"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A="}]},{"Route":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm","AssetFile":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"904tnen1ot"},{"Name":"integrity","Value":"sha256-dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A="},{"Name":"label","Value":"_framework/System.Data.DataSetExtensions.wasm"}]},{"Route":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm","AssetFile":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000480307397"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2081"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"904tnen1ot"},{"Name":"integrity","Value":"sha256-dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A="},{"Name":"label","Value":"_framework/System.Data.DataSetExtensions.wasm"},{"Name":"original-resource","Value":"\"dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A=\""}]},{"Route":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm.gz","AssetFile":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2081"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"904tnen1ot"},{"Name":"integrity","Value":"sha256-re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY="},{"Name":"label","Value":"_framework/System.Data.DataSetExtensions.wasm.gz"}]},{"Route":"_framework/System.Data.DataSetExtensions.wasm","AssetFile":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A="}]},{"Route":"_framework/System.Data.DataSetExtensions.wasm","AssetFile":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000480307397"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2081"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A="},{"Name":"original-resource","Value":"\"dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A=\""}]},{"Route":"_framework/System.Data.DataSetExtensions.wasm.gz","AssetFile":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2081"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY="}]},{"Route":"_framework/System.Data.wasm","AssetFile":"_framework/System.Data.0h75nr7qqd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"15125"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg="}]},{"Route":"_framework/System.Data.wasm","AssetFile":"_framework/System.Data.0h75nr7qqd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000199084213"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5022"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg="},{"Name":"original-resource","Value":"\"7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg=\""}]},{"Route":"_framework/System.Data.wasm.gz","AssetFile":"_framework/System.Data.0h75nr7qqd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5022"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE="}]},{"Route":"_framework/System.Diagnostics.Contracts.wasm","AssetFile":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I="}]},{"Route":"_framework/System.Diagnostics.Contracts.wasm","AssetFile":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000417885499"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2392"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I="},{"Name":"original-resource","Value":"\"2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I=\""}]},{"Route":"_framework/System.Diagnostics.Contracts.wasm.gz","AssetFile":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2392"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY="}]},{"Route":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm","AssetFile":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z1eotzj35n"},{"Name":"integrity","Value":"sha256-2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I="},{"Name":"label","Value":"_framework/System.Diagnostics.Contracts.wasm"}]},{"Route":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm","AssetFile":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000417885499"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2392"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z1eotzj35n"},{"Name":"integrity","Value":"sha256-2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I="},{"Name":"label","Value":"_framework/System.Diagnostics.Contracts.wasm"},{"Name":"original-resource","Value":"\"2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I=\""}]},{"Route":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm.gz","AssetFile":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2392"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z1eotzj35n"},{"Name":"integrity","Value":"sha256-Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY="},{"Name":"label","Value":"_framework/System.Diagnostics.Contracts.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm","AssetFile":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aeh9b1tcuc"},{"Name":"integrity","Value":"sha256-Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g="},{"Name":"label","Value":"_framework/System.Diagnostics.Debug.wasm"}]},{"Route":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm","AssetFile":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000437636761"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2284"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aeh9b1tcuc"},{"Name":"integrity","Value":"sha256-Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g="},{"Name":"label","Value":"_framework/System.Diagnostics.Debug.wasm"},{"Name":"original-resource","Value":"\"Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g=\""}]},{"Route":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm.gz","AssetFile":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2284"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aeh9b1tcuc"},{"Name":"integrity","Value":"sha256-DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk="},{"Name":"label","Value":"_framework/System.Diagnostics.Debug.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.Debug.wasm","AssetFile":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g="}]},{"Route":"_framework/System.Diagnostics.Debug.wasm","AssetFile":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000437636761"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2284"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g="},{"Name":"original-resource","Value":"\"Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g=\""}]},{"Route":"_framework/System.Diagnostics.Debug.wasm.gz","AssetFile":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2284"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk="}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm","AssetFile":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"192277"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ou2dt7nfo2"},{"Name":"integrity","Value":"sha256-sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc="},{"Name":"label","Value":"_framework/System.Diagnostics.DiagnosticSource.wasm"}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm","AssetFile":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000012340499"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"81033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ou2dt7nfo2"},{"Name":"integrity","Value":"sha256-sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc="},{"Name":"label","Value":"_framework/System.Diagnostics.DiagnosticSource.wasm"},{"Name":"original-resource","Value":"\"sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc=\""}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm.gz","AssetFile":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"81033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ou2dt7nfo2"},{"Name":"integrity","Value":"sha256-4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs="},{"Name":"label","Value":"_framework/System.Diagnostics.DiagnosticSource.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.wasm","AssetFile":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"192277"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc="}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.wasm","AssetFile":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000012340499"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"81033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc="},{"Name":"original-resource","Value":"\"sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc=\""}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.wasm.gz","AssetFile":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"81033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs="}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm","AssetFile":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"12565"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kv9gl8mgag"},{"Name":"integrity","Value":"sha256-ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4="},{"Name":"label","Value":"_framework/System.Diagnostics.FileVersionInfo.wasm"}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm","AssetFile":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000194817845"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5132"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kv9gl8mgag"},{"Name":"integrity","Value":"sha256-ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4="},{"Name":"label","Value":"_framework/System.Diagnostics.FileVersionInfo.wasm"},{"Name":"original-resource","Value":"\"ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4=\""}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm.gz","AssetFile":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5132"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kv9gl8mgag"},{"Name":"integrity","Value":"sha256-Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA="},{"Name":"label","Value":"_framework/System.Diagnostics.FileVersionInfo.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.wasm","AssetFile":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"12565"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4="}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.wasm","AssetFile":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000194817845"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5132"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4="},{"Name":"original-resource","Value":"\"ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4=\""}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.wasm.gz","AssetFile":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5132"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA="}]},{"Route":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm","AssetFile":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"46357"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lqtqkmw274"},{"Name":"integrity","Value":"sha256-87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk="},{"Name":"label","Value":"_framework/System.Diagnostics.Process.wasm"}]},{"Route":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm","AssetFile":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061736017"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lqtqkmw274"},{"Name":"integrity","Value":"sha256-87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk="},{"Name":"label","Value":"_framework/System.Diagnostics.Process.wasm"},{"Name":"original-resource","Value":"\"87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk=\""}]},{"Route":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm.gz","AssetFile":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lqtqkmw274"},{"Name":"integrity","Value":"sha256-a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0="},{"Name":"label","Value":"_framework/System.Diagnostics.Process.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.Process.wasm","AssetFile":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"46357"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk="}]},{"Route":"_framework/System.Diagnostics.Process.wasm","AssetFile":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061736017"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk="},{"Name":"original-resource","Value":"\"87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk=\""}]},{"Route":"_framework/System.Diagnostics.Process.wasm.gz","AssetFile":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0="}]},{"Route":"_framework/System.Diagnostics.StackTrace.wasm","AssetFile":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"15637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls="}]},{"Route":"_framework/System.Diagnostics.StackTrace.wasm","AssetFile":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000135758892"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7365"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls="},{"Name":"original-resource","Value":"\"jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls=\""}]},{"Route":"_framework/System.Diagnostics.StackTrace.wasm.gz","AssetFile":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7365"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg="}]},{"Route":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm","AssetFile":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"15637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wvlboxd9cz"},{"Name":"integrity","Value":"sha256-jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls="},{"Name":"label","Value":"_framework/System.Diagnostics.StackTrace.wasm"}]},{"Route":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm","AssetFile":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000135758892"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7365"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wvlboxd9cz"},{"Name":"integrity","Value":"sha256-jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls="},{"Name":"label","Value":"_framework/System.Diagnostics.StackTrace.wasm"},{"Name":"original-resource","Value":"\"jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls=\""}]},{"Route":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm.gz","AssetFile":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7365"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wvlboxd9cz"},{"Name":"integrity","Value":"sha256-+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg="},{"Name":"label","Value":"_framework/System.Diagnostics.StackTrace.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm","AssetFile":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"21269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mx5w1z1p6w"},{"Name":"integrity","Value":"sha256-9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8="},{"Name":"label","Value":"_framework/System.Diagnostics.TextWriterTraceListener.wasm"}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm","AssetFile":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000106484932"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mx5w1z1p6w"},{"Name":"integrity","Value":"sha256-9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8="},{"Name":"label","Value":"_framework/System.Diagnostics.TextWriterTraceListener.wasm"},{"Name":"original-resource","Value":"\"9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8=\""}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm.gz","AssetFile":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mx5w1z1p6w"},{"Name":"integrity","Value":"sha256-bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY="},{"Name":"label","Value":"_framework/System.Diagnostics.TextWriterTraceListener.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.wasm","AssetFile":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"21269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8="}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.wasm","AssetFile":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000106484932"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8="},{"Name":"original-resource","Value":"\"9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8=\""}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.wasm.gz","AssetFile":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY="}]},{"Route":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm","AssetFile":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"862j1ozg5o"},{"Name":"integrity","Value":"sha256-wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE="},{"Name":"label","Value":"_framework/System.Diagnostics.Tools.wasm"}]},{"Route":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm","AssetFile":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455580866"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"862j1ozg5o"},{"Name":"integrity","Value":"sha256-wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE="},{"Name":"label","Value":"_framework/System.Diagnostics.Tools.wasm"},{"Name":"original-resource","Value":"\"wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE=\""}]},{"Route":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm.gz","AssetFile":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"862j1ozg5o"},{"Name":"integrity","Value":"sha256-Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0="},{"Name":"label","Value":"_framework/System.Diagnostics.Tools.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.Tools.wasm","AssetFile":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE="}]},{"Route":"_framework/System.Diagnostics.Tools.wasm","AssetFile":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455580866"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE="},{"Name":"original-resource","Value":"\"wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE=\""}]},{"Route":"_framework/System.Diagnostics.Tools.wasm.gz","AssetFile":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0="}]},{"Route":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm","AssetFile":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"48405"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j08okd90mo"},{"Name":"integrity","Value":"sha256-k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc="},{"Name":"label","Value":"_framework/System.Diagnostics.TraceSource.wasm"}]},{"Route":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm","AssetFile":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000049701789"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20119"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j08okd90mo"},{"Name":"integrity","Value":"sha256-k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc="},{"Name":"label","Value":"_framework/System.Diagnostics.TraceSource.wasm"},{"Name":"original-resource","Value":"\"k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc=\""}]},{"Route":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm.gz","AssetFile":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20119"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j08okd90mo"},{"Name":"integrity","Value":"sha256-xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM="},{"Name":"label","Value":"_framework/System.Diagnostics.TraceSource.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.TraceSource.wasm","AssetFile":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"48405"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc="}]},{"Route":"_framework/System.Diagnostics.TraceSource.wasm","AssetFile":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000049701789"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20119"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc="},{"Name":"original-resource","Value":"\"k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc=\""}]},{"Route":"_framework/System.Diagnostics.TraceSource.wasm.gz","AssetFile":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20119"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM="}]},{"Route":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm","AssetFile":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bnz7jo4op8"},{"Name":"integrity","Value":"sha256-ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg="},{"Name":"label","Value":"_framework/System.Diagnostics.Tracing.wasm"}]},{"Route":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm","AssetFile":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000398406375"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bnz7jo4op8"},{"Name":"integrity","Value":"sha256-ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg="},{"Name":"label","Value":"_framework/System.Diagnostics.Tracing.wasm"},{"Name":"original-resource","Value":"\"ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg=\""}]},{"Route":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm.gz","AssetFile":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bnz7jo4op8"},{"Name":"integrity","Value":"sha256-ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI="},{"Name":"label","Value":"_framework/System.Diagnostics.Tracing.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.Tracing.wasm","AssetFile":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg="}]},{"Route":"_framework/System.Diagnostics.Tracing.wasm","AssetFile":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000398406375"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg="},{"Name":"original-resource","Value":"\"ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg=\""}]},{"Route":"_framework/System.Diagnostics.Tracing.wasm.gz","AssetFile":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI="}]},{"Route":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm","AssetFile":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"54549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k3z431p3v7"},{"Name":"integrity","Value":"sha256-sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U="},{"Name":"label","Value":"_framework/System.Drawing.Primitives.wasm"}]},{"Route":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm","AssetFile":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041590418"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24043"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k3z431p3v7"},{"Name":"integrity","Value":"sha256-sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U="},{"Name":"label","Value":"_framework/System.Drawing.Primitives.wasm"},{"Name":"original-resource","Value":"\"sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U=\""}]},{"Route":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm.gz","AssetFile":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24043"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k3z431p3v7"},{"Name":"integrity","Value":"sha256-s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto="},{"Name":"label","Value":"_framework/System.Drawing.Primitives.wasm.gz"}]},{"Route":"_framework/System.Drawing.Primitives.wasm","AssetFile":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"54549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U="}]},{"Route":"_framework/System.Drawing.Primitives.wasm","AssetFile":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041590418"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24043"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U="},{"Name":"original-resource","Value":"\"sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U=\""}]},{"Route":"_framework/System.Drawing.Primitives.wasm.gz","AssetFile":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24043"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto="}]},{"Route":"_framework/System.Drawing.v0usa2s224.wasm","AssetFile":"_framework/System.Drawing.v0usa2s224.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0usa2s224"},{"Name":"integrity","Value":"sha256-/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I="},{"Name":"label","Value":"_framework/System.Drawing.wasm"}]},{"Route":"_framework/System.Drawing.v0usa2s224.wasm","AssetFile":"_framework/System.Drawing.v0usa2s224.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000258732212"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3864"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0usa2s224"},{"Name":"integrity","Value":"sha256-/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I="},{"Name":"label","Value":"_framework/System.Drawing.wasm"},{"Name":"original-resource","Value":"\"/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I=\""}]},{"Route":"_framework/System.Drawing.v0usa2s224.wasm.gz","AssetFile":"_framework/System.Drawing.v0usa2s224.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3864"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0usa2s224"},{"Name":"integrity","Value":"sha256-ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c="},{"Name":"label","Value":"_framework/System.Drawing.wasm.gz"}]},{"Route":"_framework/System.Drawing.wasm","AssetFile":"_framework/System.Drawing.v0usa2s224.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I="}]},{"Route":"_framework/System.Drawing.wasm","AssetFile":"_framework/System.Drawing.v0usa2s224.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000258732212"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3864"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I="},{"Name":"original-resource","Value":"\"/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I=\""}]},{"Route":"_framework/System.Drawing.wasm.gz","AssetFile":"_framework/System.Drawing.v0usa2s224.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3864"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c="}]},{"Route":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm","AssetFile":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iktlm0yhdx"},{"Name":"integrity","Value":"sha256-8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ="},{"Name":"label","Value":"_framework/System.Dynamic.Runtime.wasm"}]},{"Route":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm","AssetFile":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000408997955"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2444"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iktlm0yhdx"},{"Name":"integrity","Value":"sha256-8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ="},{"Name":"label","Value":"_framework/System.Dynamic.Runtime.wasm"},{"Name":"original-resource","Value":"\"8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ=\""}]},{"Route":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm.gz","AssetFile":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2444"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iktlm0yhdx"},{"Name":"integrity","Value":"sha256-DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A="},{"Name":"label","Value":"_framework/System.Dynamic.Runtime.wasm.gz"}]},{"Route":"_framework/System.Dynamic.Runtime.wasm","AssetFile":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ="}]},{"Route":"_framework/System.Dynamic.Runtime.wasm","AssetFile":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000408997955"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2444"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ="},{"Name":"original-resource","Value":"\"8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ=\""}]},{"Route":"_framework/System.Dynamic.Runtime.wasm.gz","AssetFile":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2444"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A="}]},{"Route":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm","AssetFile":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"86805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9iyl1hnh76"},{"Name":"integrity","Value":"sha256-8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0="},{"Name":"label","Value":"_framework/System.Formats.Asn1.wasm"}]},{"Route":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm","AssetFile":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000028005713"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35706"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9iyl1hnh76"},{"Name":"integrity","Value":"sha256-8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0="},{"Name":"label","Value":"_framework/System.Formats.Asn1.wasm"},{"Name":"original-resource","Value":"\"8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0=\""}]},{"Route":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm.gz","AssetFile":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35706"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9iyl1hnh76"},{"Name":"integrity","Value":"sha256-LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw="},{"Name":"label","Value":"_framework/System.Formats.Asn1.wasm.gz"}]},{"Route":"_framework/System.Formats.Asn1.wasm","AssetFile":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"86805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0="}]},{"Route":"_framework/System.Formats.Asn1.wasm","AssetFile":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000028005713"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35706"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0="},{"Name":"original-resource","Value":"\"8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0=\""}]},{"Route":"_framework/System.Formats.Asn1.wasm.gz","AssetFile":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35706"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw="}]},{"Route":"_framework/System.Formats.Tar.9ikmelhi7g.wasm","AssetFile":"_framework/System.Formats.Tar.9ikmelhi7g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"28437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ikmelhi7g"},{"Name":"integrity","Value":"sha256-rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE="},{"Name":"label","Value":"_framework/System.Formats.Tar.wasm"}]},{"Route":"_framework/System.Formats.Tar.9ikmelhi7g.wasm","AssetFile":"_framework/System.Formats.Tar.9ikmelhi7g.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000095292548"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10493"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ikmelhi7g"},{"Name":"integrity","Value":"sha256-rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE="},{"Name":"label","Value":"_framework/System.Formats.Tar.wasm"},{"Name":"original-resource","Value":"\"rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE=\""}]},{"Route":"_framework/System.Formats.Tar.9ikmelhi7g.wasm.gz","AssetFile":"_framework/System.Formats.Tar.9ikmelhi7g.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10493"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ikmelhi7g"},{"Name":"integrity","Value":"sha256-F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k="},{"Name":"label","Value":"_framework/System.Formats.Tar.wasm.gz"}]},{"Route":"_framework/System.Formats.Tar.wasm","AssetFile":"_framework/System.Formats.Tar.9ikmelhi7g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"28437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE="}]},{"Route":"_framework/System.Formats.Tar.wasm","AssetFile":"_framework/System.Formats.Tar.9ikmelhi7g.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000095292548"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10493"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE="},{"Name":"original-resource","Value":"\"rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE=\""}]},{"Route":"_framework/System.Formats.Tar.wasm.gz","AssetFile":"_framework/System.Formats.Tar.9ikmelhi7g.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10493"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k="}]},{"Route":"_framework/System.Globalization.4ulc930few.wasm","AssetFile":"_framework/System.Globalization.4ulc930few.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4ulc930few"},{"Name":"integrity","Value":"sha256-jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I="},{"Name":"label","Value":"_framework/System.Globalization.wasm"}]},{"Route":"_framework/System.Globalization.4ulc930few.wasm","AssetFile":"_framework/System.Globalization.4ulc930few.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000439367311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4ulc930few"},{"Name":"integrity","Value":"sha256-jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I="},{"Name":"label","Value":"_framework/System.Globalization.wasm"},{"Name":"original-resource","Value":"\"jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I=\""}]},{"Route":"_framework/System.Globalization.4ulc930few.wasm.gz","AssetFile":"_framework/System.Globalization.4ulc930few.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4ulc930few"},{"Name":"integrity","Value":"sha256-GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA="},{"Name":"label","Value":"_framework/System.Globalization.wasm.gz"}]},{"Route":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm","AssetFile":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e8yl47y6cv"},{"Name":"integrity","Value":"sha256-jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo="},{"Name":"label","Value":"_framework/System.Globalization.Calendars.wasm"}]},{"Route":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm","AssetFile":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000434971727"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2298"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e8yl47y6cv"},{"Name":"integrity","Value":"sha256-jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo="},{"Name":"label","Value":"_framework/System.Globalization.Calendars.wasm"},{"Name":"original-resource","Value":"\"jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo=\""}]},{"Route":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm.gz","AssetFile":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2298"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e8yl47y6cv"},{"Name":"integrity","Value":"sha256-bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A="},{"Name":"label","Value":"_framework/System.Globalization.Calendars.wasm.gz"}]},{"Route":"_framework/System.Globalization.Calendars.wasm","AssetFile":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo="}]},{"Route":"_framework/System.Globalization.Calendars.wasm","AssetFile":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000434971727"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2298"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo="},{"Name":"original-resource","Value":"\"jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo=\""}]},{"Route":"_framework/System.Globalization.Calendars.wasm.gz","AssetFile":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2298"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A="}]},{"Route":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm","AssetFile":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvxkfs32tv"},{"Name":"integrity","Value":"sha256-e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ="},{"Name":"label","Value":"_framework/System.Globalization.Extensions.wasm"}]},{"Route":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm","AssetFile":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000456412597"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2190"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvxkfs32tv"},{"Name":"integrity","Value":"sha256-e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ="},{"Name":"label","Value":"_framework/System.Globalization.Extensions.wasm"},{"Name":"original-resource","Value":"\"e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ=\""}]},{"Route":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm.gz","AssetFile":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2190"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvxkfs32tv"},{"Name":"integrity","Value":"sha256-mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o="},{"Name":"label","Value":"_framework/System.Globalization.Extensions.wasm.gz"}]},{"Route":"_framework/System.Globalization.Extensions.wasm","AssetFile":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ="}]},{"Route":"_framework/System.Globalization.Extensions.wasm","AssetFile":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000456412597"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2190"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ="},{"Name":"original-resource","Value":"\"e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ=\""}]},{"Route":"_framework/System.Globalization.Extensions.wasm.gz","AssetFile":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2190"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o="}]},{"Route":"_framework/System.Globalization.wasm","AssetFile":"_framework/System.Globalization.4ulc930few.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I="}]},{"Route":"_framework/System.Globalization.wasm","AssetFile":"_framework/System.Globalization.4ulc930few.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000439367311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I="},{"Name":"original-resource","Value":"\"jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I=\""}]},{"Route":"_framework/System.Globalization.wasm.gz","AssetFile":"_framework/System.Globalization.4ulc930few.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA="}]},{"Route":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm","AssetFile":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ibxx4kh8c6"},{"Name":"integrity","Value":"sha256-7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY="},{"Name":"label","Value":"_framework/System.IO.Compression.Brotli.wasm"}]},{"Route":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm","AssetFile":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000143988481"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6944"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ibxx4kh8c6"},{"Name":"integrity","Value":"sha256-7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY="},{"Name":"label","Value":"_framework/System.IO.Compression.Brotli.wasm"},{"Name":"original-resource","Value":"\"7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY=\""}]},{"Route":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm.gz","AssetFile":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6944"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ibxx4kh8c6"},{"Name":"integrity","Value":"sha256-1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw="},{"Name":"label","Value":"_framework/System.IO.Compression.Brotli.wasm.gz"}]},{"Route":"_framework/System.IO.Compression.Brotli.wasm","AssetFile":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY="}]},{"Route":"_framework/System.IO.Compression.Brotli.wasm","AssetFile":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000143988481"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6944"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY="},{"Name":"original-resource","Value":"\"7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY=\""}]},{"Route":"_framework/System.IO.Compression.Brotli.wasm.gz","AssetFile":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6944"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw="}]},{"Route":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm","AssetFile":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bselp9vv9w"},{"Name":"integrity","Value":"sha256-5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM="},{"Name":"label","Value":"_framework/System.IO.Compression.FileSystem.wasm"}]},{"Route":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm","AssetFile":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000498504487"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bselp9vv9w"},{"Name":"integrity","Value":"sha256-5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM="},{"Name":"label","Value":"_framework/System.IO.Compression.FileSystem.wasm"},{"Name":"original-resource","Value":"\"5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM=\""}]},{"Route":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm.gz","AssetFile":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bselp9vv9w"},{"Name":"integrity","Value":"sha256-dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI="},{"Name":"label","Value":"_framework/System.IO.Compression.FileSystem.wasm.gz"}]},{"Route":"_framework/System.IO.Compression.FileSystem.wasm","AssetFile":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM="}]},{"Route":"_framework/System.IO.Compression.FileSystem.wasm","AssetFile":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000498504487"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM="},{"Name":"original-resource","Value":"\"5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM=\""}]},{"Route":"_framework/System.IO.Compression.FileSystem.wasm.gz","AssetFile":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI="}]},{"Route":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm","AssetFile":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"43285"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b0ha8vyo8i"},{"Name":"integrity","Value":"sha256-m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk="},{"Name":"label","Value":"_framework/System.IO.Compression.ZipFile.wasm"}]},{"Route":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm","AssetFile":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053490238"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18694"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b0ha8vyo8i"},{"Name":"integrity","Value":"sha256-m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk="},{"Name":"label","Value":"_framework/System.IO.Compression.ZipFile.wasm"},{"Name":"original-resource","Value":"\"m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk=\""}]},{"Route":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm.gz","AssetFile":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18694"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b0ha8vyo8i"},{"Name":"integrity","Value":"sha256-+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc="},{"Name":"label","Value":"_framework/System.IO.Compression.ZipFile.wasm.gz"}]},{"Route":"_framework/System.IO.Compression.ZipFile.wasm","AssetFile":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"43285"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk="}]},{"Route":"_framework/System.IO.Compression.ZipFile.wasm","AssetFile":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053490238"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18694"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk="},{"Name":"original-resource","Value":"\"m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk=\""}]},{"Route":"_framework/System.IO.Compression.ZipFile.wasm.gz","AssetFile":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18694"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc="}]},{"Route":"_framework/System.IO.Compression.sgbc42zrd8.wasm","AssetFile":"_framework/System.IO.Compression.sgbc42zrd8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"157461"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sgbc42zrd8"},{"Name":"integrity","Value":"sha256-DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY="},{"Name":"label","Value":"_framework/System.IO.Compression.wasm"}]},{"Route":"_framework/System.IO.Compression.sgbc42zrd8.wasm","AssetFile":"_framework/System.IO.Compression.sgbc42zrd8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015435195"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64786"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sgbc42zrd8"},{"Name":"integrity","Value":"sha256-DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY="},{"Name":"label","Value":"_framework/System.IO.Compression.wasm"},{"Name":"original-resource","Value":"\"DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY=\""}]},{"Route":"_framework/System.IO.Compression.sgbc42zrd8.wasm.gz","AssetFile":"_framework/System.IO.Compression.sgbc42zrd8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64786"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sgbc42zrd8"},{"Name":"integrity","Value":"sha256-/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28="},{"Name":"label","Value":"_framework/System.IO.Compression.wasm.gz"}]},{"Route":"_framework/System.IO.Compression.wasm","AssetFile":"_framework/System.IO.Compression.sgbc42zrd8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"157461"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY="}]},{"Route":"_framework/System.IO.Compression.wasm","AssetFile":"_framework/System.IO.Compression.sgbc42zrd8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015435195"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64786"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY="},{"Name":"original-resource","Value":"\"DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY=\""}]},{"Route":"_framework/System.IO.Compression.wasm.gz","AssetFile":"_framework/System.IO.Compression.sgbc42zrd8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64786"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28="}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm","AssetFile":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"21781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oi9xn5s0h3"},{"Name":"integrity","Value":"sha256-kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg="},{"Name":"label","Value":"_framework/System.IO.FileSystem.AccessControl.wasm"}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm","AssetFile":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000117994100"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8474"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oi9xn5s0h3"},{"Name":"integrity","Value":"sha256-kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg="},{"Name":"label","Value":"_framework/System.IO.FileSystem.AccessControl.wasm"},{"Name":"original-resource","Value":"\"kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg=\""}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8474"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oi9xn5s0h3"},{"Name":"integrity","Value":"sha256-dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A="},{"Name":"label","Value":"_framework/System.IO.FileSystem.AccessControl.wasm.gz"}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.wasm","AssetFile":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"21781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg="}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.wasm","AssetFile":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000117994100"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8474"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg="},{"Name":"original-resource","Value":"\"kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg=\""}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8474"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A="}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm","AssetFile":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13589"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fi1uhp9255"},{"Name":"integrity","Value":"sha256-2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU="},{"Name":"label","Value":"_framework/System.IO.FileSystem.DriveInfo.wasm"}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm","AssetFile":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000165727544"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fi1uhp9255"},{"Name":"integrity","Value":"sha256-2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU="},{"Name":"label","Value":"_framework/System.IO.FileSystem.DriveInfo.wasm"},{"Name":"original-resource","Value":"\"2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU=\""}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fi1uhp9255"},{"Name":"integrity","Value":"sha256-9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4="},{"Name":"label","Value":"_framework/System.IO.FileSystem.DriveInfo.wasm.gz"}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.wasm","AssetFile":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13589"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU="}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.wasm","AssetFile":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000165727544"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU="},{"Name":"original-resource","Value":"\"2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU=\""}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4="}]},{"Route":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm","AssetFile":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6j2ed42ac7"},{"Name":"integrity","Value":"sha256-UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Primitives.wasm"}]},{"Route":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm","AssetFile":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455996352"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2192"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6j2ed42ac7"},{"Name":"integrity","Value":"sha256-UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Primitives.wasm"},{"Name":"original-resource","Value":"\"UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI=\""}]},{"Route":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2192"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6j2ed42ac7"},{"Name":"integrity","Value":"sha256-apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Primitives.wasm.gz"}]},{"Route":"_framework/System.IO.FileSystem.Primitives.wasm","AssetFile":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI="}]},{"Route":"_framework/System.IO.FileSystem.Primitives.wasm","AssetFile":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455996352"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2192"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI="},{"Name":"original-resource","Value":"\"UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI=\""}]},{"Route":"_framework/System.IO.FileSystem.Primitives.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2192"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg="}]},{"Route":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm","AssetFile":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v9i07bnq2k"},{"Name":"integrity","Value":"sha256-g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Watcher.wasm"}]},{"Route":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm","AssetFile":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000114259598"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8751"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v9i07bnq2k"},{"Name":"integrity","Value":"sha256-g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Watcher.wasm"},{"Name":"original-resource","Value":"\"g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg=\""}]},{"Route":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8751"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v9i07bnq2k"},{"Name":"integrity","Value":"sha256-XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Watcher.wasm.gz"}]},{"Route":"_framework/System.IO.FileSystem.Watcher.wasm","AssetFile":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg="}]},{"Route":"_framework/System.IO.FileSystem.Watcher.wasm","AssetFile":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000114259598"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8751"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg="},{"Name":"original-resource","Value":"\"g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg=\""}]},{"Route":"_framework/System.IO.FileSystem.Watcher.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8751"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ="}]},{"Route":"_framework/System.IO.FileSystem.fktu0k4b93.wasm","AssetFile":"_framework/System.IO.FileSystem.fktu0k4b93.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fktu0k4b93"},{"Name":"integrity","Value":"sha256-L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM="},{"Name":"label","Value":"_framework/System.IO.FileSystem.wasm"}]},{"Route":"_framework/System.IO.FileSystem.fktu0k4b93.wasm","AssetFile":"_framework/System.IO.FileSystem.fktu0k4b93.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000434027778"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2303"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fktu0k4b93"},{"Name":"integrity","Value":"sha256-L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM="},{"Name":"label","Value":"_framework/System.IO.FileSystem.wasm"},{"Name":"original-resource","Value":"\"L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM=\""}]},{"Route":"_framework/System.IO.FileSystem.fktu0k4b93.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.fktu0k4b93.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2303"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fktu0k4b93"},{"Name":"integrity","Value":"sha256-1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ="},{"Name":"label","Value":"_framework/System.IO.FileSystem.wasm.gz"}]},{"Route":"_framework/System.IO.FileSystem.wasm","AssetFile":"_framework/System.IO.FileSystem.fktu0k4b93.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM="}]},{"Route":"_framework/System.IO.FileSystem.wasm","AssetFile":"_framework/System.IO.FileSystem.fktu0k4b93.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000434027778"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2303"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM="},{"Name":"original-resource","Value":"\"L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM=\""}]},{"Route":"_framework/System.IO.FileSystem.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.fktu0k4b93.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2303"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ="}]},{"Route":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm","AssetFile":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"24853"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8ll4gxwfs1"},{"Name":"integrity","Value":"sha256-TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4="},{"Name":"label","Value":"_framework/System.IO.IsolatedStorage.wasm"}]},{"Route":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm","AssetFile":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000106723586"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9369"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8ll4gxwfs1"},{"Name":"integrity","Value":"sha256-TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4="},{"Name":"label","Value":"_framework/System.IO.IsolatedStorage.wasm"},{"Name":"original-resource","Value":"\"TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4=\""}]},{"Route":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm.gz","AssetFile":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9369"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8ll4gxwfs1"},{"Name":"integrity","Value":"sha256-KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ="},{"Name":"label","Value":"_framework/System.IO.IsolatedStorage.wasm.gz"}]},{"Route":"_framework/System.IO.IsolatedStorage.wasm","AssetFile":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"24853"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4="}]},{"Route":"_framework/System.IO.IsolatedStorage.wasm","AssetFile":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000106723586"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9369"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4="},{"Name":"original-resource","Value":"\"TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4=\""}]},{"Route":"_framework/System.IO.IsolatedStorage.wasm.gz","AssetFile":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9369"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ="}]},{"Route":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm","AssetFile":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"39701"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6do4olk7ib"},{"Name":"integrity","Value":"sha256-WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk="},{"Name":"label","Value":"_framework/System.IO.MemoryMappedFiles.wasm"}]},{"Route":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm","AssetFile":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000058775126"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6do4olk7ib"},{"Name":"integrity","Value":"sha256-WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk="},{"Name":"label","Value":"_framework/System.IO.MemoryMappedFiles.wasm"},{"Name":"original-resource","Value":"\"WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk=\""}]},{"Route":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm.gz","AssetFile":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6do4olk7ib"},{"Name":"integrity","Value":"sha256-uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk="},{"Name":"label","Value":"_framework/System.IO.MemoryMappedFiles.wasm.gz"}]},{"Route":"_framework/System.IO.MemoryMappedFiles.wasm","AssetFile":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"39701"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk="}]},{"Route":"_framework/System.IO.MemoryMappedFiles.wasm","AssetFile":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000058775126"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk="},{"Name":"original-resource","Value":"\"WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk=\""}]},{"Route":"_framework/System.IO.MemoryMappedFiles.wasm.gz","AssetFile":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk="}]},{"Route":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm","AssetFile":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"67861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"21z0t9w6sq"},{"Name":"integrity","Value":"sha256-VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM="},{"Name":"label","Value":"_framework/System.IO.Pipelines.wasm"}]},{"Route":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm","AssetFile":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032928315"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30368"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"21z0t9w6sq"},{"Name":"integrity","Value":"sha256-VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM="},{"Name":"label","Value":"_framework/System.IO.Pipelines.wasm"},{"Name":"original-resource","Value":"\"VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM=\""}]},{"Route":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm.gz","AssetFile":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30368"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"21z0t9w6sq"},{"Name":"integrity","Value":"sha256-7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8="},{"Name":"label","Value":"_framework/System.IO.Pipelines.wasm.gz"}]},{"Route":"_framework/System.IO.Pipelines.wasm","AssetFile":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"67861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM="}]},{"Route":"_framework/System.IO.Pipelines.wasm","AssetFile":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032928315"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30368"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM="},{"Name":"original-resource","Value":"\"VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM=\""}]},{"Route":"_framework/System.IO.Pipelines.wasm.gz","AssetFile":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30368"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8="}]},{"Route":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm","AssetFile":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5lvzz4lks7"},{"Name":"integrity","Value":"sha256-qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE="},{"Name":"label","Value":"_framework/System.IO.Pipes.AccessControl.wasm"}]},{"Route":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm","AssetFile":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000179597701"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5567"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5lvzz4lks7"},{"Name":"integrity","Value":"sha256-qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE="},{"Name":"label","Value":"_framework/System.IO.Pipes.AccessControl.wasm"},{"Name":"original-resource","Value":"\"qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE=\""}]},{"Route":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm.gz","AssetFile":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5567"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5lvzz4lks7"},{"Name":"integrity","Value":"sha256-+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4="},{"Name":"label","Value":"_framework/System.IO.Pipes.AccessControl.wasm.gz"}]},{"Route":"_framework/System.IO.Pipes.AccessControl.wasm","AssetFile":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE="}]},{"Route":"_framework/System.IO.Pipes.AccessControl.wasm","AssetFile":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000179597701"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5567"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE="},{"Name":"original-resource","Value":"\"qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE=\""}]},{"Route":"_framework/System.IO.Pipes.AccessControl.wasm.gz","AssetFile":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5567"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4="}]},{"Route":"_framework/System.IO.Pipes.wasm","AssetFile":"_framework/System.IO.Pipes.xosph8vk4a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg="}]},{"Route":"_framework/System.IO.Pipes.wasm","AssetFile":"_framework/System.IO.Pipes.xosph8vk4a.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000087703912"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg="},{"Name":"original-resource","Value":"\"gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg=\""}]},{"Route":"_framework/System.IO.Pipes.wasm.gz","AssetFile":"_framework/System.IO.Pipes.xosph8vk4a.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE="}]},{"Route":"_framework/System.IO.Pipes.xosph8vk4a.wasm","AssetFile":"_framework/System.IO.Pipes.xosph8vk4a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xosph8vk4a"},{"Name":"integrity","Value":"sha256-gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg="},{"Name":"label","Value":"_framework/System.IO.Pipes.wasm"}]},{"Route":"_framework/System.IO.Pipes.xosph8vk4a.wasm","AssetFile":"_framework/System.IO.Pipes.xosph8vk4a.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000087703912"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xosph8vk4a"},{"Name":"integrity","Value":"sha256-gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg="},{"Name":"label","Value":"_framework/System.IO.Pipes.wasm"},{"Name":"original-resource","Value":"\"gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg=\""}]},{"Route":"_framework/System.IO.Pipes.xosph8vk4a.wasm.gz","AssetFile":"_framework/System.IO.Pipes.xosph8vk4a.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xosph8vk4a"},{"Name":"integrity","Value":"sha256-BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE="},{"Name":"label","Value":"_framework/System.IO.Pipes.wasm.gz"}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm","AssetFile":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d1pja42pyi"},{"Name":"integrity","Value":"sha256-gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4="},{"Name":"label","Value":"_framework/System.IO.UnmanagedMemoryStream.wasm"}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm","AssetFile":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000450045005"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2221"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d1pja42pyi"},{"Name":"integrity","Value":"sha256-gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4="},{"Name":"label","Value":"_framework/System.IO.UnmanagedMemoryStream.wasm"},{"Name":"original-resource","Value":"\"gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4=\""}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm.gz","AssetFile":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2221"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d1pja42pyi"},{"Name":"integrity","Value":"sha256-TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU="},{"Name":"label","Value":"_framework/System.IO.UnmanagedMemoryStream.wasm.gz"}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.wasm","AssetFile":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4="}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.wasm","AssetFile":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000450045005"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2221"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4="},{"Name":"original-resource","Value":"\"gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4=\""}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.wasm.gz","AssetFile":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2221"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU="}]},{"Route":"_framework/System.IO.i9g92fmb9y.wasm","AssetFile":"_framework/System.IO.i9g92fmb9y.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"i9g92fmb9y"},{"Name":"integrity","Value":"sha256-akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw="},{"Name":"label","Value":"_framework/System.IO.wasm"}]},{"Route":"_framework/System.IO.i9g92fmb9y.wasm","AssetFile":"_framework/System.IO.i9g92fmb9y.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438404209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"i9g92fmb9y"},{"Name":"integrity","Value":"sha256-akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw="},{"Name":"label","Value":"_framework/System.IO.wasm"},{"Name":"original-resource","Value":"\"akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw=\""}]},{"Route":"_framework/System.IO.i9g92fmb9y.wasm.gz","AssetFile":"_framework/System.IO.i9g92fmb9y.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"i9g92fmb9y"},{"Name":"integrity","Value":"sha256-DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM="},{"Name":"label","Value":"_framework/System.IO.wasm.gz"}]},{"Route":"_framework/System.IO.wasm","AssetFile":"_framework/System.IO.i9g92fmb9y.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw="}]},{"Route":"_framework/System.IO.wasm","AssetFile":"_framework/System.IO.i9g92fmb9y.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438404209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw="},{"Name":"original-resource","Value":"\"akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw=\""}]},{"Route":"_framework/System.IO.wasm.gz","AssetFile":"_framework/System.IO.i9g92fmb9y.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM="}]},{"Route":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm","AssetFile":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"446229"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m1mh525k0"},{"Name":"integrity","Value":"sha256-VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48="},{"Name":"label","Value":"_framework/System.Linq.AsyncEnumerable.wasm"}]},{"Route":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm","AssetFile":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006961607"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"143644"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m1mh525k0"},{"Name":"integrity","Value":"sha256-VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48="},{"Name":"label","Value":"_framework/System.Linq.AsyncEnumerable.wasm"},{"Name":"original-resource","Value":"\"VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48=\""}]},{"Route":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm.gz","AssetFile":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"143644"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m1mh525k0"},{"Name":"integrity","Value":"sha256-Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8="},{"Name":"label","Value":"_framework/System.Linq.AsyncEnumerable.wasm.gz"}]},{"Route":"_framework/System.Linq.AsyncEnumerable.wasm","AssetFile":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"446229"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48="}]},{"Route":"_framework/System.Linq.AsyncEnumerable.wasm","AssetFile":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006961607"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"143644"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48="},{"Name":"original-resource","Value":"\"VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48=\""}]},{"Route":"_framework/System.Linq.AsyncEnumerable.wasm.gz","AssetFile":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"143644"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8="}]},{"Route":"_framework/System.Linq.Expressions.4nat0rber0.wasm","AssetFile":"_framework/System.Linq.Expressions.4nat0rber0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"565013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4nat0rber0"},{"Name":"integrity","Value":"sha256-IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA="},{"Name":"label","Value":"_framework/System.Linq.Expressions.wasm"}]},{"Route":"_framework/System.Linq.Expressions.4nat0rber0.wasm","AssetFile":"_framework/System.Linq.Expressions.4nat0rber0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004689002"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"213264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4nat0rber0"},{"Name":"integrity","Value":"sha256-IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA="},{"Name":"label","Value":"_framework/System.Linq.Expressions.wasm"},{"Name":"original-resource","Value":"\"IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA=\""}]},{"Route":"_framework/System.Linq.Expressions.4nat0rber0.wasm.gz","AssetFile":"_framework/System.Linq.Expressions.4nat0rber0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"213264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4nat0rber0"},{"Name":"integrity","Value":"sha256-Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0="},{"Name":"label","Value":"_framework/System.Linq.Expressions.wasm.gz"}]},{"Route":"_framework/System.Linq.Expressions.wasm","AssetFile":"_framework/System.Linq.Expressions.4nat0rber0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"565013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA="}]},{"Route":"_framework/System.Linq.Expressions.wasm","AssetFile":"_framework/System.Linq.Expressions.4nat0rber0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004689002"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"213264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA="},{"Name":"original-resource","Value":"\"IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA=\""}]},{"Route":"_framework/System.Linq.Expressions.wasm.gz","AssetFile":"_framework/System.Linq.Expressions.4nat0rber0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"213264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0="}]},{"Route":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm","AssetFile":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"212757"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qf7zemz9aw"},{"Name":"integrity","Value":"sha256-ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18="},{"Name":"label","Value":"_framework/System.Linq.Parallel.wasm"}]},{"Route":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm","AssetFile":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011571663"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86417"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qf7zemz9aw"},{"Name":"integrity","Value":"sha256-ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18="},{"Name":"label","Value":"_framework/System.Linq.Parallel.wasm"},{"Name":"original-resource","Value":"\"ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18=\""}]},{"Route":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm.gz","AssetFile":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86417"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qf7zemz9aw"},{"Name":"integrity","Value":"sha256-NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo="},{"Name":"label","Value":"_framework/System.Linq.Parallel.wasm.gz"}]},{"Route":"_framework/System.Linq.Parallel.wasm","AssetFile":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"212757"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18="}]},{"Route":"_framework/System.Linq.Parallel.wasm","AssetFile":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011571663"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86417"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18="},{"Name":"original-resource","Value":"\"ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18=\""}]},{"Route":"_framework/System.Linq.Parallel.wasm.gz","AssetFile":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86417"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo="}]},{"Route":"_framework/System.Linq.Queryable.vwinf8twbn.wasm","AssetFile":"_framework/System.Linq.Queryable.vwinf8twbn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"68373"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vwinf8twbn"},{"Name":"integrity","Value":"sha256-geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM="},{"Name":"label","Value":"_framework/System.Linq.Queryable.wasm"}]},{"Route":"_framework/System.Linq.Queryable.vwinf8twbn.wasm","AssetFile":"_framework/System.Linq.Queryable.vwinf8twbn.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000046755190"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21387"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vwinf8twbn"},{"Name":"integrity","Value":"sha256-geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM="},{"Name":"label","Value":"_framework/System.Linq.Queryable.wasm"},{"Name":"original-resource","Value":"\"geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM=\""}]},{"Route":"_framework/System.Linq.Queryable.vwinf8twbn.wasm.gz","AssetFile":"_framework/System.Linq.Queryable.vwinf8twbn.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21387"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vwinf8twbn"},{"Name":"integrity","Value":"sha256-K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts="},{"Name":"label","Value":"_framework/System.Linq.Queryable.wasm.gz"}]},{"Route":"_framework/System.Linq.Queryable.wasm","AssetFile":"_framework/System.Linq.Queryable.vwinf8twbn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"68373"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM="}]},{"Route":"_framework/System.Linq.Queryable.wasm","AssetFile":"_framework/System.Linq.Queryable.vwinf8twbn.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000046755190"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21387"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM="},{"Name":"original-resource","Value":"\"geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM=\""}]},{"Route":"_framework/System.Linq.Queryable.wasm.gz","AssetFile":"_framework/System.Linq.Queryable.vwinf8twbn.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21387"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts="}]},{"Route":"_framework/System.Linq.rp2jklkmsi.wasm","AssetFile":"_framework/System.Linq.rp2jklkmsi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"190741"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rp2jklkmsi"},{"Name":"integrity","Value":"sha256-f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA="},{"Name":"label","Value":"_framework/System.Linq.wasm"}]},{"Route":"_framework/System.Linq.rp2jklkmsi.wasm","AssetFile":"_framework/System.Linq.rp2jklkmsi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013362017"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"74838"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rp2jklkmsi"},{"Name":"integrity","Value":"sha256-f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA="},{"Name":"label","Value":"_framework/System.Linq.wasm"},{"Name":"original-resource","Value":"\"f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA=\""}]},{"Route":"_framework/System.Linq.rp2jklkmsi.wasm.gz","AssetFile":"_framework/System.Linq.rp2jklkmsi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"74838"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rp2jklkmsi"},{"Name":"integrity","Value":"sha256-+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw="},{"Name":"label","Value":"_framework/System.Linq.wasm.gz"}]},{"Route":"_framework/System.Linq.wasm","AssetFile":"_framework/System.Linq.rp2jklkmsi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"190741"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA="}]},{"Route":"_framework/System.Linq.wasm","AssetFile":"_framework/System.Linq.rp2jklkmsi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013362017"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"74838"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA="},{"Name":"original-resource","Value":"\"f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA=\""}]},{"Route":"_framework/System.Linq.wasm.gz","AssetFile":"_framework/System.Linq.rp2jklkmsi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"74838"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw="}]},{"Route":"_framework/System.Memory.3r0soomurg.wasm","AssetFile":"_framework/System.Memory.3r0soomurg.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"45333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3r0soomurg"},{"Name":"integrity","Value":"sha256-z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc="},{"Name":"label","Value":"_framework/System.Memory.wasm"}]},{"Route":"_framework/System.Memory.3r0soomurg.wasm","AssetFile":"_framework/System.Memory.3r0soomurg.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000048600311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3r0soomurg"},{"Name":"integrity","Value":"sha256-z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc="},{"Name":"label","Value":"_framework/System.Memory.wasm"},{"Name":"original-resource","Value":"\"z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc=\""}]},{"Route":"_framework/System.Memory.3r0soomurg.wasm.gz","AssetFile":"_framework/System.Memory.3r0soomurg.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3r0soomurg"},{"Name":"integrity","Value":"sha256-lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60="},{"Name":"label","Value":"_framework/System.Memory.wasm.gz"}]},{"Route":"_framework/System.Memory.wasm","AssetFile":"_framework/System.Memory.3r0soomurg.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"45333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc="}]},{"Route":"_framework/System.Memory.wasm","AssetFile":"_framework/System.Memory.3r0soomurg.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000048600311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc="},{"Name":"original-resource","Value":"\"z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc=\""}]},{"Route":"_framework/System.Memory.wasm.gz","AssetFile":"_framework/System.Memory.3r0soomurg.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60="}]},{"Route":"_framework/System.Net.Http.9rl4gopayw.wasm","AssetFile":"_framework/System.Net.Http.9rl4gopayw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"285973"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9rl4gopayw"},{"Name":"integrity","Value":"sha256-JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU="},{"Name":"label","Value":"_framework/System.Net.Http.wasm"}]},{"Route":"_framework/System.Net.Http.9rl4gopayw.wasm","AssetFile":"_framework/System.Net.Http.9rl4gopayw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008532787"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"117194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9rl4gopayw"},{"Name":"integrity","Value":"sha256-JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU="},{"Name":"label","Value":"_framework/System.Net.Http.wasm"},{"Name":"original-resource","Value":"\"JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU=\""}]},{"Route":"_framework/System.Net.Http.9rl4gopayw.wasm.gz","AssetFile":"_framework/System.Net.Http.9rl4gopayw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"117194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9rl4gopayw"},{"Name":"integrity","Value":"sha256-Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc="},{"Name":"label","Value":"_framework/System.Net.Http.wasm.gz"}]},{"Route":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm","AssetFile":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t9gqpmtbpb"},{"Name":"integrity","Value":"sha256-H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0="},{"Name":"label","Value":"_framework/System.Net.Http.Json.wasm"}]},{"Route":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm","AssetFile":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051591601"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19382"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t9gqpmtbpb"},{"Name":"integrity","Value":"sha256-H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0="},{"Name":"label","Value":"_framework/System.Net.Http.Json.wasm"},{"Name":"original-resource","Value":"\"H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0=\""}]},{"Route":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm.gz","AssetFile":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19382"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t9gqpmtbpb"},{"Name":"integrity","Value":"sha256-h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg="},{"Name":"label","Value":"_framework/System.Net.Http.Json.wasm.gz"}]},{"Route":"_framework/System.Net.Http.Json.wasm","AssetFile":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0="}]},{"Route":"_framework/System.Net.Http.Json.wasm","AssetFile":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051591601"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19382"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0="},{"Name":"original-resource","Value":"\"H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0=\""}]},{"Route":"_framework/System.Net.Http.Json.wasm.gz","AssetFile":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19382"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg="}]},{"Route":"_framework/System.Net.Http.wasm","AssetFile":"_framework/System.Net.Http.9rl4gopayw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"285973"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU="}]},{"Route":"_framework/System.Net.Http.wasm","AssetFile":"_framework/System.Net.Http.9rl4gopayw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008532787"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"117194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU="},{"Name":"original-resource","Value":"\"JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU=\""}]},{"Route":"_framework/System.Net.Http.wasm.gz","AssetFile":"_framework/System.Net.Http.9rl4gopayw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"117194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc="}]},{"Route":"_framework/System.Net.HttpListener.wasm","AssetFile":"_framework/System.Net.HttpListener.zg37o92yol.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE="}]},{"Route":"_framework/System.Net.HttpListener.wasm","AssetFile":"_framework/System.Net.HttpListener.zg37o92yol.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000062289772"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE="},{"Name":"original-resource","Value":"\"rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE=\""}]},{"Route":"_framework/System.Net.HttpListener.wasm.gz","AssetFile":"_framework/System.Net.HttpListener.zg37o92yol.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs="}]},{"Route":"_framework/System.Net.HttpListener.zg37o92yol.wasm","AssetFile":"_framework/System.Net.HttpListener.zg37o92yol.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zg37o92yol"},{"Name":"integrity","Value":"sha256-rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE="},{"Name":"label","Value":"_framework/System.Net.HttpListener.wasm"}]},{"Route":"_framework/System.Net.HttpListener.zg37o92yol.wasm","AssetFile":"_framework/System.Net.HttpListener.zg37o92yol.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000062289772"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zg37o92yol"},{"Name":"integrity","Value":"sha256-rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE="},{"Name":"label","Value":"_framework/System.Net.HttpListener.wasm"},{"Name":"original-resource","Value":"\"rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE=\""}]},{"Route":"_framework/System.Net.HttpListener.zg37o92yol.wasm.gz","AssetFile":"_framework/System.Net.HttpListener.zg37o92yol.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zg37o92yol"},{"Name":"integrity","Value":"sha256-2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs="},{"Name":"label","Value":"_framework/System.Net.HttpListener.wasm.gz"}]},{"Route":"_framework/System.Net.Mail.qk214miut2.wasm","AssetFile":"_framework/System.Net.Mail.qk214miut2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"94997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qk214miut2"},{"Name":"integrity","Value":"sha256-tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk="},{"Name":"label","Value":"_framework/System.Net.Mail.wasm"}]},{"Route":"_framework/System.Net.Mail.qk214miut2.wasm","AssetFile":"_framework/System.Net.Mail.qk214miut2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023562122"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42440"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qk214miut2"},{"Name":"integrity","Value":"sha256-tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk="},{"Name":"label","Value":"_framework/System.Net.Mail.wasm"},{"Name":"original-resource","Value":"\"tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk=\""}]},{"Route":"_framework/System.Net.Mail.qk214miut2.wasm.gz","AssetFile":"_framework/System.Net.Mail.qk214miut2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42440"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qk214miut2"},{"Name":"integrity","Value":"sha256-T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys="},{"Name":"label","Value":"_framework/System.Net.Mail.wasm.gz"}]},{"Route":"_framework/System.Net.Mail.wasm","AssetFile":"_framework/System.Net.Mail.qk214miut2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"94997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk="}]},{"Route":"_framework/System.Net.Mail.wasm","AssetFile":"_framework/System.Net.Mail.qk214miut2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023562122"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42440"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk="},{"Name":"original-resource","Value":"\"tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk=\""}]},{"Route":"_framework/System.Net.Mail.wasm.gz","AssetFile":"_framework/System.Net.Mail.qk214miut2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42440"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys="}]},{"Route":"_framework/System.Net.NameResolution.50dzekuu9x.wasm","AssetFile":"_framework/System.Net.NameResolution.50dzekuu9x.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"14101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"50dzekuu9x"},{"Name":"integrity","Value":"sha256-a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs="},{"Name":"label","Value":"_framework/System.Net.NameResolution.wasm"}]},{"Route":"_framework/System.Net.NameResolution.50dzekuu9x.wasm","AssetFile":"_framework/System.Net.NameResolution.50dzekuu9x.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000168520391"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"50dzekuu9x"},{"Name":"integrity","Value":"sha256-a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs="},{"Name":"label","Value":"_framework/System.Net.NameResolution.wasm"},{"Name":"original-resource","Value":"\"a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs=\""}]},{"Route":"_framework/System.Net.NameResolution.50dzekuu9x.wasm.gz","AssetFile":"_framework/System.Net.NameResolution.50dzekuu9x.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"50dzekuu9x"},{"Name":"integrity","Value":"sha256-A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI="},{"Name":"label","Value":"_framework/System.Net.NameResolution.wasm.gz"}]},{"Route":"_framework/System.Net.NameResolution.wasm","AssetFile":"_framework/System.Net.NameResolution.50dzekuu9x.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"14101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs="}]},{"Route":"_framework/System.Net.NameResolution.wasm","AssetFile":"_framework/System.Net.NameResolution.50dzekuu9x.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000168520391"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs="},{"Name":"original-resource","Value":"\"a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs=\""}]},{"Route":"_framework/System.Net.NameResolution.wasm.gz","AssetFile":"_framework/System.Net.NameResolution.50dzekuu9x.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI="}]},{"Route":"_framework/System.Net.NetworkInformation.k8343mqust.wasm","AssetFile":"_framework/System.Net.NetworkInformation.k8343mqust.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8343mqust"},{"Name":"integrity","Value":"sha256-ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8="},{"Name":"label","Value":"_framework/System.Net.NetworkInformation.wasm"}]},{"Route":"_framework/System.Net.NetworkInformation.k8343mqust.wasm","AssetFile":"_framework/System.Net.NetworkInformation.k8343mqust.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000078560767"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12728"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8343mqust"},{"Name":"integrity","Value":"sha256-ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8="},{"Name":"label","Value":"_framework/System.Net.NetworkInformation.wasm"},{"Name":"original-resource","Value":"\"ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8=\""}]},{"Route":"_framework/System.Net.NetworkInformation.k8343mqust.wasm.gz","AssetFile":"_framework/System.Net.NetworkInformation.k8343mqust.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12728"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8343mqust"},{"Name":"integrity","Value":"sha256-Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0="},{"Name":"label","Value":"_framework/System.Net.NetworkInformation.wasm.gz"}]},{"Route":"_framework/System.Net.NetworkInformation.wasm","AssetFile":"_framework/System.Net.NetworkInformation.k8343mqust.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8="}]},{"Route":"_framework/System.Net.NetworkInformation.wasm","AssetFile":"_framework/System.Net.NetworkInformation.k8343mqust.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000078560767"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12728"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8="},{"Name":"original-resource","Value":"\"ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8=\""}]},{"Route":"_framework/System.Net.NetworkInformation.wasm.gz","AssetFile":"_framework/System.Net.NetworkInformation.k8343mqust.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12728"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0="}]},{"Route":"_framework/System.Net.Ping.00vh2kvsiz.wasm","AssetFile":"_framework/System.Net.Ping.00vh2kvsiz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"17685"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"00vh2kvsiz"},{"Name":"integrity","Value":"sha256-MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s="},{"Name":"label","Value":"_framework/System.Net.Ping.wasm"}]},{"Route":"_framework/System.Net.Ping.00vh2kvsiz.wasm","AssetFile":"_framework/System.Net.Ping.00vh2kvsiz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000132573247"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7542"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"00vh2kvsiz"},{"Name":"integrity","Value":"sha256-MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s="},{"Name":"label","Value":"_framework/System.Net.Ping.wasm"},{"Name":"original-resource","Value":"\"MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s=\""}]},{"Route":"_framework/System.Net.Ping.00vh2kvsiz.wasm.gz","AssetFile":"_framework/System.Net.Ping.00vh2kvsiz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7542"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"00vh2kvsiz"},{"Name":"integrity","Value":"sha256-MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM="},{"Name":"label","Value":"_framework/System.Net.Ping.wasm.gz"}]},{"Route":"_framework/System.Net.Ping.wasm","AssetFile":"_framework/System.Net.Ping.00vh2kvsiz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"17685"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s="}]},{"Route":"_framework/System.Net.Ping.wasm","AssetFile":"_framework/System.Net.Ping.00vh2kvsiz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000132573247"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7542"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s="},{"Name":"original-resource","Value":"\"MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s=\""}]},{"Route":"_framework/System.Net.Ping.wasm.gz","AssetFile":"_framework/System.Net.Ping.00vh2kvsiz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7542"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM="}]},{"Route":"_framework/System.Net.Primitives.wasm","AssetFile":"_framework/System.Net.Primitives.whs5oed1wm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"97045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s="}]},{"Route":"_framework/System.Net.Primitives.wasm","AssetFile":"_framework/System.Net.Primitives.whs5oed1wm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000021790765"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"45890"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s="},{"Name":"original-resource","Value":"\"fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s=\""}]},{"Route":"_framework/System.Net.Primitives.wasm.gz","AssetFile":"_framework/System.Net.Primitives.whs5oed1wm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"45890"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0="}]},{"Route":"_framework/System.Net.Primitives.whs5oed1wm.wasm","AssetFile":"_framework/System.Net.Primitives.whs5oed1wm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"97045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"whs5oed1wm"},{"Name":"integrity","Value":"sha256-fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s="},{"Name":"label","Value":"_framework/System.Net.Primitives.wasm"}]},{"Route":"_framework/System.Net.Primitives.whs5oed1wm.wasm","AssetFile":"_framework/System.Net.Primitives.whs5oed1wm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000021790765"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"45890"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"whs5oed1wm"},{"Name":"integrity","Value":"sha256-fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s="},{"Name":"label","Value":"_framework/System.Net.Primitives.wasm"},{"Name":"original-resource","Value":"\"fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s=\""}]},{"Route":"_framework/System.Net.Primitives.whs5oed1wm.wasm.gz","AssetFile":"_framework/System.Net.Primitives.whs5oed1wm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"45890"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"whs5oed1wm"},{"Name":"integrity","Value":"sha256-v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0="},{"Name":"label","Value":"_framework/System.Net.Primitives.wasm.gz"}]},{"Route":"_framework/System.Net.Quic.grloe2ix5j.wasm","AssetFile":"_framework/System.Net.Quic.grloe2ix5j.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"28949"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"grloe2ix5j"},{"Name":"integrity","Value":"sha256-1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA="},{"Name":"label","Value":"_framework/System.Net.Quic.wasm"}]},{"Route":"_framework/System.Net.Quic.grloe2ix5j.wasm","AssetFile":"_framework/System.Net.Quic.grloe2ix5j.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000091449474"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10934"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"grloe2ix5j"},{"Name":"integrity","Value":"sha256-1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA="},{"Name":"label","Value":"_framework/System.Net.Quic.wasm"},{"Name":"original-resource","Value":"\"1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA=\""}]},{"Route":"_framework/System.Net.Quic.grloe2ix5j.wasm.gz","AssetFile":"_framework/System.Net.Quic.grloe2ix5j.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10934"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"grloe2ix5j"},{"Name":"integrity","Value":"sha256-IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8="},{"Name":"label","Value":"_framework/System.Net.Quic.wasm.gz"}]},{"Route":"_framework/System.Net.Quic.wasm","AssetFile":"_framework/System.Net.Quic.grloe2ix5j.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"28949"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA="}]},{"Route":"_framework/System.Net.Quic.wasm","AssetFile":"_framework/System.Net.Quic.grloe2ix5j.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000091449474"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10934"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA="},{"Name":"original-resource","Value":"\"1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA=\""}]},{"Route":"_framework/System.Net.Quic.wasm.gz","AssetFile":"_framework/System.Net.Quic.grloe2ix5j.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10934"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8="}]},{"Route":"_framework/System.Net.Requests.r8ar2pd94c.wasm","AssetFile":"_framework/System.Net.Requests.r8ar2pd94c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r8ar2pd94c"},{"Name":"integrity","Value":"sha256-ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88="},{"Name":"label","Value":"_framework/System.Net.Requests.wasm"}]},{"Route":"_framework/System.Net.Requests.r8ar2pd94c.wasm","AssetFile":"_framework/System.Net.Requests.r8ar2pd94c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000049275648"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20293"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r8ar2pd94c"},{"Name":"integrity","Value":"sha256-ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88="},{"Name":"label","Value":"_framework/System.Net.Requests.wasm"},{"Name":"original-resource","Value":"\"ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88=\""}]},{"Route":"_framework/System.Net.Requests.r8ar2pd94c.wasm.gz","AssetFile":"_framework/System.Net.Requests.r8ar2pd94c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20293"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r8ar2pd94c"},{"Name":"integrity","Value":"sha256-gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA="},{"Name":"label","Value":"_framework/System.Net.Requests.wasm.gz"}]},{"Route":"_framework/System.Net.Requests.wasm","AssetFile":"_framework/System.Net.Requests.r8ar2pd94c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88="}]},{"Route":"_framework/System.Net.Requests.wasm","AssetFile":"_framework/System.Net.Requests.r8ar2pd94c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000049275648"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20293"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88="},{"Name":"original-resource","Value":"\"ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88=\""}]},{"Route":"_framework/System.Net.Requests.wasm.gz","AssetFile":"_framework/System.Net.Requests.r8ar2pd94c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20293"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA="}]},{"Route":"_framework/System.Net.Security.wasm","AssetFile":"_framework/System.Net.Security.yn3zcskz4j.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"104213"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ="}]},{"Route":"_framework/System.Net.Security.wasm","AssetFile":"_framework/System.Net.Security.yn3zcskz4j.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029683279"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33688"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ="},{"Name":"original-resource","Value":"\"TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ=\""}]},{"Route":"_framework/System.Net.Security.wasm.gz","AssetFile":"_framework/System.Net.Security.yn3zcskz4j.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33688"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ="}]},{"Route":"_framework/System.Net.Security.yn3zcskz4j.wasm","AssetFile":"_framework/System.Net.Security.yn3zcskz4j.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"104213"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yn3zcskz4j"},{"Name":"integrity","Value":"sha256-TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ="},{"Name":"label","Value":"_framework/System.Net.Security.wasm"}]},{"Route":"_framework/System.Net.Security.yn3zcskz4j.wasm","AssetFile":"_framework/System.Net.Security.yn3zcskz4j.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029683279"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33688"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yn3zcskz4j"},{"Name":"integrity","Value":"sha256-TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ="},{"Name":"label","Value":"_framework/System.Net.Security.wasm"},{"Name":"original-resource","Value":"\"TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ=\""}]},{"Route":"_framework/System.Net.Security.yn3zcskz4j.wasm.gz","AssetFile":"_framework/System.Net.Security.yn3zcskz4j.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33688"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yn3zcskz4j"},{"Name":"integrity","Value":"sha256-pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ="},{"Name":"label","Value":"_framework/System.Net.Security.wasm.gz"}]},{"Route":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm","AssetFile":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"30485"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37wbq4jfsy"},{"Name":"integrity","Value":"sha256-Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho="},{"Name":"label","Value":"_framework/System.Net.ServerSentEvents.wasm"}]},{"Route":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm","AssetFile":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000068175620"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14667"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37wbq4jfsy"},{"Name":"integrity","Value":"sha256-Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho="},{"Name":"label","Value":"_framework/System.Net.ServerSentEvents.wasm"},{"Name":"original-resource","Value":"\"Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho=\""}]},{"Route":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm.gz","AssetFile":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14667"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37wbq4jfsy"},{"Name":"integrity","Value":"sha256-FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o="},{"Name":"label","Value":"_framework/System.Net.ServerSentEvents.wasm.gz"}]},{"Route":"_framework/System.Net.ServerSentEvents.wasm","AssetFile":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"30485"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho="}]},{"Route":"_framework/System.Net.ServerSentEvents.wasm","AssetFile":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000068175620"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14667"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho="},{"Name":"original-resource","Value":"\"Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho=\""}]},{"Route":"_framework/System.Net.ServerSentEvents.wasm.gz","AssetFile":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14667"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o="}]},{"Route":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm","AssetFile":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j436yqvrg9"},{"Name":"integrity","Value":"sha256-rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg="},{"Name":"label","Value":"_framework/System.Net.ServicePoint.wasm"}]},{"Route":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm","AssetFile":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000458715596"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2179"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j436yqvrg9"},{"Name":"integrity","Value":"sha256-rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg="},{"Name":"label","Value":"_framework/System.Net.ServicePoint.wasm"},{"Name":"original-resource","Value":"\"rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg=\""}]},{"Route":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm.gz","AssetFile":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2179"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j436yqvrg9"},{"Name":"integrity","Value":"sha256-NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI="},{"Name":"label","Value":"_framework/System.Net.ServicePoint.wasm.gz"}]},{"Route":"_framework/System.Net.ServicePoint.wasm","AssetFile":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg="}]},{"Route":"_framework/System.Net.ServicePoint.wasm","AssetFile":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000458715596"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2179"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg="},{"Name":"original-resource","Value":"\"rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg=\""}]},{"Route":"_framework/System.Net.ServicePoint.wasm.gz","AssetFile":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2179"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI="}]},{"Route":"_framework/System.Net.Sockets.utzdm9sw2p.wasm","AssetFile":"_framework/System.Net.Sockets.utzdm9sw2p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"64277"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"utzdm9sw2p"},{"Name":"integrity","Value":"sha256-olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo="},{"Name":"label","Value":"_framework/System.Net.Sockets.wasm"}]},{"Route":"_framework/System.Net.Sockets.utzdm9sw2p.wasm","AssetFile":"_framework/System.Net.Sockets.utzdm9sw2p.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000043631921"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22918"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"utzdm9sw2p"},{"Name":"integrity","Value":"sha256-olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo="},{"Name":"label","Value":"_framework/System.Net.Sockets.wasm"},{"Name":"original-resource","Value":"\"olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo=\""}]},{"Route":"_framework/System.Net.Sockets.utzdm9sw2p.wasm.gz","AssetFile":"_framework/System.Net.Sockets.utzdm9sw2p.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22918"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"utzdm9sw2p"},{"Name":"integrity","Value":"sha256-XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI="},{"Name":"label","Value":"_framework/System.Net.Sockets.wasm.gz"}]},{"Route":"_framework/System.Net.Sockets.wasm","AssetFile":"_framework/System.Net.Sockets.utzdm9sw2p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"64277"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo="}]},{"Route":"_framework/System.Net.Sockets.wasm","AssetFile":"_framework/System.Net.Sockets.utzdm9sw2p.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000043631921"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22918"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo="},{"Name":"original-resource","Value":"\"olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo=\""}]},{"Route":"_framework/System.Net.Sockets.wasm.gz","AssetFile":"_framework/System.Net.Sockets.utzdm9sw2p.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22918"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI="}]},{"Route":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm","AssetFile":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e5a4gx4ylt"},{"Name":"integrity","Value":"sha256-YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk="},{"Name":"label","Value":"_framework/System.Net.WebClient.wasm"}]},{"Route":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm","AssetFile":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067870232"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e5a4gx4ylt"},{"Name":"integrity","Value":"sha256-YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk="},{"Name":"label","Value":"_framework/System.Net.WebClient.wasm"},{"Name":"original-resource","Value":"\"YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk=\""}]},{"Route":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm.gz","AssetFile":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e5a4gx4ylt"},{"Name":"integrity","Value":"sha256-FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI="},{"Name":"label","Value":"_framework/System.Net.WebClient.wasm.gz"}]},{"Route":"_framework/System.Net.WebClient.wasm","AssetFile":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk="}]},{"Route":"_framework/System.Net.WebClient.wasm","AssetFile":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067870232"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk="},{"Name":"original-resource","Value":"\"YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk=\""}]},{"Route":"_framework/System.Net.WebClient.wasm.gz","AssetFile":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI="}]},{"Route":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm","AssetFile":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rbzkmij005"},{"Name":"integrity","Value":"sha256-132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE="},{"Name":"label","Value":"_framework/System.Net.WebHeaderCollection.wasm"}]},{"Route":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm","AssetFile":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000097952787"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10208"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rbzkmij005"},{"Name":"integrity","Value":"sha256-132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE="},{"Name":"label","Value":"_framework/System.Net.WebHeaderCollection.wasm"},{"Name":"original-resource","Value":"\"132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE=\""}]},{"Route":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm.gz","AssetFile":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10208"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rbzkmij005"},{"Name":"integrity","Value":"sha256-y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU="},{"Name":"label","Value":"_framework/System.Net.WebHeaderCollection.wasm.gz"}]},{"Route":"_framework/System.Net.WebHeaderCollection.wasm","AssetFile":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE="}]},{"Route":"_framework/System.Net.WebHeaderCollection.wasm","AssetFile":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000097952787"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10208"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE="},{"Name":"original-resource","Value":"\"132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE=\""}]},{"Route":"_framework/System.Net.WebHeaderCollection.wasm.gz","AssetFile":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10208"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU="}]},{"Route":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm","AssetFile":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"38jcv8jeeu"},{"Name":"integrity","Value":"sha256-UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok="},{"Name":"label","Value":"_framework/System.Net.WebProxy.wasm"}]},{"Route":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm","AssetFile":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000177872643"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5621"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"38jcv8jeeu"},{"Name":"integrity","Value":"sha256-UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok="},{"Name":"label","Value":"_framework/System.Net.WebProxy.wasm"},{"Name":"original-resource","Value":"\"UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok=\""}]},{"Route":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm.gz","AssetFile":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5621"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"38jcv8jeeu"},{"Name":"integrity","Value":"sha256-8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA="},{"Name":"label","Value":"_framework/System.Net.WebProxy.wasm.gz"}]},{"Route":"_framework/System.Net.WebProxy.wasm","AssetFile":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok="}]},{"Route":"_framework/System.Net.WebProxy.wasm","AssetFile":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000177872643"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5621"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok="},{"Name":"original-resource","Value":"\"UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok=\""}]},{"Route":"_framework/System.Net.WebProxy.wasm.gz","AssetFile":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5621"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA="}]},{"Route":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm","AssetFile":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"42261"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nv5izr3rt6"},{"Name":"integrity","Value":"sha256-vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc="},{"Name":"label","Value":"_framework/System.Net.WebSockets.Client.wasm"}]},{"Route":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm","AssetFile":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000055803571"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17919"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nv5izr3rt6"},{"Name":"integrity","Value":"sha256-vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc="},{"Name":"label","Value":"_framework/System.Net.WebSockets.Client.wasm"},{"Name":"original-resource","Value":"\"vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc=\""}]},{"Route":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm.gz","AssetFile":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17919"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nv5izr3rt6"},{"Name":"integrity","Value":"sha256-XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY="},{"Name":"label","Value":"_framework/System.Net.WebSockets.Client.wasm.gz"}]},{"Route":"_framework/System.Net.WebSockets.Client.wasm","AssetFile":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"42261"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc="}]},{"Route":"_framework/System.Net.WebSockets.Client.wasm","AssetFile":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000055803571"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17919"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc="},{"Name":"original-resource","Value":"\"vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc=\""}]},{"Route":"_framework/System.Net.WebSockets.Client.wasm.gz","AssetFile":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17919"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY="}]},{"Route":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm","AssetFile":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"98581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hdzn84g6uh"},{"Name":"integrity","Value":"sha256-1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE="},{"Name":"label","Value":"_framework/System.Net.WebSockets.wasm"}]},{"Route":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm","AssetFile":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000024645718"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"40574"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hdzn84g6uh"},{"Name":"integrity","Value":"sha256-1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE="},{"Name":"label","Value":"_framework/System.Net.WebSockets.wasm"},{"Name":"original-resource","Value":"\"1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE=\""}]},{"Route":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm.gz","AssetFile":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"40574"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hdzn84g6uh"},{"Name":"integrity","Value":"sha256-dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo="},{"Name":"label","Value":"_framework/System.Net.WebSockets.wasm.gz"}]},{"Route":"_framework/System.Net.WebSockets.wasm","AssetFile":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"98581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE="}]},{"Route":"_framework/System.Net.WebSockets.wasm","AssetFile":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000024645718"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"40574"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE="},{"Name":"original-resource","Value":"\"1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE=\""}]},{"Route":"_framework/System.Net.WebSockets.wasm.gz","AssetFile":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"40574"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo="}]},{"Route":"_framework/System.Net.wasm","AssetFile":"_framework/System.Net.zku96ychk7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU="}]},{"Route":"_framework/System.Net.wasm","AssetFile":"_framework/System.Net.zku96ychk7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000362976407"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2754"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU="},{"Name":"original-resource","Value":"\"E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU=\""}]},{"Route":"_framework/System.Net.wasm.gz","AssetFile":"_framework/System.Net.zku96ychk7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2754"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY="}]},{"Route":"_framework/System.Net.zku96ychk7.wasm","AssetFile":"_framework/System.Net.zku96ychk7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zku96ychk7"},{"Name":"integrity","Value":"sha256-E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU="},{"Name":"label","Value":"_framework/System.Net.wasm"}]},{"Route":"_framework/System.Net.zku96ychk7.wasm","AssetFile":"_framework/System.Net.zku96ychk7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000362976407"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2754"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zku96ychk7"},{"Name":"integrity","Value":"sha256-E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU="},{"Name":"label","Value":"_framework/System.Net.wasm"},{"Name":"original-resource","Value":"\"E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU=\""}]},{"Route":"_framework/System.Net.zku96ychk7.wasm.gz","AssetFile":"_framework/System.Net.zku96ychk7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2754"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zku96ychk7"},{"Name":"integrity","Value":"sha256-boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY="},{"Name":"label","Value":"_framework/System.Net.wasm.gz"}]},{"Route":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm","AssetFile":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1l8xruz8uh"},{"Name":"integrity","Value":"sha256-tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg="},{"Name":"label","Value":"_framework/System.Numerics.Vectors.wasm"}]},{"Route":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm","AssetFile":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000439367311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1l8xruz8uh"},{"Name":"integrity","Value":"sha256-tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg="},{"Name":"label","Value":"_framework/System.Numerics.Vectors.wasm"},{"Name":"original-resource","Value":"\"tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg=\""}]},{"Route":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm.gz","AssetFile":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1l8xruz8uh"},{"Name":"integrity","Value":"sha256-XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q="},{"Name":"label","Value":"_framework/System.Numerics.Vectors.wasm.gz"}]},{"Route":"_framework/System.Numerics.Vectors.wasm","AssetFile":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg="}]},{"Route":"_framework/System.Numerics.Vectors.wasm","AssetFile":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000439367311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg="},{"Name":"original-resource","Value":"\"tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg=\""}]},{"Route":"_framework/System.Numerics.Vectors.wasm.gz","AssetFile":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q="}]},{"Route":"_framework/System.Numerics.on9qk50okp.wasm","AssetFile":"_framework/System.Numerics.on9qk50okp.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"on9qk50okp"},{"Name":"integrity","Value":"sha256-ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk="},{"Name":"label","Value":"_framework/System.Numerics.wasm"}]},{"Route":"_framework/System.Numerics.on9qk50okp.wasm","AssetFile":"_framework/System.Numerics.on9qk50okp.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000490677134"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2037"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"on9qk50okp"},{"Name":"integrity","Value":"sha256-ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk="},{"Name":"label","Value":"_framework/System.Numerics.wasm"},{"Name":"original-resource","Value":"\"ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk=\""}]},{"Route":"_framework/System.Numerics.on9qk50okp.wasm.gz","AssetFile":"_framework/System.Numerics.on9qk50okp.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2037"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"on9qk50okp"},{"Name":"integrity","Value":"sha256-voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ="},{"Name":"label","Value":"_framework/System.Numerics.wasm.gz"}]},{"Route":"_framework/System.Numerics.wasm","AssetFile":"_framework/System.Numerics.on9qk50okp.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk="}]},{"Route":"_framework/System.Numerics.wasm","AssetFile":"_framework/System.Numerics.on9qk50okp.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000490677134"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2037"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk="},{"Name":"original-resource","Value":"\"ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk=\""}]},{"Route":"_framework/System.Numerics.wasm.gz","AssetFile":"_framework/System.Numerics.on9qk50okp.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2037"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ="}]},{"Route":"_framework/System.ObjectModel.4omhtq90sd.wasm","AssetFile":"_framework/System.ObjectModel.4omhtq90sd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"30997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4omhtq90sd"},{"Name":"integrity","Value":"sha256-BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU="},{"Name":"label","Value":"_framework/System.ObjectModel.wasm"}]},{"Route":"_framework/System.ObjectModel.4omhtq90sd.wasm","AssetFile":"_framework/System.ObjectModel.4omhtq90sd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000074867111"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13356"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4omhtq90sd"},{"Name":"integrity","Value":"sha256-BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU="},{"Name":"label","Value":"_framework/System.ObjectModel.wasm"},{"Name":"original-resource","Value":"\"BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU=\""}]},{"Route":"_framework/System.ObjectModel.4omhtq90sd.wasm.gz","AssetFile":"_framework/System.ObjectModel.4omhtq90sd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13356"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4omhtq90sd"},{"Name":"integrity","Value":"sha256-RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw="},{"Name":"label","Value":"_framework/System.ObjectModel.wasm.gz"}]},{"Route":"_framework/System.ObjectModel.wasm","AssetFile":"_framework/System.ObjectModel.4omhtq90sd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"30997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU="}]},{"Route":"_framework/System.ObjectModel.wasm","AssetFile":"_framework/System.ObjectModel.4omhtq90sd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000074867111"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13356"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU="},{"Name":"original-resource","Value":"\"BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU=\""}]},{"Route":"_framework/System.ObjectModel.wasm.gz","AssetFile":"_framework/System.ObjectModel.4omhtq90sd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13356"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw="}]},{"Route":"_framework/System.Private.CoreLib.koxlwnosh6.wasm","AssetFile":"_framework/System.Private.CoreLib.koxlwnosh6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4869401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"koxlwnosh6"},{"Name":"integrity","Value":"sha256-xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg="},{"Name":"label","Value":"_framework/System.Private.CoreLib.wasm"}]},{"Route":"_framework/System.Private.CoreLib.koxlwnosh6.wasm","AssetFile":"_framework/System.Private.CoreLib.koxlwnosh6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000644190"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1552335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"koxlwnosh6"},{"Name":"integrity","Value":"sha256-xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg="},{"Name":"label","Value":"_framework/System.Private.CoreLib.wasm"},{"Name":"original-resource","Value":"\"xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg=\""}]},{"Route":"_framework/System.Private.CoreLib.koxlwnosh6.wasm.gz","AssetFile":"_framework/System.Private.CoreLib.koxlwnosh6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1552335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"koxlwnosh6"},{"Name":"integrity","Value":"sha256-8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw="},{"Name":"label","Value":"_framework/System.Private.CoreLib.wasm.gz"}]},{"Route":"_framework/System.Private.CoreLib.wasm","AssetFile":"_framework/System.Private.CoreLib.koxlwnosh6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4869401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg="}]},{"Route":"_framework/System.Private.CoreLib.wasm","AssetFile":"_framework/System.Private.CoreLib.koxlwnosh6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000644190"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1552335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg="},{"Name":"original-resource","Value":"\"xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg=\""}]},{"Route":"_framework/System.Private.CoreLib.wasm.gz","AssetFile":"_framework/System.Private.CoreLib.koxlwnosh6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1552335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw="}]},{"Route":"_framework/System.Private.DataContractSerialization.wasm","AssetFile":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"849173"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs="}]},{"Route":"_framework/System.Private.DataContractSerialization.wasm","AssetFile":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003313518"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"301793"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs="},{"Name":"original-resource","Value":"\"qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs=\""}]},{"Route":"_framework/System.Private.DataContractSerialization.wasm.gz","AssetFile":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"301793"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E="}]},{"Route":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm","AssetFile":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"849173"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zlwtcvnuqv"},{"Name":"integrity","Value":"sha256-qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs="},{"Name":"label","Value":"_framework/System.Private.DataContractSerialization.wasm"}]},{"Route":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm","AssetFile":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003313518"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"301793"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zlwtcvnuqv"},{"Name":"integrity","Value":"sha256-qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs="},{"Name":"label","Value":"_framework/System.Private.DataContractSerialization.wasm"},{"Name":"original-resource","Value":"\"qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs=\""}]},{"Route":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm.gz","AssetFile":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"301793"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zlwtcvnuqv"},{"Name":"integrity","Value":"sha256-U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E="},{"Name":"label","Value":"_framework/System.Private.DataContractSerialization.wasm.gz"}]},{"Route":"_framework/System.Private.Uri.clehp4avpy.wasm","AssetFile":"_framework/System.Private.Uri.clehp4avpy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"95509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clehp4avpy"},{"Name":"integrity","Value":"sha256-IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU="},{"Name":"label","Value":"_framework/System.Private.Uri.wasm"}]},{"Route":"_framework/System.Private.Uri.clehp4avpy.wasm","AssetFile":"_framework/System.Private.Uri.clehp4avpy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023629490"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42319"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clehp4avpy"},{"Name":"integrity","Value":"sha256-IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU="},{"Name":"label","Value":"_framework/System.Private.Uri.wasm"},{"Name":"original-resource","Value":"\"IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU=\""}]},{"Route":"_framework/System.Private.Uri.clehp4avpy.wasm.gz","AssetFile":"_framework/System.Private.Uri.clehp4avpy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42319"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clehp4avpy"},{"Name":"integrity","Value":"sha256-jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8="},{"Name":"label","Value":"_framework/System.Private.Uri.wasm.gz"}]},{"Route":"_framework/System.Private.Uri.wasm","AssetFile":"_framework/System.Private.Uri.clehp4avpy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"95509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU="}]},{"Route":"_framework/System.Private.Uri.wasm","AssetFile":"_framework/System.Private.Uri.clehp4avpy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023629490"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42319"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU="},{"Name":"original-resource","Value":"\"IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU=\""}]},{"Route":"_framework/System.Private.Uri.wasm.gz","AssetFile":"_framework/System.Private.Uri.clehp4avpy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42319"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8="}]},{"Route":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm","AssetFile":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"143637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ga3n3gh9b6"},{"Name":"integrity","Value":"sha256-aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0="},{"Name":"label","Value":"_framework/System.Private.Xml.Linq.wasm"}]},{"Route":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm","AssetFile":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017054951"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"58633"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ga3n3gh9b6"},{"Name":"integrity","Value":"sha256-aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0="},{"Name":"label","Value":"_framework/System.Private.Xml.Linq.wasm"},{"Name":"original-resource","Value":"\"aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0=\""}]},{"Route":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm.gz","AssetFile":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"58633"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ga3n3gh9b6"},{"Name":"integrity","Value":"sha256-wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g="},{"Name":"label","Value":"_framework/System.Private.Xml.Linq.wasm.gz"}]},{"Route":"_framework/System.Private.Xml.Linq.wasm","AssetFile":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"143637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0="}]},{"Route":"_framework/System.Private.Xml.Linq.wasm","AssetFile":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017054951"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"58633"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0="},{"Name":"original-resource","Value":"\"aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0=\""}]},{"Route":"_framework/System.Private.Xml.Linq.wasm.gz","AssetFile":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"58633"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g="}]},{"Route":"_framework/System.Private.Xml.g9rvjereoe.wasm","AssetFile":"_framework/System.Private.Xml.g9rvjereoe.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3095833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g9rvjereoe"},{"Name":"integrity","Value":"sha256-xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0="},{"Name":"label","Value":"_framework/System.Private.Xml.wasm"}]},{"Route":"_framework/System.Private.Xml.g9rvjereoe.wasm","AssetFile":"_framework/System.Private.Xml.g9rvjereoe.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000949553"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1053126"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g9rvjereoe"},{"Name":"integrity","Value":"sha256-xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0="},{"Name":"label","Value":"_framework/System.Private.Xml.wasm"},{"Name":"original-resource","Value":"\"xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0=\""}]},{"Route":"_framework/System.Private.Xml.g9rvjereoe.wasm.gz","AssetFile":"_framework/System.Private.Xml.g9rvjereoe.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1053126"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g9rvjereoe"},{"Name":"integrity","Value":"sha256-K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw="},{"Name":"label","Value":"_framework/System.Private.Xml.wasm.gz"}]},{"Route":"_framework/System.Private.Xml.wasm","AssetFile":"_framework/System.Private.Xml.g9rvjereoe.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3095833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0="}]},{"Route":"_framework/System.Private.Xml.wasm","AssetFile":"_framework/System.Private.Xml.g9rvjereoe.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000949553"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1053126"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0="},{"Name":"original-resource","Value":"\"xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0=\""}]},{"Route":"_framework/System.Private.Xml.wasm.gz","AssetFile":"_framework/System.Private.Xml.g9rvjereoe.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1053126"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw="}]},{"Route":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm","AssetFile":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27925"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7qn4zpc0q"},{"Name":"integrity","Value":"sha256-mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME="},{"Name":"label","Value":"_framework/System.Reflection.DispatchProxy.wasm"}]},{"Route":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm","AssetFile":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000078814628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12687"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7qn4zpc0q"},{"Name":"integrity","Value":"sha256-mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME="},{"Name":"label","Value":"_framework/System.Reflection.DispatchProxy.wasm"},{"Name":"original-resource","Value":"\"mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME=\""}]},{"Route":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm.gz","AssetFile":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12687"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7qn4zpc0q"},{"Name":"integrity","Value":"sha256-VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w="},{"Name":"label","Value":"_framework/System.Reflection.DispatchProxy.wasm.gz"}]},{"Route":"_framework/System.Reflection.DispatchProxy.wasm","AssetFile":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"27925"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME="}]},{"Route":"_framework/System.Reflection.DispatchProxy.wasm","AssetFile":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000078814628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12687"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME="},{"Name":"original-resource","Value":"\"mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME=\""}]},{"Route":"_framework/System.Reflection.DispatchProxy.wasm.gz","AssetFile":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12687"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w="}]},{"Route":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm","AssetFile":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"122645"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3t7flfwg7o"},{"Name":"integrity","Value":"sha256-uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8="},{"Name":"label","Value":"_framework/System.Reflection.Emit.wasm"}]},{"Route":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm","AssetFile":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018778637"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"53251"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3t7flfwg7o"},{"Name":"integrity","Value":"sha256-uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8="},{"Name":"label","Value":"_framework/System.Reflection.Emit.wasm"},{"Name":"original-resource","Value":"\"uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8=\""}]},{"Route":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm.gz","AssetFile":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"53251"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3t7flfwg7o"},{"Name":"integrity","Value":"sha256-2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ="},{"Name":"label","Value":"_framework/System.Reflection.Emit.wasm.gz"}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.wasm","AssetFile":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80="}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.wasm","AssetFile":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000437828371"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2283"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80="},{"Name":"original-resource","Value":"\"ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80=\""}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.wasm.gz","AssetFile":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2283"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE="}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm","AssetFile":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0vkqyycss"},{"Name":"integrity","Value":"sha256-ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80="},{"Name":"label","Value":"_framework/System.Reflection.Emit.ILGeneration.wasm"}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm","AssetFile":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000437828371"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2283"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0vkqyycss"},{"Name":"integrity","Value":"sha256-ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80="},{"Name":"label","Value":"_framework/System.Reflection.Emit.ILGeneration.wasm"},{"Name":"original-resource","Value":"\"ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80=\""}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm.gz","AssetFile":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2283"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0vkqyycss"},{"Name":"integrity","Value":"sha256-YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE="},{"Name":"label","Value":"_framework/System.Reflection.Emit.ILGeneration.wasm.gz"}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm","AssetFile":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3tzjd7znni"},{"Name":"integrity","Value":"sha256-B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k="},{"Name":"label","Value":"_framework/System.Reflection.Emit.Lightweight.wasm"}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm","AssetFile":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000446827525"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3tzjd7znni"},{"Name":"integrity","Value":"sha256-B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k="},{"Name":"label","Value":"_framework/System.Reflection.Emit.Lightweight.wasm"},{"Name":"original-resource","Value":"\"B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k=\""}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm.gz","AssetFile":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3tzjd7znni"},{"Name":"integrity","Value":"sha256-XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk="},{"Name":"label","Value":"_framework/System.Reflection.Emit.Lightweight.wasm.gz"}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.wasm","AssetFile":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k="}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.wasm","AssetFile":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000446827525"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k="},{"Name":"original-resource","Value":"\"B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k=\""}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.wasm.gz","AssetFile":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk="}]},{"Route":"_framework/System.Reflection.Emit.wasm","AssetFile":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"122645"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8="}]},{"Route":"_framework/System.Reflection.Emit.wasm","AssetFile":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018778637"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"53251"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8="},{"Name":"original-resource","Value":"\"uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8=\""}]},{"Route":"_framework/System.Reflection.Emit.wasm.gz","AssetFile":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"53251"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ="}]},{"Route":"_framework/System.Reflection.Extensions.wasm","AssetFile":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo="}]},{"Route":"_framework/System.Reflection.Extensions.wasm","AssetFile":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000462107209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2163"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo="},{"Name":"original-resource","Value":"\"xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo=\""}]},{"Route":"_framework/System.Reflection.Extensions.wasm.gz","AssetFile":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2163"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4="}]},{"Route":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm","AssetFile":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ymwga5opgl"},{"Name":"integrity","Value":"sha256-xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo="},{"Name":"label","Value":"_framework/System.Reflection.Extensions.wasm"}]},{"Route":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm","AssetFile":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000462107209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2163"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ymwga5opgl"},{"Name":"integrity","Value":"sha256-xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo="},{"Name":"label","Value":"_framework/System.Reflection.Extensions.wasm"},{"Name":"original-resource","Value":"\"xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo=\""}]},{"Route":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm.gz","AssetFile":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2163"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ymwga5opgl"},{"Name":"integrity","Value":"sha256-QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4="},{"Name":"label","Value":"_framework/System.Reflection.Extensions.wasm.gz"}]},{"Route":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm","AssetFile":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"493333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9lgg9wjd2a"},{"Name":"integrity","Value":"sha256-/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0="},{"Name":"label","Value":"_framework/System.Reflection.Metadata.wasm"}]},{"Route":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm","AssetFile":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005202589"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"192211"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9lgg9wjd2a"},{"Name":"integrity","Value":"sha256-/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0="},{"Name":"label","Value":"_framework/System.Reflection.Metadata.wasm"},{"Name":"original-resource","Value":"\"/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0=\""}]},{"Route":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm.gz","AssetFile":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"192211"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9lgg9wjd2a"},{"Name":"integrity","Value":"sha256-bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM="},{"Name":"label","Value":"_framework/System.Reflection.Metadata.wasm.gz"}]},{"Route":"_framework/System.Reflection.Metadata.wasm","AssetFile":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"493333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0="}]},{"Route":"_framework/System.Reflection.Metadata.wasm","AssetFile":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005202589"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"192211"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0="},{"Name":"original-resource","Value":"\"/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0=\""}]},{"Route":"_framework/System.Reflection.Metadata.wasm.gz","AssetFile":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"192211"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM="}]},{"Route":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm","AssetFile":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"n2ngq6as7g"},{"Name":"integrity","Value":"sha256-z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY="},{"Name":"label","Value":"_framework/System.Reflection.Primitives.wasm"}]},{"Route":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm","AssetFile":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000423190859"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"n2ngq6as7g"},{"Name":"integrity","Value":"sha256-z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY="},{"Name":"label","Value":"_framework/System.Reflection.Primitives.wasm"},{"Name":"original-resource","Value":"\"z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY=\""}]},{"Route":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm.gz","AssetFile":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"n2ngq6as7g"},{"Name":"integrity","Value":"sha256-DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac="},{"Name":"label","Value":"_framework/System.Reflection.Primitives.wasm.gz"}]},{"Route":"_framework/System.Reflection.Primitives.wasm","AssetFile":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY="}]},{"Route":"_framework/System.Reflection.Primitives.wasm","AssetFile":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000423190859"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY="},{"Name":"original-resource","Value":"\"z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY=\""}]},{"Route":"_framework/System.Reflection.Primitives.wasm.gz","AssetFile":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac="}]},{"Route":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm","AssetFile":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"14101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ivmzcfvrc6"},{"Name":"integrity","Value":"sha256-jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0="},{"Name":"label","Value":"_framework/System.Reflection.TypeExtensions.wasm"}]},{"Route":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm","AssetFile":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000170561146"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ivmzcfvrc6"},{"Name":"integrity","Value":"sha256-jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0="},{"Name":"label","Value":"_framework/System.Reflection.TypeExtensions.wasm"},{"Name":"original-resource","Value":"\"jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0=\""}]},{"Route":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm.gz","AssetFile":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ivmzcfvrc6"},{"Name":"integrity","Value":"sha256-UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY="},{"Name":"label","Value":"_framework/System.Reflection.TypeExtensions.wasm.gz"}]},{"Route":"_framework/System.Reflection.TypeExtensions.wasm","AssetFile":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"14101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0="}]},{"Route":"_framework/System.Reflection.TypeExtensions.wasm","AssetFile":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000170561146"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0="},{"Name":"original-resource","Value":"\"jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0=\""}]},{"Route":"_framework/System.Reflection.TypeExtensions.wasm.gz","AssetFile":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY="}]},{"Route":"_framework/System.Reflection.v4mfyzbte8.wasm","AssetFile":"_framework/System.Reflection.v4mfyzbte8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v4mfyzbte8"},{"Name":"integrity","Value":"sha256-MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw="},{"Name":"label","Value":"_framework/System.Reflection.wasm"}]},{"Route":"_framework/System.Reflection.v4mfyzbte8.wasm","AssetFile":"_framework/System.Reflection.v4mfyzbte8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000404530744"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2471"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v4mfyzbte8"},{"Name":"integrity","Value":"sha256-MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw="},{"Name":"label","Value":"_framework/System.Reflection.wasm"},{"Name":"original-resource","Value":"\"MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw=\""}]},{"Route":"_framework/System.Reflection.v4mfyzbte8.wasm.gz","AssetFile":"_framework/System.Reflection.v4mfyzbte8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2471"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v4mfyzbte8"},{"Name":"integrity","Value":"sha256-/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng="},{"Name":"label","Value":"_framework/System.Reflection.wasm.gz"}]},{"Route":"_framework/System.Reflection.wasm","AssetFile":"_framework/System.Reflection.v4mfyzbte8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw="}]},{"Route":"_framework/System.Reflection.wasm","AssetFile":"_framework/System.Reflection.v4mfyzbte8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000404530744"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2471"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw="},{"Name":"original-resource","Value":"\"MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw=\""}]},{"Route":"_framework/System.Reflection.wasm.gz","AssetFile":"_framework/System.Reflection.v4mfyzbte8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2471"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng="}]},{"Route":"_framework/System.Resources.Reader.c9z9nieytf.wasm","AssetFile":"_framework/System.Resources.Reader.c9z9nieytf.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c9z9nieytf"},{"Name":"integrity","Value":"sha256-QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8="},{"Name":"label","Value":"_framework/System.Resources.Reader.wasm"}]},{"Route":"_framework/System.Resources.Reader.c9z9nieytf.wasm","AssetFile":"_framework/System.Resources.Reader.c9z9nieytf.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000469043152"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2131"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c9z9nieytf"},{"Name":"integrity","Value":"sha256-QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8="},{"Name":"label","Value":"_framework/System.Resources.Reader.wasm"},{"Name":"original-resource","Value":"\"QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8=\""}]},{"Route":"_framework/System.Resources.Reader.c9z9nieytf.wasm.gz","AssetFile":"_framework/System.Resources.Reader.c9z9nieytf.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2131"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c9z9nieytf"},{"Name":"integrity","Value":"sha256-1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI="},{"Name":"label","Value":"_framework/System.Resources.Reader.wasm.gz"}]},{"Route":"_framework/System.Resources.Reader.wasm","AssetFile":"_framework/System.Resources.Reader.c9z9nieytf.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8="}]},{"Route":"_framework/System.Resources.Reader.wasm","AssetFile":"_framework/System.Resources.Reader.c9z9nieytf.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000469043152"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2131"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8="},{"Name":"original-resource","Value":"\"QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8=\""}]},{"Route":"_framework/System.Resources.Reader.wasm.gz","AssetFile":"_framework/System.Resources.Reader.c9z9nieytf.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2131"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI="}]},{"Route":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm","AssetFile":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f3fiwdwb50"},{"Name":"integrity","Value":"sha256-61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw="},{"Name":"label","Value":"_framework/System.Resources.ResourceManager.wasm"}]},{"Route":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm","AssetFile":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000444642063"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2248"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f3fiwdwb50"},{"Name":"integrity","Value":"sha256-61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw="},{"Name":"label","Value":"_framework/System.Resources.ResourceManager.wasm"},{"Name":"original-resource","Value":"\"61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw=\""}]},{"Route":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm.gz","AssetFile":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2248"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f3fiwdwb50"},{"Name":"integrity","Value":"sha256-yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg="},{"Name":"label","Value":"_framework/System.Resources.ResourceManager.wasm.gz"}]},{"Route":"_framework/System.Resources.ResourceManager.wasm","AssetFile":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw="}]},{"Route":"_framework/System.Resources.ResourceManager.wasm","AssetFile":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000444642063"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2248"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw="},{"Name":"original-resource","Value":"\"61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw=\""}]},{"Route":"_framework/System.Resources.ResourceManager.wasm.gz","AssetFile":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2248"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg="}]},{"Route":"_framework/System.Resources.Writer.tx9namivq6.wasm","AssetFile":"_framework/System.Resources.Writer.tx9namivq6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"16661"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tx9namivq6"},{"Name":"integrity","Value":"sha256-EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw="},{"Name":"label","Value":"_framework/System.Resources.Writer.wasm"}]},{"Route":"_framework/System.Resources.Writer.tx9namivq6.wasm","AssetFile":"_framework/System.Resources.Writer.tx9namivq6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000131839156"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7584"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tx9namivq6"},{"Name":"integrity","Value":"sha256-EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw="},{"Name":"label","Value":"_framework/System.Resources.Writer.wasm"},{"Name":"original-resource","Value":"\"EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw=\""}]},{"Route":"_framework/System.Resources.Writer.tx9namivq6.wasm.gz","AssetFile":"_framework/System.Resources.Writer.tx9namivq6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7584"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tx9namivq6"},{"Name":"integrity","Value":"sha256-mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw="},{"Name":"label","Value":"_framework/System.Resources.Writer.wasm.gz"}]},{"Route":"_framework/System.Resources.Writer.wasm","AssetFile":"_framework/System.Resources.Writer.tx9namivq6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"16661"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw="}]},{"Route":"_framework/System.Resources.Writer.wasm","AssetFile":"_framework/System.Resources.Writer.tx9namivq6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000131839156"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7584"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw="},{"Name":"original-resource","Value":"\"EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw=\""}]},{"Route":"_framework/System.Resources.Writer.wasm.gz","AssetFile":"_framework/System.Resources.Writer.tx9namivq6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7584"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw="}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5yw8jyjkyt"},{"Name":"integrity","Value":"sha256-M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.Unsafe.wasm"}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000468164794"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2135"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5yw8jyjkyt"},{"Name":"integrity","Value":"sha256-M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.Unsafe.wasm"},{"Name":"original-resource","Value":"\"M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc=\""}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm.gz","AssetFile":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2135"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5yw8jyjkyt"},{"Name":"integrity","Value":"sha256-b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.Unsafe.wasm.gz"}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc="}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000468164794"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2135"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc="},{"Name":"original-resource","Value":"\"M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc=\""}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.wasm.gz","AssetFile":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2135"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks="}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ddbsai2xh9"},{"Name":"integrity","Value":"sha256-b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.VisualC.wasm"}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000327868852"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3049"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ddbsai2xh9"},{"Name":"integrity","Value":"sha256-b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.VisualC.wasm"},{"Name":"original-resource","Value":"\"b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM=\""}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm.gz","AssetFile":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3049"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ddbsai2xh9"},{"Name":"integrity","Value":"sha256-XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.VisualC.wasm.gz"}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM="}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000327868852"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3049"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM="},{"Name":"original-resource","Value":"\"b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM=\""}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.wasm.gz","AssetFile":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3049"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo="}]},{"Route":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm","AssetFile":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"7445"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f4fqaba1oz"},{"Name":"integrity","Value":"sha256-8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8="},{"Name":"label","Value":"_framework/System.Runtime.Extensions.wasm"}]},{"Route":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm","AssetFile":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000333555704"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f4fqaba1oz"},{"Name":"integrity","Value":"sha256-8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8="},{"Name":"label","Value":"_framework/System.Runtime.Extensions.wasm"},{"Name":"original-resource","Value":"\"8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8=\""}]},{"Route":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm.gz","AssetFile":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f4fqaba1oz"},{"Name":"integrity","Value":"sha256-UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM="},{"Name":"label","Value":"_framework/System.Runtime.Extensions.wasm.gz"}]},{"Route":"_framework/System.Runtime.Extensions.wasm","AssetFile":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"7445"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8="}]},{"Route":"_framework/System.Runtime.Extensions.wasm","AssetFile":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000333555704"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8="},{"Name":"original-resource","Value":"\"8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8=\""}]},{"Route":"_framework/System.Runtime.Extensions.wasm.gz","AssetFile":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM="}]},{"Route":"_framework/System.Runtime.Handles.kpe61fymig.wasm","AssetFile":"_framework/System.Runtime.Handles.kpe61fymig.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kpe61fymig"},{"Name":"integrity","Value":"sha256-+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ="},{"Name":"label","Value":"_framework/System.Runtime.Handles.wasm"}]},{"Route":"_framework/System.Runtime.Handles.kpe61fymig.wasm","AssetFile":"_framework/System.Runtime.Handles.kpe61fymig.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000451467269"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2214"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kpe61fymig"},{"Name":"integrity","Value":"sha256-+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ="},{"Name":"label","Value":"_framework/System.Runtime.Handles.wasm"},{"Name":"original-resource","Value":"\"+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ=\""}]},{"Route":"_framework/System.Runtime.Handles.kpe61fymig.wasm.gz","AssetFile":"_framework/System.Runtime.Handles.kpe61fymig.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2214"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kpe61fymig"},{"Name":"integrity","Value":"sha256-P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8="},{"Name":"label","Value":"_framework/System.Runtime.Handles.wasm.gz"}]},{"Route":"_framework/System.Runtime.Handles.wasm","AssetFile":"_framework/System.Runtime.Handles.kpe61fymig.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ="}]},{"Route":"_framework/System.Runtime.Handles.wasm","AssetFile":"_framework/System.Runtime.Handles.kpe61fymig.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000451467269"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2214"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ="},{"Name":"original-resource","Value":"\"+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ=\""}]},{"Route":"_framework/System.Runtime.Handles.wasm.gz","AssetFile":"_framework/System.Runtime.Handles.kpe61fymig.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2214"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8="}]},{"Route":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm","AssetFile":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"54549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"02r2ubft18"},{"Name":"integrity","Value":"sha256-iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.wasm"}]},{"Route":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm","AssetFile":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000042457436"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23552"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"02r2ubft18"},{"Name":"integrity","Value":"sha256-iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.wasm"},{"Name":"original-resource","Value":"\"iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI=\""}]},{"Route":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm.gz","AssetFile":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23552"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"02r2ubft18"},{"Name":"integrity","Value":"sha256-hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.wasm.gz"}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.wasm","AssetFile":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"79637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk="}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.wasm","AssetFile":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000031413942"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk="},{"Name":"original-resource","Value":"\"BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk=\""}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.wasm.gz","AssetFile":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A="}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm","AssetFile":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"79637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ythr5w8c2e"},{"Name":"integrity","Value":"sha256-BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.JavaScript.wasm"}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm","AssetFile":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000031413942"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ythr5w8c2e"},{"Name":"integrity","Value":"sha256-BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.JavaScript.wasm"},{"Name":"original-resource","Value":"\"BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk=\""}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm.gz","AssetFile":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ythr5w8c2e"},{"Name":"integrity","Value":"sha256-BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.JavaScript.wasm.gz"}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm","AssetFile":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"esodb2rpbi"},{"Name":"integrity","Value":"sha256-Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm"}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm","AssetFile":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000462962963"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2159"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"esodb2rpbi"},{"Name":"integrity","Value":"sha256-Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm"},{"Name":"original-resource","Value":"\"Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s=\""}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm.gz","AssetFile":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2159"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"esodb2rpbi"},{"Name":"integrity","Value":"sha256-XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm.gz"}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm","AssetFile":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s="}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm","AssetFile":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000462962963"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2159"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s="},{"Name":"original-resource","Value":"\"Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s=\""}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm.gz","AssetFile":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2159"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA="}]},{"Route":"_framework/System.Runtime.InteropServices.wasm","AssetFile":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"54549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI="}]},{"Route":"_framework/System.Runtime.InteropServices.wasm","AssetFile":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000042457436"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23552"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI="},{"Name":"original-resource","Value":"\"iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI=\""}]},{"Route":"_framework/System.Runtime.InteropServices.wasm.gz","AssetFile":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23552"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs="}]},{"Route":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm","AssetFile":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8lrpban8m"},{"Name":"integrity","Value":"sha256-vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk="},{"Name":"label","Value":"_framework/System.Runtime.Intrinsics.wasm"}]},{"Route":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm","AssetFile":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000351617440"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2843"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8lrpban8m"},{"Name":"integrity","Value":"sha256-vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk="},{"Name":"label","Value":"_framework/System.Runtime.Intrinsics.wasm"},{"Name":"original-resource","Value":"\"vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk=\""}]},{"Route":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm.gz","AssetFile":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2843"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8lrpban8m"},{"Name":"integrity","Value":"sha256-RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4="},{"Name":"label","Value":"_framework/System.Runtime.Intrinsics.wasm.gz"}]},{"Route":"_framework/System.Runtime.Intrinsics.wasm","AssetFile":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk="}]},{"Route":"_framework/System.Runtime.Intrinsics.wasm","AssetFile":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000351617440"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2843"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk="},{"Name":"original-resource","Value":"\"vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk=\""}]},{"Route":"_framework/System.Runtime.Intrinsics.wasm.gz","AssetFile":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2843"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4="}]},{"Route":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm","AssetFile":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bm8d2pac0a"},{"Name":"integrity","Value":"sha256-Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4="},{"Name":"label","Value":"_framework/System.Runtime.Loader.wasm"}]},{"Route":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm","AssetFile":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000429000429"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2330"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bm8d2pac0a"},{"Name":"integrity","Value":"sha256-Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4="},{"Name":"label","Value":"_framework/System.Runtime.Loader.wasm"},{"Name":"original-resource","Value":"\"Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4=\""}]},{"Route":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm.gz","AssetFile":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2330"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bm8d2pac0a"},{"Name":"integrity","Value":"sha256-InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns="},{"Name":"label","Value":"_framework/System.Runtime.Loader.wasm.gz"}]},{"Route":"_framework/System.Runtime.Loader.wasm","AssetFile":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4="}]},{"Route":"_framework/System.Runtime.Loader.wasm","AssetFile":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000429000429"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2330"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4="},{"Name":"original-resource","Value":"\"Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4=\""}]},{"Route":"_framework/System.Runtime.Loader.wasm.gz","AssetFile":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2330"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns="}]},{"Route":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm","AssetFile":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"134933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e3fl2oogjk"},{"Name":"integrity","Value":"sha256-Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4="},{"Name":"label","Value":"_framework/System.Runtime.Numerics.wasm"}]},{"Route":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm","AssetFile":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018948725"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"52773"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e3fl2oogjk"},{"Name":"integrity","Value":"sha256-Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4="},{"Name":"label","Value":"_framework/System.Runtime.Numerics.wasm"},{"Name":"original-resource","Value":"\"Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4=\""}]},{"Route":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm.gz","AssetFile":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"52773"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e3fl2oogjk"},{"Name":"integrity","Value":"sha256-aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs="},{"Name":"label","Value":"_framework/System.Runtime.Numerics.wasm.gz"}]},{"Route":"_framework/System.Runtime.Numerics.wasm","AssetFile":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"134933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4="}]},{"Route":"_framework/System.Runtime.Numerics.wasm","AssetFile":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018948725"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"52773"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4="},{"Name":"original-resource","Value":"\"Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4=\""}]},{"Route":"_framework/System.Runtime.Numerics.wasm.gz","AssetFile":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"52773"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs="}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm","AssetFile":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a0v88kqnif"},{"Name":"integrity","Value":"sha256-Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Formatters.wasm"}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm","AssetFile":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041467966"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24114"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a0v88kqnif"},{"Name":"integrity","Value":"sha256-Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Formatters.wasm"},{"Name":"original-resource","Value":"\"Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU=\""}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24114"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a0v88kqnif"},{"Name":"integrity","Value":"sha256-89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Formatters.wasm.gz"}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.wasm","AssetFile":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU="}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.wasm","AssetFile":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041467966"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24114"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU="},{"Name":"original-resource","Value":"\"Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU=\""}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24114"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4="}]},{"Route":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm","AssetFile":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pez04wd9mo"},{"Name":"integrity","Value":"sha256-vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Json.wasm"}]},{"Route":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm","AssetFile":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000441501104"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pez04wd9mo"},{"Name":"integrity","Value":"sha256-vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Json.wasm"},{"Name":"original-resource","Value":"\"vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw=\""}]},{"Route":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pez04wd9mo"},{"Name":"integrity","Value":"sha256-F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Json.wasm.gz"}]},{"Route":"_framework/System.Runtime.Serialization.Json.wasm","AssetFile":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw="}]},{"Route":"_framework/System.Runtime.Serialization.Json.wasm","AssetFile":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000441501104"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw="},{"Name":"original-resource","Value":"\"vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw=\""}]},{"Route":"_framework/System.Runtime.Serialization.Json.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM="}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.wasm","AssetFile":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY="}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.wasm","AssetFile":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000184501845"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY="},{"Name":"original-resource","Value":"\"hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY=\""}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g="}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm","AssetFile":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xy5d3j3dn1"},{"Name":"integrity","Value":"sha256-hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Primitives.wasm"}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm","AssetFile":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000184501845"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xy5d3j3dn1"},{"Name":"integrity","Value":"sha256-hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Primitives.wasm"},{"Name":"original-resource","Value":"\"hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY=\""}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xy5d3j3dn1"},{"Name":"integrity","Value":"sha256-nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Primitives.wasm.gz"}]},{"Route":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm","AssetFile":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mmwsbcsgly"},{"Name":"integrity","Value":"sha256-0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Xml.wasm"}]},{"Route":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm","AssetFile":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388953715"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2570"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mmwsbcsgly"},{"Name":"integrity","Value":"sha256-0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Xml.wasm"},{"Name":"original-resource","Value":"\"0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0=\""}]},{"Route":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2570"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mmwsbcsgly"},{"Name":"integrity","Value":"sha256-ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Xml.wasm.gz"}]},{"Route":"_framework/System.Runtime.Serialization.Xml.wasm","AssetFile":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0="}]},{"Route":"_framework/System.Runtime.Serialization.Xml.wasm","AssetFile":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388953715"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2570"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0="},{"Name":"original-resource","Value":"\"0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0=\""}]},{"Route":"_framework/System.Runtime.Serialization.Xml.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2570"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs="}]},{"Route":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm","AssetFile":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qfpmfujegm"},{"Name":"integrity","Value":"sha256-un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.wasm"}]},{"Route":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm","AssetFile":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000399042298"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2505"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qfpmfujegm"},{"Name":"integrity","Value":"sha256-un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.wasm"},{"Name":"original-resource","Value":"\"un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk=\""}]},{"Route":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2505"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qfpmfujegm"},{"Name":"integrity","Value":"sha256-wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.wasm.gz"}]},{"Route":"_framework/System.Runtime.Serialization.wasm","AssetFile":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk="}]},{"Route":"_framework/System.Runtime.Serialization.wasm","AssetFile":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000399042298"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2505"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk="},{"Name":"original-resource","Value":"\"un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk=\""}]},{"Route":"_framework/System.Runtime.Serialization.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2505"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g="}]},{"Route":"_framework/System.Runtime.k6ze2203p2.wasm","AssetFile":"_framework/System.Runtime.k6ze2203p2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6ze2203p2"},{"Name":"integrity","Value":"sha256-ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM="},{"Name":"label","Value":"_framework/System.Runtime.wasm"}]},{"Route":"_framework/System.Runtime.k6ze2203p2.wasm","AssetFile":"_framework/System.Runtime.k6ze2203p2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000092302012"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6ze2203p2"},{"Name":"integrity","Value":"sha256-ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM="},{"Name":"label","Value":"_framework/System.Runtime.wasm"},{"Name":"original-resource","Value":"\"ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM=\""}]},{"Route":"_framework/System.Runtime.k6ze2203p2.wasm.gz","AssetFile":"_framework/System.Runtime.k6ze2203p2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6ze2203p2"},{"Name":"integrity","Value":"sha256-yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4="},{"Name":"label","Value":"_framework/System.Runtime.wasm.gz"}]},{"Route":"_framework/System.Runtime.wasm","AssetFile":"_framework/System.Runtime.k6ze2203p2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM="}]},{"Route":"_framework/System.Runtime.wasm","AssetFile":"_framework/System.Runtime.k6ze2203p2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000092302012"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM="},{"Name":"original-resource","Value":"\"ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM=\""}]},{"Route":"_framework/System.Runtime.wasm.gz","AssetFile":"_framework/System.Runtime.k6ze2203p2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4="}]},{"Route":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm","AssetFile":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"47893"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4mxo8hy5cn"},{"Name":"integrity","Value":"sha256-1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA="},{"Name":"label","Value":"_framework/System.Security.AccessControl.wasm"}]},{"Route":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm","AssetFile":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000059421237"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4mxo8hy5cn"},{"Name":"integrity","Value":"sha256-1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA="},{"Name":"label","Value":"_framework/System.Security.AccessControl.wasm"},{"Name":"original-resource","Value":"\"1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA=\""}]},{"Route":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm.gz","AssetFile":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4mxo8hy5cn"},{"Name":"integrity","Value":"sha256-lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak="},{"Name":"label","Value":"_framework/System.Security.AccessControl.wasm.gz"}]},{"Route":"_framework/System.Security.AccessControl.wasm","AssetFile":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"47893"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA="}]},{"Route":"_framework/System.Security.AccessControl.wasm","AssetFile":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000059421237"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA="},{"Name":"original-resource","Value":"\"1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA=\""}]},{"Route":"_framework/System.Security.AccessControl.wasm.gz","AssetFile":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak="}]},{"Route":"_framework/System.Security.Claims.9n1yusa5e5.wasm","AssetFile":"_framework/System.Security.Claims.9n1yusa5e5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"44821"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9n1yusa5e5"},{"Name":"integrity","Value":"sha256-KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA="},{"Name":"label","Value":"_framework/System.Security.Claims.wasm"}]},{"Route":"_framework/System.Security.Claims.9n1yusa5e5.wasm","AssetFile":"_framework/System.Security.Claims.9n1yusa5e5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060397415"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16556"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9n1yusa5e5"},{"Name":"integrity","Value":"sha256-KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA="},{"Name":"label","Value":"_framework/System.Security.Claims.wasm"},{"Name":"original-resource","Value":"\"KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA=\""}]},{"Route":"_framework/System.Security.Claims.9n1yusa5e5.wasm.gz","AssetFile":"_framework/System.Security.Claims.9n1yusa5e5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16556"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9n1yusa5e5"},{"Name":"integrity","Value":"sha256-ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY="},{"Name":"label","Value":"_framework/System.Security.Claims.wasm.gz"}]},{"Route":"_framework/System.Security.Claims.wasm","AssetFile":"_framework/System.Security.Claims.9n1yusa5e5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"44821"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA="}]},{"Route":"_framework/System.Security.Claims.wasm","AssetFile":"_framework/System.Security.Claims.9n1yusa5e5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060397415"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16556"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA="},{"Name":"original-resource","Value":"\"KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA=\""}]},{"Route":"_framework/System.Security.Claims.wasm.gz","AssetFile":"_framework/System.Security.Claims.9n1yusa5e5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16556"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY="}]},{"Route":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm","AssetFile":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"642325"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5rp84ijz8t"},{"Name":"integrity","Value":"sha256-YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM="},{"Name":"label","Value":"_framework/System.Security.Cryptography.wasm"}]},{"Route":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm","AssetFile":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004398891"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"227329"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5rp84ijz8t"},{"Name":"integrity","Value":"sha256-YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM="},{"Name":"label","Value":"_framework/System.Security.Cryptography.wasm"},{"Name":"original-resource","Value":"\"YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM=\""}]},{"Route":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"227329"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5rp84ijz8t"},{"Name":"integrity","Value":"sha256-+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y="},{"Name":"label","Value":"_framework/System.Security.Cryptography.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm","AssetFile":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4dnz7b15a9"},{"Name":"integrity","Value":"sha256-CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Algorithms.wasm"}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm","AssetFile":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000368595651"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2712"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4dnz7b15a9"},{"Name":"integrity","Value":"sha256-CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Algorithms.wasm"},{"Name":"original-resource","Value":"\"CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0=\""}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2712"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4dnz7b15a9"},{"Name":"integrity","Value":"sha256-kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Algorithms.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.wasm","AssetFile":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0="}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.wasm","AssetFile":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000368595651"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2712"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0="},{"Name":"original-resource","Value":"\"CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0=\""}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2712"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A="}]},{"Route":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm","AssetFile":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyaxkkx3lb"},{"Name":"integrity","Value":"sha256-SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Cng.wasm"}]},{"Route":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm","AssetFile":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000403714170"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2476"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyaxkkx3lb"},{"Name":"integrity","Value":"sha256-SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Cng.wasm"},{"Name":"original-resource","Value":"\"SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug=\""}]},{"Route":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2476"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyaxkkx3lb"},{"Name":"integrity","Value":"sha256-xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Cng.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Cng.wasm","AssetFile":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug="}]},{"Route":"_framework/System.Security.Cryptography.Cng.wasm","AssetFile":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000403714170"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2476"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug="},{"Name":"original-resource","Value":"\"SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug=\""}]},{"Route":"_framework/System.Security.Cryptography.Cng.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2476"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178="}]},{"Route":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm","AssetFile":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"20t5iw27a6"},{"Name":"integrity","Value":"sha256-EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Csp.wasm"}]},{"Route":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm","AssetFile":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000428082192"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"20t5iw27a6"},{"Name":"integrity","Value":"sha256-EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Csp.wasm"},{"Name":"original-resource","Value":"\"EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M=\""}]},{"Route":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"20t5iw27a6"},{"Name":"integrity","Value":"sha256-lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Csp.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Csp.wasm","AssetFile":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M="}]},{"Route":"_framework/System.Security.Cryptography.Csp.wasm","AssetFile":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000428082192"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M="},{"Name":"original-resource","Value":"\"EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M=\""}]},{"Route":"_framework/System.Security.Cryptography.Csp.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek="}]},{"Route":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm","AssetFile":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0lu5m0tfx2"},{"Name":"integrity","Value":"sha256-7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Encoding.wasm"}]},{"Route":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm","AssetFile":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438404209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0lu5m0tfx2"},{"Name":"integrity","Value":"sha256-7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Encoding.wasm"},{"Name":"original-resource","Value":"\"7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU=\""}]},{"Route":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0lu5m0tfx2"},{"Name":"integrity","Value":"sha256-EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Encoding.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Encoding.wasm","AssetFile":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU="}]},{"Route":"_framework/System.Security.Cryptography.Encoding.wasm","AssetFile":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438404209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU="},{"Name":"original-resource","Value":"\"7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU=\""}]},{"Route":"_framework/System.Security.Cryptography.Encoding.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg="}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm","AssetFile":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m4pzjxi3g"},{"Name":"integrity","Value":"sha256-nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o="},{"Name":"label","Value":"_framework/System.Security.Cryptography.OpenSsl.wasm"}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm","AssetFile":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000449842555"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2222"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m4pzjxi3g"},{"Name":"integrity","Value":"sha256-nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o="},{"Name":"label","Value":"_framework/System.Security.Cryptography.OpenSsl.wasm"},{"Name":"original-resource","Value":"\"nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o=\""}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2222"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m4pzjxi3g"},{"Name":"integrity","Value":"sha256-vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM="},{"Name":"label","Value":"_framework/System.Security.Cryptography.OpenSsl.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.wasm","AssetFile":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o="}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.wasm","AssetFile":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000449842555"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2222"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o="},{"Name":"original-resource","Value":"\"nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o=\""}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2222"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM="}]},{"Route":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm","AssetFile":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7bcdd4uolu"},{"Name":"integrity","Value":"sha256-kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Primitives.wasm"}]},{"Route":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm","AssetFile":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000425894378"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2347"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7bcdd4uolu"},{"Name":"integrity","Value":"sha256-kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Primitives.wasm"},{"Name":"original-resource","Value":"\"kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0=\""}]},{"Route":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2347"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7bcdd4uolu"},{"Name":"integrity","Value":"sha256-o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Primitives.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Primitives.wasm","AssetFile":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0="}]},{"Route":"_framework/System.Security.Cryptography.Primitives.wasm","AssetFile":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000425894378"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2347"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0="},{"Name":"original-resource","Value":"\"kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0=\""}]},{"Route":"_framework/System.Security.Cryptography.Primitives.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2347"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE="}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm","AssetFile":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dmew7c9amv"},{"Name":"integrity","Value":"sha256-+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8="},{"Name":"label","Value":"_framework/System.Security.Cryptography.X509Certificates.wasm"}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm","AssetFile":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000374251497"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2671"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dmew7c9amv"},{"Name":"integrity","Value":"sha256-+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8="},{"Name":"label","Value":"_framework/System.Security.Cryptography.X509Certificates.wasm"},{"Name":"original-resource","Value":"\"+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8=\""}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2671"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dmew7c9amv"},{"Name":"integrity","Value":"sha256-KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw="},{"Name":"label","Value":"_framework/System.Security.Cryptography.X509Certificates.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.wasm","AssetFile":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8="}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.wasm","AssetFile":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000374251497"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2671"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8="},{"Name":"original-resource","Value":"\"+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8=\""}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2671"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw="}]},{"Route":"_framework/System.Security.Cryptography.wasm","AssetFile":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"642325"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM="}]},{"Route":"_framework/System.Security.Cryptography.wasm","AssetFile":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004398891"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"227329"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM="},{"Name":"original-resource","Value":"\"YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM=\""}]},{"Route":"_framework/System.Security.Cryptography.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"227329"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y="}]},{"Route":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm","AssetFile":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27413"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7ssqvw2wfy"},{"Name":"integrity","Value":"sha256-NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ="},{"Name":"label","Value":"_framework/System.Security.Principal.Windows.wasm"}]},{"Route":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm","AssetFile":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090171326"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11089"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7ssqvw2wfy"},{"Name":"integrity","Value":"sha256-NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ="},{"Name":"label","Value":"_framework/System.Security.Principal.Windows.wasm"},{"Name":"original-resource","Value":"\"NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ=\""}]},{"Route":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm.gz","AssetFile":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11089"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7ssqvw2wfy"},{"Name":"integrity","Value":"sha256-ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg="},{"Name":"label","Value":"_framework/System.Security.Principal.Windows.wasm.gz"}]},{"Route":"_framework/System.Security.Principal.Windows.wasm","AssetFile":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"27413"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ="}]},{"Route":"_framework/System.Security.Principal.Windows.wasm","AssetFile":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090171326"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11089"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ="},{"Name":"original-resource","Value":"\"NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ=\""}]},{"Route":"_framework/System.Security.Principal.Windows.wasm.gz","AssetFile":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11089"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg="}]},{"Route":"_framework/System.Security.Principal.j5dp7k8x6u.wasm","AssetFile":"_framework/System.Security.Principal.j5dp7k8x6u.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5dp7k8x6u"},{"Name":"integrity","Value":"sha256-KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no="},{"Name":"label","Value":"_framework/System.Security.Principal.wasm"}]},{"Route":"_framework/System.Security.Principal.j5dp7k8x6u.wasm","AssetFile":"_framework/System.Security.Principal.j5dp7k8x6u.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000459558824"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2175"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5dp7k8x6u"},{"Name":"integrity","Value":"sha256-KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no="},{"Name":"label","Value":"_framework/System.Security.Principal.wasm"},{"Name":"original-resource","Value":"\"KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no=\""}]},{"Route":"_framework/System.Security.Principal.j5dp7k8x6u.wasm.gz","AssetFile":"_framework/System.Security.Principal.j5dp7k8x6u.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2175"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5dp7k8x6u"},{"Name":"integrity","Value":"sha256-HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA="},{"Name":"label","Value":"_framework/System.Security.Principal.wasm.gz"}]},{"Route":"_framework/System.Security.Principal.wasm","AssetFile":"_framework/System.Security.Principal.j5dp7k8x6u.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no="}]},{"Route":"_framework/System.Security.Principal.wasm","AssetFile":"_framework/System.Security.Principal.j5dp7k8x6u.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000459558824"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2175"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no="},{"Name":"original-resource","Value":"\"KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no=\""}]},{"Route":"_framework/System.Security.Principal.wasm.gz","AssetFile":"_framework/System.Security.Principal.j5dp7k8x6u.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2175"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA="}]},{"Route":"_framework/System.Security.SecureString.7weoywtuje.wasm","AssetFile":"_framework/System.Security.SecureString.7weoywtuje.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7weoywtuje"},{"Name":"integrity","Value":"sha256-Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY="},{"Name":"label","Value":"_framework/System.Security.SecureString.wasm"}]},{"Route":"_framework/System.Security.SecureString.7weoywtuje.wasm","AssetFile":"_framework/System.Security.SecureString.7weoywtuje.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000453309157"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2205"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7weoywtuje"},{"Name":"integrity","Value":"sha256-Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY="},{"Name":"label","Value":"_framework/System.Security.SecureString.wasm"},{"Name":"original-resource","Value":"\"Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY=\""}]},{"Route":"_framework/System.Security.SecureString.7weoywtuje.wasm.gz","AssetFile":"_framework/System.Security.SecureString.7weoywtuje.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2205"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7weoywtuje"},{"Name":"integrity","Value":"sha256-z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM="},{"Name":"label","Value":"_framework/System.Security.SecureString.wasm.gz"}]},{"Route":"_framework/System.Security.SecureString.wasm","AssetFile":"_framework/System.Security.SecureString.7weoywtuje.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY="}]},{"Route":"_framework/System.Security.SecureString.wasm","AssetFile":"_framework/System.Security.SecureString.7weoywtuje.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000453309157"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2205"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY="},{"Name":"original-resource","Value":"\"Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY=\""}]},{"Route":"_framework/System.Security.SecureString.wasm.gz","AssetFile":"_framework/System.Security.SecureString.7weoywtuje.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2205"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM="}]},{"Route":"_framework/System.Security.snpv53zusk.wasm","AssetFile":"_framework/System.Security.snpv53zusk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"7957"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"snpv53zusk"},{"Name":"integrity","Value":"sha256-qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk="},{"Name":"label","Value":"_framework/System.Security.wasm"}]},{"Route":"_framework/System.Security.snpv53zusk.wasm","AssetFile":"_framework/System.Security.snpv53zusk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000336927224"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2967"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"snpv53zusk"},{"Name":"integrity","Value":"sha256-qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk="},{"Name":"label","Value":"_framework/System.Security.wasm"},{"Name":"original-resource","Value":"\"qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk=\""}]},{"Route":"_framework/System.Security.snpv53zusk.wasm.gz","AssetFile":"_framework/System.Security.snpv53zusk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2967"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"snpv53zusk"},{"Name":"integrity","Value":"sha256-l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk="},{"Name":"label","Value":"_framework/System.Security.wasm.gz"}]},{"Route":"_framework/System.Security.wasm","AssetFile":"_framework/System.Security.snpv53zusk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"7957"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk="}]},{"Route":"_framework/System.Security.wasm","AssetFile":"_framework/System.Security.snpv53zusk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000336927224"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2967"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk="},{"Name":"original-resource","Value":"\"qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk=\""}]},{"Route":"_framework/System.Security.wasm.gz","AssetFile":"_framework/System.Security.snpv53zusk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2967"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk="}]},{"Route":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm","AssetFile":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3f1khl8k32"},{"Name":"integrity","Value":"sha256-0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY="},{"Name":"label","Value":"_framework/System.ServiceModel.Web.wasm"}]},{"Route":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm","AssetFile":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000392464678"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2547"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3f1khl8k32"},{"Name":"integrity","Value":"sha256-0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY="},{"Name":"label","Value":"_framework/System.ServiceModel.Web.wasm"},{"Name":"original-resource","Value":"\"0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY=\""}]},{"Route":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm.gz","AssetFile":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2547"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3f1khl8k32"},{"Name":"integrity","Value":"sha256-E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4="},{"Name":"label","Value":"_framework/System.ServiceModel.Web.wasm.gz"}]},{"Route":"_framework/System.ServiceModel.Web.wasm","AssetFile":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY="}]},{"Route":"_framework/System.ServiceModel.Web.wasm","AssetFile":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000392464678"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2547"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY="},{"Name":"original-resource","Value":"\"0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY=\""}]},{"Route":"_framework/System.ServiceModel.Web.wasm.gz","AssetFile":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2547"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4="}]},{"Route":"_framework/System.ServiceProcess.a95c1olw0i.wasm","AssetFile":"_framework/System.ServiceProcess.a95c1olw0i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a95c1olw0i"},{"Name":"integrity","Value":"sha256-nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU="},{"Name":"label","Value":"_framework/System.ServiceProcess.wasm"}]},{"Route":"_framework/System.ServiceProcess.a95c1olw0i.wasm","AssetFile":"_framework/System.ServiceProcess.a95c1olw0i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000433275563"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a95c1olw0i"},{"Name":"integrity","Value":"sha256-nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU="},{"Name":"label","Value":"_framework/System.ServiceProcess.wasm"},{"Name":"original-resource","Value":"\"nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU=\""}]},{"Route":"_framework/System.ServiceProcess.a95c1olw0i.wasm.gz","AssetFile":"_framework/System.ServiceProcess.a95c1olw0i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a95c1olw0i"},{"Name":"integrity","Value":"sha256-EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q="},{"Name":"label","Value":"_framework/System.ServiceProcess.wasm.gz"}]},{"Route":"_framework/System.ServiceProcess.wasm","AssetFile":"_framework/System.ServiceProcess.a95c1olw0i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU="}]},{"Route":"_framework/System.ServiceProcess.wasm","AssetFile":"_framework/System.ServiceProcess.a95c1olw0i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000433275563"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU="},{"Name":"original-resource","Value":"\"nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU=\""}]},{"Route":"_framework/System.ServiceProcess.wasm.gz","AssetFile":"_framework/System.ServiceProcess.a95c1olw0i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q="}]},{"Route":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm","AssetFile":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"732437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8bhn50uz8f"},{"Name":"integrity","Value":"sha256-nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A="},{"Name":"label","Value":"_framework/System.Text.Encoding.CodePages.wasm"}]},{"Route":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm","AssetFile":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000001939067"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"515711"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8bhn50uz8f"},{"Name":"integrity","Value":"sha256-nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A="},{"Name":"label","Value":"_framework/System.Text.Encoding.CodePages.wasm"},{"Name":"original-resource","Value":"\"nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A=\""}]},{"Route":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm.gz","AssetFile":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"515711"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8bhn50uz8f"},{"Name":"integrity","Value":"sha256-hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y="},{"Name":"label","Value":"_framework/System.Text.Encoding.CodePages.wasm.gz"}]},{"Route":"_framework/System.Text.Encoding.CodePages.wasm","AssetFile":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"732437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A="}]},{"Route":"_framework/System.Text.Encoding.CodePages.wasm","AssetFile":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000001939067"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"515711"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A="},{"Name":"original-resource","Value":"\"nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A=\""}]},{"Route":"_framework/System.Text.Encoding.CodePages.wasm.gz","AssetFile":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"515711"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y="}]},{"Route":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm","AssetFile":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tqz9dyg6j7"},{"Name":"integrity","Value":"sha256-y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A="},{"Name":"label","Value":"_framework/System.Text.Encoding.Extensions.wasm"}]},{"Route":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm","AssetFile":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000442673749"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2258"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tqz9dyg6j7"},{"Name":"integrity","Value":"sha256-y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A="},{"Name":"label","Value":"_framework/System.Text.Encoding.Extensions.wasm"},{"Name":"original-resource","Value":"\"y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A=\""}]},{"Route":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm.gz","AssetFile":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2258"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tqz9dyg6j7"},{"Name":"integrity","Value":"sha256-jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k="},{"Name":"label","Value":"_framework/System.Text.Encoding.Extensions.wasm.gz"}]},{"Route":"_framework/System.Text.Encoding.Extensions.wasm","AssetFile":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A="}]},{"Route":"_framework/System.Text.Encoding.Extensions.wasm","AssetFile":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000442673749"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2258"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A="},{"Name":"original-resource","Value":"\"y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A=\""}]},{"Route":"_framework/System.Text.Encoding.Extensions.wasm.gz","AssetFile":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2258"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k="}]},{"Route":"_framework/System.Text.Encoding.s9ic8sulfi.wasm","AssetFile":"_framework/System.Text.Encoding.s9ic8sulfi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s9ic8sulfi"},{"Name":"integrity","Value":"sha256-gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg="},{"Name":"label","Value":"_framework/System.Text.Encoding.wasm"}]},{"Route":"_framework/System.Text.Encoding.s9ic8sulfi.wasm","AssetFile":"_framework/System.Text.Encoding.s9ic8sulfi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000445434298"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2244"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s9ic8sulfi"},{"Name":"integrity","Value":"sha256-gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg="},{"Name":"label","Value":"_framework/System.Text.Encoding.wasm"},{"Name":"original-resource","Value":"\"gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg=\""}]},{"Route":"_framework/System.Text.Encoding.s9ic8sulfi.wasm.gz","AssetFile":"_framework/System.Text.Encoding.s9ic8sulfi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2244"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s9ic8sulfi"},{"Name":"integrity","Value":"sha256-oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA="},{"Name":"label","Value":"_framework/System.Text.Encoding.wasm.gz"}]},{"Route":"_framework/System.Text.Encoding.wasm","AssetFile":"_framework/System.Text.Encoding.s9ic8sulfi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg="}]},{"Route":"_framework/System.Text.Encoding.wasm","AssetFile":"_framework/System.Text.Encoding.s9ic8sulfi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000445434298"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2244"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg="},{"Name":"original-resource","Value":"\"gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg=\""}]},{"Route":"_framework/System.Text.Encoding.wasm.gz","AssetFile":"_framework/System.Text.Encoding.s9ic8sulfi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2244"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA="}]},{"Route":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm","AssetFile":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"07hq35kp92"},{"Name":"integrity","Value":"sha256-dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE="},{"Name":"label","Value":"_framework/System.Text.Encodings.Web.wasm"}]},{"Route":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm","AssetFile":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000045293958"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"07hq35kp92"},{"Name":"integrity","Value":"sha256-dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE="},{"Name":"label","Value":"_framework/System.Text.Encodings.Web.wasm"},{"Name":"original-resource","Value":"\"dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE=\""}]},{"Route":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm.gz","AssetFile":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"07hq35kp92"},{"Name":"integrity","Value":"sha256-vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4="},{"Name":"label","Value":"_framework/System.Text.Encodings.Web.wasm.gz"}]},{"Route":"_framework/System.Text.Encodings.Web.wasm","AssetFile":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE="}]},{"Route":"_framework/System.Text.Encodings.Web.wasm","AssetFile":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000045293958"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE="},{"Name":"original-resource","Value":"\"dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE=\""}]},{"Route":"_framework/System.Text.Encodings.Web.wasm.gz","AssetFile":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4="}]},{"Route":"_framework/System.Text.Json.2alhj4y3bm.wasm","AssetFile":"_framework/System.Text.Json.2alhj4y3bm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"638741"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2alhj4y3bm"},{"Name":"integrity","Value":"sha256-BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY="},{"Name":"label","Value":"_framework/System.Text.Json.wasm"}]},{"Route":"_framework/System.Text.Json.2alhj4y3bm.wasm","AssetFile":"_framework/System.Text.Json.2alhj4y3bm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004372674"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"228692"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2alhj4y3bm"},{"Name":"integrity","Value":"sha256-BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY="},{"Name":"label","Value":"_framework/System.Text.Json.wasm"},{"Name":"original-resource","Value":"\"BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY=\""}]},{"Route":"_framework/System.Text.Json.2alhj4y3bm.wasm.gz","AssetFile":"_framework/System.Text.Json.2alhj4y3bm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"228692"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2alhj4y3bm"},{"Name":"integrity","Value":"sha256-L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw="},{"Name":"label","Value":"_framework/System.Text.Json.wasm.gz"}]},{"Route":"_framework/System.Text.Json.wasm","AssetFile":"_framework/System.Text.Json.2alhj4y3bm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"638741"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY="}]},{"Route":"_framework/System.Text.Json.wasm","AssetFile":"_framework/System.Text.Json.2alhj4y3bm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004372674"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"228692"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY="},{"Name":"original-resource","Value":"\"BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY=\""}]},{"Route":"_framework/System.Text.Json.wasm.gz","AssetFile":"_framework/System.Text.Json.2alhj4y3bm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"228692"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw="}]},{"Route":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm","AssetFile":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"374549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1qtkesphd"},{"Name":"integrity","Value":"sha256-FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ="},{"Name":"label","Value":"_framework/System.Text.RegularExpressions.wasm"}]},{"Route":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm","AssetFile":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006311418"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"158442"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1qtkesphd"},{"Name":"integrity","Value":"sha256-FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ="},{"Name":"label","Value":"_framework/System.Text.RegularExpressions.wasm"},{"Name":"original-resource","Value":"\"FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ=\""}]},{"Route":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm.gz","AssetFile":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"158442"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1qtkesphd"},{"Name":"integrity","Value":"sha256-BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U="},{"Name":"label","Value":"_framework/System.Text.RegularExpressions.wasm.gz"}]},{"Route":"_framework/System.Text.RegularExpressions.wasm","AssetFile":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"374549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ="}]},{"Route":"_framework/System.Text.RegularExpressions.wasm","AssetFile":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006311418"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"158442"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ="},{"Name":"original-resource","Value":"\"FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ=\""}]},{"Route":"_framework/System.Text.RegularExpressions.wasm.gz","AssetFile":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"158442"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U="}]},{"Route":"_framework/System.Threading.47ucbn1gg1.wasm","AssetFile":"_framework/System.Threading.47ucbn1gg1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"47ucbn1gg1"},{"Name":"integrity","Value":"sha256-ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts="},{"Name":"label","Value":"_framework/System.Threading.wasm"}]},{"Route":"_framework/System.Threading.47ucbn1gg1.wasm","AssetFile":"_framework/System.Threading.47ucbn1gg1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000068045727"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14695"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"47ucbn1gg1"},{"Name":"integrity","Value":"sha256-ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts="},{"Name":"label","Value":"_framework/System.Threading.wasm"},{"Name":"original-resource","Value":"\"ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts=\""}]},{"Route":"_framework/System.Threading.47ucbn1gg1.wasm.gz","AssetFile":"_framework/System.Threading.47ucbn1gg1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14695"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"47ucbn1gg1"},{"Name":"integrity","Value":"sha256-fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g="},{"Name":"label","Value":"_framework/System.Threading.wasm.gz"}]},{"Route":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm","AssetFile":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"23317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ruehy0ud5k"},{"Name":"integrity","Value":"sha256-c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s="},{"Name":"label","Value":"_framework/System.Threading.AccessControl.wasm"}]},{"Route":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm","AssetFile":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000117785630"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ruehy0ud5k"},{"Name":"integrity","Value":"sha256-c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s="},{"Name":"label","Value":"_framework/System.Threading.AccessControl.wasm"},{"Name":"original-resource","Value":"\"c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s=\""}]},{"Route":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm.gz","AssetFile":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ruehy0ud5k"},{"Name":"integrity","Value":"sha256-INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s="},{"Name":"label","Value":"_framework/System.Threading.AccessControl.wasm.gz"}]},{"Route":"_framework/System.Threading.AccessControl.wasm","AssetFile":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"23317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s="}]},{"Route":"_framework/System.Threading.AccessControl.wasm","AssetFile":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000117785630"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s="},{"Name":"original-resource","Value":"\"c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s=\""}]},{"Route":"_framework/System.Threading.AccessControl.wasm.gz","AssetFile":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s="}]},{"Route":"_framework/System.Threading.Channels.s3i62rxr2p.wasm","AssetFile":"_framework/System.Threading.Channels.s3i62rxr2p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"56085"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s3i62rxr2p"},{"Name":"integrity","Value":"sha256-2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4="},{"Name":"label","Value":"_framework/System.Threading.Channels.wasm"}]},{"Route":"_framework/System.Threading.Channels.s3i62rxr2p.wasm","AssetFile":"_framework/System.Threading.Channels.s3i62rxr2p.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040955072"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24416"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s3i62rxr2p"},{"Name":"integrity","Value":"sha256-2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4="},{"Name":"label","Value":"_framework/System.Threading.Channels.wasm"},{"Name":"original-resource","Value":"\"2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4=\""}]},{"Route":"_framework/System.Threading.Channels.s3i62rxr2p.wasm.gz","AssetFile":"_framework/System.Threading.Channels.s3i62rxr2p.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24416"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s3i62rxr2p"},{"Name":"integrity","Value":"sha256-u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo="},{"Name":"label","Value":"_framework/System.Threading.Channels.wasm.gz"}]},{"Route":"_framework/System.Threading.Channels.wasm","AssetFile":"_framework/System.Threading.Channels.s3i62rxr2p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"56085"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4="}]},{"Route":"_framework/System.Threading.Channels.wasm","AssetFile":"_framework/System.Threading.Channels.s3i62rxr2p.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040955072"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24416"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4="},{"Name":"original-resource","Value":"\"2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4=\""}]},{"Route":"_framework/System.Threading.Channels.wasm.gz","AssetFile":"_framework/System.Threading.Channels.s3i62rxr2p.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24416"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo="}]},{"Route":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm","AssetFile":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzl7igry1t"},{"Name":"integrity","Value":"sha256-ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8="},{"Name":"label","Value":"_framework/System.Threading.Overlapped.wasm"}]},{"Route":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm","AssetFile":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000431406385"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzl7igry1t"},{"Name":"integrity","Value":"sha256-ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8="},{"Name":"label","Value":"_framework/System.Threading.Overlapped.wasm"},{"Name":"original-resource","Value":"\"ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8=\""}]},{"Route":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm.gz","AssetFile":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzl7igry1t"},{"Name":"integrity","Value":"sha256-2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto="},{"Name":"label","Value":"_framework/System.Threading.Overlapped.wasm.gz"}]},{"Route":"_framework/System.Threading.Overlapped.wasm","AssetFile":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8="}]},{"Route":"_framework/System.Threading.Overlapped.wasm","AssetFile":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000431406385"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8="},{"Name":"original-resource","Value":"\"ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8=\""}]},{"Route":"_framework/System.Threading.Overlapped.wasm.gz","AssetFile":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto="}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm","AssetFile":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"175381"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"p9bjzp5pyo"},{"Name":"integrity","Value":"sha256-zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Dataflow.wasm"}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm","AssetFile":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013652623"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"73245"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"p9bjzp5pyo"},{"Name":"integrity","Value":"sha256-zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Dataflow.wasm"},{"Name":"original-resource","Value":"\"zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k=\""}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"73245"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"p9bjzp5pyo"},{"Name":"integrity","Value":"sha256-3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Dataflow.wasm.gz"}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.wasm","AssetFile":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"175381"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k="}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.wasm","AssetFile":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013652623"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"73245"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k="},{"Name":"original-resource","Value":"\"zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k=\""}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"73245"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U="}]},{"Route":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm","AssetFile":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"unp0hcfijn"},{"Name":"integrity","Value":"sha256-Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Extensions.wasm"}]},{"Route":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm","AssetFile":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000433275563"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"unp0hcfijn"},{"Name":"integrity","Value":"sha256-Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Extensions.wasm"},{"Name":"original-resource","Value":"\"Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4=\""}]},{"Route":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"unp0hcfijn"},{"Name":"integrity","Value":"sha256-+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Extensions.wasm.gz"}]},{"Route":"_framework/System.Threading.Tasks.Extensions.wasm","AssetFile":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4="}]},{"Route":"_framework/System.Threading.Tasks.Extensions.wasm","AssetFile":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000433275563"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4="},{"Name":"original-resource","Value":"\"Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4=\""}]},{"Route":"_framework/System.Threading.Tasks.Extensions.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw="}]},{"Route":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm","AssetFile":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"50965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hyku0ejwye"},{"Name":"integrity","Value":"sha256-ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Parallel.wasm"}]},{"Route":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm","AssetFile":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000047418085"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21088"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hyku0ejwye"},{"Name":"integrity","Value":"sha256-ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Parallel.wasm"},{"Name":"original-resource","Value":"\"ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo=\""}]},{"Route":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21088"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hyku0ejwye"},{"Name":"integrity","Value":"sha256-m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Parallel.wasm.gz"}]},{"Route":"_framework/System.Threading.Tasks.Parallel.wasm","AssetFile":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"50965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo="}]},{"Route":"_framework/System.Threading.Tasks.Parallel.wasm","AssetFile":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000047418085"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21088"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo="},{"Name":"original-resource","Value":"\"ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo=\""}]},{"Route":"_framework/System.Threading.Tasks.Parallel.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21088"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk="}]},{"Route":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm","AssetFile":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t0sjw89o0i"},{"Name":"integrity","Value":"sha256-YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo="},{"Name":"label","Value":"_framework/System.Threading.Tasks.wasm"}]},{"Route":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm","AssetFile":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388198758"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t0sjw89o0i"},{"Name":"integrity","Value":"sha256-YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo="},{"Name":"label","Value":"_framework/System.Threading.Tasks.wasm"},{"Name":"original-resource","Value":"\"YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo=\""}]},{"Route":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t0sjw89o0i"},{"Name":"integrity","Value":"sha256-Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE="},{"Name":"label","Value":"_framework/System.Threading.Tasks.wasm.gz"}]},{"Route":"_framework/System.Threading.Tasks.wasm","AssetFile":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo="}]},{"Route":"_framework/System.Threading.Tasks.wasm","AssetFile":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388198758"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo="},{"Name":"original-resource","Value":"\"YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo=\""}]},{"Route":"_framework/System.Threading.Tasks.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE="}]},{"Route":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm","AssetFile":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nfbg9v9bn0"},{"Name":"integrity","Value":"sha256-43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0="},{"Name":"label","Value":"_framework/System.Threading.Thread.wasm"}]},{"Route":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm","AssetFile":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000427533134"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2338"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nfbg9v9bn0"},{"Name":"integrity","Value":"sha256-43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0="},{"Name":"label","Value":"_framework/System.Threading.Thread.wasm"},{"Name":"original-resource","Value":"\"43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0=\""}]},{"Route":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm.gz","AssetFile":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2338"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nfbg9v9bn0"},{"Name":"integrity","Value":"sha256-FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE="},{"Name":"label","Value":"_framework/System.Threading.Thread.wasm.gz"}]},{"Route":"_framework/System.Threading.Thread.wasm","AssetFile":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0="}]},{"Route":"_framework/System.Threading.Thread.wasm","AssetFile":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000427533134"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2338"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0="},{"Name":"original-resource","Value":"\"43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0=\""}]},{"Route":"_framework/System.Threading.Thread.wasm.gz","AssetFile":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2338"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE="}]},{"Route":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm","AssetFile":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jrzo6stg1k"},{"Name":"integrity","Value":"sha256-D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas="},{"Name":"label","Value":"_framework/System.Threading.ThreadPool.wasm"}]},{"Route":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm","AssetFile":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000442282176"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2260"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jrzo6stg1k"},{"Name":"integrity","Value":"sha256-D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas="},{"Name":"label","Value":"_framework/System.Threading.ThreadPool.wasm"},{"Name":"original-resource","Value":"\"D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas=\""}]},{"Route":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm.gz","AssetFile":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2260"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jrzo6stg1k"},{"Name":"integrity","Value":"sha256-yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8="},{"Name":"label","Value":"_framework/System.Threading.ThreadPool.wasm.gz"}]},{"Route":"_framework/System.Threading.ThreadPool.wasm","AssetFile":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas="}]},{"Route":"_framework/System.Threading.ThreadPool.wasm","AssetFile":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000442282176"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2260"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas="},{"Name":"original-resource","Value":"\"D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas=\""}]},{"Route":"_framework/System.Threading.ThreadPool.wasm.gz","AssetFile":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2260"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8="}]},{"Route":"_framework/System.Threading.Timer.wasm","AssetFile":"_framework/System.Threading.Timer.y8l1kxazi5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0="}]},{"Route":"_framework/System.Threading.Timer.wasm","AssetFile":"_framework/System.Threading.Timer.y8l1kxazi5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000467726848"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2137"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0="},{"Name":"original-resource","Value":"\"0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0=\""}]},{"Route":"_framework/System.Threading.Timer.wasm.gz","AssetFile":"_framework/System.Threading.Timer.y8l1kxazi5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2137"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M="}]},{"Route":"_framework/System.Threading.Timer.y8l1kxazi5.wasm","AssetFile":"_framework/System.Threading.Timer.y8l1kxazi5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y8l1kxazi5"},{"Name":"integrity","Value":"sha256-0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0="},{"Name":"label","Value":"_framework/System.Threading.Timer.wasm"}]},{"Route":"_framework/System.Threading.Timer.y8l1kxazi5.wasm","AssetFile":"_framework/System.Threading.Timer.y8l1kxazi5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000467726848"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2137"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y8l1kxazi5"},{"Name":"integrity","Value":"sha256-0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0="},{"Name":"label","Value":"_framework/System.Threading.Timer.wasm"},{"Name":"original-resource","Value":"\"0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0=\""}]},{"Route":"_framework/System.Threading.Timer.y8l1kxazi5.wasm.gz","AssetFile":"_framework/System.Threading.Timer.y8l1kxazi5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2137"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y8l1kxazi5"},{"Name":"integrity","Value":"sha256-pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M="},{"Name":"label","Value":"_framework/System.Threading.Timer.wasm.gz"}]},{"Route":"_framework/System.Threading.wasm","AssetFile":"_framework/System.Threading.47ucbn1gg1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts="}]},{"Route":"_framework/System.Threading.wasm","AssetFile":"_framework/System.Threading.47ucbn1gg1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000068045727"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14695"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts="},{"Name":"original-resource","Value":"\"ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts=\""}]},{"Route":"_framework/System.Threading.wasm.gz","AssetFile":"_framework/System.Threading.47ucbn1gg1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14695"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g="}]},{"Route":"_framework/System.Transactions.Local.cig01jt23c.wasm","AssetFile":"_framework/System.Transactions.Local.cig01jt23c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"165653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cig01jt23c"},{"Name":"integrity","Value":"sha256-lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4="},{"Name":"label","Value":"_framework/System.Transactions.Local.wasm"}]},{"Route":"_framework/System.Transactions.Local.cig01jt23c.wasm","AssetFile":"_framework/System.Transactions.Local.cig01jt23c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000019435590"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"51451"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cig01jt23c"},{"Name":"integrity","Value":"sha256-lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4="},{"Name":"label","Value":"_framework/System.Transactions.Local.wasm"},{"Name":"original-resource","Value":"\"lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4=\""}]},{"Route":"_framework/System.Transactions.Local.cig01jt23c.wasm.gz","AssetFile":"_framework/System.Transactions.Local.cig01jt23c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"51451"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cig01jt23c"},{"Name":"integrity","Value":"sha256-ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8="},{"Name":"label","Value":"_framework/System.Transactions.Local.wasm.gz"}]},{"Route":"_framework/System.Transactions.Local.wasm","AssetFile":"_framework/System.Transactions.Local.cig01jt23c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"165653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4="}]},{"Route":"_framework/System.Transactions.Local.wasm","AssetFile":"_framework/System.Transactions.Local.cig01jt23c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000019435590"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"51451"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4="},{"Name":"original-resource","Value":"\"lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4=\""}]},{"Route":"_framework/System.Transactions.Local.wasm.gz","AssetFile":"_framework/System.Transactions.Local.cig01jt23c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"51451"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8="}]},{"Route":"_framework/System.Transactions.pl50n6qbg7.wasm","AssetFile":"_framework/System.Transactions.pl50n6qbg7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pl50n6qbg7"},{"Name":"integrity","Value":"sha256-XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio="},{"Name":"label","Value":"_framework/System.Transactions.wasm"}]},{"Route":"_framework/System.Transactions.pl50n6qbg7.wasm","AssetFile":"_framework/System.Transactions.pl50n6qbg7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000419287212"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2384"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pl50n6qbg7"},{"Name":"integrity","Value":"sha256-XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio="},{"Name":"label","Value":"_framework/System.Transactions.wasm"},{"Name":"original-resource","Value":"\"XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio=\""}]},{"Route":"_framework/System.Transactions.pl50n6qbg7.wasm.gz","AssetFile":"_framework/System.Transactions.pl50n6qbg7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2384"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pl50n6qbg7"},{"Name":"integrity","Value":"sha256-Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA="},{"Name":"label","Value":"_framework/System.Transactions.wasm.gz"}]},{"Route":"_framework/System.Transactions.wasm","AssetFile":"_framework/System.Transactions.pl50n6qbg7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio="}]},{"Route":"_framework/System.Transactions.wasm","AssetFile":"_framework/System.Transactions.pl50n6qbg7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000419287212"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2384"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio="},{"Name":"original-resource","Value":"\"XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio=\""}]},{"Route":"_framework/System.Transactions.wasm.gz","AssetFile":"_framework/System.Transactions.pl50n6qbg7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2384"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA="}]},{"Route":"_framework/System.ValueTuple.mj3r9p0pcw.wasm","AssetFile":"_framework/System.ValueTuple.mj3r9p0pcw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mj3r9p0pcw"},{"Name":"integrity","Value":"sha256-Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY="},{"Name":"label","Value":"_framework/System.ValueTuple.wasm"}]},{"Route":"_framework/System.ValueTuple.mj3r9p0pcw.wasm","AssetFile":"_framework/System.ValueTuple.mj3r9p0pcw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455788514"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2193"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mj3r9p0pcw"},{"Name":"integrity","Value":"sha256-Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY="},{"Name":"label","Value":"_framework/System.ValueTuple.wasm"},{"Name":"original-resource","Value":"\"Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY=\""}]},{"Route":"_framework/System.ValueTuple.mj3r9p0pcw.wasm.gz","AssetFile":"_framework/System.ValueTuple.mj3r9p0pcw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2193"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mj3r9p0pcw"},{"Name":"integrity","Value":"sha256-qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY="},{"Name":"label","Value":"_framework/System.ValueTuple.wasm.gz"}]},{"Route":"_framework/System.ValueTuple.wasm","AssetFile":"_framework/System.ValueTuple.mj3r9p0pcw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY="}]},{"Route":"_framework/System.ValueTuple.wasm","AssetFile":"_framework/System.ValueTuple.mj3r9p0pcw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455788514"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2193"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY="},{"Name":"original-resource","Value":"\"Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY=\""}]},{"Route":"_framework/System.ValueTuple.wasm.gz","AssetFile":"_framework/System.ValueTuple.mj3r9p0pcw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2193"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY="}]},{"Route":"_framework/System.Web.2a6wq9gv6d.wasm","AssetFile":"_framework/System.Web.2a6wq9gv6d.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2a6wq9gv6d"},{"Name":"integrity","Value":"sha256-Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk="},{"Name":"label","Value":"_framework/System.Web.wasm"}]},{"Route":"_framework/System.Web.2a6wq9gv6d.wasm","AssetFile":"_framework/System.Web.2a6wq9gv6d.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000469924812"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2127"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2a6wq9gv6d"},{"Name":"integrity","Value":"sha256-Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk="},{"Name":"label","Value":"_framework/System.Web.wasm"},{"Name":"original-resource","Value":"\"Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk=\""}]},{"Route":"_framework/System.Web.2a6wq9gv6d.wasm.gz","AssetFile":"_framework/System.Web.2a6wq9gv6d.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2127"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2a6wq9gv6d"},{"Name":"integrity","Value":"sha256-UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4="},{"Name":"label","Value":"_framework/System.Web.wasm.gz"}]},{"Route":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm","AssetFile":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"19733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3jfxpyq4in"},{"Name":"integrity","Value":"sha256-IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4="},{"Name":"label","Value":"_framework/System.Web.HttpUtility.wasm"}]},{"Route":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm","AssetFile":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000104766894"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9544"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3jfxpyq4in"},{"Name":"integrity","Value":"sha256-IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4="},{"Name":"label","Value":"_framework/System.Web.HttpUtility.wasm"},{"Name":"original-resource","Value":"\"IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4=\""}]},{"Route":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm.gz","AssetFile":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9544"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3jfxpyq4in"},{"Name":"integrity","Value":"sha256-eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg="},{"Name":"label","Value":"_framework/System.Web.HttpUtility.wasm.gz"}]},{"Route":"_framework/System.Web.HttpUtility.wasm","AssetFile":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"19733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4="}]},{"Route":"_framework/System.Web.HttpUtility.wasm","AssetFile":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000104766894"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9544"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4="},{"Name":"original-resource","Value":"\"IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4=\""}]},{"Route":"_framework/System.Web.HttpUtility.wasm.gz","AssetFile":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9544"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg="}]},{"Route":"_framework/System.Web.wasm","AssetFile":"_framework/System.Web.2a6wq9gv6d.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk="}]},{"Route":"_framework/System.Web.wasm","AssetFile":"_framework/System.Web.2a6wq9gv6d.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000469924812"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2127"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk="},{"Name":"original-resource","Value":"\"Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk=\""}]},{"Route":"_framework/System.Web.wasm.gz","AssetFile":"_framework/System.Web.2a6wq9gv6d.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2127"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4="}]},{"Route":"_framework/System.Windows.bw79ix589z.wasm","AssetFile":"_framework/System.Windows.bw79ix589z.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bw79ix589z"},{"Name":"integrity","Value":"sha256-O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA="},{"Name":"label","Value":"_framework/System.Windows.wasm"}]},{"Route":"_framework/System.Windows.bw79ix589z.wasm","AssetFile":"_framework/System.Windows.bw79ix589z.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438212095"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bw79ix589z"},{"Name":"integrity","Value":"sha256-O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA="},{"Name":"label","Value":"_framework/System.Windows.wasm"},{"Name":"original-resource","Value":"\"O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA=\""}]},{"Route":"_framework/System.Windows.bw79ix589z.wasm.gz","AssetFile":"_framework/System.Windows.bw79ix589z.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bw79ix589z"},{"Name":"integrity","Value":"sha256-YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs="},{"Name":"label","Value":"_framework/System.Windows.wasm.gz"}]},{"Route":"_framework/System.Windows.wasm","AssetFile":"_framework/System.Windows.bw79ix589z.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA="}]},{"Route":"_framework/System.Windows.wasm","AssetFile":"_framework/System.Windows.bw79ix589z.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438212095"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA="},{"Name":"original-resource","Value":"\"O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA=\""}]},{"Route":"_framework/System.Windows.wasm.gz","AssetFile":"_framework/System.Windows.bw79ix589z.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs="}]},{"Route":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm","AssetFile":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvnhbwdsg6"},{"Name":"integrity","Value":"sha256-I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE="},{"Name":"label","Value":"_framework/System.Xml.Linq.wasm"}]},{"Route":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm","AssetFile":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000452488688"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2209"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvnhbwdsg6"},{"Name":"integrity","Value":"sha256-I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE="},{"Name":"label","Value":"_framework/System.Xml.Linq.wasm"},{"Name":"original-resource","Value":"\"I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE=\""}]},{"Route":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm.gz","AssetFile":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2209"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvnhbwdsg6"},{"Name":"integrity","Value":"sha256-NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog="},{"Name":"label","Value":"_framework/System.Xml.Linq.wasm.gz"}]},{"Route":"_framework/System.Xml.Linq.wasm","AssetFile":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE="}]},{"Route":"_framework/System.Xml.Linq.wasm","AssetFile":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000452488688"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2209"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE="},{"Name":"original-resource","Value":"\"I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE=\""}]},{"Route":"_framework/System.Xml.Linq.wasm.gz","AssetFile":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2209"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog="}]},{"Route":"_framework/System.Xml.ReaderWriter.szsdminork.wasm","AssetFile":"_framework/System.Xml.ReaderWriter.szsdminork.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"szsdminork"},{"Name":"integrity","Value":"sha256-+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho="},{"Name":"label","Value":"_framework/System.Xml.ReaderWriter.wasm"}]},{"Route":"_framework/System.Xml.ReaderWriter.szsdminork.wasm","AssetFile":"_framework/System.Xml.ReaderWriter.szsdminork.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000248632521"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"szsdminork"},{"Name":"integrity","Value":"sha256-+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho="},{"Name":"label","Value":"_framework/System.Xml.ReaderWriter.wasm"},{"Name":"original-resource","Value":"\"+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho=\""}]},{"Route":"_framework/System.Xml.ReaderWriter.szsdminork.wasm.gz","AssetFile":"_framework/System.Xml.ReaderWriter.szsdminork.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"szsdminork"},{"Name":"integrity","Value":"sha256-v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI="},{"Name":"label","Value":"_framework/System.Xml.ReaderWriter.wasm.gz"}]},{"Route":"_framework/System.Xml.ReaderWriter.wasm","AssetFile":"_framework/System.Xml.ReaderWriter.szsdminork.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho="}]},{"Route":"_framework/System.Xml.ReaderWriter.wasm","AssetFile":"_framework/System.Xml.ReaderWriter.szsdminork.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000248632521"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho="},{"Name":"original-resource","Value":"\"+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho=\""}]},{"Route":"_framework/System.Xml.ReaderWriter.wasm.gz","AssetFile":"_framework/System.Xml.ReaderWriter.szsdminork.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI="}]},{"Route":"_framework/System.Xml.Serialization.b9imguls9w.wasm","AssetFile":"_framework/System.Xml.Serialization.b9imguls9w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b9imguls9w"},{"Name":"integrity","Value":"sha256-EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8="},{"Name":"label","Value":"_framework/System.Xml.Serialization.wasm"}]},{"Route":"_framework/System.Xml.Serialization.b9imguls9w.wasm","AssetFile":"_framework/System.Xml.Serialization.b9imguls9w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000443852641"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2252"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b9imguls9w"},{"Name":"integrity","Value":"sha256-EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8="},{"Name":"label","Value":"_framework/System.Xml.Serialization.wasm"},{"Name":"original-resource","Value":"\"EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8=\""}]},{"Route":"_framework/System.Xml.Serialization.b9imguls9w.wasm.gz","AssetFile":"_framework/System.Xml.Serialization.b9imguls9w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2252"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b9imguls9w"},{"Name":"integrity","Value":"sha256-UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M="},{"Name":"label","Value":"_framework/System.Xml.Serialization.wasm.gz"}]},{"Route":"_framework/System.Xml.Serialization.wasm","AssetFile":"_framework/System.Xml.Serialization.b9imguls9w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8="}]},{"Route":"_framework/System.Xml.Serialization.wasm","AssetFile":"_framework/System.Xml.Serialization.b9imguls9w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000443852641"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2252"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8="},{"Name":"original-resource","Value":"\"EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8=\""}]},{"Route":"_framework/System.Xml.Serialization.wasm.gz","AssetFile":"_framework/System.Xml.Serialization.b9imguls9w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2252"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M="}]},{"Route":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm","AssetFile":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8hg6c0at0c"},{"Name":"integrity","Value":"sha256-7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk="},{"Name":"label","Value":"_framework/System.Xml.XDocument.wasm"}]},{"Route":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm","AssetFile":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000417362270"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2395"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8hg6c0at0c"},{"Name":"integrity","Value":"sha256-7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk="},{"Name":"label","Value":"_framework/System.Xml.XDocument.wasm"},{"Name":"original-resource","Value":"\"7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk=\""}]},{"Route":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm.gz","AssetFile":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2395"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8hg6c0at0c"},{"Name":"integrity","Value":"sha256-JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU="},{"Name":"label","Value":"_framework/System.Xml.XDocument.wasm.gz"}]},{"Route":"_framework/System.Xml.XDocument.wasm","AssetFile":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk="}]},{"Route":"_framework/System.Xml.XDocument.wasm","AssetFile":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000417362270"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2395"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk="},{"Name":"original-resource","Value":"\"7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk=\""}]},{"Route":"_framework/System.Xml.XDocument.wasm.gz","AssetFile":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2395"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU="}]},{"Route":"_framework/System.Xml.XPath.11wk1hhnfk.wasm","AssetFile":"_framework/System.Xml.XPath.11wk1hhnfk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"11wk1hhnfk"},{"Name":"integrity","Value":"sha256-28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM="},{"Name":"label","Value":"_framework/System.Xml.XPath.wasm"}]},{"Route":"_framework/System.Xml.XPath.11wk1hhnfk.wasm","AssetFile":"_framework/System.Xml.XPath.11wk1hhnfk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000430848772"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2320"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"11wk1hhnfk"},{"Name":"integrity","Value":"sha256-28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM="},{"Name":"label","Value":"_framework/System.Xml.XPath.wasm"},{"Name":"original-resource","Value":"\"28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM=\""}]},{"Route":"_framework/System.Xml.XPath.11wk1hhnfk.wasm.gz","AssetFile":"_framework/System.Xml.XPath.11wk1hhnfk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2320"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"11wk1hhnfk"},{"Name":"integrity","Value":"sha256-5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM="},{"Name":"label","Value":"_framework/System.Xml.XPath.wasm.gz"}]},{"Route":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm","AssetFile":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g7i5gd64yo"},{"Name":"integrity","Value":"sha256-bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg="},{"Name":"label","Value":"_framework/System.Xml.XPath.XDocument.wasm"}]},{"Route":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm","AssetFile":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000401284109"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2491"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g7i5gd64yo"},{"Name":"integrity","Value":"sha256-bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg="},{"Name":"label","Value":"_framework/System.Xml.XPath.XDocument.wasm"},{"Name":"original-resource","Value":"\"bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg=\""}]},{"Route":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm.gz","AssetFile":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2491"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g7i5gd64yo"},{"Name":"integrity","Value":"sha256-6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918="},{"Name":"label","Value":"_framework/System.Xml.XPath.XDocument.wasm.gz"}]},{"Route":"_framework/System.Xml.XPath.XDocument.wasm","AssetFile":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg="}]},{"Route":"_framework/System.Xml.XPath.XDocument.wasm","AssetFile":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000401284109"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2491"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg="},{"Name":"original-resource","Value":"\"bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg=\""}]},{"Route":"_framework/System.Xml.XPath.XDocument.wasm.gz","AssetFile":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2491"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918="}]},{"Route":"_framework/System.Xml.XPath.wasm","AssetFile":"_framework/System.Xml.XPath.11wk1hhnfk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM="}]},{"Route":"_framework/System.Xml.XPath.wasm","AssetFile":"_framework/System.Xml.XPath.11wk1hhnfk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000430848772"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2320"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM="},{"Name":"original-resource","Value":"\"28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM=\""}]},{"Route":"_framework/System.Xml.XPath.wasm.gz","AssetFile":"_framework/System.Xml.XPath.11wk1hhnfk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2320"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM="}]},{"Route":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm","AssetFile":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"isetn6xlxa"},{"Name":"integrity","Value":"sha256-Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw="},{"Name":"label","Value":"_framework/System.Xml.XmlDocument.wasm"}]},{"Route":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm","AssetFile":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000423190859"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"isetn6xlxa"},{"Name":"integrity","Value":"sha256-Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw="},{"Name":"label","Value":"_framework/System.Xml.XmlDocument.wasm"},{"Name":"original-resource","Value":"\"Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw=\""}]},{"Route":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm.gz","AssetFile":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"isetn6xlxa"},{"Name":"integrity","Value":"sha256-520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs="},{"Name":"label","Value":"_framework/System.Xml.XmlDocument.wasm.gz"}]},{"Route":"_framework/System.Xml.XmlDocument.wasm","AssetFile":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw="}]},{"Route":"_framework/System.Xml.XmlDocument.wasm","AssetFile":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000423190859"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw="},{"Name":"original-resource","Value":"\"Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw=\""}]},{"Route":"_framework/System.Xml.XmlDocument.wasm.gz","AssetFile":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs="}]},{"Route":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm","AssetFile":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"7445"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"okgnp5v9bw"},{"Name":"integrity","Value":"sha256-WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U="},{"Name":"label","Value":"_framework/System.Xml.XmlSerializer.wasm"}]},{"Route":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm","AssetFile":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000349406010"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"okgnp5v9bw"},{"Name":"integrity","Value":"sha256-WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U="},{"Name":"label","Value":"_framework/System.Xml.XmlSerializer.wasm"},{"Name":"original-resource","Value":"\"WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U=\""}]},{"Route":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm.gz","AssetFile":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"okgnp5v9bw"},{"Name":"integrity","Value":"sha256-WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA="},{"Name":"label","Value":"_framework/System.Xml.XmlSerializer.wasm.gz"}]},{"Route":"_framework/System.Xml.XmlSerializer.wasm","AssetFile":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"7445"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U="}]},{"Route":"_framework/System.Xml.XmlSerializer.wasm","AssetFile":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000349406010"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U="},{"Name":"original-resource","Value":"\"WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U=\""}]},{"Route":"_framework/System.Xml.XmlSerializer.wasm.gz","AssetFile":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA="}]},{"Route":"_framework/System.Xml.wasm","AssetFile":"_framework/System.Xml.zjgi7nrlno.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas="}]},{"Route":"_framework/System.Xml.wasm","AssetFile":"_framework/System.Xml.zjgi7nrlno.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000237079184"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4217"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas="},{"Name":"original-resource","Value":"\"scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas=\""}]},{"Route":"_framework/System.Xml.wasm.gz","AssetFile":"_framework/System.Xml.zjgi7nrlno.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4217"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY="}]},{"Route":"_framework/System.Xml.zjgi7nrlno.wasm","AssetFile":"_framework/System.Xml.zjgi7nrlno.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zjgi7nrlno"},{"Name":"integrity","Value":"sha256-scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas="},{"Name":"label","Value":"_framework/System.Xml.wasm"}]},{"Route":"_framework/System.Xml.zjgi7nrlno.wasm","AssetFile":"_framework/System.Xml.zjgi7nrlno.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000237079184"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4217"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zjgi7nrlno"},{"Name":"integrity","Value":"sha256-scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas="},{"Name":"label","Value":"_framework/System.Xml.wasm"},{"Name":"original-resource","Value":"\"scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas=\""}]},{"Route":"_framework/System.Xml.zjgi7nrlno.wasm.gz","AssetFile":"_framework/System.Xml.zjgi7nrlno.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4217"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zjgi7nrlno"},{"Name":"integrity","Value":"sha256-Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY="},{"Name":"label","Value":"_framework/System.Xml.wasm.gz"}]},{"Route":"_framework/System.wasm","AssetFile":"_framework/System.7rk3uansaa.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"39701"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q="}]},{"Route":"_framework/System.wasm","AssetFile":"_framework/System.7rk3uansaa.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000084875233"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q="},{"Name":"original-resource","Value":"\"00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q=\""}]},{"Route":"_framework/System.wasm.gz","AssetFile":"_framework/System.7rk3uansaa.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI="}]},{"Route":"_framework/WindowsBase.wasm","AssetFile":"_framework/WindowsBase.wz82kkc1p3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ="}]},{"Route":"_framework/WindowsBase.wasm","AssetFile":"_framework/WindowsBase.wz82kkc1p3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000395726157"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2526"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ="},{"Name":"original-resource","Value":"\"DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ=\""}]},{"Route":"_framework/WindowsBase.wasm.gz","AssetFile":"_framework/WindowsBase.wz82kkc1p3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2526"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc="}]},{"Route":"_framework/WindowsBase.wz82kkc1p3.wasm","AssetFile":"_framework/WindowsBase.wz82kkc1p3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wz82kkc1p3"},{"Name":"integrity","Value":"sha256-DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ="},{"Name":"label","Value":"_framework/WindowsBase.wasm"}]},{"Route":"_framework/WindowsBase.wz82kkc1p3.wasm","AssetFile":"_framework/WindowsBase.wz82kkc1p3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000395726157"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2526"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wz82kkc1p3"},{"Name":"integrity","Value":"sha256-DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ="},{"Name":"label","Value":"_framework/WindowsBase.wasm"},{"Name":"original-resource","Value":"\"DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ=\""}]},{"Route":"_framework/WindowsBase.wz82kkc1p3.wasm.gz","AssetFile":"_framework/WindowsBase.wz82kkc1p3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2526"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wz82kkc1p3"},{"Name":"integrity","Value":"sha256-b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc="},{"Name":"label","Value":"_framework/WindowsBase.wasm.gz"}]},{"Route":"_framework/blazor.server.2tj1sjhksk.js","AssetFile":"_framework/blazor.server.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"164838"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"eg0OnUsgnYSMB4bGEC2eWKHVZZYf6Psyru2+slCqElY=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 20:10:46 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2tj1sjhksk"},{"Name":"integrity","Value":"sha256-eg0OnUsgnYSMB4bGEC2eWKHVZZYf6Psyru2+slCqElY="},{"Name":"label","Value":"_framework/blazor.server.js"}]},{"Route":"_framework/blazor.server.2tj1sjhksk.js","AssetFile":"_framework/blazor.server.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022566741"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44312"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"UZUyVYBpct8fgB7oNrIguu4We/o5Cyak6zO8IAx3S20=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2tj1sjhksk"},{"Name":"integrity","Value":"sha256-eg0OnUsgnYSMB4bGEC2eWKHVZZYf6Psyru2+slCqElY="},{"Name":"label","Value":"_framework/blazor.server.js"},{"Name":"original-resource","Value":"\"eg0OnUsgnYSMB4bGEC2eWKHVZZYf6Psyru2+slCqElY=\""}]},{"Route":"_framework/blazor.server.2tj1sjhksk.js.gz","AssetFile":"_framework/blazor.server.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44312"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"UZUyVYBpct8fgB7oNrIguu4We/o5Cyak6zO8IAx3S20=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2tj1sjhksk"},{"Name":"integrity","Value":"sha256-UZUyVYBpct8fgB7oNrIguu4We/o5Cyak6zO8IAx3S20="},{"Name":"label","Value":"_framework/blazor.server.js.gz"}]},{"Route":"_framework/blazor.server.js","AssetFile":"_framework/blazor.server.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"164838"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"eg0OnUsgnYSMB4bGEC2eWKHVZZYf6Psyru2+slCqElY=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 20:10:46 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eg0OnUsgnYSMB4bGEC2eWKHVZZYf6Psyru2+slCqElY="}]},{"Route":"_framework/blazor.server.js","AssetFile":"_framework/blazor.server.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022566741"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44312"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"UZUyVYBpct8fgB7oNrIguu4We/o5Cyak6zO8IAx3S20=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eg0OnUsgnYSMB4bGEC2eWKHVZZYf6Psyru2+slCqElY="},{"Name":"original-resource","Value":"\"eg0OnUsgnYSMB4bGEC2eWKHVZZYf6Psyru2+slCqElY=\""}]},{"Route":"_framework/blazor.server.js.gz","AssetFile":"_framework/blazor.server.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44312"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"UZUyVYBpct8fgB7oNrIguu4We/o5Cyak6zO8IAx3S20=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UZUyVYBpct8fgB7oNrIguu4We/o5Cyak6zO8IAx3S20="}]},{"Route":"_framework/blazor.web.b9228eflpl.js","AssetFile":"_framework/blazor.web.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"200213"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"EVhyOk3pqPbkypEpHXvWs/DrqujSmP7XEC3pnVHJMUU=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 20:10:52 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b9228eflpl"},{"Name":"integrity","Value":"sha256-EVhyOk3pqPbkypEpHXvWs/DrqujSmP7XEC3pnVHJMUU="},{"Name":"label","Value":"_framework/blazor.web.js"}]},{"Route":"_framework/blazor.web.b9228eflpl.js","AssetFile":"_framework/blazor.web.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018129408"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55158"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8VQ3iMUvfxiGnWgLihInPbvXvnXptUD4QRw4448/j64=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b9228eflpl"},{"Name":"integrity","Value":"sha256-EVhyOk3pqPbkypEpHXvWs/DrqujSmP7XEC3pnVHJMUU="},{"Name":"label","Value":"_framework/blazor.web.js"},{"Name":"original-resource","Value":"\"EVhyOk3pqPbkypEpHXvWs/DrqujSmP7XEC3pnVHJMUU=\""}]},{"Route":"_framework/blazor.web.b9228eflpl.js.gz","AssetFile":"_framework/blazor.web.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55158"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8VQ3iMUvfxiGnWgLihInPbvXvnXptUD4QRw4448/j64=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b9228eflpl"},{"Name":"integrity","Value":"sha256-8VQ3iMUvfxiGnWgLihInPbvXvnXptUD4QRw4448/j64="},{"Name":"label","Value":"_framework/blazor.web.js.gz"}]},{"Route":"_framework/blazor.web.js","AssetFile":"_framework/blazor.web.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"200213"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"EVhyOk3pqPbkypEpHXvWs/DrqujSmP7XEC3pnVHJMUU=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 20:10:52 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EVhyOk3pqPbkypEpHXvWs/DrqujSmP7XEC3pnVHJMUU="}]},{"Route":"_framework/blazor.web.js","AssetFile":"_framework/blazor.web.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018129408"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55158"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8VQ3iMUvfxiGnWgLihInPbvXvnXptUD4QRw4448/j64=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EVhyOk3pqPbkypEpHXvWs/DrqujSmP7XEC3pnVHJMUU="},{"Name":"original-resource","Value":"\"EVhyOk3pqPbkypEpHXvWs/DrqujSmP7XEC3pnVHJMUU=\""}]},{"Route":"_framework/blazor.web.js.gz","AssetFile":"_framework/blazor.web.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55158"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8VQ3iMUvfxiGnWgLihInPbvXvnXptUD4QRw4448/j64=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8VQ3iMUvfxiGnWgLihInPbvXvnXptUD4QRw4448/j64="}]},{"Route":"_framework/blazor.webassembly.js","AssetFile":"_framework/blazor.webassembly.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"60278"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3lCWrko3zwspV40aQhs2S/IMkRSarnHRKIdkHhuXIBA=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 20:10:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3lCWrko3zwspV40aQhs2S/IMkRSarnHRKIdkHhuXIBA="}]},{"Route":"_framework/blazor.webassembly.js","AssetFile":"_framework/blazor.webassembly.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053404539"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18724"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"5Igt0nmzlphL04ESrb7MBY9ts2dhz5i3UJ+aCoJbK0Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3lCWrko3zwspV40aQhs2S/IMkRSarnHRKIdkHhuXIBA="},{"Name":"original-resource","Value":"\"3lCWrko3zwspV40aQhs2S/IMkRSarnHRKIdkHhuXIBA=\""}]},{"Route":"_framework/blazor.webassembly.js.gz","AssetFile":"_framework/blazor.webassembly.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18724"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"5Igt0nmzlphL04ESrb7MBY9ts2dhz5i3UJ+aCoJbK0Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5Igt0nmzlphL04ESrb7MBY9ts2dhz5i3UJ+aCoJbK0Y="}]},{"Route":"_framework/dotnet.js","AssetFile":"_framework/dotnet.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"93305"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk="}]},{"Route":"_framework/dotnet.js","AssetFile":"_framework/dotnet.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000039508514"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25310"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk="},{"Name":"original-resource","Value":"\"WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk=\""}]},{"Route":"_framework/dotnet.js.clndu25lif.map","AssetFile":"_framework/dotnet.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"51818"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:10 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clndu25lif"},{"Name":"integrity","Value":"sha256-sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU="},{"Name":"label","Value":"_framework/dotnet.js.map"}]},{"Route":"_framework/dotnet.js.clndu25lif.map","AssetFile":"_framework/dotnet.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051805419"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19302"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clndu25lif"},{"Name":"integrity","Value":"sha256-sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU="},{"Name":"label","Value":"_framework/dotnet.js.map"},{"Name":"original-resource","Value":"\"sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU=\""}]},{"Route":"_framework/dotnet.js.clndu25lif.map.gz","AssetFile":"_framework/dotnet.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19302"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clndu25lif"},{"Name":"integrity","Value":"sha256-viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs="},{"Name":"label","Value":"_framework/dotnet.js.map.gz"}]},{"Route":"_framework/dotnet.js.gz","AssetFile":"_framework/dotnet.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25310"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I="}]},{"Route":"_framework/dotnet.js.map","AssetFile":"_framework/dotnet.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"51818"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:10 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU="}]},{"Route":"_framework/dotnet.js.map","AssetFile":"_framework/dotnet.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051805419"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19302"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU="},{"Name":"original-resource","Value":"\"sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU=\""}]},{"Route":"_framework/dotnet.js.map.gz","AssetFile":"_framework/dotnet.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19302"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs="}]},{"Route":"_framework/dotnet.kx7meqmil2.js","AssetFile":"_framework/dotnet.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"93305"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"PreloadAs","Value":"script"},{"Name":"PreloadCrossorigin","Value":"anonymous"},{"Name":"PreloadGroup","Value":"webassembly"},{"Name":"PreloadOrder","Value":"1"},{"Name":"PreloadPriority","Value":"high"},{"Name":"PreloadRel","Value":"preload"},{"Name":"fingerprint","Value":"kx7meqmil2"},{"Name":"integrity","Value":"sha256-WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk="},{"Name":"label","Value":"_framework/dotnet.js"}]},{"Route":"_framework/dotnet.kx7meqmil2.js","AssetFile":"_framework/dotnet.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000039508514"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25310"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"PreloadAs","Value":"script"},{"Name":"PreloadCrossorigin","Value":"anonymous"},{"Name":"PreloadGroup","Value":"webassembly"},{"Name":"PreloadOrder","Value":"1"},{"Name":"PreloadPriority","Value":"high"},{"Name":"PreloadRel","Value":"preload"},{"Name":"fingerprint","Value":"kx7meqmil2"},{"Name":"integrity","Value":"sha256-WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk="},{"Name":"label","Value":"_framework/dotnet.js"},{"Name":"original-resource","Value":"\"WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk=\""}]},{"Route":"_framework/dotnet.kx7meqmil2.js.gz","AssetFile":"_framework/dotnet.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25310"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kx7meqmil2"},{"Name":"integrity","Value":"sha256-Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I="},{"Name":"label","Value":"_framework/dotnet.js.gz"}]},{"Route":"_framework/dotnet.native.53ez3dx5uy.wasm","AssetFile":"_framework/dotnet.native.53ez3dx5uy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3002101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:42 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"53ez3dx5uy"},{"Name":"integrity","Value":"sha256-Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU="},{"Name":"label","Value":"_framework/dotnet.native.wasm"}]},{"Route":"_framework/dotnet.native.53ez3dx5uy.wasm","AssetFile":"_framework/dotnet.native.53ez3dx5uy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000842441"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1187026"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"53ez3dx5uy"},{"Name":"integrity","Value":"sha256-Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU="},{"Name":"label","Value":"_framework/dotnet.native.wasm"},{"Name":"original-resource","Value":"\"Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU=\""}]},{"Route":"_framework/dotnet.native.53ez3dx5uy.wasm.gz","AssetFile":"_framework/dotnet.native.53ez3dx5uy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1187026"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"53ez3dx5uy"},{"Name":"integrity","Value":"sha256-SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw="},{"Name":"label","Value":"_framework/dotnet.native.wasm.gz"}]},{"Route":"_framework/dotnet.native.js","AssetFile":"_framework/dotnet.native.ykrnppwhq2.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"145050"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:42 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U="}]},{"Route":"_framework/dotnet.native.js","AssetFile":"_framework/dotnet.native.ykrnppwhq2.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000028845876"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"34666"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U="},{"Name":"original-resource","Value":"\"nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U=\""}]},{"Route":"_framework/dotnet.native.js.gz","AssetFile":"_framework/dotnet.native.ykrnppwhq2.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"34666"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0="}]},{"Route":"_framework/dotnet.native.wasm","AssetFile":"_framework/dotnet.native.53ez3dx5uy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3002101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:42 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU="}]},{"Route":"_framework/dotnet.native.wasm","AssetFile":"_framework/dotnet.native.53ez3dx5uy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000842441"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1187026"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU="},{"Name":"original-resource","Value":"\"Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU=\""}]},{"Route":"_framework/dotnet.native.wasm.gz","AssetFile":"_framework/dotnet.native.53ez3dx5uy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1187026"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw="}]},{"Route":"_framework/dotnet.native.ykrnppwhq2.js","AssetFile":"_framework/dotnet.native.ykrnppwhq2.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"145050"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:42 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ykrnppwhq2"},{"Name":"integrity","Value":"sha256-nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U="},{"Name":"label","Value":"_framework/dotnet.native.js"}]},{"Route":"_framework/dotnet.native.ykrnppwhq2.js","AssetFile":"_framework/dotnet.native.ykrnppwhq2.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000028845876"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"34666"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ykrnppwhq2"},{"Name":"integrity","Value":"sha256-nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U="},{"Name":"label","Value":"_framework/dotnet.native.js"},{"Name":"original-resource","Value":"\"nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U=\""}]},{"Route":"_framework/dotnet.native.ykrnppwhq2.js.gz","AssetFile":"_framework/dotnet.native.ykrnppwhq2.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"34666"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ykrnppwhq2"},{"Name":"integrity","Value":"sha256-iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0="},{"Name":"label","Value":"_framework/dotnet.native.js.gz"}]},{"Route":"_framework/dotnet.runtime.js","AssetFile":"_framework/dotnet.runtime.peu2mfb29t.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"198479"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:16 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM="}]},{"Route":"_framework/dotnet.runtime.js","AssetFile":"_framework/dotnet.runtime.peu2mfb29t.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017664099"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56611"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM="},{"Name":"original-resource","Value":"\"cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM=\""}]},{"Route":"_framework/dotnet.runtime.js.gz","AssetFile":"_framework/dotnet.runtime.peu2mfb29t.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56611"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak="}]},{"Route":"_framework/dotnet.runtime.js.map","AssetFile":"_framework/dotnet.runtime.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"276757"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:16 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE="}]},{"Route":"_framework/dotnet.runtime.js.map","AssetFile":"_framework/dotnet.runtime.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011299052"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"88502"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE="},{"Name":"original-resource","Value":"\"+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE=\""}]},{"Route":"_framework/dotnet.runtime.js.map.gz","AssetFile":"_framework/dotnet.runtime.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"88502"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4="}]},{"Route":"_framework/dotnet.runtime.js.y1cse46x0j.map","AssetFile":"_framework/dotnet.runtime.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"276757"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:16 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y1cse46x0j"},{"Name":"integrity","Value":"sha256-+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE="},{"Name":"label","Value":"_framework/dotnet.runtime.js.map"}]},{"Route":"_framework/dotnet.runtime.js.y1cse46x0j.map","AssetFile":"_framework/dotnet.runtime.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011299052"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"88502"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y1cse46x0j"},{"Name":"integrity","Value":"sha256-+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE="},{"Name":"label","Value":"_framework/dotnet.runtime.js.map"},{"Name":"original-resource","Value":"\"+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE=\""}]},{"Route":"_framework/dotnet.runtime.js.y1cse46x0j.map.gz","AssetFile":"_framework/dotnet.runtime.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"88502"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y1cse46x0j"},{"Name":"integrity","Value":"sha256-8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4="},{"Name":"label","Value":"_framework/dotnet.runtime.js.map.gz"}]},{"Route":"_framework/dotnet.runtime.peu2mfb29t.js","AssetFile":"_framework/dotnet.runtime.peu2mfb29t.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"198479"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:16 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"peu2mfb29t"},{"Name":"integrity","Value":"sha256-cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM="},{"Name":"label","Value":"_framework/dotnet.runtime.js"}]},{"Route":"_framework/dotnet.runtime.peu2mfb29t.js","AssetFile":"_framework/dotnet.runtime.peu2mfb29t.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017664099"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56611"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"peu2mfb29t"},{"Name":"integrity","Value":"sha256-cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM="},{"Name":"label","Value":"_framework/dotnet.runtime.js"},{"Name":"original-resource","Value":"\"cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM=\""}]},{"Route":"_framework/dotnet.runtime.peu2mfb29t.js.gz","AssetFile":"_framework/dotnet.runtime.peu2mfb29t.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56611"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"peu2mfb29t"},{"Name":"integrity","Value":"sha256-1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak="},{"Name":"label","Value":"_framework/dotnet.runtime.js.gz"}]},{"Route":"_framework/icudt_CJK.dat","AssetFile":"_framework/icudt_CJK.tjcz0u77k5.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"956416"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk="}]},{"Route":"_framework/icudt_CJK.dat","AssetFile":"_framework/icudt_CJK.tjcz0u77k5.dat.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003002002"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"333110"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk="},{"Name":"original-resource","Value":"\"SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=\""}]},{"Route":"_framework/icudt_CJK.dat.gz","AssetFile":"_framework/icudt_CJK.tjcz0u77k5.dat.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"333110"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g="}]},{"Route":"_framework/icudt_CJK.tjcz0u77k5.dat","AssetFile":"_framework/icudt_CJK.tjcz0u77k5.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"956416"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tjcz0u77k5"},{"Name":"integrity","Value":"sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk="},{"Name":"label","Value":"_framework/icudt_CJK.dat"}]},{"Route":"_framework/icudt_CJK.tjcz0u77k5.dat","AssetFile":"_framework/icudt_CJK.tjcz0u77k5.dat.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003002002"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"333110"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tjcz0u77k5"},{"Name":"integrity","Value":"sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk="},{"Name":"label","Value":"_framework/icudt_CJK.dat"},{"Name":"original-resource","Value":"\"SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=\""}]},{"Route":"_framework/icudt_CJK.tjcz0u77k5.dat.gz","AssetFile":"_framework/icudt_CJK.tjcz0u77k5.dat.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"333110"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tjcz0u77k5"},{"Name":"integrity","Value":"sha256-JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g="},{"Name":"label","Value":"_framework/icudt_CJK.dat.gz"}]},{"Route":"_framework/icudt_EFIGS.dat","AssetFile":"_framework/icudt_EFIGS.tptq2av103.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"550832"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc="}]},{"Route":"_framework/icudt_EFIGS.dat","AssetFile":"_framework/icudt_EFIGS.tptq2av103.dat.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005101052"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196037"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc="},{"Name":"original-resource","Value":"\"8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=\""}]},{"Route":"_framework/icudt_EFIGS.dat.gz","AssetFile":"_framework/icudt_EFIGS.tptq2av103.dat.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196037"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE="}]},{"Route":"_framework/icudt_EFIGS.tptq2av103.dat","AssetFile":"_framework/icudt_EFIGS.tptq2av103.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"550832"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tptq2av103"},{"Name":"integrity","Value":"sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc="},{"Name":"label","Value":"_framework/icudt_EFIGS.dat"}]},{"Route":"_framework/icudt_EFIGS.tptq2av103.dat","AssetFile":"_framework/icudt_EFIGS.tptq2av103.dat.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005101052"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196037"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tptq2av103"},{"Name":"integrity","Value":"sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc="},{"Name":"label","Value":"_framework/icudt_EFIGS.dat"},{"Name":"original-resource","Value":"\"8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=\""}]},{"Route":"_framework/icudt_EFIGS.tptq2av103.dat.gz","AssetFile":"_framework/icudt_EFIGS.tptq2av103.dat.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196037"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tptq2av103"},{"Name":"integrity","Value":"sha256-G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE="},{"Name":"label","Value":"_framework/icudt_EFIGS.dat.gz"}]},{"Route":"_framework/icudt_no_CJK.dat","AssetFile":"_framework/icudt_no_CJK.lfu7j35m59.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1107168"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs="}]},{"Route":"_framework/icudt_no_CJK.dat","AssetFile":"_framework/icudt_no_CJK.lfu7j35m59.dat.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003148426"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"317618"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs="},{"Name":"original-resource","Value":"\"L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs=\""}]},{"Route":"_framework/icudt_no_CJK.dat.gz","AssetFile":"_framework/icudt_no_CJK.lfu7j35m59.dat.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"317618"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk="}]},{"Route":"_framework/icudt_no_CJK.lfu7j35m59.dat","AssetFile":"_framework/icudt_no_CJK.lfu7j35m59.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1107168"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lfu7j35m59"},{"Name":"integrity","Value":"sha256-L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs="},{"Name":"label","Value":"_framework/icudt_no_CJK.dat"}]},{"Route":"_framework/icudt_no_CJK.lfu7j35m59.dat","AssetFile":"_framework/icudt_no_CJK.lfu7j35m59.dat.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003148426"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"317618"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lfu7j35m59"},{"Name":"integrity","Value":"sha256-L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs="},{"Name":"label","Value":"_framework/icudt_no_CJK.dat"},{"Name":"original-resource","Value":"\"L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs=\""}]},{"Route":"_framework/icudt_no_CJK.lfu7j35m59.dat.gz","AssetFile":"_framework/icudt_no_CJK.lfu7j35m59.dat.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"317618"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lfu7j35m59"},{"Name":"integrity","Value":"sha256-S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk="},{"Name":"label","Value":"_framework/icudt_no_CJK.dat.gz"}]},{"Route":"_framework/mscorlib.555t1ekkz8.wasm","AssetFile":"_framework/mscorlib.555t1ekkz8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"49429"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"555t1ekkz8"},{"Name":"integrity","Value":"sha256-SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M="},{"Name":"label","Value":"_framework/mscorlib.wasm"}]},{"Route":"_framework/mscorlib.555t1ekkz8.wasm","AssetFile":"_framework/mscorlib.555t1ekkz8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067417245"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"555t1ekkz8"},{"Name":"integrity","Value":"sha256-SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M="},{"Name":"label","Value":"_framework/mscorlib.wasm"},{"Name":"original-resource","Value":"\"SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M=\""}]},{"Route":"_framework/mscorlib.555t1ekkz8.wasm.gz","AssetFile":"_framework/mscorlib.555t1ekkz8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"555t1ekkz8"},{"Name":"integrity","Value":"sha256-qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4="},{"Name":"label","Value":"_framework/mscorlib.wasm.gz"}]},{"Route":"_framework/mscorlib.wasm","AssetFile":"_framework/mscorlib.555t1ekkz8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"49429"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M="}]},{"Route":"_framework/mscorlib.wasm","AssetFile":"_framework/mscorlib.555t1ekkz8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067417245"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M="},{"Name":"original-resource","Value":"\"SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M=\""}]},{"Route":"_framework/mscorlib.wasm.gz","AssetFile":"_framework/mscorlib.555t1ekkz8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4="}]},{"Route":"_framework/netstandard.0e3bjkca9m.wasm","AssetFile":"_framework/netstandard.0e3bjkca9m.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"90389"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0e3bjkca9m"},{"Name":"integrity","Value":"sha256-6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs="},{"Name":"label","Value":"_framework/netstandard.wasm"}]},{"Route":"_framework/netstandard.0e3bjkca9m.wasm","AssetFile":"_framework/netstandard.0e3bjkca9m.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038333269"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26086"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0e3bjkca9m"},{"Name":"integrity","Value":"sha256-6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs="},{"Name":"label","Value":"_framework/netstandard.wasm"},{"Name":"original-resource","Value":"\"6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs=\""}]},{"Route":"_framework/netstandard.0e3bjkca9m.wasm.gz","AssetFile":"_framework/netstandard.0e3bjkca9m.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26086"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0e3bjkca9m"},{"Name":"integrity","Value":"sha256-GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE="},{"Name":"label","Value":"_framework/netstandard.wasm.gz"}]},{"Route":"_framework/netstandard.wasm","AssetFile":"_framework/netstandard.0e3bjkca9m.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"90389"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs="}]},{"Route":"_framework/netstandard.wasm","AssetFile":"_framework/netstandard.0e3bjkca9m.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038333269"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26086"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs="},{"Name":"original-resource","Value":"\"6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs=\""}]},{"Route":"_framework/netstandard.wasm.gz","AssetFile":"_framework/netstandard.0e3bjkca9m.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26086"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE="}]},{"Route":"appsettings.Development.json","AssetFile":"appsettings.Development.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009174311927"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"original-resource","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""}]},{"Route":"appsettings.Development.json","AssetFile":"appsettings.Development.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="}]},{"Route":"appsettings.Development.json.gz","AssetFile":"appsettings.Development.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4="}]},{"Route":"appsettings.Development.x0ueugt8gp.json","AssetFile":"appsettings.Development.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009174311927"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"label","Value":"appsettings.Development.json"},{"Name":"original-resource","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""}]},{"Route":"appsettings.Development.x0ueugt8gp.json","AssetFile":"appsettings.Development.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"label","Value":"appsettings.Development.json"}]},{"Route":"appsettings.Development.x0ueugt8gp.json.gz","AssetFile":"appsettings.Development.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4="},{"Name":"label","Value":"appsettings.Development.json.gz"}]},{"Route":"appsettings.json","AssetFile":"appsettings.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009174311927"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"original-resource","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""}]},{"Route":"appsettings.json","AssetFile":"appsettings.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="}]},{"Route":"appsettings.json.gz","AssetFile":"appsettings.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4="}]},{"Route":"appsettings.x0ueugt8gp.json","AssetFile":"appsettings.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009174311927"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"label","Value":"appsettings.json"},{"Name":"original-resource","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""}]},{"Route":"appsettings.x0ueugt8gp.json","AssetFile":"appsettings.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"label","Value":"appsettings.json"}]},{"Route":"appsettings.x0ueugt8gp.json.gz","AssetFile":"appsettings.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4="},{"Name":"label","Value":"appsettings.json.gz"}]},{"Route":"favicon.2jeq8efc6q.ico","AssetFile":"favicon.ico.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000336021505"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2jeq8efc6q"},{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="},{"Name":"label","Value":"favicon.ico"},{"Name":"original-resource","Value":"\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""}]},{"Route":"favicon.2jeq8efc6q.ico","AssetFile":"favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"15086"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2jeq8efc6q"},{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="},{"Name":"label","Value":"favicon.ico"}]},{"Route":"favicon.2jeq8efc6q.ico.gz","AssetFile":"favicon.ico.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2jeq8efc6q"},{"Name":"integrity","Value":"sha256-b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M="},{"Name":"label","Value":"favicon.ico.gz"}]},{"Route":"favicon.ico","AssetFile":"favicon.ico.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000336021505"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="},{"Name":"original-resource","Value":"\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""}]},{"Route":"favicon.ico","AssetFile":"favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"15086"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="}]},{"Route":"favicon.ico.gz","AssetFile":"favicon.ico.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M="}]}]} \ No newline at end of file diff --git a/OnProfNext/bin/Debug/net10.0/OnProfNext.staticwebassets.runtime.json b/OnProfNext/bin/Debug/net10.0/OnProfNext.staticwebassets.runtime.json new file mode 100644 index 0000000..4c23fb2 --- /dev/null +++ b/OnProfNext/bin/Debug/net10.0/OnProfNext.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\","D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\wwwroot\\","D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\","D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\scopedcss\\projectbundle\\","D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\jsmodules\\","D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\scopedcss\\bundle\\","C:\\Users\\wiela\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.5\\_framework\\","D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\","C:\\Users\\wiela\\.nuget\\packages\\microsoft.dotnet.hotreload.webassembly.browser\\10.0.201\\staticwebassets\\","C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\"],"Root":{"Children":{"appsettings.Development.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"appsettings.Development.json"},"Patterns":null},"appsettings.Development.json.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"bfkt9xtjsh-{0}-x0ueugt8gp-x0ueugt8gp.gz"},"Patterns":null},"appsettings.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"appsettings.json"},"Patterns":null},"appsettings.json.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3hvscw4lq4-{0}-x0ueugt8gp-x0ueugt8gp.gz"},"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"favicon.ico"},"Patterns":null},"favicon.ico.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"9cjrgkhoez-{0}-2jeq8efc6q-2jeq8efc6q.gz"},"Patterns":null},"OnProfNext.Client.uzl7ca9j9c.bundle.scp.css":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"OnProfNext.Client.bundle.scp.css"},"Patterns":null},"OnProfNext.Client.uzl7ca9j9c.bundle.scp.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"808kb9dz89-{0}-uzl7ca9j9c-uzl7ca9j9c.gz"},"Patterns":null},"OnProfNext.modules.json":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"jsmodules.build.manifest.json"},"Patterns":null},"OnProfNext.modules.json.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"byr04718ni-{0}-0i02oychrm-0i02oychrm.gz"},"Patterns":null},"OnProfNext.styles.css":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"OnProfNext.styles.css"},"Patterns":null},"OnProfNext.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"fixztrjlan-{0}-sif51eb7xk-sif51eb7xk.gz"},"Patterns":null},"_framework":{"Children":{"blazor.server.js":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"blazor.server.js"},"Patterns":null},"blazor.server.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"z7m9u3a7x3-{0}-2tj1sjhksk-2tj1sjhksk.gz"},"Patterns":null},"blazor.web.js":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"blazor.web.js"},"Patterns":null},"blazor.web.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"b2aaf1qy0k-{0}-b9228eflpl-b9228eflpl.gz"},"Patterns":null},"blazor.webassembly.js":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/blazor.webassembly.js"},"Patterns":null},"blazor.webassembly.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vbwtfewq79-{0}-66stpp682q-66stpp682q.gz"},"Patterns":null},"dotnet.js":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/dotnet.js"},"Patterns":null},"dotnet.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"qz9h56e7z8-{0}-kx7meqmil2-kx7meqmil2.gz"},"Patterns":null},"dotnet.js.map":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/dotnet.js.map"},"Patterns":null},"dotnet.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jg5bcwzjkb-{0}-clndu25lif-clndu25lif.gz"},"Patterns":null},"dotnet.native.53ez3dx5uy.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/dotnet.native.53ez3dx5uy.wasm"},"Patterns":null},"dotnet.native.53ez3dx5uy.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"4gmvxkcg2g-{0}-53ez3dx5uy-53ez3dx5uy.gz"},"Patterns":null},"dotnet.native.ykrnppwhq2.js":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/dotnet.native.ykrnppwhq2.js"},"Patterns":null},"dotnet.native.ykrnppwhq2.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"4131vl2c0u-{0}-ykrnppwhq2-ykrnppwhq2.gz"},"Patterns":null},"dotnet.runtime.js.map":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/dotnet.runtime.js.map"},"Patterns":null},"dotnet.runtime.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"6fczie0f1k-{0}-y1cse46x0j-y1cse46x0j.gz"},"Patterns":null},"dotnet.runtime.peu2mfb29t.js":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/dotnet.runtime.peu2mfb29t.js"},"Patterns":null},"dotnet.runtime.peu2mfb29t.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"arn1xqjw1x-{0}-peu2mfb29t-peu2mfb29t.gz"},"Patterns":null},"icudt_CJK.tjcz0u77k5.dat":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/icudt_CJK.tjcz0u77k5.dat"},"Patterns":null},"icudt_CJK.tjcz0u77k5.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"2noakrdf2j-{0}-tjcz0u77k5-tjcz0u77k5.gz"},"Patterns":null},"icudt_EFIGS.tptq2av103.dat":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/icudt_EFIGS.tptq2av103.dat"},"Patterns":null},"icudt_EFIGS.tptq2av103.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"yee81ivl95-{0}-tptq2av103-tptq2av103.gz"},"Patterns":null},"icudt_no_CJK.lfu7j35m59.dat":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/icudt_no_CJK.lfu7j35m59.dat"},"Patterns":null},"icudt_no_CJK.lfu7j35m59.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gnkv5k3g9v-{0}-lfu7j35m59-lfu7j35m59.gz"},"Patterns":null},"Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm"},"Patterns":null},"Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"5g3srlr8jx-{0}-roqc1km2rj-roqc1km2rj.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm"},"Patterns":null},"Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"qlfvznror3-{0}-zrueb40r85-zrueb40r85.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.uddsvpv1sv.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm"},"Patterns":null},"Microsoft.AspNetCore.Components.uddsvpv1sv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fs9spivh8g-{0}-uddsvpv1sv-uddsvpv1sv.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm"},"Patterns":null},"Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gx4y3aoczp-{0}-g5qdp1mxha-g5qdp1mxha.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm"},"Patterns":null},"Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"mx4r46cpu7-{0}-9mjwvs1qyp-9mjwvs1qyp.gz"},"Patterns":null},"Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm"},"Patterns":null},"Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zpx4nb1yyz-{0}-m3mxap0jif-m3mxap0jif.gz"},"Patterns":null},"Microsoft.CSharp.452y5fjxmv.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.CSharp.452y5fjxmv.wasm"},"Patterns":null},"Microsoft.CSharp.452y5fjxmv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"yva5srnvsu-{0}-452y5fjxmv-452y5fjxmv.gz"},"Patterns":null},"Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm"},"Patterns":null},"Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3of7h5c6n8-{0}-hrhwg3a64c-hrhwg3a64c.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm"},"Patterns":null},"Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"s4opith0ak-{0}-thew1o6jcx-thew1o6jcx.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm"},"Patterns":null},"Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"11oooy7jd2-{0}-7o70008j8o-7o70008j8o.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm"},"Patterns":null},"Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"dnrp0xl7wy-{0}-fgwnqtu7qk-fgwnqtu7qk.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm"},"Patterns":null},"Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vhumncwy1p-{0}-ouivavlhyy-ouivavlhyy.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm"},"Patterns":null},"Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"69vphje66t-{0}-giv4t23za9-giv4t23za9.gz"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kstk0dzyw1-{0}-ud13mwbta3-ud13mwbta3.gz"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"epsgnejg6l-{0}-vs620n44bv-vs620n44bv.gz"},"Patterns":null},"Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm"},"Patterns":null},"Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0o3yap4xcv-{0}-v59ymogeuz-v59ymogeuz.gz"},"Patterns":null},"Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm"},"Patterns":null},"Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3rwukvhyra-{0}-jnogfbng3i-jnogfbng3i.gz"},"Patterns":null},"Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm"},"Patterns":null},"Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ezxlu8d1x1-{0}-ssv83rveyv-ssv83rveyv.gz"},"Patterns":null},"Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm"},"Patterns":null},"Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"keeokmerp8-{0}-8gz29xpyh3-8gz29xpyh3.gz"},"Patterns":null},"Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm"},"Patterns":null},"Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"l2v44xhbzj-{0}-ozuva4e3vv-ozuva4e3vv.gz"},"Patterns":null},"Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm"},"Patterns":null},"Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tezhiquus4-{0}-6jkolue1ka-6jkolue1ka.gz"},"Patterns":null},"Microsoft.Extensions.Localization.xcslyy3nju.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm"},"Patterns":null},"Microsoft.Extensions.Localization.xcslyy3nju.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"84jx0dmgdc-{0}-xcslyy3nju-xcslyy3nju.gz"},"Patterns":null},"Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm"},"Patterns":null},"Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"sn0mpm6uvc-{0}-1q3x7vre4l-1q3x7vre4l.gz"},"Patterns":null},"Microsoft.Extensions.Logging.y4ydx3rk2c.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm"},"Patterns":null},"Microsoft.Extensions.Logging.y4ydx3rk2c.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"oix89w3uk2-{0}-y4ydx3rk2c-y4ydx3rk2c.gz"},"Patterns":null},"Microsoft.Extensions.Options.2rz5zbidnd.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm"},"Patterns":null},"Microsoft.Extensions.Options.2rz5zbidnd.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"u4abyqnekj-{0}-2rz5zbidnd-2rz5zbidnd.gz"},"Patterns":null},"Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm"},"Patterns":null},"Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ozc2mb3rdz-{0}-zmb03w0weu-zmb03w0weu.gz"},"Patterns":null},"Microsoft.Extensions.Primitives.bd164v6l3f.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm"},"Patterns":null},"Microsoft.Extensions.Primitives.bd164v6l3f.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"co27dkpaxa-{0}-bd164v6l3f-bd164v6l3f.gz"},"Patterns":null},"Microsoft.Extensions.Validation.r1sv3m5lsf.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm"},"Patterns":null},"Microsoft.Extensions.Validation.r1sv3m5lsf.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fappprmifz-{0}-r1sv3m5lsf-r1sv3m5lsf.gz"},"Patterns":null},"Microsoft.JSInterop.1r0ampr2q1.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm"},"Patterns":null},"Microsoft.JSInterop.1r0ampr2q1.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"pro4ajsvfg-{0}-1r0ampr2q1-1r0ampr2q1.gz"},"Patterns":null},"Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm"},"Patterns":null},"Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"6mv5cent6u-{0}-oz8fkrrrd6-oz8fkrrrd6.gz"},"Patterns":null},"Microsoft.VisualBasic.91iw3j3d9p.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm"},"Patterns":null},"Microsoft.VisualBasic.91iw3j3d9p.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"akapjt0sxo-{0}-91iw3j3d9p-91iw3j3d9p.gz"},"Patterns":null},"Microsoft.VisualBasic.Core.re3geseai5.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm"},"Patterns":null},"Microsoft.VisualBasic.Core.re3geseai5.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"du4skpg5oq-{0}-re3geseai5-re3geseai5.gz"},"Patterns":null},"Microsoft.Win32.Primitives.2mjytoh92q.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm"},"Patterns":null},"Microsoft.Win32.Primitives.2mjytoh92q.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"i7n8kqec4e-{0}-2mjytoh92q-2mjytoh92q.gz"},"Patterns":null},"Microsoft.Win32.Registry.yz8nt3ycsq.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm"},"Patterns":null},"Microsoft.Win32.Registry.yz8nt3ycsq.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"553rwsqb4a-{0}-yz8nt3ycsq-yz8nt3ycsq.gz"},"Patterns":null},"mscorlib.555t1ekkz8.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/mscorlib.555t1ekkz8.wasm"},"Patterns":null},"mscorlib.555t1ekkz8.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"6ixuumt5h1-{0}-555t1ekkz8-555t1ekkz8.gz"},"Patterns":null},"MudBlazor.k6079czmkm.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/MudBlazor.k6079czmkm.wasm"},"Patterns":null},"MudBlazor.k6079czmkm.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"w2iaa8sc3u-{0}-k6079czmkm-k6079czmkm.gz"},"Patterns":null},"netstandard.0e3bjkca9m.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/netstandard.0e3bjkca9m.wasm"},"Patterns":null},"netstandard.0e3bjkca9m.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8dl34ipw8j-{0}-0e3bjkca9m-0e3bjkca9m.gz"},"Patterns":null},"OnProfNext.Client.lplk7v275j.pdb":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/OnProfNext.Client.lplk7v275j.pdb"},"Patterns":null},"OnProfNext.Client.lplk7v275j.pdb.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"cycczivqx5-{0}-lplk7v275j-lplk7v275j.gz"},"Patterns":null},"OnProfNext.Client.xhq6acanj0.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/OnProfNext.Client.xhq6acanj0.wasm"},"Patterns":null},"OnProfNext.Client.xhq6acanj0.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"f6u1msztxb-{0}-xhq6acanj0-xhq6acanj0.gz"},"Patterns":null},"System.7rk3uansaa.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.7rk3uansaa.wasm"},"Patterns":null},"System.7rk3uansaa.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"5onvg4v1ie-{0}-7rk3uansaa-7rk3uansaa.gz"},"Patterns":null},"System.AppContext.uwq3fpef1w.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.AppContext.uwq3fpef1w.wasm"},"Patterns":null},"System.AppContext.uwq3fpef1w.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jcwxb5s78i-{0}-uwq3fpef1w-uwq3fpef1w.gz"},"Patterns":null},"System.Buffers.m4yhcvz2y2.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Buffers.m4yhcvz2y2.wasm"},"Patterns":null},"System.Buffers.m4yhcvz2y2.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8u2rup9szd-{0}-m4yhcvz2y2-m4yhcvz2y2.gz"},"Patterns":null},"System.Collections.63jrcion39.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Collections.63jrcion39.wasm"},"Patterns":null},"System.Collections.63jrcion39.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3zhncs8zdy-{0}-63jrcion39-63jrcion39.gz"},"Patterns":null},"System.Collections.Concurrent.1zv6wuzklu.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm"},"Patterns":null},"System.Collections.Concurrent.1zv6wuzklu.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"niv8zsbxhl-{0}-1zv6wuzklu-1zv6wuzklu.gz"},"Patterns":null},"System.Collections.Immutable.6uzpuv4o5d.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm"},"Patterns":null},"System.Collections.Immutable.6uzpuv4o5d.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3k0w0ci5df-{0}-6uzpuv4o5d-6uzpuv4o5d.gz"},"Patterns":null},"System.Collections.NonGeneric.k5rgagff9o.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm"},"Patterns":null},"System.Collections.NonGeneric.k5rgagff9o.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"r1c02csw1u-{0}-k5rgagff9o-k5rgagff9o.gz"},"Patterns":null},"System.Collections.Specialized.84wojkejb4.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Collections.Specialized.84wojkejb4.wasm"},"Patterns":null},"System.Collections.Specialized.84wojkejb4.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"q6am3o85wz-{0}-84wojkejb4-84wojkejb4.gz"},"Patterns":null},"System.ComponentModel.Annotations.cjsvkufomv.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm"},"Patterns":null},"System.ComponentModel.Annotations.cjsvkufomv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"wj9cgpvw17-{0}-cjsvkufomv-cjsvkufomv.gz"},"Patterns":null},"System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm"},"Patterns":null},"System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jimv6lw5j5-{0}-vpng0qt4u6-vpng0qt4u6.gz"},"Patterns":null},"System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm"},"Patterns":null},"System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ixx2bqnfah-{0}-en4q13ibd5-en4q13ibd5.gz"},"Patterns":null},"System.ComponentModel.m11rh1qn2x.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.ComponentModel.m11rh1qn2x.wasm"},"Patterns":null},"System.ComponentModel.m11rh1qn2x.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ffumllgt4m-{0}-m11rh1qn2x-m11rh1qn2x.gz"},"Patterns":null},"System.ComponentModel.Primitives.u0y5oi3qdg.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm"},"Patterns":null},"System.ComponentModel.Primitives.u0y5oi3qdg.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"nu73pdet4t-{0}-u0y5oi3qdg-u0y5oi3qdg.gz"},"Patterns":null},"System.ComponentModel.TypeConverter.e2hbv9lola.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm"},"Patterns":null},"System.ComponentModel.TypeConverter.e2hbv9lola.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gpzobq46fp-{0}-e2hbv9lola-e2hbv9lola.gz"},"Patterns":null},"System.Configuration.j8qjkqg593.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Configuration.j8qjkqg593.wasm"},"Patterns":null},"System.Configuration.j8qjkqg593.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"o9xpqh7wzb-{0}-j8qjkqg593-j8qjkqg593.gz"},"Patterns":null},"System.Console.x9at0eh4vs.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Console.x9at0eh4vs.wasm"},"Patterns":null},"System.Console.x9at0eh4vs.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ea8uo6cwb8-{0}-x9at0eh4vs-x9at0eh4vs.gz"},"Patterns":null},"System.Core.ickp29885z.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Core.ickp29885z.wasm"},"Patterns":null},"System.Core.ickp29885z.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"edgswerp4g-{0}-ickp29885z-ickp29885z.gz"},"Patterns":null},"System.Data.0h75nr7qqd.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Data.0h75nr7qqd.wasm"},"Patterns":null},"System.Data.0h75nr7qqd.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"y20kxtztgi-{0}-0h75nr7qqd-0h75nr7qqd.gz"},"Patterns":null},"System.Data.Common.4wisaz8pj4.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Data.Common.4wisaz8pj4.wasm"},"Patterns":null},"System.Data.Common.4wisaz8pj4.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"68hq2gv5cb-{0}-4wisaz8pj4-4wisaz8pj4.gz"},"Patterns":null},"System.Data.DataSetExtensions.904tnen1ot.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm"},"Patterns":null},"System.Data.DataSetExtensions.904tnen1ot.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"sm8o0gwk5g-{0}-904tnen1ot-904tnen1ot.gz"},"Patterns":null},"System.Diagnostics.Contracts.z1eotzj35n.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm"},"Patterns":null},"System.Diagnostics.Contracts.z1eotzj35n.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"wgdliulfxe-{0}-z1eotzj35n-z1eotzj35n.gz"},"Patterns":null},"System.Diagnostics.Debug.aeh9b1tcuc.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm"},"Patterns":null},"System.Diagnostics.Debug.aeh9b1tcuc.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"i9mn6d27vy-{0}-aeh9b1tcuc-aeh9b1tcuc.gz"},"Patterns":null},"System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm"},"Patterns":null},"System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lgx6p69ons-{0}-ou2dt7nfo2-ou2dt7nfo2.gz"},"Patterns":null},"System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm"},"Patterns":null},"System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"i7dsezujyr-{0}-kv9gl8mgag-kv9gl8mgag.gz"},"Patterns":null},"System.Diagnostics.Process.lqtqkmw274.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm"},"Patterns":null},"System.Diagnostics.Process.lqtqkmw274.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"67s0zux9y9-{0}-lqtqkmw274-lqtqkmw274.gz"},"Patterns":null},"System.Diagnostics.StackTrace.wvlboxd9cz.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm"},"Patterns":null},"System.Diagnostics.StackTrace.wvlboxd9cz.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ae1qv5wfu3-{0}-wvlboxd9cz-wvlboxd9cz.gz"},"Patterns":null},"System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm"},"Patterns":null},"System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"5psn88uayv-{0}-mx5w1z1p6w-mx5w1z1p6w.gz"},"Patterns":null},"System.Diagnostics.Tools.862j1ozg5o.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm"},"Patterns":null},"System.Diagnostics.Tools.862j1ozg5o.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"6yvil548ai-{0}-862j1ozg5o-862j1ozg5o.gz"},"Patterns":null},"System.Diagnostics.TraceSource.j08okd90mo.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm"},"Patterns":null},"System.Diagnostics.TraceSource.j08okd90mo.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"w9uuhprkgr-{0}-j08okd90mo-j08okd90mo.gz"},"Patterns":null},"System.Diagnostics.Tracing.bnz7jo4op8.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm"},"Patterns":null},"System.Diagnostics.Tracing.bnz7jo4op8.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ymz6pz7ujf-{0}-bnz7jo4op8-bnz7jo4op8.gz"},"Patterns":null},"System.Drawing.Primitives.k3z431p3v7.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm"},"Patterns":null},"System.Drawing.Primitives.k3z431p3v7.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"beyjjw9nw7-{0}-k3z431p3v7-k3z431p3v7.gz"},"Patterns":null},"System.Drawing.v0usa2s224.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Drawing.v0usa2s224.wasm"},"Patterns":null},"System.Drawing.v0usa2s224.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"bm4t56k5pn-{0}-v0usa2s224-v0usa2s224.gz"},"Patterns":null},"System.Dynamic.Runtime.iktlm0yhdx.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm"},"Patterns":null},"System.Dynamic.Runtime.iktlm0yhdx.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"95o3q4uwxv-{0}-iktlm0yhdx-iktlm0yhdx.gz"},"Patterns":null},"System.Formats.Asn1.9iyl1hnh76.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm"},"Patterns":null},"System.Formats.Asn1.9iyl1hnh76.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"2eqyybz3l2-{0}-9iyl1hnh76-9iyl1hnh76.gz"},"Patterns":null},"System.Formats.Tar.9ikmelhi7g.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Formats.Tar.9ikmelhi7g.wasm"},"Patterns":null},"System.Formats.Tar.9ikmelhi7g.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"aawrgxq7b9-{0}-9ikmelhi7g-9ikmelhi7g.gz"},"Patterns":null},"System.Globalization.4ulc930few.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Globalization.4ulc930few.wasm"},"Patterns":null},"System.Globalization.4ulc930few.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"nvjr9jta08-{0}-4ulc930few-4ulc930few.gz"},"Patterns":null},"System.Globalization.Calendars.e8yl47y6cv.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm"},"Patterns":null},"System.Globalization.Calendars.e8yl47y6cv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"g4w42juzkx-{0}-e8yl47y6cv-e8yl47y6cv.gz"},"Patterns":null},"System.Globalization.Extensions.fvxkfs32tv.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm"},"Patterns":null},"System.Globalization.Extensions.fvxkfs32tv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"g3b5a282rj-{0}-fvxkfs32tv-fvxkfs32tv.gz"},"Patterns":null},"System.IO.Compression.Brotli.ibxx4kh8c6.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm"},"Patterns":null},"System.IO.Compression.Brotli.ibxx4kh8c6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"flmzbagm0p-{0}-ibxx4kh8c6-ibxx4kh8c6.gz"},"Patterns":null},"System.IO.Compression.FileSystem.bselp9vv9w.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm"},"Patterns":null},"System.IO.Compression.FileSystem.bselp9vv9w.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ffagyufl1o-{0}-bselp9vv9w-bselp9vv9w.gz"},"Patterns":null},"System.IO.Compression.sgbc42zrd8.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.IO.Compression.sgbc42zrd8.wasm"},"Patterns":null},"System.IO.Compression.sgbc42zrd8.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"mk5261bq2v-{0}-sgbc42zrd8-sgbc42zrd8.gz"},"Patterns":null},"System.IO.Compression.ZipFile.b0ha8vyo8i.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm"},"Patterns":null},"System.IO.Compression.ZipFile.b0ha8vyo8i.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"a99cqvh69a-{0}-b0ha8vyo8i-b0ha8vyo8i.gz"},"Patterns":null},"System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm"},"Patterns":null},"System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"m3i6jtsneo-{0}-oi9xn5s0h3-oi9xn5s0h3.gz"},"Patterns":null},"System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm"},"Patterns":null},"System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8i8whn9pm1-{0}-fi1uhp9255-fi1uhp9255.gz"},"Patterns":null},"System.IO.FileSystem.fktu0k4b93.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.IO.FileSystem.fktu0k4b93.wasm"},"Patterns":null},"System.IO.FileSystem.fktu0k4b93.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vnqjd4ny0q-{0}-fktu0k4b93-fktu0k4b93.gz"},"Patterns":null},"System.IO.FileSystem.Primitives.6j2ed42ac7.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm"},"Patterns":null},"System.IO.FileSystem.Primitives.6j2ed42ac7.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kzc385ysv6-{0}-6j2ed42ac7-6j2ed42ac7.gz"},"Patterns":null},"System.IO.FileSystem.Watcher.v9i07bnq2k.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm"},"Patterns":null},"System.IO.FileSystem.Watcher.v9i07bnq2k.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"m428rlfc87-{0}-v9i07bnq2k-v9i07bnq2k.gz"},"Patterns":null},"System.IO.i9g92fmb9y.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.IO.i9g92fmb9y.wasm"},"Patterns":null},"System.IO.i9g92fmb9y.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kukm29h8dt-{0}-i9g92fmb9y-i9g92fmb9y.gz"},"Patterns":null},"System.IO.IsolatedStorage.8ll4gxwfs1.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm"},"Patterns":null},"System.IO.IsolatedStorage.8ll4gxwfs1.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"na7pgc18jv-{0}-8ll4gxwfs1-8ll4gxwfs1.gz"},"Patterns":null},"System.IO.MemoryMappedFiles.6do4olk7ib.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm"},"Patterns":null},"System.IO.MemoryMappedFiles.6do4olk7ib.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rsffl3vumf-{0}-6do4olk7ib-6do4olk7ib.gz"},"Patterns":null},"System.IO.Pipelines.21z0t9w6sq.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm"},"Patterns":null},"System.IO.Pipelines.21z0t9w6sq.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"pxy8xfz0ow-{0}-21z0t9w6sq-21z0t9w6sq.gz"},"Patterns":null},"System.IO.Pipes.AccessControl.5lvzz4lks7.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm"},"Patterns":null},"System.IO.Pipes.AccessControl.5lvzz4lks7.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lvyasyre47-{0}-5lvzz4lks7-5lvzz4lks7.gz"},"Patterns":null},"System.IO.Pipes.xosph8vk4a.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.IO.Pipes.xosph8vk4a.wasm"},"Patterns":null},"System.IO.Pipes.xosph8vk4a.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vjl93wt59v-{0}-xosph8vk4a-xosph8vk4a.gz"},"Patterns":null},"System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm"},"Patterns":null},"System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"dzqyarawy9-{0}-d1pja42pyi-d1pja42pyi.gz"},"Patterns":null},"System.Linq.AsyncEnumerable.4m1mh525k0.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm"},"Patterns":null},"System.Linq.AsyncEnumerable.4m1mh525k0.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"1u9lol5zjk-{0}-4m1mh525k0-4m1mh525k0.gz"},"Patterns":null},"System.Linq.Expressions.4nat0rber0.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Linq.Expressions.4nat0rber0.wasm"},"Patterns":null},"System.Linq.Expressions.4nat0rber0.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"r0xa1dsvvu-{0}-4nat0rber0-4nat0rber0.gz"},"Patterns":null},"System.Linq.Parallel.qf7zemz9aw.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm"},"Patterns":null},"System.Linq.Parallel.qf7zemz9aw.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"35llacexwm-{0}-qf7zemz9aw-qf7zemz9aw.gz"},"Patterns":null},"System.Linq.Queryable.vwinf8twbn.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Linq.Queryable.vwinf8twbn.wasm"},"Patterns":null},"System.Linq.Queryable.vwinf8twbn.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hylqczc46z-{0}-vwinf8twbn-vwinf8twbn.gz"},"Patterns":null},"System.Linq.rp2jklkmsi.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Linq.rp2jklkmsi.wasm"},"Patterns":null},"System.Linq.rp2jklkmsi.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"p0pe0blimm-{0}-rp2jklkmsi-rp2jklkmsi.gz"},"Patterns":null},"System.Memory.3r0soomurg.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Memory.3r0soomurg.wasm"},"Patterns":null},"System.Memory.3r0soomurg.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zip5atfnk1-{0}-3r0soomurg-3r0soomurg.gz"},"Patterns":null},"System.Net.Http.9rl4gopayw.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.Http.9rl4gopayw.wasm"},"Patterns":null},"System.Net.Http.9rl4gopayw.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hz1tpel2o0-{0}-9rl4gopayw-9rl4gopayw.gz"},"Patterns":null},"System.Net.Http.Json.t9gqpmtbpb.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm"},"Patterns":null},"System.Net.Http.Json.t9gqpmtbpb.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zxgtro8yo7-{0}-t9gqpmtbpb-t9gqpmtbpb.gz"},"Patterns":null},"System.Net.HttpListener.zg37o92yol.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.HttpListener.zg37o92yol.wasm"},"Patterns":null},"System.Net.HttpListener.zg37o92yol.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"mkyh3erkm9-{0}-zg37o92yol-zg37o92yol.gz"},"Patterns":null},"System.Net.Mail.qk214miut2.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.Mail.qk214miut2.wasm"},"Patterns":null},"System.Net.Mail.qk214miut2.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"019ldzgpk2-{0}-qk214miut2-qk214miut2.gz"},"Patterns":null},"System.Net.NameResolution.50dzekuu9x.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.NameResolution.50dzekuu9x.wasm"},"Patterns":null},"System.Net.NameResolution.50dzekuu9x.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ui1ul8tpby-{0}-50dzekuu9x-50dzekuu9x.gz"},"Patterns":null},"System.Net.NetworkInformation.k8343mqust.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.NetworkInformation.k8343mqust.wasm"},"Patterns":null},"System.Net.NetworkInformation.k8343mqust.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"luuq2ppq8r-{0}-k8343mqust-k8343mqust.gz"},"Patterns":null},"System.Net.Ping.00vh2kvsiz.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.Ping.00vh2kvsiz.wasm"},"Patterns":null},"System.Net.Ping.00vh2kvsiz.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"yswenxxy60-{0}-00vh2kvsiz-00vh2kvsiz.gz"},"Patterns":null},"System.Net.Primitives.whs5oed1wm.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.Primitives.whs5oed1wm.wasm"},"Patterns":null},"System.Net.Primitives.whs5oed1wm.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"e2kh1woy2q-{0}-whs5oed1wm-whs5oed1wm.gz"},"Patterns":null},"System.Net.Quic.grloe2ix5j.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.Quic.grloe2ix5j.wasm"},"Patterns":null},"System.Net.Quic.grloe2ix5j.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"t7lpa3lwov-{0}-grloe2ix5j-grloe2ix5j.gz"},"Patterns":null},"System.Net.Requests.r8ar2pd94c.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.Requests.r8ar2pd94c.wasm"},"Patterns":null},"System.Net.Requests.r8ar2pd94c.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zy4nys0fbm-{0}-r8ar2pd94c-r8ar2pd94c.gz"},"Patterns":null},"System.Net.Security.yn3zcskz4j.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.Security.yn3zcskz4j.wasm"},"Patterns":null},"System.Net.Security.yn3zcskz4j.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"iem13k4n35-{0}-yn3zcskz4j-yn3zcskz4j.gz"},"Patterns":null},"System.Net.ServerSentEvents.37wbq4jfsy.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm"},"Patterns":null},"System.Net.ServerSentEvents.37wbq4jfsy.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"t2mopjsgs5-{0}-37wbq4jfsy-37wbq4jfsy.gz"},"Patterns":null},"System.Net.ServicePoint.j436yqvrg9.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm"},"Patterns":null},"System.Net.ServicePoint.j436yqvrg9.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"sz4qmwa0cz-{0}-j436yqvrg9-j436yqvrg9.gz"},"Patterns":null},"System.Net.Sockets.utzdm9sw2p.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.Sockets.utzdm9sw2p.wasm"},"Patterns":null},"System.Net.Sockets.utzdm9sw2p.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ozd9l95cy8-{0}-utzdm9sw2p-utzdm9sw2p.gz"},"Patterns":null},"System.Net.WebClient.e5a4gx4ylt.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm"},"Patterns":null},"System.Net.WebClient.e5a4gx4ylt.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0qximx7h6w-{0}-e5a4gx4ylt-e5a4gx4ylt.gz"},"Patterns":null},"System.Net.WebHeaderCollection.rbzkmij005.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm"},"Patterns":null},"System.Net.WebHeaderCollection.rbzkmij005.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"xfyu8pi705-{0}-rbzkmij005-rbzkmij005.gz"},"Patterns":null},"System.Net.WebProxy.38jcv8jeeu.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm"},"Patterns":null},"System.Net.WebProxy.38jcv8jeeu.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kwztau0oyy-{0}-38jcv8jeeu-38jcv8jeeu.gz"},"Patterns":null},"System.Net.WebSockets.Client.nv5izr3rt6.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm"},"Patterns":null},"System.Net.WebSockets.Client.nv5izr3rt6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zc08r46902-{0}-nv5izr3rt6-nv5izr3rt6.gz"},"Patterns":null},"System.Net.WebSockets.hdzn84g6uh.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm"},"Patterns":null},"System.Net.WebSockets.hdzn84g6uh.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ttu14uxg7m-{0}-hdzn84g6uh-hdzn84g6uh.gz"},"Patterns":null},"System.Net.zku96ychk7.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.zku96ychk7.wasm"},"Patterns":null},"System.Net.zku96ychk7.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"mwxs9jgpi5-{0}-zku96ychk7-zku96ychk7.gz"},"Patterns":null},"System.Numerics.on9qk50okp.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Numerics.on9qk50okp.wasm"},"Patterns":null},"System.Numerics.on9qk50okp.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fmcag5xdn2-{0}-on9qk50okp-on9qk50okp.gz"},"Patterns":null},"System.Numerics.Vectors.1l8xruz8uh.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm"},"Patterns":null},"System.Numerics.Vectors.1l8xruz8uh.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tmgotixosa-{0}-1l8xruz8uh-1l8xruz8uh.gz"},"Patterns":null},"System.ObjectModel.4omhtq90sd.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.ObjectModel.4omhtq90sd.wasm"},"Patterns":null},"System.ObjectModel.4omhtq90sd.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"f62yejuwjc-{0}-4omhtq90sd-4omhtq90sd.gz"},"Patterns":null},"System.Private.CoreLib.koxlwnosh6.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Private.CoreLib.koxlwnosh6.wasm"},"Patterns":null},"System.Private.CoreLib.koxlwnosh6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3zyfvkhmnk-{0}-koxlwnosh6-koxlwnosh6.gz"},"Patterns":null},"System.Private.DataContractSerialization.zlwtcvnuqv.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm"},"Patterns":null},"System.Private.DataContractSerialization.zlwtcvnuqv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"g0qzdert85-{0}-zlwtcvnuqv-zlwtcvnuqv.gz"},"Patterns":null},"System.Private.Uri.clehp4avpy.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Private.Uri.clehp4avpy.wasm"},"Patterns":null},"System.Private.Uri.clehp4avpy.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"e67ma35du3-{0}-clehp4avpy-clehp4avpy.gz"},"Patterns":null},"System.Private.Xml.g9rvjereoe.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Private.Xml.g9rvjereoe.wasm"},"Patterns":null},"System.Private.Xml.g9rvjereoe.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"byxake4xdz-{0}-g9rvjereoe-g9rvjereoe.gz"},"Patterns":null},"System.Private.Xml.Linq.ga3n3gh9b6.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm"},"Patterns":null},"System.Private.Xml.Linq.ga3n3gh9b6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"93opzeh57b-{0}-ga3n3gh9b6-ga3n3gh9b6.gz"},"Patterns":null},"System.Reflection.DispatchProxy.b7qn4zpc0q.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm"},"Patterns":null},"System.Reflection.DispatchProxy.b7qn4zpc0q.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jjcxq3ejac-{0}-b7qn4zpc0q-b7qn4zpc0q.gz"},"Patterns":null},"System.Reflection.Emit.3t7flfwg7o.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm"},"Patterns":null},"System.Reflection.Emit.3t7flfwg7o.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"p1p1dduoka-{0}-3t7flfwg7o-3t7flfwg7o.gz"},"Patterns":null},"System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm"},"Patterns":null},"System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"i8msa0z88m-{0}-x0vkqyycss-x0vkqyycss.gz"},"Patterns":null},"System.Reflection.Emit.Lightweight.3tzjd7znni.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm"},"Patterns":null},"System.Reflection.Emit.Lightweight.3tzjd7znni.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gremm5qhcr-{0}-3tzjd7znni-3tzjd7znni.gz"},"Patterns":null},"System.Reflection.Extensions.ymwga5opgl.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm"},"Patterns":null},"System.Reflection.Extensions.ymwga5opgl.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vtgrfa0p11-{0}-ymwga5opgl-ymwga5opgl.gz"},"Patterns":null},"System.Reflection.Metadata.9lgg9wjd2a.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm"},"Patterns":null},"System.Reflection.Metadata.9lgg9wjd2a.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"k6k7jlyl2f-{0}-9lgg9wjd2a-9lgg9wjd2a.gz"},"Patterns":null},"System.Reflection.Primitives.n2ngq6as7g.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm"},"Patterns":null},"System.Reflection.Primitives.n2ngq6as7g.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tdpp3qw974-{0}-n2ngq6as7g-n2ngq6as7g.gz"},"Patterns":null},"System.Reflection.TypeExtensions.ivmzcfvrc6.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm"},"Patterns":null},"System.Reflection.TypeExtensions.ivmzcfvrc6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hoalsbog2o-{0}-ivmzcfvrc6-ivmzcfvrc6.gz"},"Patterns":null},"System.Reflection.v4mfyzbte8.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Reflection.v4mfyzbte8.wasm"},"Patterns":null},"System.Reflection.v4mfyzbte8.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"m0i5wjywsx-{0}-v4mfyzbte8-v4mfyzbte8.gz"},"Patterns":null},"System.Resources.Reader.c9z9nieytf.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Resources.Reader.c9z9nieytf.wasm"},"Patterns":null},"System.Resources.Reader.c9z9nieytf.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"xtefui8dpc-{0}-c9z9nieytf-c9z9nieytf.gz"},"Patterns":null},"System.Resources.ResourceManager.f3fiwdwb50.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm"},"Patterns":null},"System.Resources.ResourceManager.f3fiwdwb50.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"qrheoix2ig-{0}-f3fiwdwb50-f3fiwdwb50.gz"},"Patterns":null},"System.Resources.Writer.tx9namivq6.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Resources.Writer.tx9namivq6.wasm"},"Patterns":null},"System.Resources.Writer.tx9namivq6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"szit2ufpnx-{0}-tx9namivq6-tx9namivq6.gz"},"Patterns":null},"System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm"},"Patterns":null},"System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3txc49hfsy-{0}-5yw8jyjkyt-5yw8jyjkyt.gz"},"Patterns":null},"System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm"},"Patterns":null},"System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"me1or200pv-{0}-ddbsai2xh9-ddbsai2xh9.gz"},"Patterns":null},"System.Runtime.Extensions.f4fqaba1oz.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm"},"Patterns":null},"System.Runtime.Extensions.f4fqaba1oz.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"4syo1xqmc8-{0}-f4fqaba1oz-f4fqaba1oz.gz"},"Patterns":null},"System.Runtime.Handles.kpe61fymig.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Runtime.Handles.kpe61fymig.wasm"},"Patterns":null},"System.Runtime.Handles.kpe61fymig.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fz4pecsmjf-{0}-kpe61fymig-kpe61fymig.gz"},"Patterns":null},"System.Runtime.InteropServices.02r2ubft18.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm"},"Patterns":null},"System.Runtime.InteropServices.02r2ubft18.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0st0knthx5-{0}-02r2ubft18-02r2ubft18.gz"},"Patterns":null},"System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm"},"Patterns":null},"System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"h9925thw3k-{0}-ythr5w8c2e-ythr5w8c2e.gz"},"Patterns":null},"System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm"},"Patterns":null},"System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zx6kj3xmnr-{0}-esodb2rpbi-esodb2rpbi.gz"},"Patterns":null},"System.Runtime.Intrinsics.j8lrpban8m.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm"},"Patterns":null},"System.Runtime.Intrinsics.j8lrpban8m.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"7yd9j54hd0-{0}-j8lrpban8m-j8lrpban8m.gz"},"Patterns":null},"System.Runtime.k6ze2203p2.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Runtime.k6ze2203p2.wasm"},"Patterns":null},"System.Runtime.k6ze2203p2.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"9ru0gm9zti-{0}-k6ze2203p2-k6ze2203p2.gz"},"Patterns":null},"System.Runtime.Loader.bm8d2pac0a.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm"},"Patterns":null},"System.Runtime.Loader.bm8d2pac0a.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"06jmrwgemt-{0}-bm8d2pac0a-bm8d2pac0a.gz"},"Patterns":null},"System.Runtime.Numerics.e3fl2oogjk.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm"},"Patterns":null},"System.Runtime.Numerics.e3fl2oogjk.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"b1pqie8d42-{0}-e3fl2oogjk-e3fl2oogjk.gz"},"Patterns":null},"System.Runtime.Serialization.Formatters.a0v88kqnif.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm"},"Patterns":null},"System.Runtime.Serialization.Formatters.a0v88kqnif.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"4k92vl8md2-{0}-a0v88kqnif-a0v88kqnif.gz"},"Patterns":null},"System.Runtime.Serialization.Json.pez04wd9mo.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm"},"Patterns":null},"System.Runtime.Serialization.Json.pez04wd9mo.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"wxwyng4xk0-{0}-pez04wd9mo-pez04wd9mo.gz"},"Patterns":null},"System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm"},"Patterns":null},"System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"j81tt1y6rj-{0}-xy5d3j3dn1-xy5d3j3dn1.gz"},"Patterns":null},"System.Runtime.Serialization.qfpmfujegm.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm"},"Patterns":null},"System.Runtime.Serialization.qfpmfujegm.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"mkj61d469a-{0}-qfpmfujegm-qfpmfujegm.gz"},"Patterns":null},"System.Runtime.Serialization.Xml.mmwsbcsgly.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm"},"Patterns":null},"System.Runtime.Serialization.Xml.mmwsbcsgly.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8pmauzinw9-{0}-mmwsbcsgly-mmwsbcsgly.gz"},"Patterns":null},"System.Security.AccessControl.4mxo8hy5cn.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm"},"Patterns":null},"System.Security.AccessControl.4mxo8hy5cn.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"9n1qe841ua-{0}-4mxo8hy5cn-4mxo8hy5cn.gz"},"Patterns":null},"System.Security.Claims.9n1yusa5e5.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Security.Claims.9n1yusa5e5.wasm"},"Patterns":null},"System.Security.Claims.9n1yusa5e5.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"awwlmj7zy5-{0}-9n1yusa5e5-9n1yusa5e5.gz"},"Patterns":null},"System.Security.Cryptography.5rp84ijz8t.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm"},"Patterns":null},"System.Security.Cryptography.5rp84ijz8t.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gqmneoqstx-{0}-5rp84ijz8t-5rp84ijz8t.gz"},"Patterns":null},"System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm"},"Patterns":null},"System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"m02xm5ue7p-{0}-4dnz7b15a9-4dnz7b15a9.gz"},"Patterns":null},"System.Security.Cryptography.Cng.dyaxkkx3lb.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm"},"Patterns":null},"System.Security.Cryptography.Cng.dyaxkkx3lb.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jhjpqkptaq-{0}-dyaxkkx3lb-dyaxkkx3lb.gz"},"Patterns":null},"System.Security.Cryptography.Csp.20t5iw27a6.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm"},"Patterns":null},"System.Security.Cryptography.Csp.20t5iw27a6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"v9jar86jna-{0}-20t5iw27a6-20t5iw27a6.gz"},"Patterns":null},"System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm"},"Patterns":null},"System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"uu7wfp4do2-{0}-0lu5m0tfx2-0lu5m0tfx2.gz"},"Patterns":null},"System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm"},"Patterns":null},"System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"12m83h5a1i-{0}-4m4pzjxi3g-4m4pzjxi3g.gz"},"Patterns":null},"System.Security.Cryptography.Primitives.7bcdd4uolu.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm"},"Patterns":null},"System.Security.Cryptography.Primitives.7bcdd4uolu.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ly70359tb6-{0}-7bcdd4uolu-7bcdd4uolu.gz"},"Patterns":null},"System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm"},"Patterns":null},"System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rz1qtq0z6d-{0}-dmew7c9amv-dmew7c9amv.gz"},"Patterns":null},"System.Security.Principal.j5dp7k8x6u.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Security.Principal.j5dp7k8x6u.wasm"},"Patterns":null},"System.Security.Principal.j5dp7k8x6u.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8ynwqwcefg-{0}-j5dp7k8x6u-j5dp7k8x6u.gz"},"Patterns":null},"System.Security.Principal.Windows.7ssqvw2wfy.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm"},"Patterns":null},"System.Security.Principal.Windows.7ssqvw2wfy.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"sl0sft7bkv-{0}-7ssqvw2wfy-7ssqvw2wfy.gz"},"Patterns":null},"System.Security.SecureString.7weoywtuje.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Security.SecureString.7weoywtuje.wasm"},"Patterns":null},"System.Security.SecureString.7weoywtuje.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ogcs9ucvrf-{0}-7weoywtuje-7weoywtuje.gz"},"Patterns":null},"System.Security.snpv53zusk.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Security.snpv53zusk.wasm"},"Patterns":null},"System.Security.snpv53zusk.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8srr1acehr-{0}-snpv53zusk-snpv53zusk.gz"},"Patterns":null},"System.ServiceModel.Web.3f1khl8k32.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm"},"Patterns":null},"System.ServiceModel.Web.3f1khl8k32.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"i30lqfoca8-{0}-3f1khl8k32-3f1khl8k32.gz"},"Patterns":null},"System.ServiceProcess.a95c1olw0i.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.ServiceProcess.a95c1olw0i.wasm"},"Patterns":null},"System.ServiceProcess.a95c1olw0i.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zlxnfbxifc-{0}-a95c1olw0i-a95c1olw0i.gz"},"Patterns":null},"System.Text.Encoding.CodePages.8bhn50uz8f.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm"},"Patterns":null},"System.Text.Encoding.CodePages.8bhn50uz8f.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"d2kqqmb0bv-{0}-8bhn50uz8f-8bhn50uz8f.gz"},"Patterns":null},"System.Text.Encoding.Extensions.tqz9dyg6j7.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm"},"Patterns":null},"System.Text.Encoding.Extensions.tqz9dyg6j7.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"m10se0yx1g-{0}-tqz9dyg6j7-tqz9dyg6j7.gz"},"Patterns":null},"System.Text.Encoding.s9ic8sulfi.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Text.Encoding.s9ic8sulfi.wasm"},"Patterns":null},"System.Text.Encoding.s9ic8sulfi.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"w4xw0gq3pj-{0}-s9ic8sulfi-s9ic8sulfi.gz"},"Patterns":null},"System.Text.Encodings.Web.07hq35kp92.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm"},"Patterns":null},"System.Text.Encodings.Web.07hq35kp92.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"wqsee81gb1-{0}-07hq35kp92-07hq35kp92.gz"},"Patterns":null},"System.Text.Json.2alhj4y3bm.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Text.Json.2alhj4y3bm.wasm"},"Patterns":null},"System.Text.Json.2alhj4y3bm.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0064fe6uur-{0}-2alhj4y3bm-2alhj4y3bm.gz"},"Patterns":null},"System.Text.RegularExpressions.h1qtkesphd.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm"},"Patterns":null},"System.Text.RegularExpressions.h1qtkesphd.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"7d15z782y2-{0}-h1qtkesphd-h1qtkesphd.gz"},"Patterns":null},"System.Threading.47ucbn1gg1.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Threading.47ucbn1gg1.wasm"},"Patterns":null},"System.Threading.47ucbn1gg1.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"e2ypaal8k2-{0}-47ucbn1gg1-47ucbn1gg1.gz"},"Patterns":null},"System.Threading.AccessControl.ruehy0ud5k.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm"},"Patterns":null},"System.Threading.AccessControl.ruehy0ud5k.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lbcric48ji-{0}-ruehy0ud5k-ruehy0ud5k.gz"},"Patterns":null},"System.Threading.Channels.s3i62rxr2p.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Threading.Channels.s3i62rxr2p.wasm"},"Patterns":null},"System.Threading.Channels.s3i62rxr2p.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rma0vjtbld-{0}-s3i62rxr2p-s3i62rxr2p.gz"},"Patterns":null},"System.Threading.Overlapped.lzl7igry1t.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm"},"Patterns":null},"System.Threading.Overlapped.lzl7igry1t.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ywpa2qpg55-{0}-lzl7igry1t-lzl7igry1t.gz"},"Patterns":null},"System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm"},"Patterns":null},"System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"to8tkrj8cc-{0}-p9bjzp5pyo-p9bjzp5pyo.gz"},"Patterns":null},"System.Threading.Tasks.Extensions.unp0hcfijn.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm"},"Patterns":null},"System.Threading.Tasks.Extensions.unp0hcfijn.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"7o4w0lfocu-{0}-unp0hcfijn-unp0hcfijn.gz"},"Patterns":null},"System.Threading.Tasks.Parallel.hyku0ejwye.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm"},"Patterns":null},"System.Threading.Tasks.Parallel.hyku0ejwye.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ohlfbgu01g-{0}-hyku0ejwye-hyku0ejwye.gz"},"Patterns":null},"System.Threading.Tasks.t0sjw89o0i.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm"},"Patterns":null},"System.Threading.Tasks.t0sjw89o0i.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8rrnar5gtv-{0}-t0sjw89o0i-t0sjw89o0i.gz"},"Patterns":null},"System.Threading.Thread.nfbg9v9bn0.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm"},"Patterns":null},"System.Threading.Thread.nfbg9v9bn0.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"wi7nbv7im4-{0}-nfbg9v9bn0-nfbg9v9bn0.gz"},"Patterns":null},"System.Threading.ThreadPool.jrzo6stg1k.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm"},"Patterns":null},"System.Threading.ThreadPool.jrzo6stg1k.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"5g4i44bi6s-{0}-jrzo6stg1k-jrzo6stg1k.gz"},"Patterns":null},"System.Threading.Timer.y8l1kxazi5.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Threading.Timer.y8l1kxazi5.wasm"},"Patterns":null},"System.Threading.Timer.y8l1kxazi5.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hq538hfxem-{0}-y8l1kxazi5-y8l1kxazi5.gz"},"Patterns":null},"System.Transactions.Local.cig01jt23c.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Transactions.Local.cig01jt23c.wasm"},"Patterns":null},"System.Transactions.Local.cig01jt23c.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"uz6wr238mp-{0}-cig01jt23c-cig01jt23c.gz"},"Patterns":null},"System.Transactions.pl50n6qbg7.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Transactions.pl50n6qbg7.wasm"},"Patterns":null},"System.Transactions.pl50n6qbg7.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kmdzqqqt27-{0}-pl50n6qbg7-pl50n6qbg7.gz"},"Patterns":null},"System.ValueTuple.mj3r9p0pcw.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.ValueTuple.mj3r9p0pcw.wasm"},"Patterns":null},"System.ValueTuple.mj3r9p0pcw.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"dy6tcjmb9q-{0}-mj3r9p0pcw-mj3r9p0pcw.gz"},"Patterns":null},"System.Web.2a6wq9gv6d.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Web.2a6wq9gv6d.wasm"},"Patterns":null},"System.Web.2a6wq9gv6d.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"iok845swr0-{0}-2a6wq9gv6d-2a6wq9gv6d.gz"},"Patterns":null},"System.Web.HttpUtility.3jfxpyq4in.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm"},"Patterns":null},"System.Web.HttpUtility.3jfxpyq4in.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"pfi56k79hn-{0}-3jfxpyq4in-3jfxpyq4in.gz"},"Patterns":null},"System.Windows.bw79ix589z.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Windows.bw79ix589z.wasm"},"Patterns":null},"System.Windows.bw79ix589z.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tvvpa50077-{0}-bw79ix589z-bw79ix589z.gz"},"Patterns":null},"System.Xml.Linq.nvnhbwdsg6.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm"},"Patterns":null},"System.Xml.Linq.nvnhbwdsg6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"79deazooef-{0}-nvnhbwdsg6-nvnhbwdsg6.gz"},"Patterns":null},"System.Xml.ReaderWriter.szsdminork.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Xml.ReaderWriter.szsdminork.wasm"},"Patterns":null},"System.Xml.ReaderWriter.szsdminork.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kmp1cwjk7f-{0}-szsdminork-szsdminork.gz"},"Patterns":null},"System.Xml.Serialization.b9imguls9w.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Xml.Serialization.b9imguls9w.wasm"},"Patterns":null},"System.Xml.Serialization.b9imguls9w.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"cagt9idkdm-{0}-b9imguls9w-b9imguls9w.gz"},"Patterns":null},"System.Xml.XDocument.8hg6c0at0c.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm"},"Patterns":null},"System.Xml.XDocument.8hg6c0at0c.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"blwck2749u-{0}-8hg6c0at0c-8hg6c0at0c.gz"},"Patterns":null},"System.Xml.XmlDocument.isetn6xlxa.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm"},"Patterns":null},"System.Xml.XmlDocument.isetn6xlxa.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ww3wnv8b6s-{0}-isetn6xlxa-isetn6xlxa.gz"},"Patterns":null},"System.Xml.XmlSerializer.okgnp5v9bw.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm"},"Patterns":null},"System.Xml.XmlSerializer.okgnp5v9bw.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"qt3o35adbl-{0}-okgnp5v9bw-okgnp5v9bw.gz"},"Patterns":null},"System.Xml.XPath.11wk1hhnfk.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Xml.XPath.11wk1hhnfk.wasm"},"Patterns":null},"System.Xml.XPath.11wk1hhnfk.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"xo45czuveq-{0}-11wk1hhnfk-11wk1hhnfk.gz"},"Patterns":null},"System.Xml.XPath.XDocument.g7i5gd64yo.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm"},"Patterns":null},"System.Xml.XPath.XDocument.g7i5gd64yo.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gsr2zhdiud-{0}-g7i5gd64yo-g7i5gd64yo.gz"},"Patterns":null},"System.Xml.zjgi7nrlno.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Xml.zjgi7nrlno.wasm"},"Patterns":null},"System.Xml.zjgi7nrlno.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ra6e7v46m5-{0}-zjgi7nrlno-zjgi7nrlno.gz"},"Patterns":null},"WindowsBase.wz82kkc1p3.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/WindowsBase.wz82kkc1p3.wasm"},"Patterns":null},"WindowsBase.wz82kkc1p3.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"10vfj5e8p2-{0}-wz82kkc1p3-wz82kkc1p3.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Layout":{"Children":{"ReconnectModal.razor.js":{"Children":null,"Asset":{"ContentRootIndex":9,"SubPath":"Layout/ReconnectModal.razor.js"},"Patterns":null},"ReconnectModal.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ug9ge1behf-{0}-ycbzh0sbjd-ycbzh0sbjd.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"_content":{"Children":{"Microsoft.DotNet.HotReload.WebAssembly.Browser":{"Children":{"Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js":{"Children":null,"Asset":{"ContentRootIndex":10,"SubPath":"Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js"},"Patterns":null},"Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"f9o902iofb-{0}-99zm1jdh75-99zm1jdh75.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":11,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"tzxjg6is5z-{0}-o2b68hjqqd-o2b68hjqqd.gz"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":11,"SubPath":"MudBlazor.min.js"},"Patterns":null},"MudBlazor.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"0wz98yz2xy-{0}-8dleymzaev-8dleymzaev.gz"},"Patterns":null},"MudBlazor.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":11,"SubPath":"MudBlazor.min.js.map"},"Patterns":null},"MudBlazor.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"o7k4cxtn0u-{0}-0ykner63ol-0ykner63ol.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/OnProfNext/bin/Debug/net10.0/appsettings.Development.json b/OnProfNext/bin/Debug/net10.0/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/OnProfNext/bin/Debug/net10.0/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/OnProfNext/bin/Debug/net10.0/appsettings.json b/OnProfNext/bin/Debug/net10.0/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/OnProfNext/bin/Debug/net10.0/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/OnProfNext/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/OnProfNext/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/OnProfNext/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/OnProfNext/obj/Debug/net10.0/ApiEndpoints.json b/OnProfNext/obj/Debug/net10.0/ApiEndpoints.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/OnProfNext/obj/Debug/net10.0/ApiEndpoints.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/OnProfNext/obj/Debug/net10.0/EmbeddedAttribute.cs b/OnProfNext/obj/Debug/net10.0/EmbeddedAttribute.cs new file mode 100644 index 0000000..1931537 --- /dev/null +++ b/OnProfNext/obj/Debug/net10.0/EmbeddedAttribute.cs @@ -0,0 +1,7 @@ +// +namespace Microsoft.CodeAnalysis +{ +internal sealed partial class EmbeddedAttribute : global::System.Attribute +{ +} +} diff --git a/OnProfNext/obj/Debug/net10.0/OnProfNext.AssemblyInfo.cs b/OnProfNext/obj/Debug/net10.0/OnProfNext.AssemblyInfo.cs new file mode 100644 index 0000000..27e778b --- /dev/null +++ b/OnProfNext/obj/Debug/net10.0/OnProfNext.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("OnProfNext")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("OnProfNext")] +[assembly: System.Reflection.AssemblyTitleAttribute("OnProfNext")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Von der MSBuild WriteCodeFragment-Klasse generiert. + diff --git a/OnProfNext/obj/Debug/net10.0/OnProfNext.AssemblyInfoInputs.cache b/OnProfNext/obj/Debug/net10.0/OnProfNext.AssemblyInfoInputs.cache new file mode 100644 index 0000000..8cc489c --- /dev/null +++ b/OnProfNext/obj/Debug/net10.0/OnProfNext.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +ac03ab804b387a0fb2706965443d2179ff405dcea0b84a99a233bc602a584979 diff --git a/OnProfNext/obj/Debug/net10.0/OnProfNext.GeneratedMSBuildEditorConfig.editorconfig b/OnProfNext/obj/Debug/net10.0/OnProfNext.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..0f56f19 --- /dev/null +++ b/OnProfNext/obj/Debug/net10.0/OnProfNext.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,35 @@ +is_global = true +build_property.TargetFramework = net10.0 +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v10.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = OnProfNext +build_property.RootNamespace = OnProfNext +build_property.ProjectDir = D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 9.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = + +[D:/Dev/Tut/OnProfNext/OnProfNext/OnProfNext/Components/App.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBcHAucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[D:/Dev/Tut/OnProfNext/OnProfNext/OnProfNext/Components/Pages/Error.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xFcnJvci5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[D:/Dev/Tut/OnProfNext/OnProfNext/OnProfNext/Components/_Imports.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xfSW1wb3J0cy5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = diff --git a/OnProfNext/obj/Debug/net10.0/OnProfNext.GlobalUsings.g.cs b/OnProfNext/obj/Debug/net10.0/OnProfNext.GlobalUsings.g.cs new file mode 100644 index 0000000..69a3c68 --- /dev/null +++ b/OnProfNext/obj/Debug/net10.0/OnProfNext.GlobalUsings.g.cs @@ -0,0 +1,18 @@ +// +global using Microsoft.AspNetCore.Builder; +global using Microsoft.AspNetCore.Hosting; +global using Microsoft.AspNetCore.Http; +global using Microsoft.AspNetCore.Routing; +global using Microsoft.Extensions.Configuration; +global using Microsoft.Extensions.DependencyInjection; +global using Microsoft.Extensions.Hosting; +global using Microsoft.Extensions.Logging; +global using Microsoft.Extensions.Validation.Embedded; +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Net.Http.Json; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/OnProfNext/obj/Debug/net10.0/OnProfNext.MvcApplicationPartsAssemblyInfo.cache b/OnProfNext/obj/Debug/net10.0/OnProfNext.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/OnProfNext/obj/Debug/net10.0/OnProfNext.assets.cache b/OnProfNext/obj/Debug/net10.0/OnProfNext.assets.cache new file mode 100644 index 0000000..d2889fd Binary files /dev/null and b/OnProfNext/obj/Debug/net10.0/OnProfNext.assets.cache differ diff --git a/OnProfNext/obj/Debug/net10.0/OnProfNext.csproj.AssemblyReference.cache b/OnProfNext/obj/Debug/net10.0/OnProfNext.csproj.AssemblyReference.cache new file mode 100644 index 0000000..16e1759 Binary files /dev/null and b/OnProfNext/obj/Debug/net10.0/OnProfNext.csproj.AssemblyReference.cache differ diff --git a/OnProfNext/obj/Debug/net10.0/OnProfNext.csproj.BuildWithSkipAnalyzers b/OnProfNext/obj/Debug/net10.0/OnProfNext.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/OnProfNext/obj/Debug/net10.0/OnProfNext.csproj.CoreCompileInputs.cache b/OnProfNext/obj/Debug/net10.0/OnProfNext.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..4f12ed4 --- /dev/null +++ b/OnProfNext/obj/Debug/net10.0/OnProfNext.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +0ba8c4cc135cf7a9fc5f5baff89e86de6a2812b4f50f366d33213e25481110c8 diff --git a/OnProfNext/obj/Debug/net10.0/OnProfNext.csproj.FileListAbsolute.txt b/OnProfNext/obj/Debug/net10.0/OnProfNext.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..43d6fe1 --- /dev/null +++ b/OnProfNext/obj/Debug/net10.0/OnProfNext.csproj.FileListAbsolute.txt @@ -0,0 +1,65 @@ +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\bin\Debug\net10.0\OnProfNext.Client.runtimeconfig.json +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\bin\Debug\net10.0\OnProfNext.Client.staticwebassets.runtime.json +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\bin\Debug\net10.0\OnProfNext.Client.staticwebassets.endpoints.json +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\bin\Debug\net10.0\appsettings.Development.json +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\bin\Debug\net10.0\appsettings.json +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\bin\Debug\net10.0\BlazorDebugProxy\BrowserDebugHost.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\bin\Debug\net10.0\BlazorDebugProxy\BrowserDebugHost.runtimeconfig.json +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\bin\Debug\net10.0\BlazorDebugProxy\BrowserDebugProxy.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\bin\Debug\net10.0\BlazorDebugProxy\Microsoft.CodeAnalysis.CSharp.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\bin\Debug\net10.0\BlazorDebugProxy\Microsoft.CodeAnalysis.CSharp.Scripting.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\bin\Debug\net10.0\BlazorDebugProxy\Microsoft.CodeAnalysis.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\bin\Debug\net10.0\BlazorDebugProxy\Microsoft.CodeAnalysis.Scripting.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\bin\Debug\net10.0\BlazorDebugProxy\Microsoft.FileFormats.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\bin\Debug\net10.0\BlazorDebugProxy\Microsoft.NET.WebAssembly.Webcil.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\bin\Debug\net10.0\BlazorDebugProxy\Microsoft.SymbolStore.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\bin\Debug\net10.0\BlazorDebugProxy\Newtonsoft.Json.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\bin\Debug\net10.0\OnProfNext.staticwebassets.runtime.json +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\bin\Debug\net10.0\OnProfNext.staticwebassets.endpoints.json +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\bin\Debug\net10.0\OnProfNext.exe +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\bin\Debug\net10.0\OnProfNext.deps.json +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\bin\Debug\net10.0\OnProfNext.runtimeconfig.json +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\bin\Debug\net10.0\OnProfNext.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\bin\Debug\net10.0\OnProfNext.pdb +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\bin\Debug\net10.0\Microsoft.AspNetCore.Components.WebAssembly.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\bin\Debug\net10.0\Microsoft.AspNetCore.Components.WebAssembly.Server.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\bin\Debug\net10.0\Microsoft.DotNet.HotReload.WebAssembly.Browser.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\bin\Debug\net10.0\Microsoft.JSInterop.WebAssembly.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\bin\Debug\net10.0\MudBlazor.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\bin\Debug\net10.0\OnProfNext.Client.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\bin\Debug\net10.0\OnProfNext.Client.pdb +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\obj\Debug\net10.0\EmbeddedAttribute.cs +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\obj\Debug\net10.0\ValidatableTypeAttribute.cs +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\obj\Debug\net10.0\OnProfNext.csproj.AssemblyReference.cache +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\obj\Debug\net10.0\rpswa.dswa.cache.json +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\obj\Debug\net10.0\OnProfNext.GeneratedMSBuildEditorConfig.editorconfig +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\obj\Debug\net10.0\OnProfNext.AssemblyInfoInputs.cache +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\obj\Debug\net10.0\OnProfNext.AssemblyInfo.cs +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\obj\Debug\net10.0\OnProfNext.csproj.CoreCompileInputs.cache +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\obj\Debug\net10.0\OnProfNext.MvcApplicationPartsAssemblyInfo.cache +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\obj\Debug\net10.0\rjimswa.dswa.cache.json +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\obj\Debug\net10.0\rjsmrazor.dswa.cache.json +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\obj\Debug\net10.0\rjsmcshtml.dswa.cache.json +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\obj\Debug\net10.0\jsmodules\jsmodules.build.manifest.json +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\obj\Debug\net10.0\scopedcss\bundle\OnProfNext.styles.css +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\obj\Debug\net10.0\compressed\tzxjg6is5z-{0}-o2b68hjqqd-o2b68hjqqd.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\obj\Debug\net10.0\compressed\0wz98yz2xy-{0}-8dleymzaev-8dleymzaev.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\obj\Debug\net10.0\compressed\o7k4cxtn0u-{0}-0ykner63ol-0ykner63ol.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\obj\Debug\net10.0\compressed\f9o902iofb-{0}-99zm1jdh75-99zm1jdh75.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\obj\Debug\net10.0\compressed\9cjrgkhoez-{0}-2jeq8efc6q-2jeq8efc6q.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\obj\Debug\net10.0\compressed\byr04718ni-{0}-0i02oychrm-0i02oychrm.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\obj\Debug\net10.0\compressed\b2aaf1qy0k-{0}-b9228eflpl-b9228eflpl.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\obj\Debug\net10.0\compressed\z7m9u3a7x3-{0}-2tj1sjhksk-2tj1sjhksk.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\obj\Debug\net10.0\compressed\fixztrjlan-{0}-sif51eb7xk-sif51eb7xk.gz +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\obj\Debug\net10.0\staticwebassets.build.json +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\obj\Debug\net10.0\staticwebassets.build.json.cache +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\obj\Debug\net10.0\staticwebassets.development.json +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\obj\Debug\net10.0\staticwebassets.build.endpoints.json +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\obj\Debug\net10.0\swae.build.ex.cache +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\obj\Debug\net10.0\staticwebassets.upToDateCheck.txt +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\obj\Debug\net10.0\OnProfNext.csproj.Up2Date +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\obj\Debug\net10.0\OnProfNext.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\obj\Debug\net10.0\refint\OnProfNext.dll +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\obj\Debug\net10.0\OnProfNext.pdb +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\obj\Debug\net10.0\OnProfNext.genruntimeconfig.cache +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\obj\Debug\net10.0\ref\OnProfNext.dll diff --git a/OnProfNext/obj/Debug/net10.0/OnProfNext.csproj.Up2Date b/OnProfNext/obj/Debug/net10.0/OnProfNext.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/OnProfNext/obj/Debug/net10.0/OnProfNext.dll b/OnProfNext/obj/Debug/net10.0/OnProfNext.dll new file mode 100644 index 0000000..5b47cc5 Binary files /dev/null and b/OnProfNext/obj/Debug/net10.0/OnProfNext.dll differ diff --git a/OnProfNext/obj/Debug/net10.0/OnProfNext.genruntimeconfig.cache b/OnProfNext/obj/Debug/net10.0/OnProfNext.genruntimeconfig.cache new file mode 100644 index 0000000..fa74f8f --- /dev/null +++ b/OnProfNext/obj/Debug/net10.0/OnProfNext.genruntimeconfig.cache @@ -0,0 +1 @@ +8b1635184daa6b568433e75e9fb3a2c8e31b157898893127a0d99cb7b13f153b diff --git a/OnProfNext/obj/Debug/net10.0/OnProfNext.pdb b/OnProfNext/obj/Debug/net10.0/OnProfNext.pdb new file mode 100644 index 0000000..c9ec750 Binary files /dev/null and b/OnProfNext/obj/Debug/net10.0/OnProfNext.pdb differ diff --git a/OnProfNext/obj/Debug/net10.0/ValidatableTypeAttribute.cs b/OnProfNext/obj/Debug/net10.0/ValidatableTypeAttribute.cs new file mode 100644 index 0000000..26eb880 --- /dev/null +++ b/OnProfNext/obj/Debug/net10.0/ValidatableTypeAttribute.cs @@ -0,0 +1,9 @@ +// +namespace Microsoft.Extensions.Validation.Embedded +{ +[global::Microsoft.CodeAnalysis.EmbeddedAttribute] +[global::System.AttributeUsage(global::System.AttributeTargets.Class)] +internal sealed class ValidatableTypeAttribute : global::System.Attribute +{ +} +} diff --git a/OnProfNext/obj/Debug/net10.0/apphost.exe b/OnProfNext/obj/Debug/net10.0/apphost.exe new file mode 100644 index 0000000..b4571cc Binary files /dev/null and b/OnProfNext/obj/Debug/net10.0/apphost.exe differ diff --git a/OnProfNext/obj/Debug/net10.0/compressed/0wz98yz2xy-{0}-8dleymzaev-8dleymzaev.gz b/OnProfNext/obj/Debug/net10.0/compressed/0wz98yz2xy-{0}-8dleymzaev-8dleymzaev.gz new file mode 100644 index 0000000..9c5349d Binary files /dev/null and b/OnProfNext/obj/Debug/net10.0/compressed/0wz98yz2xy-{0}-8dleymzaev-8dleymzaev.gz differ diff --git a/OnProfNext/obj/Debug/net10.0/compressed/9cjrgkhoez-{0}-2jeq8efc6q-2jeq8efc6q.gz b/OnProfNext/obj/Debug/net10.0/compressed/9cjrgkhoez-{0}-2jeq8efc6q-2jeq8efc6q.gz new file mode 100644 index 0000000..fc1afc6 Binary files /dev/null and b/OnProfNext/obj/Debug/net10.0/compressed/9cjrgkhoez-{0}-2jeq8efc6q-2jeq8efc6q.gz differ diff --git a/OnProfNext/obj/Debug/net10.0/compressed/b2aaf1qy0k-{0}-b9228eflpl-b9228eflpl.gz b/OnProfNext/obj/Debug/net10.0/compressed/b2aaf1qy0k-{0}-b9228eflpl-b9228eflpl.gz new file mode 100644 index 0000000..25c5fa0 Binary files /dev/null and b/OnProfNext/obj/Debug/net10.0/compressed/b2aaf1qy0k-{0}-b9228eflpl-b9228eflpl.gz differ diff --git a/OnProfNext/obj/Debug/net10.0/compressed/byr04718ni-{0}-0i02oychrm-0i02oychrm.gz b/OnProfNext/obj/Debug/net10.0/compressed/byr04718ni-{0}-0i02oychrm-0i02oychrm.gz new file mode 100644 index 0000000..3795e31 Binary files /dev/null and b/OnProfNext/obj/Debug/net10.0/compressed/byr04718ni-{0}-0i02oychrm-0i02oychrm.gz differ diff --git a/OnProfNext/obj/Debug/net10.0/compressed/f9o902iofb-{0}-99zm1jdh75-99zm1jdh75.gz b/OnProfNext/obj/Debug/net10.0/compressed/f9o902iofb-{0}-99zm1jdh75-99zm1jdh75.gz new file mode 100644 index 0000000..e3a3eaa Binary files /dev/null and b/OnProfNext/obj/Debug/net10.0/compressed/f9o902iofb-{0}-99zm1jdh75-99zm1jdh75.gz differ diff --git a/OnProfNext/obj/Debug/net10.0/compressed/fixztrjlan-{0}-sif51eb7xk-sif51eb7xk.gz b/OnProfNext/obj/Debug/net10.0/compressed/fixztrjlan-{0}-sif51eb7xk-sif51eb7xk.gz new file mode 100644 index 0000000..1d7d9da Binary files /dev/null and b/OnProfNext/obj/Debug/net10.0/compressed/fixztrjlan-{0}-sif51eb7xk-sif51eb7xk.gz differ diff --git a/OnProfNext/obj/Debug/net10.0/compressed/o7k4cxtn0u-{0}-0ykner63ol-0ykner63ol.gz b/OnProfNext/obj/Debug/net10.0/compressed/o7k4cxtn0u-{0}-0ykner63ol-0ykner63ol.gz new file mode 100644 index 0000000..cd8020f Binary files /dev/null and b/OnProfNext/obj/Debug/net10.0/compressed/o7k4cxtn0u-{0}-0ykner63ol-0ykner63ol.gz differ diff --git a/OnProfNext/obj/Debug/net10.0/compressed/tzxjg6is5z-{0}-o2b68hjqqd-o2b68hjqqd.gz b/OnProfNext/obj/Debug/net10.0/compressed/tzxjg6is5z-{0}-o2b68hjqqd-o2b68hjqqd.gz new file mode 100644 index 0000000..f6ade3a Binary files /dev/null and b/OnProfNext/obj/Debug/net10.0/compressed/tzxjg6is5z-{0}-o2b68hjqqd-o2b68hjqqd.gz differ diff --git a/OnProfNext/obj/Debug/net10.0/compressed/z7m9u3a7x3-{0}-2tj1sjhksk-2tj1sjhksk.gz b/OnProfNext/obj/Debug/net10.0/compressed/z7m9u3a7x3-{0}-2tj1sjhksk-2tj1sjhksk.gz new file mode 100644 index 0000000..09f8cc7 Binary files /dev/null and b/OnProfNext/obj/Debug/net10.0/compressed/z7m9u3a7x3-{0}-2tj1sjhksk-2tj1sjhksk.gz differ diff --git a/OnProfNext/obj/Debug/net10.0/jsmodules/jsmodules.build.manifest.json b/OnProfNext/obj/Debug/net10.0/jsmodules/jsmodules.build.manifest.json new file mode 100644 index 0000000..69a6bf7 --- /dev/null +++ b/OnProfNext/obj/Debug/net10.0/jsmodules/jsmodules.build.manifest.json @@ -0,0 +1,3 @@ +[ + "_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js" +] \ No newline at end of file diff --git a/OnProfNext/obj/Debug/net10.0/rbcswa.dswa.cache.json b/OnProfNext/obj/Debug/net10.0/rbcswa.dswa.cache.json new file mode 100644 index 0000000..62fed87 --- /dev/null +++ b/OnProfNext/obj/Debug/net10.0/rbcswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"2ilJ2M8+ZdH0swl4cXFj9Ji8kay0R08ISE/fEc+OL0o=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["5XApn3XQKocKRxQEk6isimC7baFoYQNFouZDSHeUPrs=","dBewgvYgw/LunSl8kS4fI8eRha1tYUzbUQvBnwyHwsE=","8Sh2fI/QHte9Aii\u002Bz6U8uUu9tEldFNXfAGepwNBX3W8=","BnBeZCIz5DmGqBGgZL4HPDYzWgAzg8lsD\u002BqgEqYtRtU=","YkvQa0D7GSnW/S1MXt6Wk/2OBRyj1Zh6T02wLORDMF8=","pezYMJdFl05xpeKfrSLK3GJssm5hGPHmcS76AcbFjzU=","eoOKl17pBFJTToMuLgJSou4LfnUrLTRBSjM\u002BkqIM7eg=","isc3li2CT8q3nQndVdu7v6PZ6qZTF0BUkgVFGZLN3Uc=","JnARNGE8ObszJcqpga5YibVx4nhx8TwH71fJJhTsfqU="],"CachedAssets":{"5XApn3XQKocKRxQEk6isimC7baFoYQNFouZDSHeUPrs=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\tzxjg6is5z-{0}-o2b68hjqqd-o2b68hjqqd.gz","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\MudBlazor.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"wpsvn4ktvq","Integrity":"3NW/7qanjyyKjmM6tVvxaZsoz0x42qzljiuPWKrKuEA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\MudBlazor.min.css","FileLength":65504,"LastWriteTime":"2026-03-18T16:34:27.8743836+00:00"},"dBewgvYgw/LunSl8kS4fI8eRha1tYUzbUQvBnwyHwsE=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\0wz98yz2xy-{0}-8dleymzaev-8dleymzaev.gz","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\MudBlazor.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"huk9fydkzu","Integrity":"ydhcmXIIRl5uGo/vdFRnFzlF8jEiRYezMmXg9Omen8s=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\MudBlazor.min.js","FileLength":15860,"LastWriteTime":"2026-03-18T16:34:27.8803823+00:00"},"8Sh2fI/QHte9Aii\u002Bz6U8uUu9tEldFNXfAGepwNBX3W8=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\o7k4cxtn0u-{0}-0ykner63ol-0ykner63ol.gz","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.js.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\MudBlazor.min.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"mu5ofp27zo","Integrity":"YnlPux4qBuGLWhihs\u002BJuLReInvzFXtqDTWrJOmgWE5Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\MudBlazor.min.js.map","FileLength":50330,"LastWriteTime":"2026-03-18T16:34:27.8718821+00:00"},"BnBeZCIz5DmGqBGgZL4HPDYzWgAzg8lsD\u002BqgEqYtRtU=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\f9o902iofb-{0}-99zm1jdh75-99zm1jdh75.gz","SourceId":"Microsoft.DotNet.HotReload.WebAssembly.Browser","SourceType":"Package","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\","BasePath":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser","RelativePath":"Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\wiela\\.nuget\\packages\\microsoft.dotnet.hotreload.webassembly.browser\\10.0.201\\staticwebassets\\Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"r26z7w8tez","Integrity":"g7DwAhdgl0oKXmpsFbRzF03rilX1aNUWw1Xnn8Loe4k=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\wiela\\.nuget\\packages\\microsoft.dotnet.hotreload.webassembly.browser\\10.0.201\\staticwebassets\\Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js","FileLength":696,"LastWriteTime":"2026-03-18T16:34:27.8598834+00:00"},"YkvQa0D7GSnW/S1MXt6Wk/2OBRyj1Zh6T02wLORDMF8=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\9cjrgkhoez-{0}-2jeq8efc6q-2jeq8efc6q.gz","SourceId":"OnProfNext","SourceType":"Discovered","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"favicon#[.{fingerprint=2jeq8efc6q}]?.ico.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\wwwroot\\favicon.ico","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"3ren6c1acn","Integrity":"b7CPHqpoIGsGVgOrEO\u002Br2XPyaLrLUBwkA6R2jOMbS7M=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\wwwroot\\favicon.ico","FileLength":2975,"LastWriteTime":"2026-03-18T16:34:27.8598834+00:00"},"pezYMJdFl05xpeKfrSLK3GJssm5hGPHmcS76AcbFjzU=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\byr04718ni-{0}-0i02oychrm-0i02oychrm.gz","SourceId":"OnProfNext","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"OnProfNext#[.{fingerprint=0i02oychrm}]?.modules.json.gz","AssetKind":"Build","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\jsmodules\\jsmodules.build.manifest.json","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"8vnoutujuo","Integrity":"1KA3582Q2/tA0\u002BcdRJztNonDmZZ3aFTsIlXYblwuK8w=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\jsmodules\\jsmodules.build.manifest.json","FileLength":112,"LastWriteTime":"2026-03-18T16:34:27.8598834+00:00"},"eoOKl17pBFJTToMuLgJSou4LfnUrLTRBSjM\u002BkqIM7eg=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\b2aaf1qy0k-{0}-b9228eflpl-b9228eflpl.gz","SourceId":"OnProfNext","SourceType":"Discovered","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/blazor.web#[.{fingerprint=b9228eflpl}]?.js.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\wiela\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.5\\_framework\\blazor.web.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"r5w9ctcrsq","Integrity":"8VQ3iMUvfxiGnWgLihInPbvXvnXptUD4QRw4448/j64=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\wiela\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.5\\_framework\\blazor.web.js","FileLength":55158,"LastWriteTime":"2026-03-18T16:34:27.8658832+00:00"},"isc3li2CT8q3nQndVdu7v6PZ6qZTF0BUkgVFGZLN3Uc=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\z7m9u3a7x3-{0}-2tj1sjhksk-2tj1sjhksk.gz","SourceId":"OnProfNext","SourceType":"Discovered","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/blazor.server#[.{fingerprint=2tj1sjhksk}]?.js.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\wiela\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.5\\_framework\\blazor.server.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9aec6z1y8w","Integrity":"UZUyVYBpct8fgB7oNrIguu4We/o5Cyak6zO8IAx3S20=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\wiela\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.5\\_framework\\blazor.server.js","FileLength":44312,"LastWriteTime":"2026-03-18T16:34:27.8648827+00:00"},"JnARNGE8ObszJcqpga5YibVx4nhx8TwH71fJJhTsfqU=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\fixztrjlan-{0}-sif51eb7xk-sif51eb7xk.gz","SourceId":"OnProfNext","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"OnProfNext#[.{fingerprint=sif51eb7xk}]?.styles.css.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\scopedcss\\bundle\\OnProfNext.styles.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"rgmz0g4u1g","Integrity":"e1xci9FnhjZKLfRTggJi4ZGIrW3ZuGNWybwpVURsUzc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\scopedcss\\bundle\\OnProfNext.styles.css","FileLength":78,"LastWriteTime":"2026-03-18T16:34:27.8598834+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/OnProfNext/obj/Debug/net10.0/ref/OnProfNext.dll b/OnProfNext/obj/Debug/net10.0/ref/OnProfNext.dll new file mode 100644 index 0000000..1e44fb4 Binary files /dev/null and b/OnProfNext/obj/Debug/net10.0/ref/OnProfNext.dll differ diff --git a/OnProfNext/obj/Debug/net10.0/refint/OnProfNext.dll b/OnProfNext/obj/Debug/net10.0/refint/OnProfNext.dll new file mode 100644 index 0000000..1e44fb4 Binary files /dev/null and b/OnProfNext/obj/Debug/net10.0/refint/OnProfNext.dll differ diff --git a/OnProfNext/obj/Debug/net10.0/rjimswa.dswa.cache.json b/OnProfNext/obj/Debug/net10.0/rjimswa.dswa.cache.json new file mode 100644 index 0000000..e3a1f7e --- /dev/null +++ b/OnProfNext/obj/Debug/net10.0/rjimswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"qa/RdtWKHnGxEyMZI3+Ojlt8HmYyrtG99Wr9RDnhlaI=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"R7Rea/YQmcweqCbKffD9oUelggfpJQX85r65aYZsas0=","InputHashes":["kJmexN9o0pCQvc5WGBwT1gKh/Ab1DLogOPAq/C28TN4="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/OnProfNext/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json b/OnProfNext/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json new file mode 100644 index 0000000..e20a425 --- /dev/null +++ b/OnProfNext/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"bAkKC+nVWweE76nob4C9J+dFUzoC/TSMK/+7Va2pEMQ=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["XalveFocMXOm37mVadyo/IW5OGvQ/lODnx2TscTUtmg=","97mJ4IawCQABCF0KFzwGfxqgIjqy1QmaxUaca1BmvN4=","pwbDm\u002BtuPrkkqYGciBeibsjIYD0XR0Oz\u002BZ9BHDd6Puc=","cdg3Zlnjx9JVVy55JTZ/aF1D/LCceFBFjShywDeeMOE=","5R3c0nUvzYa85XM8E8qiKiHB9f9fY\u002BKQFN7tk1Xj30w=","Igjj5gMX02oP225xpwDz/yAIu5tv8WkiY6dRGb4F8NQ=","nBYj8i61sCgl1nUtUnzDYPtjtMi6DMVMVUOYLiNwPj0=","uUwBddsA4K2hHam3dVRUqIPnUKFFCf\u002BC6Bh/Xsq4BeA=","zEB8ma4uSEyqauoElD6tTBhdMbnWJWjSHBzAwVK0lzU=","qHVO01qP1rW4qGtGdFdUOYGcJAHcArvkTUT7RXSb4lw=","EtC\u002BxWOyo9lnT2ef7Q5V33kIW6378BTiA2xyTNVejHc=","qdH8zWynS8jrvHLMU\u002BCjyePLujbMY1XPVkKVX4JXrbI=","hrSkJngleIaorlgApro6sH0NbLF2ikGM/MdaDA15s2I=","yLMv953kk3b0\u002BgonsiVVAM91iR\u002BVlzH0h7OLkLDNZ10=","wO85d/tlqaOzbrlEJ0byD4EQQIVz7bTFDraYXMPkY6E=","hDaFTY\u002BUgTD4lomlNCNkTT2kLZ6VokV40qQLxxDpeRk=","pPLVSrJMu0DTHQZxeD5rvkTibZtAiN6RkiPJ1Bhntso=","oO/Tqc89d180i2biEPjarWAX96rQQ3iUqbc4DXnfF9k=","bjlyBEzP6Trw3qUGecaFrsA8UAxYHo4fW4lRopxHPFY="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/OnProfNext/obj/Debug/net10.0/rjsmrazor.dswa.cache.json b/OnProfNext/obj/Debug/net10.0/rjsmrazor.dswa.cache.json new file mode 100644 index 0000000..930c1cb --- /dev/null +++ b/OnProfNext/obj/Debug/net10.0/rjsmrazor.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"MNvSBurCTEOUuR+IcnH0PakuTmc+/mF96BjR0OsyLQ4=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["XalveFocMXOm37mVadyo/IW5OGvQ/lODnx2TscTUtmg=","97mJ4IawCQABCF0KFzwGfxqgIjqy1QmaxUaca1BmvN4=","pwbDm\u002BtuPrkkqYGciBeibsjIYD0XR0Oz\u002BZ9BHDd6Puc=","cdg3Zlnjx9JVVy55JTZ/aF1D/LCceFBFjShywDeeMOE=","5R3c0nUvzYa85XM8E8qiKiHB9f9fY\u002BKQFN7tk1Xj30w=","Igjj5gMX02oP225xpwDz/yAIu5tv8WkiY6dRGb4F8NQ=","nBYj8i61sCgl1nUtUnzDYPtjtMi6DMVMVUOYLiNwPj0=","uUwBddsA4K2hHam3dVRUqIPnUKFFCf\u002BC6Bh/Xsq4BeA=","zEB8ma4uSEyqauoElD6tTBhdMbnWJWjSHBzAwVK0lzU=","qHVO01qP1rW4qGtGdFdUOYGcJAHcArvkTUT7RXSb4lw=","EtC\u002BxWOyo9lnT2ef7Q5V33kIW6378BTiA2xyTNVejHc=","qdH8zWynS8jrvHLMU\u002BCjyePLujbMY1XPVkKVX4JXrbI=","hrSkJngleIaorlgApro6sH0NbLF2ikGM/MdaDA15s2I=","yLMv953kk3b0\u002BgonsiVVAM91iR\u002BVlzH0h7OLkLDNZ10=","wO85d/tlqaOzbrlEJ0byD4EQQIVz7bTFDraYXMPkY6E=","hDaFTY\u002BUgTD4lomlNCNkTT2kLZ6VokV40qQLxxDpeRk=","pPLVSrJMu0DTHQZxeD5rvkTibZtAiN6RkiPJ1Bhntso=","oO/Tqc89d180i2biEPjarWAX96rQQ3iUqbc4DXnfF9k=","bjlyBEzP6Trw3qUGecaFrsA8UAxYHo4fW4lRopxHPFY="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/OnProfNext/obj/Debug/net10.0/rpswa.dswa.cache.json b/OnProfNext/obj/Debug/net10.0/rpswa.dswa.cache.json new file mode 100644 index 0000000..db0c0c4 --- /dev/null +++ b/OnProfNext/obj/Debug/net10.0/rpswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"q6VDdFwud4C8H7mnNR1bSjN5iPQjhwwvuD/guCndtSQ=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["XalveFocMXOm37mVadyo/IW5OGvQ/lODnx2TscTUtmg=","97mJ4IawCQABCF0KFzwGfxqgIjqy1QmaxUaca1BmvN4=","pwbDm\u002BtuPrkkqYGciBeibsjIYD0XR0Oz\u002BZ9BHDd6Puc=","cdg3Zlnjx9JVVy55JTZ/aF1D/LCceFBFjShywDeeMOE=","5R3c0nUvzYa85XM8E8qiKiHB9f9fY\u002BKQFN7tk1Xj30w=","Igjj5gMX02oP225xpwDz/yAIu5tv8WkiY6dRGb4F8NQ=","nBYj8i61sCgl1nUtUnzDYPtjtMi6DMVMVUOYLiNwPj0=","uUwBddsA4K2hHam3dVRUqIPnUKFFCf\u002BC6Bh/Xsq4BeA=","zEB8ma4uSEyqauoElD6tTBhdMbnWJWjSHBzAwVK0lzU=","qHVO01qP1rW4qGtGdFdUOYGcJAHcArvkTUT7RXSb4lw=","EtC\u002BxWOyo9lnT2ef7Q5V33kIW6378BTiA2xyTNVejHc=","qdH8zWynS8jrvHLMU\u002BCjyePLujbMY1XPVkKVX4JXrbI=","hrSkJngleIaorlgApro6sH0NbLF2ikGM/MdaDA15s2I=","yLMv953kk3b0\u002BgonsiVVAM91iR\u002BVlzH0h7OLkLDNZ10=","wO85d/tlqaOzbrlEJ0byD4EQQIVz7bTFDraYXMPkY6E=","hDaFTY\u002BUgTD4lomlNCNkTT2kLZ6VokV40qQLxxDpeRk=","pPLVSrJMu0DTHQZxeD5rvkTibZtAiN6RkiPJ1Bhntso="],"CachedAssets":{"XalveFocMXOm37mVadyo/IW5OGvQ/lODnx2TscTUtmg=":{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\wwwroot\\favicon.ico","SourceId":"OnProfNext","SourceType":"Discovered","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\wwwroot\\","BasePath":"/","RelativePath":"favicon#[.{fingerprint}]?.ico","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"2jeq8efc6q","Integrity":"8kNQh\u002BLErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\favicon.ico","FileLength":15086,"LastWriteTime":"2026-03-18T16:33:32.5157838+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/OnProfNext/obj/Debug/net10.0/scopedcss/bundle/OnProfNext.styles.css b/OnProfNext/obj/Debug/net10.0/scopedcss/bundle/OnProfNext.styles.css new file mode 100644 index 0000000..4958104 --- /dev/null +++ b/OnProfNext/obj/Debug/net10.0/scopedcss/bundle/OnProfNext.styles.css @@ -0,0 +1,2 @@ +@import 'OnProfNext.Client.uzl7ca9j9c.bundle.scp.css'; + diff --git a/OnProfNext/obj/Debug/net10.0/staticwebassets.build.endpoints.json b/OnProfNext/obj/Debug/net10.0/staticwebassets.build.endpoints.json new file mode 100644 index 0000000..2471fb9 --- /dev/null +++ b/OnProfNext/obj/Debug/net10.0/staticwebassets.build.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"Layout/ReconnectModal.razor.js","AssetFile":"Layout/ReconnectModal.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2746"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4="},{"Name":"script-type","Value":"module"}]},{"Route":"Layout/ReconnectModal.razor.js","AssetFile":"Layout/ReconnectModal.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001269035533"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"787"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4="},{"Name":"original-resource","Value":"\"QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4=\""},{"Name":"script-type","Value":"module"}]},{"Route":"Layout/ReconnectModal.razor.js.gz","AssetFile":"Layout/ReconnectModal.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"787"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA="}]},{"Route":"Layout/ReconnectModal.ycbzh0sbjd.razor.js","AssetFile":"Layout/ReconnectModal.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2746"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ycbzh0sbjd"},{"Name":"integrity","Value":"sha256-QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4="},{"Name":"label","Value":"Layout/ReconnectModal.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"Layout/ReconnectModal.ycbzh0sbjd.razor.js","AssetFile":"Layout/ReconnectModal.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001269035533"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"787"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ycbzh0sbjd"},{"Name":"integrity","Value":"sha256-QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4="},{"Name":"label","Value":"Layout/ReconnectModal.razor.js"},{"Name":"original-resource","Value":"\"QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4=\""},{"Name":"script-type","Value":"module"}]},{"Route":"Layout/ReconnectModal.ycbzh0sbjd.razor.js.gz","AssetFile":"Layout/ReconnectModal.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"787"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ycbzh0sbjd"},{"Name":"integrity","Value":"sha256-rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA="},{"Name":"label","Value":"Layout/ReconnectModal.razor.js.gz"}]},{"Route":"OnProfNext.0i02oychrm.modules.json","AssetFile":"OnProfNext.modules.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.008849557522"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"112"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"1KA3582Q2/tA0+cdRJztNonDmZZ3aFTsIlXYblwuK8w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0i02oychrm"},{"Name":"integrity","Value":"sha256-CE+c7ulk9jNoFA+3UHSG2yOt3rfyHQQDAmYZ9fTpBe0="},{"Name":"label","Value":"OnProfNext.modules.json"},{"Name":"original-resource","Value":"\"CE+c7ulk9jNoFA+3UHSG2yOt3rfyHQQDAmYZ9fTpBe0=\""}]},{"Route":"OnProfNext.0i02oychrm.modules.json","AssetFile":"OnProfNext.modules.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"137"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"CE+c7ulk9jNoFA+3UHSG2yOt3rfyHQQDAmYZ9fTpBe0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0i02oychrm"},{"Name":"integrity","Value":"sha256-CE+c7ulk9jNoFA+3UHSG2yOt3rfyHQQDAmYZ9fTpBe0="},{"Name":"label","Value":"OnProfNext.modules.json"}]},{"Route":"OnProfNext.0i02oychrm.modules.json.gz","AssetFile":"OnProfNext.modules.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"112"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"1KA3582Q2/tA0+cdRJztNonDmZZ3aFTsIlXYblwuK8w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0i02oychrm"},{"Name":"integrity","Value":"sha256-1KA3582Q2/tA0+cdRJztNonDmZZ3aFTsIlXYblwuK8w="},{"Name":"label","Value":"OnProfNext.modules.json.gz"}]},{"Route":"OnProfNext.Client.bundle.scp.css","AssetFile":"OnProfNext.Client.uzl7ca9j9c.bundle.scp.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000690131125"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1448"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4="},{"Name":"original-resource","Value":"\"5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4=\""}]},{"Route":"OnProfNext.Client.bundle.scp.css","AssetFile":"OnProfNext.Client.uzl7ca9j9c.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6834"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4="}]},{"Route":"OnProfNext.Client.bundle.scp.css.gz","AssetFile":"OnProfNext.Client.uzl7ca9j9c.bundle.scp.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1448"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o="}]},{"Route":"OnProfNext.Client.uzl7ca9j9c.bundle.scp.css","AssetFile":"OnProfNext.Client.uzl7ca9j9c.bundle.scp.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000690131125"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1448"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uzl7ca9j9c"},{"Name":"integrity","Value":"sha256-5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4="},{"Name":"label","Value":"OnProfNext.Client.bundle.scp.css"},{"Name":"original-resource","Value":"\"5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4=\""}]},{"Route":"OnProfNext.Client.uzl7ca9j9c.bundle.scp.css","AssetFile":"OnProfNext.Client.uzl7ca9j9c.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6834"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uzl7ca9j9c"},{"Name":"integrity","Value":"sha256-5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4="},{"Name":"label","Value":"OnProfNext.Client.bundle.scp.css"}]},{"Route":"OnProfNext.Client.uzl7ca9j9c.bundle.scp.css.gz","AssetFile":"OnProfNext.Client.uzl7ca9j9c.bundle.scp.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1448"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uzl7ca9j9c"},{"Name":"integrity","Value":"sha256-UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o="},{"Name":"label","Value":"OnProfNext.Client.bundle.scp.css.gz"}]},{"Route":"OnProfNext.modules.json","AssetFile":"OnProfNext.modules.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.008849557522"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"112"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"1KA3582Q2/tA0+cdRJztNonDmZZ3aFTsIlXYblwuK8w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CE+c7ulk9jNoFA+3UHSG2yOt3rfyHQQDAmYZ9fTpBe0="},{"Name":"original-resource","Value":"\"CE+c7ulk9jNoFA+3UHSG2yOt3rfyHQQDAmYZ9fTpBe0=\""}]},{"Route":"OnProfNext.modules.json","AssetFile":"OnProfNext.modules.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"137"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"CE+c7ulk9jNoFA+3UHSG2yOt3rfyHQQDAmYZ9fTpBe0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CE+c7ulk9jNoFA+3UHSG2yOt3rfyHQQDAmYZ9fTpBe0="}]},{"Route":"OnProfNext.modules.json.gz","AssetFile":"OnProfNext.modules.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"112"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"1KA3582Q2/tA0+cdRJztNonDmZZ3aFTsIlXYblwuK8w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1KA3582Q2/tA0+cdRJztNonDmZZ3aFTsIlXYblwuK8w="}]},{"Route":"OnProfNext.sif51eb7xk.styles.css","AssetFile":"OnProfNext.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.012658227848"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"78"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"e1xci9FnhjZKLfRTggJi4ZGIrW3ZuGNWybwpVURsUzc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Link","Value":"; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sif51eb7xk"},{"Name":"integrity","Value":"sha256-LBlTGafUdF+7cyLWp5h9/a1ppSj16g8eniJ/4XVjv84="},{"Name":"label","Value":"OnProfNext.styles.css"},{"Name":"original-resource","Value":"\"LBlTGafUdF+7cyLWp5h9/a1ppSj16g8eniJ/4XVjv84=\""}]},{"Route":"OnProfNext.sif51eb7xk.styles.css","AssetFile":"OnProfNext.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"58"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LBlTGafUdF+7cyLWp5h9/a1ppSj16g8eniJ/4XVjv84=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Link","Value":"; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sif51eb7xk"},{"Name":"integrity","Value":"sha256-LBlTGafUdF+7cyLWp5h9/a1ppSj16g8eniJ/4XVjv84="},{"Name":"label","Value":"OnProfNext.styles.css"}]},{"Route":"OnProfNext.sif51eb7xk.styles.css.gz","AssetFile":"OnProfNext.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"78"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"e1xci9FnhjZKLfRTggJi4ZGIrW3ZuGNWybwpVURsUzc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sif51eb7xk"},{"Name":"integrity","Value":"sha256-e1xci9FnhjZKLfRTggJi4ZGIrW3ZuGNWybwpVURsUzc="},{"Name":"label","Value":"OnProfNext.styles.css.gz"}]},{"Route":"OnProfNext.styles.css","AssetFile":"OnProfNext.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.012658227848"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"78"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"e1xci9FnhjZKLfRTggJi4ZGIrW3ZuGNWybwpVURsUzc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Link","Value":"; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LBlTGafUdF+7cyLWp5h9/a1ppSj16g8eniJ/4XVjv84="},{"Name":"original-resource","Value":"\"LBlTGafUdF+7cyLWp5h9/a1ppSj16g8eniJ/4XVjv84=\""}]},{"Route":"OnProfNext.styles.css","AssetFile":"OnProfNext.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"58"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LBlTGafUdF+7cyLWp5h9/a1ppSj16g8eniJ/4XVjv84=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Link","Value":"; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LBlTGafUdF+7cyLWp5h9/a1ppSj16g8eniJ/4XVjv84="}]},{"Route":"OnProfNext.styles.css.gz","AssetFile":"OnProfNext.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"78"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"e1xci9FnhjZKLfRTggJi4ZGIrW3ZuGNWybwpVURsUzc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-e1xci9FnhjZKLfRTggJi4ZGIrW3ZuGNWybwpVURsUzc="}]},{"Route":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js","AssetFile":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1862"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"A8e6zZwhOqf7lDQqbbCYcAUv4wGE9aQxOo4WyYxR//0=\""},{"Name":"Last-Modified","Value":"Wed, 04 Mar 2026 01:26:18 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"dependency-group","Value":"js-initializer"},{"Name":"fingerprint","Value":"99zm1jdh75"},{"Name":"integrity","Value":"sha256-A8e6zZwhOqf7lDQqbbCYcAUv4wGE9aQxOo4WyYxR//0="},{"Name":"label","Value":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js.gz","AssetFile":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"696"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"g7DwAhdgl0oKXmpsFbRzF03rilX1aNUWw1Xnn8Loe4k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-g7DwAhdgl0oKXmpsFbRzF03rilX1aNUWw1Xnn8Loe4k="}]},{"Route":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js","AssetFile":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1862"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"A8e6zZwhOqf7lDQqbbCYcAUv4wGE9aQxOo4WyYxR//0=\""},{"Name":"Last-Modified","Value":"Wed, 04 Mar 2026 01:26:18 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"dependency-group","Value":"js-initializer"},{"Name":"integrity","Value":"sha256-A8e6zZwhOqf7lDQqbbCYcAUv4wGE9aQxOo4WyYxR//0="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js","AssetFile":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001434720230"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"696"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"g7DwAhdgl0oKXmpsFbRzF03rilX1aNUWw1Xnn8Loe4k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"dependency-group","Value":"js-initializer"},{"Name":"integrity","Value":"sha256-A8e6zZwhOqf7lDQqbbCYcAUv4wGE9aQxOo4WyYxR//0="},{"Name":"original-resource","Value":"\"A8e6zZwhOqf7lDQqbbCYcAUv4wGE9aQxOo4WyYxR//0=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/MudBlazor/MudBlazor.min.8dleymzaev.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"64944"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"VHJcGholtUHNobadpTrhyE/VCi90X4p12vYD83bzI04=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:27 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8dleymzaev"},{"Name":"integrity","Value":"sha256-VHJcGholtUHNobadpTrhyE/VCi90X4p12vYD83bzI04="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js"}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"607258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"kBmVfU2BqUZUT8HPz7NUnkObDjxYKbSWXF5q33paHM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kBmVfU2BqUZUT8HPz7NUnkObDjxYKbSWXF5q33paHM0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015266010"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65504"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"3NW/7qanjyyKjmM6tVvxaZsoz0x42qzljiuPWKrKuEA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kBmVfU2BqUZUT8HPz7NUnkObDjxYKbSWXF5q33paHM0="},{"Name":"original-resource","Value":"\"kBmVfU2BqUZUT8HPz7NUnkObDjxYKbSWXF5q33paHM0=\""}]},{"Route":"_content/MudBlazor/MudBlazor.min.css.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65504"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"3NW/7qanjyyKjmM6tVvxaZsoz0x42qzljiuPWKrKuEA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3NW/7qanjyyKjmM6tVvxaZsoz0x42qzljiuPWKrKuEA="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"64944"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"VHJcGholtUHNobadpTrhyE/VCi90X4p12vYD83bzI04=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VHJcGholtUHNobadpTrhyE/VCi90X4p12vYD83bzI04="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000063047727"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15860"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ydhcmXIIRl5uGo/vdFRnFzlF8jEiRYezMmXg9Omen8s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VHJcGholtUHNobadpTrhyE/VCi90X4p12vYD83bzI04="},{"Name":"original-resource","Value":"\"VHJcGholtUHNobadpTrhyE/VCi90X4p12vYD83bzI04=\""}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.0ykner63ol.map","AssetFile":"_content/MudBlazor/MudBlazor.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"236222"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"yAPYxO0UcV5YvjmoVWBh8O+tMbwO9AMZv1RMPdpxE0Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:27 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0ykner63ol"},{"Name":"integrity","Value":"sha256-yAPYxO0UcV5YvjmoVWBh8O+tMbwO9AMZv1RMPdpxE0Q="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js.map"}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15860"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ydhcmXIIRl5uGo/vdFRnFzlF8jEiRYezMmXg9Omen8s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ydhcmXIIRl5uGo/vdFRnFzlF8jEiRYezMmXg9Omen8s="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.map","AssetFile":"_content/MudBlazor/MudBlazor.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"236222"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"yAPYxO0UcV5YvjmoVWBh8O+tMbwO9AMZv1RMPdpxE0Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yAPYxO0UcV5YvjmoVWBh8O+tMbwO9AMZv1RMPdpxE0Q="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.map","AssetFile":"_content/MudBlazor/MudBlazor.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000019868471"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"50330"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YnlPux4qBuGLWhihs+JuLReInvzFXtqDTWrJOmgWE5Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yAPYxO0UcV5YvjmoVWBh8O+tMbwO9AMZv1RMPdpxE0Q="},{"Name":"original-resource","Value":"\"yAPYxO0UcV5YvjmoVWBh8O+tMbwO9AMZv1RMPdpxE0Q=\""}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.map.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"50330"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YnlPux4qBuGLWhihs+JuLReInvzFXtqDTWrJOmgWE5Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YnlPux4qBuGLWhihs+JuLReInvzFXtqDTWrJOmgWE5Y="}]},{"Route":"_content/MudBlazor/MudBlazor.min.o2b68hjqqd.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"607258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"kBmVfU2BqUZUT8HPz7NUnkObDjxYKbSWXF5q33paHM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:28 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"o2b68hjqqd"},{"Name":"integrity","Value":"sha256-kBmVfU2BqUZUT8HPz7NUnkObDjxYKbSWXF5q33paHM0="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.css"}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"45333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"roqc1km2rj"},{"Name":"integrity","Value":"sha256-G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Authorization.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000050676532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"roqc1km2rj"},{"Name":"integrity","Value":"sha256-G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Authorization.wasm"},{"Name":"original-resource","Value":"\"G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"roqc1km2rj"},{"Name":"integrity","Value":"sha256-6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Authorization.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"45333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc="}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000050676532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc="},{"Name":"original-resource","Value":"\"G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000057547333"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17376"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ="},{"Name":"original-resource","Value":"\"sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17376"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zrueb40r85"},{"Name":"integrity","Value":"sha256-sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Forms.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000057547333"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17376"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zrueb40r85"},{"Name":"integrity","Value":"sha256-sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Forms.wasm"},{"Name":"original-resource","Value":"\"sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17376"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zrueb40r85"},{"Name":"integrity","Value":"sha256-FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Forms.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"178965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g5qdp1mxha"},{"Name":"integrity","Value":"sha256-XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Web.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013971749"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"71572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g5qdp1mxha"},{"Name":"integrity","Value":"sha256-XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Web.wasm"},{"Name":"original-resource","Value":"\"XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"71572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g5qdp1mxha"},{"Name":"integrity","Value":"sha256-Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Web.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"178965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013971749"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"71572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU="},{"Name":"original-resource","Value":"\"XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"71572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"155925"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9mjwvs1qyp"},{"Name":"integrity","Value":"sha256-r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000016249330"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"61540"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9mjwvs1qyp"},{"Name":"integrity","Value":"sha256-r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm"},{"Name":"original-resource","Value":"\"r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"61540"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9mjwvs1qyp"},{"Name":"integrity","Value":"sha256-WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"155925"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000016249330"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"61540"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4="},{"Name":"original-resource","Value":"\"r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"61540"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"388885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uddsvpv1sv"},{"Name":"integrity","Value":"sha256-wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006481638"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"154281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uddsvpv1sv"},{"Name":"integrity","Value":"sha256-wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.wasm"},{"Name":"original-resource","Value":"\"wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"154281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uddsvpv1sv"},{"Name":"integrity","Value":"sha256-1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"388885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006481638"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"154281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4="},{"Name":"original-resource","Value":"\"wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"154281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk="}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m3mxap0jif"},{"Name":"integrity","Value":"sha256-3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Metadata.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000405350628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2466"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m3mxap0jif"},{"Name":"integrity","Value":"sha256-3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Metadata.wasm"},{"Name":"original-resource","Value":"\"3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2466"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m3mxap0jif"},{"Name":"integrity","Value":"sha256-NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Metadata.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ="}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.wasm","AssetFile":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000405350628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2466"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ="},{"Name":"original-resource","Value":"\"3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.wasm.gz","AssetFile":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2466"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU="}]},{"Route":"_framework/Microsoft.CSharp.452y5fjxmv.wasm","AssetFile":"_framework/Microsoft.CSharp.452y5fjxmv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"301333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"452y5fjxmv"},{"Name":"integrity","Value":"sha256-qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g="},{"Name":"label","Value":"_framework/Microsoft.CSharp.wasm"}]},{"Route":"_framework/Microsoft.CSharp.452y5fjxmv.wasm","AssetFile":"_framework/Microsoft.CSharp.452y5fjxmv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000007583628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"131862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"452y5fjxmv"},{"Name":"integrity","Value":"sha256-qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g="},{"Name":"label","Value":"_framework/Microsoft.CSharp.wasm"},{"Name":"original-resource","Value":"\"qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g=\""}]},{"Route":"_framework/Microsoft.CSharp.452y5fjxmv.wasm.gz","AssetFile":"_framework/Microsoft.CSharp.452y5fjxmv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"131862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"452y5fjxmv"},{"Name":"integrity","Value":"sha256-SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU="},{"Name":"label","Value":"_framework/Microsoft.CSharp.wasm.gz"}]},{"Route":"_framework/Microsoft.CSharp.wasm","AssetFile":"_framework/Microsoft.CSharp.452y5fjxmv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"301333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g="}]},{"Route":"_framework/Microsoft.CSharp.wasm","AssetFile":"_framework/Microsoft.CSharp.452y5fjxmv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000007583628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"131862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g="},{"Name":"original-resource","Value":"\"qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g=\""}]},{"Route":"_framework/Microsoft.CSharp.wasm.gz","AssetFile":"_framework/Microsoft.CSharp.452y5fjxmv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"131862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU="}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm","AssetFile":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"56085"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrhwg3a64c"},{"Name":"integrity","Value":"sha256-7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU="},{"Name":"label","Value":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm"}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm","AssetFile":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040950041"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrhwg3a64c"},{"Name":"integrity","Value":"sha256-7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU="},{"Name":"label","Value":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm"},{"Name":"original-resource","Value":"\"7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU=\""}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm.gz","AssetFile":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrhwg3a64c"},{"Name":"integrity","Value":"sha256-2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw="},{"Name":"label","Value":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz"}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm","AssetFile":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"56085"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU="}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm","AssetFile":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040950041"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU="},{"Name":"original-resource","Value":"\"7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU=\""}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz","AssetFile":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"thew1o6jcx"},{"Name":"integrity","Value":"sha256-YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000123502532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8096"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"thew1o6jcx"},{"Name":"integrity","Value":"sha256-YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm"},{"Name":"original-resource","Value":"\"YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8096"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"thew1o6jcx"},{"Name":"integrity","Value":"sha256-TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000123502532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8096"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0="},{"Name":"original-resource","Value":"\"YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8096"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"33045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7o70008j8o"},{"Name":"integrity","Value":"sha256-KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Binder.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000070556692"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14172"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7o70008j8o"},{"Name":"integrity","Value":"sha256-KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Binder.wasm"},{"Name":"original-resource","Value":"\"KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14172"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7o70008j8o"},{"Name":"integrity","Value":"sha256-c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Binder.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"33045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000070556692"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14172"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70="},{"Name":"original-resource","Value":"\"KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14172"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ouivavlhyy"},{"Name":"integrity","Value":"sha256-MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000125219133"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7985"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ouivavlhyy"},{"Name":"integrity","Value":"sha256-MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm"},{"Name":"original-resource","Value":"\"MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7985"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ouivavlhyy"},{"Name":"integrity","Value":"sha256-a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000125219133"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7985"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8="},{"Name":"original-resource","Value":"\"MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7985"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"17685"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"giv4t23za9"},{"Name":"integrity","Value":"sha256-iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Json.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000127177922"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"giv4t23za9"},{"Name":"integrity","Value":"sha256-iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Json.wasm"},{"Name":"original-resource","Value":"\"iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"giv4t23za9"},{"Name":"integrity","Value":"sha256-kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Json.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"17685"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000127177922"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg="},{"Name":"original-resource","Value":"\"iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fgwnqtu7qk"},{"Name":"integrity","Value":"sha256-D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000064616180"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15475"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fgwnqtu7qk"},{"Name":"integrity","Value":"sha256-D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.wasm"},{"Name":"original-resource","Value":"\"D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15475"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fgwnqtu7qk"},{"Name":"integrity","Value":"sha256-bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.wasm","AssetFile":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000064616180"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15475"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY="},{"Name":"original-resource","Value":"\"D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15475"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0="}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ud13mwbta3"},{"Name":"integrity","Value":"sha256-PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000046012976"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ud13mwbta3"},{"Name":"integrity","Value":"sha256-PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm"},{"Name":"original-resource","Value":"\"PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM=\""}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ud13mwbta3"},{"Name":"integrity","Value":"sha256-UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM="}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000046012976"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM="},{"Name":"original-resource","Value":"\"PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM=\""}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU="}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"85269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vs620n44bv"},{"Name":"integrity","Value":"sha256-EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.wasm"}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000027365771"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"36541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vs620n44bv"},{"Name":"integrity","Value":"sha256-EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.wasm"},{"Name":"original-resource","Value":"\"EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ=\""}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"36541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vs620n44bv"},{"Name":"integrity","Value":"sha256-KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"85269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ="}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.wasm","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000027365771"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"36541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ="},{"Name":"original-resource","Value":"\"EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ=\""}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"36541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA="}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"20757"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v59ymogeuz"},{"Name":"integrity","Value":"sha256-4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000116468670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8585"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v59ymogeuz"},{"Name":"integrity","Value":"sha256-4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm"},{"Name":"original-resource","Value":"\"4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA=\""}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8585"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v59ymogeuz"},{"Name":"integrity","Value":"sha256-q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"20757"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA="}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000116468670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8585"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA="},{"Name":"original-resource","Value":"\"4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA=\""}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8585"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4="}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"25877"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jnogfbng3i"},{"Name":"integrity","Value":"sha256-MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000082706145"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12090"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jnogfbng3i"},{"Name":"integrity","Value":"sha256-MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.wasm"},{"Name":"original-resource","Value":"\"MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo=\""}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12090"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jnogfbng3i"},{"Name":"integrity","Value":"sha256-UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"25877"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo="}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.wasm","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000082706145"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12090"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo="},{"Name":"original-resource","Value":"\"MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo=\""}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12090"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk="}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ssv83rveyv"},{"Name":"integrity","Value":"sha256-/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000176897223"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5652"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ssv83rveyv"},{"Name":"integrity","Value":"sha256-/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm"},{"Name":"original-resource","Value":"\"/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8=\""}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5652"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ssv83rveyv"},{"Name":"integrity","Value":"sha256-kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8="}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000176897223"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5652"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8="},{"Name":"original-resource","Value":"\"/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8=\""}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5652"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4="}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"35093"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8gz29xpyh3"},{"Name":"integrity","Value":"sha256-CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm"}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060793969"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16448"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8gz29xpyh3"},{"Name":"integrity","Value":"sha256-CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm"},{"Name":"original-resource","Value":"\"CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0=\""}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16448"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8gz29xpyh3"},{"Name":"integrity","Value":"sha256-RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"35093"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0="}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060793969"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16448"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0="},{"Name":"original-resource","Value":"\"CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0=\""}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16448"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo="}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm","AssetFile":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozuva4e3vv"},{"Name":"integrity","Value":"sha256-pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm"}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm","AssetFile":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000058941412"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozuva4e3vv"},{"Name":"integrity","Value":"sha256-pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm"},{"Name":"original-resource","Value":"\"pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI=\""}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozuva4e3vv"},{"Name":"integrity","Value":"sha256-QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm","AssetFile":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI="}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm","AssetFile":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000058941412"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI="},{"Name":"original-resource","Value":"\"pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI=\""}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY="}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"8981"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6jkolue1ka"},{"Name":"integrity","Value":"sha256-8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000261164795"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6jkolue1ka"},{"Name":"integrity","Value":"sha256-8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm"},{"Name":"original-resource","Value":"\"8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4=\""}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6jkolue1ka"},{"Name":"integrity","Value":"sha256-5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"8981"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4="}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000261164795"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4="},{"Name":"original-resource","Value":"\"8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4=\""}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8="}]},{"Route":"_framework/Microsoft.Extensions.Localization.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"21269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs="}]},{"Route":"_framework/Microsoft.Extensions.Localization.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000100050025"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9994"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs="},{"Name":"original-resource","Value":"\"L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs=\""}]},{"Route":"_framework/Microsoft.Extensions.Localization.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9994"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM="}]},{"Route":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"21269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xcslyy3nju"},{"Name":"integrity","Value":"sha256-L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm","AssetFile":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000100050025"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9994"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xcslyy3nju"},{"Name":"integrity","Value":"sha256-L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.wasm"},{"Name":"original-resource","Value":"\"L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs=\""}]},{"Route":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9994"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xcslyy3nju"},{"Name":"integrity","Value":"sha256-LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"56597"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1q3x7vre4l"},{"Name":"integrity","Value":"sha256-5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040832993"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1q3x7vre4l"},{"Name":"integrity","Value":"sha256-5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm"},{"Name":"original-resource","Value":"\"5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI=\""}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1q3x7vre4l"},{"Name":"integrity","Value":"sha256-wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"56597"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI="}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040832993"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI="},{"Name":"original-resource","Value":"\"5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI=\""}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo="}]},{"Route":"_framework/Microsoft.Extensions.Logging.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"41237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis="}]},{"Route":"_framework/Microsoft.Extensions.Logging.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053708577"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18618"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis="},{"Name":"original-resource","Value":"\"7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis=\""}]},{"Route":"_framework/Microsoft.Extensions.Logging.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18618"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q="}]},{"Route":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"41237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y4ydx3rk2c"},{"Name":"integrity","Value":"sha256-7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm","AssetFile":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053708577"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18618"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y4ydx3rk2c"},{"Name":"integrity","Value":"sha256-7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.wasm"},{"Name":"original-resource","Value":"\"7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis=\""}]},{"Route":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18618"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y4ydx3rk2c"},{"Name":"integrity","Value":"sha256-CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55061"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2rz5zbidnd"},{"Name":"integrity","Value":"sha256-PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000042529664"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23512"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2rz5zbidnd"},{"Name":"integrity","Value":"sha256-PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.wasm"},{"Name":"original-resource","Value":"\"PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY=\""}]},{"Route":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23512"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2rz5zbidnd"},{"Name":"integrity","Value":"sha256-nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U="}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000196001568"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U="},{"Name":"original-resource","Value":"\"652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U=\""}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I="}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zmb03w0weu"},{"Name":"integrity","Value":"sha256-652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000196001568"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zmb03w0weu"},{"Name":"integrity","Value":"sha256-652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm"},{"Name":"original-resource","Value":"\"652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U=\""}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zmb03w0weu"},{"Name":"integrity","Value":"sha256-i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Options.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"55061"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY="}]},{"Route":"_framework/Microsoft.Extensions.Options.wasm","AssetFile":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000042529664"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23512"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY="},{"Name":"original-resource","Value":"\"PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY=\""}]},{"Route":"_framework/Microsoft.Extensions.Options.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23512"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4="}]},{"Route":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm","AssetFile":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bd164v6l3f"},{"Name":"integrity","Value":"sha256-b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Primitives.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm","AssetFile":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000065582371"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15247"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bd164v6l3f"},{"Name":"integrity","Value":"sha256-b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Primitives.wasm"},{"Name":"original-resource","Value":"\"b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo=\""}]},{"Route":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15247"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bd164v6l3f"},{"Name":"integrity","Value":"sha256-WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Primitives.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Primitives.wasm","AssetFile":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo="}]},{"Route":"_framework/Microsoft.Extensions.Primitives.wasm","AssetFile":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000065582371"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15247"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo="},{"Name":"original-resource","Value":"\"b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo=\""}]},{"Route":"_framework/Microsoft.Extensions.Primitives.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15247"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8="}]},{"Route":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm","AssetFile":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"33045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r1sv3m5lsf"},{"Name":"integrity","Value":"sha256-QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Validation.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm","AssetFile":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000069232899"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14443"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r1sv3m5lsf"},{"Name":"integrity","Value":"sha256-QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Validation.wasm"},{"Name":"original-resource","Value":"\"QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk=\""}]},{"Route":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14443"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r1sv3m5lsf"},{"Name":"integrity","Value":"sha256-4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Validation.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Validation.wasm","AssetFile":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"33045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk="}]},{"Route":"_framework/Microsoft.Extensions.Validation.wasm","AssetFile":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000069232899"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14443"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk="},{"Name":"original-resource","Value":"\"QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk=\""}]},{"Route":"_framework/Microsoft.Extensions.Validation.wasm.gz","AssetFile":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14443"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0="}]},{"Route":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm","AssetFile":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"64789"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1r0ampr2q1"},{"Name":"integrity","Value":"sha256-TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.wasm"}]},{"Route":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm","AssetFile":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000036331928"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"27523"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1r0ampr2q1"},{"Name":"integrity","Value":"sha256-TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.wasm"},{"Name":"original-resource","Value":"\"TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA=\""}]},{"Route":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm.gz","AssetFile":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"27523"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1r0ampr2q1"},{"Name":"integrity","Value":"sha256-5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.wasm.gz"}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm","AssetFile":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"14613"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oz8fkrrrd6"},{"Name":"integrity","Value":"sha256-vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.WebAssembly.wasm"}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm","AssetFile":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000145730108"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oz8fkrrrd6"},{"Name":"integrity","Value":"sha256-vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.WebAssembly.wasm"},{"Name":"original-resource","Value":"\"vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU=\""}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm.gz","AssetFile":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oz8fkrrrd6"},{"Name":"integrity","Value":"sha256-50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.WebAssembly.wasm.gz"}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.wasm","AssetFile":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"14613"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU="}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.wasm","AssetFile":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000145730108"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU="},{"Name":"original-resource","Value":"\"vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU=\""}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.wasm.gz","AssetFile":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA="}]},{"Route":"_framework/Microsoft.JSInterop.wasm","AssetFile":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"64789"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA="}]},{"Route":"_framework/Microsoft.JSInterop.wasm","AssetFile":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000036331928"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"27523"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA="},{"Name":"original-resource","Value":"\"TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA=\""}]},{"Route":"_framework/Microsoft.JSInterop.wasm.gz","AssetFile":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"27523"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0="}]},{"Route":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm","AssetFile":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"91iw3j3d9p"},{"Name":"integrity","Value":"sha256-TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.wasm"}]},{"Route":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm","AssetFile":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000349162011"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2863"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"91iw3j3d9p"},{"Name":"integrity","Value":"sha256-TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.wasm"},{"Name":"original-resource","Value":"\"TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM=\""}]},{"Route":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm.gz","AssetFile":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2863"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"91iw3j3d9p"},{"Name":"integrity","Value":"sha256-O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.wasm.gz"}]},{"Route":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm","AssetFile":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"418581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"re3geseai5"},{"Name":"integrity","Value":"sha256-vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.Core.wasm"}]},{"Route":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm","AssetFile":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005991109"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"166913"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"re3geseai5"},{"Name":"integrity","Value":"sha256-vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.Core.wasm"},{"Name":"original-resource","Value":"\"vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0=\""}]},{"Route":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm.gz","AssetFile":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"166913"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"re3geseai5"},{"Name":"integrity","Value":"sha256-09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.Core.wasm.gz"}]},{"Route":"_framework/Microsoft.VisualBasic.Core.wasm","AssetFile":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"418581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0="}]},{"Route":"_framework/Microsoft.VisualBasic.Core.wasm","AssetFile":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005991109"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"166913"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0="},{"Name":"original-resource","Value":"\"vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0=\""}]},{"Route":"_framework/Microsoft.VisualBasic.Core.wasm.gz","AssetFile":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"166913"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc="}]},{"Route":"_framework/Microsoft.VisualBasic.wasm","AssetFile":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM="}]},{"Route":"_framework/Microsoft.VisualBasic.wasm","AssetFile":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000349162011"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2863"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM="},{"Name":"original-resource","Value":"\"TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM=\""}]},{"Route":"_framework/Microsoft.VisualBasic.wasm.gz","AssetFile":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2863"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as="}]},{"Route":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm","AssetFile":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mjytoh92q"},{"Name":"integrity","Value":"sha256-NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM="},{"Name":"label","Value":"_framework/Microsoft.Win32.Primitives.wasm"}]},{"Route":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm","AssetFile":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000451059991"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2216"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mjytoh92q"},{"Name":"integrity","Value":"sha256-NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM="},{"Name":"label","Value":"_framework/Microsoft.Win32.Primitives.wasm"},{"Name":"original-resource","Value":"\"NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM=\""}]},{"Route":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm.gz","AssetFile":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2216"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mjytoh92q"},{"Name":"integrity","Value":"sha256-JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As="},{"Name":"label","Value":"_framework/Microsoft.Win32.Primitives.wasm.gz"}]},{"Route":"_framework/Microsoft.Win32.Primitives.wasm","AssetFile":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM="}]},{"Route":"_framework/Microsoft.Win32.Primitives.wasm","AssetFile":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000451059991"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2216"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM="},{"Name":"original-resource","Value":"\"NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM=\""}]},{"Route":"_framework/Microsoft.Win32.Primitives.wasm.gz","AssetFile":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2216"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As="}]},{"Route":"_framework/Microsoft.Win32.Registry.wasm","AssetFile":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU="}]},{"Route":"_framework/Microsoft.Win32.Registry.wasm","AssetFile":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000109733348"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9112"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU="},{"Name":"original-resource","Value":"\"sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU=\""}]},{"Route":"_framework/Microsoft.Win32.Registry.wasm.gz","AssetFile":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9112"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk="}]},{"Route":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm","AssetFile":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yz8nt3ycsq"},{"Name":"integrity","Value":"sha256-sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU="},{"Name":"label","Value":"_framework/Microsoft.Win32.Registry.wasm"}]},{"Route":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm","AssetFile":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000109733348"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9112"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yz8nt3ycsq"},{"Name":"integrity","Value":"sha256-sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU="},{"Name":"label","Value":"_framework/Microsoft.Win32.Registry.wasm"},{"Name":"original-resource","Value":"\"sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU=\""}]},{"Route":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm.gz","AssetFile":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9112"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yz8nt3ycsq"},{"Name":"integrity","Value":"sha256-gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk="},{"Name":"label","Value":"_framework/Microsoft.Win32.Registry.wasm.gz"}]},{"Route":"_framework/MudBlazor.k6079czmkm.wasm","AssetFile":"_framework/MudBlazor.k6079czmkm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10119449"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6079czmkm"},{"Name":"integrity","Value":"sha256-rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI="},{"Name":"label","Value":"_framework/MudBlazor.wasm"}]},{"Route":"_framework/MudBlazor.k6079czmkm.wasm","AssetFile":"_framework/MudBlazor.k6079czmkm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000444516"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2249638"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6079czmkm"},{"Name":"integrity","Value":"sha256-rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI="},{"Name":"label","Value":"_framework/MudBlazor.wasm"},{"Name":"original-resource","Value":"\"rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI=\""}]},{"Route":"_framework/MudBlazor.k6079czmkm.wasm.gz","AssetFile":"_framework/MudBlazor.k6079czmkm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2249638"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6079czmkm"},{"Name":"integrity","Value":"sha256-dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM="},{"Name":"label","Value":"_framework/MudBlazor.wasm.gz"}]},{"Route":"_framework/MudBlazor.wasm","AssetFile":"_framework/MudBlazor.k6079czmkm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10119449"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI="}]},{"Route":"_framework/MudBlazor.wasm","AssetFile":"_framework/MudBlazor.k6079czmkm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000444516"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2249638"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI="},{"Name":"original-resource","Value":"\"rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI=\""}]},{"Route":"_framework/MudBlazor.wasm.gz","AssetFile":"_framework/MudBlazor.k6079czmkm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2249638"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM="}]},{"Route":"_framework/OnProfNext.Client.lplk7v275j.pdb","AssetFile":"_framework/OnProfNext.Client.lplk7v275j.pdb","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"33624"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lplk7v275j"},{"Name":"integrity","Value":"sha256-FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0="},{"Name":"label","Value":"_framework/OnProfNext.Client.pdb"}]},{"Route":"_framework/OnProfNext.Client.lplk7v275j.pdb","AssetFile":"_framework/OnProfNext.Client.lplk7v275j.pdb.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038227761"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26158"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lplk7v275j"},{"Name":"integrity","Value":"sha256-FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0="},{"Name":"label","Value":"_framework/OnProfNext.Client.pdb"},{"Name":"original-resource","Value":"\"FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0=\""}]},{"Route":"_framework/OnProfNext.Client.lplk7v275j.pdb.gz","AssetFile":"_framework/OnProfNext.Client.lplk7v275j.pdb.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26158"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lplk7v275j"},{"Name":"integrity","Value":"sha256-4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU="},{"Name":"label","Value":"_framework/OnProfNext.Client.pdb.gz"}]},{"Route":"_framework/OnProfNext.Client.pdb","AssetFile":"_framework/OnProfNext.Client.lplk7v275j.pdb","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"33624"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0="}]},{"Route":"_framework/OnProfNext.Client.pdb","AssetFile":"_framework/OnProfNext.Client.lplk7v275j.pdb.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038227761"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26158"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0="},{"Name":"original-resource","Value":"\"FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0=\""}]},{"Route":"_framework/OnProfNext.Client.pdb.gz","AssetFile":"_framework/OnProfNext.Client.lplk7v275j.pdb.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26158"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU="}]},{"Route":"_framework/OnProfNext.Client.wasm","AssetFile":"_framework/OnProfNext.Client.xhq6acanj0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"42261"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc="}]},{"Route":"_framework/OnProfNext.Client.wasm","AssetFile":"_framework/OnProfNext.Client.xhq6acanj0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067344602"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14848"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc="},{"Name":"original-resource","Value":"\"pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc=\""}]},{"Route":"_framework/OnProfNext.Client.wasm.gz","AssetFile":"_framework/OnProfNext.Client.xhq6acanj0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14848"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA="}]},{"Route":"_framework/OnProfNext.Client.xhq6acanj0.wasm","AssetFile":"_framework/OnProfNext.Client.xhq6acanj0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"42261"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xhq6acanj0"},{"Name":"integrity","Value":"sha256-pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc="},{"Name":"label","Value":"_framework/OnProfNext.Client.wasm"}]},{"Route":"_framework/OnProfNext.Client.xhq6acanj0.wasm","AssetFile":"_framework/OnProfNext.Client.xhq6acanj0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067344602"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14848"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xhq6acanj0"},{"Name":"integrity","Value":"sha256-pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc="},{"Name":"label","Value":"_framework/OnProfNext.Client.wasm"},{"Name":"original-resource","Value":"\"pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc=\""}]},{"Route":"_framework/OnProfNext.Client.xhq6acanj0.wasm.gz","AssetFile":"_framework/OnProfNext.Client.xhq6acanj0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14848"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xhq6acanj0"},{"Name":"integrity","Value":"sha256-UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA="},{"Name":"label","Value":"_framework/OnProfNext.Client.wasm.gz"}]},{"Route":"_framework/System.7rk3uansaa.wasm","AssetFile":"_framework/System.7rk3uansaa.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"39701"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7rk3uansaa"},{"Name":"integrity","Value":"sha256-00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q="},{"Name":"label","Value":"_framework/System.wasm"}]},{"Route":"_framework/System.7rk3uansaa.wasm","AssetFile":"_framework/System.7rk3uansaa.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000084875233"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7rk3uansaa"},{"Name":"integrity","Value":"sha256-00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q="},{"Name":"label","Value":"_framework/System.wasm"},{"Name":"original-resource","Value":"\"00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q=\""}]},{"Route":"_framework/System.7rk3uansaa.wasm.gz","AssetFile":"_framework/System.7rk3uansaa.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7rk3uansaa"},{"Name":"integrity","Value":"sha256-KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI="},{"Name":"label","Value":"_framework/System.wasm.gz"}]},{"Route":"_framework/System.AppContext.uwq3fpef1w.wasm","AssetFile":"_framework/System.AppContext.uwq3fpef1w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uwq3fpef1w"},{"Name":"integrity","Value":"sha256-/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA="},{"Name":"label","Value":"_framework/System.AppContext.wasm"}]},{"Route":"_framework/System.AppContext.uwq3fpef1w.wasm","AssetFile":"_framework/System.AppContext.uwq3fpef1w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000472589792"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2115"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uwq3fpef1w"},{"Name":"integrity","Value":"sha256-/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA="},{"Name":"label","Value":"_framework/System.AppContext.wasm"},{"Name":"original-resource","Value":"\"/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA=\""}]},{"Route":"_framework/System.AppContext.uwq3fpef1w.wasm.gz","AssetFile":"_framework/System.AppContext.uwq3fpef1w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2115"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uwq3fpef1w"},{"Name":"integrity","Value":"sha256-Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8="},{"Name":"label","Value":"_framework/System.AppContext.wasm.gz"}]},{"Route":"_framework/System.AppContext.wasm","AssetFile":"_framework/System.AppContext.uwq3fpef1w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA="}]},{"Route":"_framework/System.AppContext.wasm","AssetFile":"_framework/System.AppContext.uwq3fpef1w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000472589792"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2115"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA="},{"Name":"original-resource","Value":"\"/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA=\""}]},{"Route":"_framework/System.AppContext.wasm.gz","AssetFile":"_framework/System.AppContext.uwq3fpef1w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2115"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8="}]},{"Route":"_framework/System.Buffers.m4yhcvz2y2.wasm","AssetFile":"_framework/System.Buffers.m4yhcvz2y2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m4yhcvz2y2"},{"Name":"integrity","Value":"sha256-+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g="},{"Name":"label","Value":"_framework/System.Buffers.wasm"}]},{"Route":"_framework/System.Buffers.m4yhcvz2y2.wasm","AssetFile":"_framework/System.Buffers.m4yhcvz2y2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000472143532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2117"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m4yhcvz2y2"},{"Name":"integrity","Value":"sha256-+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g="},{"Name":"label","Value":"_framework/System.Buffers.wasm"},{"Name":"original-resource","Value":"\"+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g=\""}]},{"Route":"_framework/System.Buffers.m4yhcvz2y2.wasm.gz","AssetFile":"_framework/System.Buffers.m4yhcvz2y2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2117"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m4yhcvz2y2"},{"Name":"integrity","Value":"sha256-Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g="},{"Name":"label","Value":"_framework/System.Buffers.wasm.gz"}]},{"Route":"_framework/System.Buffers.wasm","AssetFile":"_framework/System.Buffers.m4yhcvz2y2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g="}]},{"Route":"_framework/System.Buffers.wasm","AssetFile":"_framework/System.Buffers.m4yhcvz2y2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000472143532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2117"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g="},{"Name":"original-resource","Value":"\"+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g=\""}]},{"Route":"_framework/System.Buffers.wasm.gz","AssetFile":"_framework/System.Buffers.m4yhcvz2y2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2117"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g="}]},{"Route":"_framework/System.Collections.63jrcion39.wasm","AssetFile":"_framework/System.Collections.63jrcion39.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"102677"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63jrcion39"},{"Name":"integrity","Value":"sha256-Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg="},{"Name":"label","Value":"_framework/System.Collections.wasm"}]},{"Route":"_framework/System.Collections.63jrcion39.wasm","AssetFile":"_framework/System.Collections.63jrcion39.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023100023"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"43289"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63jrcion39"},{"Name":"integrity","Value":"sha256-Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg="},{"Name":"label","Value":"_framework/System.Collections.wasm"},{"Name":"original-resource","Value":"\"Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg=\""}]},{"Route":"_framework/System.Collections.63jrcion39.wasm.gz","AssetFile":"_framework/System.Collections.63jrcion39.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"43289"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63jrcion39"},{"Name":"integrity","Value":"sha256-vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU="},{"Name":"label","Value":"_framework/System.Collections.wasm.gz"}]},{"Route":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm","AssetFile":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"78613"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1zv6wuzklu"},{"Name":"integrity","Value":"sha256-XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw="},{"Name":"label","Value":"_framework/System.Collections.Concurrent.wasm"}]},{"Route":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm","AssetFile":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029696502"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33673"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1zv6wuzklu"},{"Name":"integrity","Value":"sha256-XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw="},{"Name":"label","Value":"_framework/System.Collections.Concurrent.wasm"},{"Name":"original-resource","Value":"\"XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw=\""}]},{"Route":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm.gz","AssetFile":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33673"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1zv6wuzklu"},{"Name":"integrity","Value":"sha256-LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU="},{"Name":"label","Value":"_framework/System.Collections.Concurrent.wasm.gz"}]},{"Route":"_framework/System.Collections.Concurrent.wasm","AssetFile":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"78613"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw="}]},{"Route":"_framework/System.Collections.Concurrent.wasm","AssetFile":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029696502"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33673"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw="},{"Name":"original-resource","Value":"\"XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw=\""}]},{"Route":"_framework/System.Collections.Concurrent.wasm.gz","AssetFile":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33673"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU="}]},{"Route":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm","AssetFile":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"240917"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6uzpuv4o5d"},{"Name":"integrity","Value":"sha256-UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE="},{"Name":"label","Value":"_framework/System.Collections.Immutable.wasm"}]},{"Route":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm","AssetFile":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010198462"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"98053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6uzpuv4o5d"},{"Name":"integrity","Value":"sha256-UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE="},{"Name":"label","Value":"_framework/System.Collections.Immutable.wasm"},{"Name":"original-resource","Value":"\"UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE=\""}]},{"Route":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm.gz","AssetFile":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"98053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6uzpuv4o5d"},{"Name":"integrity","Value":"sha256-FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI="},{"Name":"label","Value":"_framework/System.Collections.Immutable.wasm.gz"}]},{"Route":"_framework/System.Collections.Immutable.wasm","AssetFile":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"240917"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE="}]},{"Route":"_framework/System.Collections.Immutable.wasm","AssetFile":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010198462"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"98053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE="},{"Name":"original-resource","Value":"\"UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE=\""}]},{"Route":"_framework/System.Collections.Immutable.wasm.gz","AssetFile":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"98053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI="}]},{"Route":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm","AssetFile":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k5rgagff9o"},{"Name":"integrity","Value":"sha256-eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q="},{"Name":"label","Value":"_framework/System.Collections.NonGeneric.wasm"}]},{"Route":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm","AssetFile":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067944014"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14717"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k5rgagff9o"},{"Name":"integrity","Value":"sha256-eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q="},{"Name":"label","Value":"_framework/System.Collections.NonGeneric.wasm"},{"Name":"original-resource","Value":"\"eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q=\""}]},{"Route":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm.gz","AssetFile":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14717"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k5rgagff9o"},{"Name":"integrity","Value":"sha256-RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M="},{"Name":"label","Value":"_framework/System.Collections.NonGeneric.wasm.gz"}]},{"Route":"_framework/System.Collections.NonGeneric.wasm","AssetFile":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q="}]},{"Route":"_framework/System.Collections.NonGeneric.wasm","AssetFile":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067944014"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14717"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q="},{"Name":"original-resource","Value":"\"eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q=\""}]},{"Route":"_framework/System.Collections.NonGeneric.wasm.gz","AssetFile":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14717"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M="}]},{"Route":"_framework/System.Collections.Specialized.84wojkejb4.wasm","AssetFile":"_framework/System.Collections.Specialized.84wojkejb4.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"84wojkejb4"},{"Name":"integrity","Value":"sha256-mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74="},{"Name":"label","Value":"_framework/System.Collections.Specialized.wasm"}]},{"Route":"_framework/System.Collections.Specialized.84wojkejb4.wasm","AssetFile":"_framework/System.Collections.Specialized.84wojkejb4.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061218243"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16334"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"84wojkejb4"},{"Name":"integrity","Value":"sha256-mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74="},{"Name":"label","Value":"_framework/System.Collections.Specialized.wasm"},{"Name":"original-resource","Value":"\"mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74=\""}]},{"Route":"_framework/System.Collections.Specialized.84wojkejb4.wasm.gz","AssetFile":"_framework/System.Collections.Specialized.84wojkejb4.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16334"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"84wojkejb4"},{"Name":"integrity","Value":"sha256-iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0="},{"Name":"label","Value":"_framework/System.Collections.Specialized.wasm.gz"}]},{"Route":"_framework/System.Collections.Specialized.wasm","AssetFile":"_framework/System.Collections.Specialized.84wojkejb4.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74="}]},{"Route":"_framework/System.Collections.Specialized.wasm","AssetFile":"_framework/System.Collections.Specialized.84wojkejb4.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061218243"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16334"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74="},{"Name":"original-resource","Value":"\"mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74=\""}]},{"Route":"_framework/System.Collections.Specialized.wasm.gz","AssetFile":"_framework/System.Collections.Specialized.84wojkejb4.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16334"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0="}]},{"Route":"_framework/System.Collections.wasm","AssetFile":"_framework/System.Collections.63jrcion39.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"102677"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg="}]},{"Route":"_framework/System.Collections.wasm","AssetFile":"_framework/System.Collections.63jrcion39.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023100023"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"43289"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg="},{"Name":"original-resource","Value":"\"Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg=\""}]},{"Route":"_framework/System.Collections.wasm.gz","AssetFile":"_framework/System.Collections.63jrcion39.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"43289"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU="}]},{"Route":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm","AssetFile":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"92437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cjsvkufomv"},{"Name":"integrity","Value":"sha256-yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg="},{"Name":"label","Value":"_framework/System.ComponentModel.Annotations.wasm"}]},{"Route":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm","AssetFile":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000027950137"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cjsvkufomv"},{"Name":"integrity","Value":"sha256-yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg="},{"Name":"label","Value":"_framework/System.ComponentModel.Annotations.wasm"},{"Name":"original-resource","Value":"\"yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg=\""}]},{"Route":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm.gz","AssetFile":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cjsvkufomv"},{"Name":"integrity","Value":"sha256-6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM="},{"Name":"label","Value":"_framework/System.ComponentModel.Annotations.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.Annotations.wasm","AssetFile":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"92437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg="}]},{"Route":"_framework/System.ComponentModel.Annotations.wasm","AssetFile":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000027950137"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg="},{"Name":"original-resource","Value":"\"yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg=\""}]},{"Route":"_framework/System.ComponentModel.Annotations.wasm.gz","AssetFile":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM="}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm","AssetFile":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vpng0qt4u6"},{"Name":"integrity","Value":"sha256-7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o="},{"Name":"label","Value":"_framework/System.ComponentModel.DataAnnotations.wasm"}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm","AssetFile":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000386996904"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2583"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vpng0qt4u6"},{"Name":"integrity","Value":"sha256-7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o="},{"Name":"label","Value":"_framework/System.ComponentModel.DataAnnotations.wasm"},{"Name":"original-resource","Value":"\"7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o=\""}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm.gz","AssetFile":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2583"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vpng0qt4u6"},{"Name":"integrity","Value":"sha256-BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs="},{"Name":"label","Value":"_framework/System.ComponentModel.DataAnnotations.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.wasm","AssetFile":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o="}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.wasm","AssetFile":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000386996904"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2583"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o="},{"Name":"original-resource","Value":"\"7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o=\""}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.wasm.gz","AssetFile":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2583"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs="}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm","AssetFile":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"16149"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"en4q13ibd5"},{"Name":"integrity","Value":"sha256-9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38="},{"Name":"label","Value":"_framework/System.ComponentModel.EventBasedAsync.wasm"}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm","AssetFile":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000147536146"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"en4q13ibd5"},{"Name":"integrity","Value":"sha256-9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38="},{"Name":"label","Value":"_framework/System.ComponentModel.EventBasedAsync.wasm"},{"Name":"original-resource","Value":"\"9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38=\""}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm.gz","AssetFile":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"en4q13ibd5"},{"Name":"integrity","Value":"sha256-G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU="},{"Name":"label","Value":"_framework/System.ComponentModel.EventBasedAsync.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.wasm","AssetFile":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"16149"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38="}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.wasm","AssetFile":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000147536146"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38="},{"Name":"original-resource","Value":"\"9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38=\""}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.wasm.gz","AssetFile":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU="}]},{"Route":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm","AssetFile":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u0y5oi3qdg"},{"Name":"integrity","Value":"sha256-fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4="},{"Name":"label","Value":"_framework/System.ComponentModel.Primitives.wasm"}]},{"Route":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm","AssetFile":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000074493445"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13423"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u0y5oi3qdg"},{"Name":"integrity","Value":"sha256-fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4="},{"Name":"label","Value":"_framework/System.ComponentModel.Primitives.wasm"},{"Name":"original-resource","Value":"\"fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4=\""}]},{"Route":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm.gz","AssetFile":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13423"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u0y5oi3qdg"},{"Name":"integrity","Value":"sha256-yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM="},{"Name":"label","Value":"_framework/System.ComponentModel.Primitives.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.Primitives.wasm","AssetFile":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4="}]},{"Route":"_framework/System.ComponentModel.Primitives.wasm","AssetFile":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000074493445"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13423"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4="},{"Name":"original-resource","Value":"\"fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4=\""}]},{"Route":"_framework/System.ComponentModel.Primitives.wasm.gz","AssetFile":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13423"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM="}]},{"Route":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm","AssetFile":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"306453"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e2hbv9lola"},{"Name":"integrity","Value":"sha256-Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco="},{"Name":"label","Value":"_framework/System.ComponentModel.TypeConverter.wasm"}]},{"Route":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm","AssetFile":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008143389"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"122798"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e2hbv9lola"},{"Name":"integrity","Value":"sha256-Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco="},{"Name":"label","Value":"_framework/System.ComponentModel.TypeConverter.wasm"},{"Name":"original-resource","Value":"\"Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco=\""}]},{"Route":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm.gz","AssetFile":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"122798"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e2hbv9lola"},{"Name":"integrity","Value":"sha256-pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs="},{"Name":"label","Value":"_framework/System.ComponentModel.TypeConverter.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.TypeConverter.wasm","AssetFile":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"306453"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco="}]},{"Route":"_framework/System.ComponentModel.TypeConverter.wasm","AssetFile":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008143389"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"122798"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco="},{"Name":"original-resource","Value":"\"Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco=\""}]},{"Route":"_framework/System.ComponentModel.TypeConverter.wasm.gz","AssetFile":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"122798"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs="}]},{"Route":"_framework/System.ComponentModel.m11rh1qn2x.wasm","AssetFile":"_framework/System.ComponentModel.m11rh1qn2x.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m11rh1qn2x"},{"Name":"integrity","Value":"sha256-9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ="},{"Name":"label","Value":"_framework/System.ComponentModel.wasm"}]},{"Route":"_framework/System.ComponentModel.m11rh1qn2x.wasm","AssetFile":"_framework/System.ComponentModel.m11rh1qn2x.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388651380"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m11rh1qn2x"},{"Name":"integrity","Value":"sha256-9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ="},{"Name":"label","Value":"_framework/System.ComponentModel.wasm"},{"Name":"original-resource","Value":"\"9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ=\""}]},{"Route":"_framework/System.ComponentModel.m11rh1qn2x.wasm.gz","AssetFile":"_framework/System.ComponentModel.m11rh1qn2x.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m11rh1qn2x"},{"Name":"integrity","Value":"sha256-4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4="},{"Name":"label","Value":"_framework/System.ComponentModel.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.wasm","AssetFile":"_framework/System.ComponentModel.m11rh1qn2x.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ="}]},{"Route":"_framework/System.ComponentModel.wasm","AssetFile":"_framework/System.ComponentModel.m11rh1qn2x.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388651380"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ="},{"Name":"original-resource","Value":"\"9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ=\""}]},{"Route":"_framework/System.ComponentModel.wasm.gz","AssetFile":"_framework/System.ComponentModel.m11rh1qn2x.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4="}]},{"Route":"_framework/System.Configuration.j8qjkqg593.wasm","AssetFile":"_framework/System.Configuration.j8qjkqg593.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"8981"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8qjkqg593"},{"Name":"integrity","Value":"sha256-bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU="},{"Name":"label","Value":"_framework/System.Configuration.wasm"}]},{"Route":"_framework/System.Configuration.j8qjkqg593.wasm","AssetFile":"_framework/System.Configuration.j8qjkqg593.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000320204931"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3122"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8qjkqg593"},{"Name":"integrity","Value":"sha256-bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU="},{"Name":"label","Value":"_framework/System.Configuration.wasm"},{"Name":"original-resource","Value":"\"bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU=\""}]},{"Route":"_framework/System.Configuration.j8qjkqg593.wasm.gz","AssetFile":"_framework/System.Configuration.j8qjkqg593.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3122"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8qjkqg593"},{"Name":"integrity","Value":"sha256-KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA="},{"Name":"label","Value":"_framework/System.Configuration.wasm.gz"}]},{"Route":"_framework/System.Configuration.wasm","AssetFile":"_framework/System.Configuration.j8qjkqg593.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"8981"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU="}]},{"Route":"_framework/System.Configuration.wasm","AssetFile":"_framework/System.Configuration.j8qjkqg593.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000320204931"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3122"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU="},{"Name":"original-resource","Value":"\"bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU=\""}]},{"Route":"_framework/System.Configuration.wasm.gz","AssetFile":"_framework/System.Configuration.j8qjkqg593.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3122"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA="}]},{"Route":"_framework/System.Console.wasm","AssetFile":"_framework/System.Console.x9at0eh4vs.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"43797"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI="}]},{"Route":"_framework/System.Console.wasm","AssetFile":"_framework/System.Console.x9at0eh4vs.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051570316"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI="},{"Name":"original-resource","Value":"\"ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI=\""}]},{"Route":"_framework/System.Console.wasm.gz","AssetFile":"_framework/System.Console.x9at0eh4vs.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM="}]},{"Route":"_framework/System.Console.x9at0eh4vs.wasm","AssetFile":"_framework/System.Console.x9at0eh4vs.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"43797"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x9at0eh4vs"},{"Name":"integrity","Value":"sha256-ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI="},{"Name":"label","Value":"_framework/System.Console.wasm"}]},{"Route":"_framework/System.Console.x9at0eh4vs.wasm","AssetFile":"_framework/System.Console.x9at0eh4vs.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051570316"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x9at0eh4vs"},{"Name":"integrity","Value":"sha256-ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI="},{"Name":"label","Value":"_framework/System.Console.wasm"},{"Name":"original-resource","Value":"\"ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI=\""}]},{"Route":"_framework/System.Console.x9at0eh4vs.wasm.gz","AssetFile":"_framework/System.Console.x9at0eh4vs.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x9at0eh4vs"},{"Name":"integrity","Value":"sha256-EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM="},{"Name":"label","Value":"_framework/System.Console.wasm.gz"}]},{"Route":"_framework/System.Core.ickp29885z.wasm","AssetFile":"_framework/System.Core.ickp29885z.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ickp29885z"},{"Name":"integrity","Value":"sha256-vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU="},{"Name":"label","Value":"_framework/System.Core.wasm"}]},{"Route":"_framework/System.Core.ickp29885z.wasm","AssetFile":"_framework/System.Core.ickp29885z.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000219346348"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ickp29885z"},{"Name":"integrity","Value":"sha256-vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU="},{"Name":"label","Value":"_framework/System.Core.wasm"},{"Name":"original-resource","Value":"\"vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU=\""}]},{"Route":"_framework/System.Core.ickp29885z.wasm.gz","AssetFile":"_framework/System.Core.ickp29885z.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ickp29885z"},{"Name":"integrity","Value":"sha256-RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4="},{"Name":"label","Value":"_framework/System.Core.wasm.gz"}]},{"Route":"_framework/System.Core.wasm","AssetFile":"_framework/System.Core.ickp29885z.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU="}]},{"Route":"_framework/System.Core.wasm","AssetFile":"_framework/System.Core.ickp29885z.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000219346348"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU="},{"Name":"original-resource","Value":"\"vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU=\""}]},{"Route":"_framework/System.Core.wasm.gz","AssetFile":"_framework/System.Core.ickp29885z.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4="}]},{"Route":"_framework/System.Data.0h75nr7qqd.wasm","AssetFile":"_framework/System.Data.0h75nr7qqd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"15125"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0h75nr7qqd"},{"Name":"integrity","Value":"sha256-7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg="},{"Name":"label","Value":"_framework/System.Data.wasm"}]},{"Route":"_framework/System.Data.0h75nr7qqd.wasm","AssetFile":"_framework/System.Data.0h75nr7qqd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000199084213"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5022"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0h75nr7qqd"},{"Name":"integrity","Value":"sha256-7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg="},{"Name":"label","Value":"_framework/System.Data.wasm"},{"Name":"original-resource","Value":"\"7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg=\""}]},{"Route":"_framework/System.Data.0h75nr7qqd.wasm.gz","AssetFile":"_framework/System.Data.0h75nr7qqd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5022"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0h75nr7qqd"},{"Name":"integrity","Value":"sha256-8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE="},{"Name":"label","Value":"_framework/System.Data.wasm.gz"}]},{"Route":"_framework/System.Data.Common.4wisaz8pj4.wasm","AssetFile":"_framework/System.Data.Common.4wisaz8pj4.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1007893"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4wisaz8pj4"},{"Name":"integrity","Value":"sha256-pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q="},{"Name":"label","Value":"_framework/System.Data.Common.wasm"}]},{"Route":"_framework/System.Data.Common.4wisaz8pj4.wasm","AssetFile":"_framework/System.Data.Common.4wisaz8pj4.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000002663974"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"375378"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4wisaz8pj4"},{"Name":"integrity","Value":"sha256-pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q="},{"Name":"label","Value":"_framework/System.Data.Common.wasm"},{"Name":"original-resource","Value":"\"pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q=\""}]},{"Route":"_framework/System.Data.Common.4wisaz8pj4.wasm.gz","AssetFile":"_framework/System.Data.Common.4wisaz8pj4.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"375378"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4wisaz8pj4"},{"Name":"integrity","Value":"sha256-ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A="},{"Name":"label","Value":"_framework/System.Data.Common.wasm.gz"}]},{"Route":"_framework/System.Data.Common.wasm","AssetFile":"_framework/System.Data.Common.4wisaz8pj4.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1007893"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q="}]},{"Route":"_framework/System.Data.Common.wasm","AssetFile":"_framework/System.Data.Common.4wisaz8pj4.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000002663974"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"375378"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q="},{"Name":"original-resource","Value":"\"pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q=\""}]},{"Route":"_framework/System.Data.Common.wasm.gz","AssetFile":"_framework/System.Data.Common.4wisaz8pj4.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"375378"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A="}]},{"Route":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm","AssetFile":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"904tnen1ot"},{"Name":"integrity","Value":"sha256-dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A="},{"Name":"label","Value":"_framework/System.Data.DataSetExtensions.wasm"}]},{"Route":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm","AssetFile":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000480307397"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2081"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"904tnen1ot"},{"Name":"integrity","Value":"sha256-dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A="},{"Name":"label","Value":"_framework/System.Data.DataSetExtensions.wasm"},{"Name":"original-resource","Value":"\"dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A=\""}]},{"Route":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm.gz","AssetFile":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2081"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"904tnen1ot"},{"Name":"integrity","Value":"sha256-re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY="},{"Name":"label","Value":"_framework/System.Data.DataSetExtensions.wasm.gz"}]},{"Route":"_framework/System.Data.DataSetExtensions.wasm","AssetFile":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A="}]},{"Route":"_framework/System.Data.DataSetExtensions.wasm","AssetFile":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000480307397"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2081"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A="},{"Name":"original-resource","Value":"\"dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A=\""}]},{"Route":"_framework/System.Data.DataSetExtensions.wasm.gz","AssetFile":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2081"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY="}]},{"Route":"_framework/System.Data.wasm","AssetFile":"_framework/System.Data.0h75nr7qqd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"15125"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg="}]},{"Route":"_framework/System.Data.wasm","AssetFile":"_framework/System.Data.0h75nr7qqd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000199084213"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5022"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg="},{"Name":"original-resource","Value":"\"7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg=\""}]},{"Route":"_framework/System.Data.wasm.gz","AssetFile":"_framework/System.Data.0h75nr7qqd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5022"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE="}]},{"Route":"_framework/System.Diagnostics.Contracts.wasm","AssetFile":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I="}]},{"Route":"_framework/System.Diagnostics.Contracts.wasm","AssetFile":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000417885499"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2392"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I="},{"Name":"original-resource","Value":"\"2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I=\""}]},{"Route":"_framework/System.Diagnostics.Contracts.wasm.gz","AssetFile":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2392"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY="}]},{"Route":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm","AssetFile":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z1eotzj35n"},{"Name":"integrity","Value":"sha256-2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I="},{"Name":"label","Value":"_framework/System.Diagnostics.Contracts.wasm"}]},{"Route":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm","AssetFile":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000417885499"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2392"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z1eotzj35n"},{"Name":"integrity","Value":"sha256-2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I="},{"Name":"label","Value":"_framework/System.Diagnostics.Contracts.wasm"},{"Name":"original-resource","Value":"\"2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I=\""}]},{"Route":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm.gz","AssetFile":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2392"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z1eotzj35n"},{"Name":"integrity","Value":"sha256-Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY="},{"Name":"label","Value":"_framework/System.Diagnostics.Contracts.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm","AssetFile":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aeh9b1tcuc"},{"Name":"integrity","Value":"sha256-Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g="},{"Name":"label","Value":"_framework/System.Diagnostics.Debug.wasm"}]},{"Route":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm","AssetFile":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000437636761"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2284"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aeh9b1tcuc"},{"Name":"integrity","Value":"sha256-Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g="},{"Name":"label","Value":"_framework/System.Diagnostics.Debug.wasm"},{"Name":"original-resource","Value":"\"Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g=\""}]},{"Route":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm.gz","AssetFile":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2284"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aeh9b1tcuc"},{"Name":"integrity","Value":"sha256-DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk="},{"Name":"label","Value":"_framework/System.Diagnostics.Debug.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.Debug.wasm","AssetFile":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g="}]},{"Route":"_framework/System.Diagnostics.Debug.wasm","AssetFile":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000437636761"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2284"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g="},{"Name":"original-resource","Value":"\"Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g=\""}]},{"Route":"_framework/System.Diagnostics.Debug.wasm.gz","AssetFile":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2284"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk="}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm","AssetFile":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"192277"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ou2dt7nfo2"},{"Name":"integrity","Value":"sha256-sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc="},{"Name":"label","Value":"_framework/System.Diagnostics.DiagnosticSource.wasm"}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm","AssetFile":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000012340499"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"81033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ou2dt7nfo2"},{"Name":"integrity","Value":"sha256-sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc="},{"Name":"label","Value":"_framework/System.Diagnostics.DiagnosticSource.wasm"},{"Name":"original-resource","Value":"\"sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc=\""}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm.gz","AssetFile":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"81033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ou2dt7nfo2"},{"Name":"integrity","Value":"sha256-4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs="},{"Name":"label","Value":"_framework/System.Diagnostics.DiagnosticSource.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.wasm","AssetFile":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"192277"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc="}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.wasm","AssetFile":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000012340499"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"81033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc="},{"Name":"original-resource","Value":"\"sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc=\""}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.wasm.gz","AssetFile":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"81033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs="}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm","AssetFile":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"12565"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kv9gl8mgag"},{"Name":"integrity","Value":"sha256-ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4="},{"Name":"label","Value":"_framework/System.Diagnostics.FileVersionInfo.wasm"}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm","AssetFile":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000194817845"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5132"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kv9gl8mgag"},{"Name":"integrity","Value":"sha256-ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4="},{"Name":"label","Value":"_framework/System.Diagnostics.FileVersionInfo.wasm"},{"Name":"original-resource","Value":"\"ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4=\""}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm.gz","AssetFile":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5132"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kv9gl8mgag"},{"Name":"integrity","Value":"sha256-Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA="},{"Name":"label","Value":"_framework/System.Diagnostics.FileVersionInfo.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.wasm","AssetFile":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"12565"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4="}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.wasm","AssetFile":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000194817845"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5132"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4="},{"Name":"original-resource","Value":"\"ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4=\""}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.wasm.gz","AssetFile":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5132"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA="}]},{"Route":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm","AssetFile":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"46357"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lqtqkmw274"},{"Name":"integrity","Value":"sha256-87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk="},{"Name":"label","Value":"_framework/System.Diagnostics.Process.wasm"}]},{"Route":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm","AssetFile":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061736017"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lqtqkmw274"},{"Name":"integrity","Value":"sha256-87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk="},{"Name":"label","Value":"_framework/System.Diagnostics.Process.wasm"},{"Name":"original-resource","Value":"\"87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk=\""}]},{"Route":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm.gz","AssetFile":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lqtqkmw274"},{"Name":"integrity","Value":"sha256-a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0="},{"Name":"label","Value":"_framework/System.Diagnostics.Process.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.Process.wasm","AssetFile":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"46357"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk="}]},{"Route":"_framework/System.Diagnostics.Process.wasm","AssetFile":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061736017"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk="},{"Name":"original-resource","Value":"\"87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk=\""}]},{"Route":"_framework/System.Diagnostics.Process.wasm.gz","AssetFile":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0="}]},{"Route":"_framework/System.Diagnostics.StackTrace.wasm","AssetFile":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"15637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls="}]},{"Route":"_framework/System.Diagnostics.StackTrace.wasm","AssetFile":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000135758892"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7365"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls="},{"Name":"original-resource","Value":"\"jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls=\""}]},{"Route":"_framework/System.Diagnostics.StackTrace.wasm.gz","AssetFile":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7365"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg="}]},{"Route":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm","AssetFile":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"15637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wvlboxd9cz"},{"Name":"integrity","Value":"sha256-jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls="},{"Name":"label","Value":"_framework/System.Diagnostics.StackTrace.wasm"}]},{"Route":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm","AssetFile":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000135758892"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7365"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wvlboxd9cz"},{"Name":"integrity","Value":"sha256-jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls="},{"Name":"label","Value":"_framework/System.Diagnostics.StackTrace.wasm"},{"Name":"original-resource","Value":"\"jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls=\""}]},{"Route":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm.gz","AssetFile":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7365"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wvlboxd9cz"},{"Name":"integrity","Value":"sha256-+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg="},{"Name":"label","Value":"_framework/System.Diagnostics.StackTrace.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm","AssetFile":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"21269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mx5w1z1p6w"},{"Name":"integrity","Value":"sha256-9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8="},{"Name":"label","Value":"_framework/System.Diagnostics.TextWriterTraceListener.wasm"}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm","AssetFile":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000106484932"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mx5w1z1p6w"},{"Name":"integrity","Value":"sha256-9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8="},{"Name":"label","Value":"_framework/System.Diagnostics.TextWriterTraceListener.wasm"},{"Name":"original-resource","Value":"\"9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8=\""}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm.gz","AssetFile":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mx5w1z1p6w"},{"Name":"integrity","Value":"sha256-bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY="},{"Name":"label","Value":"_framework/System.Diagnostics.TextWriterTraceListener.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.wasm","AssetFile":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"21269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8="}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.wasm","AssetFile":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000106484932"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8="},{"Name":"original-resource","Value":"\"9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8=\""}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.wasm.gz","AssetFile":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY="}]},{"Route":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm","AssetFile":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"862j1ozg5o"},{"Name":"integrity","Value":"sha256-wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE="},{"Name":"label","Value":"_framework/System.Diagnostics.Tools.wasm"}]},{"Route":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm","AssetFile":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455580866"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"862j1ozg5o"},{"Name":"integrity","Value":"sha256-wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE="},{"Name":"label","Value":"_framework/System.Diagnostics.Tools.wasm"},{"Name":"original-resource","Value":"\"wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE=\""}]},{"Route":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm.gz","AssetFile":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"862j1ozg5o"},{"Name":"integrity","Value":"sha256-Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0="},{"Name":"label","Value":"_framework/System.Diagnostics.Tools.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.Tools.wasm","AssetFile":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE="}]},{"Route":"_framework/System.Diagnostics.Tools.wasm","AssetFile":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455580866"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE="},{"Name":"original-resource","Value":"\"wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE=\""}]},{"Route":"_framework/System.Diagnostics.Tools.wasm.gz","AssetFile":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0="}]},{"Route":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm","AssetFile":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"48405"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j08okd90mo"},{"Name":"integrity","Value":"sha256-k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc="},{"Name":"label","Value":"_framework/System.Diagnostics.TraceSource.wasm"}]},{"Route":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm","AssetFile":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000049701789"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20119"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j08okd90mo"},{"Name":"integrity","Value":"sha256-k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc="},{"Name":"label","Value":"_framework/System.Diagnostics.TraceSource.wasm"},{"Name":"original-resource","Value":"\"k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc=\""}]},{"Route":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm.gz","AssetFile":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20119"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j08okd90mo"},{"Name":"integrity","Value":"sha256-xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM="},{"Name":"label","Value":"_framework/System.Diagnostics.TraceSource.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.TraceSource.wasm","AssetFile":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"48405"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc="}]},{"Route":"_framework/System.Diagnostics.TraceSource.wasm","AssetFile":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000049701789"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20119"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc="},{"Name":"original-resource","Value":"\"k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc=\""}]},{"Route":"_framework/System.Diagnostics.TraceSource.wasm.gz","AssetFile":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20119"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM="}]},{"Route":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm","AssetFile":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bnz7jo4op8"},{"Name":"integrity","Value":"sha256-ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg="},{"Name":"label","Value":"_framework/System.Diagnostics.Tracing.wasm"}]},{"Route":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm","AssetFile":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000398406375"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bnz7jo4op8"},{"Name":"integrity","Value":"sha256-ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg="},{"Name":"label","Value":"_framework/System.Diagnostics.Tracing.wasm"},{"Name":"original-resource","Value":"\"ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg=\""}]},{"Route":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm.gz","AssetFile":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bnz7jo4op8"},{"Name":"integrity","Value":"sha256-ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI="},{"Name":"label","Value":"_framework/System.Diagnostics.Tracing.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.Tracing.wasm","AssetFile":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg="}]},{"Route":"_framework/System.Diagnostics.Tracing.wasm","AssetFile":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000398406375"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg="},{"Name":"original-resource","Value":"\"ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg=\""}]},{"Route":"_framework/System.Diagnostics.Tracing.wasm.gz","AssetFile":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI="}]},{"Route":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm","AssetFile":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"54549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k3z431p3v7"},{"Name":"integrity","Value":"sha256-sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U="},{"Name":"label","Value":"_framework/System.Drawing.Primitives.wasm"}]},{"Route":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm","AssetFile":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041590418"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24043"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k3z431p3v7"},{"Name":"integrity","Value":"sha256-sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U="},{"Name":"label","Value":"_framework/System.Drawing.Primitives.wasm"},{"Name":"original-resource","Value":"\"sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U=\""}]},{"Route":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm.gz","AssetFile":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24043"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k3z431p3v7"},{"Name":"integrity","Value":"sha256-s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto="},{"Name":"label","Value":"_framework/System.Drawing.Primitives.wasm.gz"}]},{"Route":"_framework/System.Drawing.Primitives.wasm","AssetFile":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"54549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U="}]},{"Route":"_framework/System.Drawing.Primitives.wasm","AssetFile":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041590418"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24043"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U="},{"Name":"original-resource","Value":"\"sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U=\""}]},{"Route":"_framework/System.Drawing.Primitives.wasm.gz","AssetFile":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24043"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto="}]},{"Route":"_framework/System.Drawing.v0usa2s224.wasm","AssetFile":"_framework/System.Drawing.v0usa2s224.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0usa2s224"},{"Name":"integrity","Value":"sha256-/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I="},{"Name":"label","Value":"_framework/System.Drawing.wasm"}]},{"Route":"_framework/System.Drawing.v0usa2s224.wasm","AssetFile":"_framework/System.Drawing.v0usa2s224.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000258732212"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3864"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0usa2s224"},{"Name":"integrity","Value":"sha256-/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I="},{"Name":"label","Value":"_framework/System.Drawing.wasm"},{"Name":"original-resource","Value":"\"/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I=\""}]},{"Route":"_framework/System.Drawing.v0usa2s224.wasm.gz","AssetFile":"_framework/System.Drawing.v0usa2s224.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3864"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0usa2s224"},{"Name":"integrity","Value":"sha256-ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c="},{"Name":"label","Value":"_framework/System.Drawing.wasm.gz"}]},{"Route":"_framework/System.Drawing.wasm","AssetFile":"_framework/System.Drawing.v0usa2s224.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I="}]},{"Route":"_framework/System.Drawing.wasm","AssetFile":"_framework/System.Drawing.v0usa2s224.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000258732212"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3864"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I="},{"Name":"original-resource","Value":"\"/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I=\""}]},{"Route":"_framework/System.Drawing.wasm.gz","AssetFile":"_framework/System.Drawing.v0usa2s224.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3864"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c="}]},{"Route":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm","AssetFile":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iktlm0yhdx"},{"Name":"integrity","Value":"sha256-8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ="},{"Name":"label","Value":"_framework/System.Dynamic.Runtime.wasm"}]},{"Route":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm","AssetFile":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000408997955"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2444"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iktlm0yhdx"},{"Name":"integrity","Value":"sha256-8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ="},{"Name":"label","Value":"_framework/System.Dynamic.Runtime.wasm"},{"Name":"original-resource","Value":"\"8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ=\""}]},{"Route":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm.gz","AssetFile":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2444"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iktlm0yhdx"},{"Name":"integrity","Value":"sha256-DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A="},{"Name":"label","Value":"_framework/System.Dynamic.Runtime.wasm.gz"}]},{"Route":"_framework/System.Dynamic.Runtime.wasm","AssetFile":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ="}]},{"Route":"_framework/System.Dynamic.Runtime.wasm","AssetFile":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000408997955"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2444"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ="},{"Name":"original-resource","Value":"\"8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ=\""}]},{"Route":"_framework/System.Dynamic.Runtime.wasm.gz","AssetFile":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2444"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A="}]},{"Route":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm","AssetFile":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"86805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9iyl1hnh76"},{"Name":"integrity","Value":"sha256-8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0="},{"Name":"label","Value":"_framework/System.Formats.Asn1.wasm"}]},{"Route":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm","AssetFile":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000028005713"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35706"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9iyl1hnh76"},{"Name":"integrity","Value":"sha256-8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0="},{"Name":"label","Value":"_framework/System.Formats.Asn1.wasm"},{"Name":"original-resource","Value":"\"8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0=\""}]},{"Route":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm.gz","AssetFile":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35706"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9iyl1hnh76"},{"Name":"integrity","Value":"sha256-LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw="},{"Name":"label","Value":"_framework/System.Formats.Asn1.wasm.gz"}]},{"Route":"_framework/System.Formats.Asn1.wasm","AssetFile":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"86805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0="}]},{"Route":"_framework/System.Formats.Asn1.wasm","AssetFile":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000028005713"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35706"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0="},{"Name":"original-resource","Value":"\"8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0=\""}]},{"Route":"_framework/System.Formats.Asn1.wasm.gz","AssetFile":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35706"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw="}]},{"Route":"_framework/System.Formats.Tar.9ikmelhi7g.wasm","AssetFile":"_framework/System.Formats.Tar.9ikmelhi7g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"28437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ikmelhi7g"},{"Name":"integrity","Value":"sha256-rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE="},{"Name":"label","Value":"_framework/System.Formats.Tar.wasm"}]},{"Route":"_framework/System.Formats.Tar.9ikmelhi7g.wasm","AssetFile":"_framework/System.Formats.Tar.9ikmelhi7g.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000095292548"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10493"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ikmelhi7g"},{"Name":"integrity","Value":"sha256-rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE="},{"Name":"label","Value":"_framework/System.Formats.Tar.wasm"},{"Name":"original-resource","Value":"\"rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE=\""}]},{"Route":"_framework/System.Formats.Tar.9ikmelhi7g.wasm.gz","AssetFile":"_framework/System.Formats.Tar.9ikmelhi7g.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10493"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ikmelhi7g"},{"Name":"integrity","Value":"sha256-F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k="},{"Name":"label","Value":"_framework/System.Formats.Tar.wasm.gz"}]},{"Route":"_framework/System.Formats.Tar.wasm","AssetFile":"_framework/System.Formats.Tar.9ikmelhi7g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"28437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE="}]},{"Route":"_framework/System.Formats.Tar.wasm","AssetFile":"_framework/System.Formats.Tar.9ikmelhi7g.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000095292548"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10493"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE="},{"Name":"original-resource","Value":"\"rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE=\""}]},{"Route":"_framework/System.Formats.Tar.wasm.gz","AssetFile":"_framework/System.Formats.Tar.9ikmelhi7g.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10493"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k="}]},{"Route":"_framework/System.Globalization.4ulc930few.wasm","AssetFile":"_framework/System.Globalization.4ulc930few.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4ulc930few"},{"Name":"integrity","Value":"sha256-jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I="},{"Name":"label","Value":"_framework/System.Globalization.wasm"}]},{"Route":"_framework/System.Globalization.4ulc930few.wasm","AssetFile":"_framework/System.Globalization.4ulc930few.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000439367311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4ulc930few"},{"Name":"integrity","Value":"sha256-jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I="},{"Name":"label","Value":"_framework/System.Globalization.wasm"},{"Name":"original-resource","Value":"\"jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I=\""}]},{"Route":"_framework/System.Globalization.4ulc930few.wasm.gz","AssetFile":"_framework/System.Globalization.4ulc930few.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4ulc930few"},{"Name":"integrity","Value":"sha256-GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA="},{"Name":"label","Value":"_framework/System.Globalization.wasm.gz"}]},{"Route":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm","AssetFile":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e8yl47y6cv"},{"Name":"integrity","Value":"sha256-jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo="},{"Name":"label","Value":"_framework/System.Globalization.Calendars.wasm"}]},{"Route":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm","AssetFile":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000434971727"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2298"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e8yl47y6cv"},{"Name":"integrity","Value":"sha256-jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo="},{"Name":"label","Value":"_framework/System.Globalization.Calendars.wasm"},{"Name":"original-resource","Value":"\"jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo=\""}]},{"Route":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm.gz","AssetFile":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2298"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e8yl47y6cv"},{"Name":"integrity","Value":"sha256-bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A="},{"Name":"label","Value":"_framework/System.Globalization.Calendars.wasm.gz"}]},{"Route":"_framework/System.Globalization.Calendars.wasm","AssetFile":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo="}]},{"Route":"_framework/System.Globalization.Calendars.wasm","AssetFile":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000434971727"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2298"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo="},{"Name":"original-resource","Value":"\"jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo=\""}]},{"Route":"_framework/System.Globalization.Calendars.wasm.gz","AssetFile":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2298"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A="}]},{"Route":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm","AssetFile":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvxkfs32tv"},{"Name":"integrity","Value":"sha256-e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ="},{"Name":"label","Value":"_framework/System.Globalization.Extensions.wasm"}]},{"Route":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm","AssetFile":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000456412597"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2190"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvxkfs32tv"},{"Name":"integrity","Value":"sha256-e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ="},{"Name":"label","Value":"_framework/System.Globalization.Extensions.wasm"},{"Name":"original-resource","Value":"\"e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ=\""}]},{"Route":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm.gz","AssetFile":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2190"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvxkfs32tv"},{"Name":"integrity","Value":"sha256-mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o="},{"Name":"label","Value":"_framework/System.Globalization.Extensions.wasm.gz"}]},{"Route":"_framework/System.Globalization.Extensions.wasm","AssetFile":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ="}]},{"Route":"_framework/System.Globalization.Extensions.wasm","AssetFile":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000456412597"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2190"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ="},{"Name":"original-resource","Value":"\"e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ=\""}]},{"Route":"_framework/System.Globalization.Extensions.wasm.gz","AssetFile":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2190"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o="}]},{"Route":"_framework/System.Globalization.wasm","AssetFile":"_framework/System.Globalization.4ulc930few.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I="}]},{"Route":"_framework/System.Globalization.wasm","AssetFile":"_framework/System.Globalization.4ulc930few.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000439367311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I="},{"Name":"original-resource","Value":"\"jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I=\""}]},{"Route":"_framework/System.Globalization.wasm.gz","AssetFile":"_framework/System.Globalization.4ulc930few.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA="}]},{"Route":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm","AssetFile":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ibxx4kh8c6"},{"Name":"integrity","Value":"sha256-7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY="},{"Name":"label","Value":"_framework/System.IO.Compression.Brotli.wasm"}]},{"Route":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm","AssetFile":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000143988481"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6944"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ibxx4kh8c6"},{"Name":"integrity","Value":"sha256-7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY="},{"Name":"label","Value":"_framework/System.IO.Compression.Brotli.wasm"},{"Name":"original-resource","Value":"\"7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY=\""}]},{"Route":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm.gz","AssetFile":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6944"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ibxx4kh8c6"},{"Name":"integrity","Value":"sha256-1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw="},{"Name":"label","Value":"_framework/System.IO.Compression.Brotli.wasm.gz"}]},{"Route":"_framework/System.IO.Compression.Brotli.wasm","AssetFile":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY="}]},{"Route":"_framework/System.IO.Compression.Brotli.wasm","AssetFile":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000143988481"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6944"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY="},{"Name":"original-resource","Value":"\"7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY=\""}]},{"Route":"_framework/System.IO.Compression.Brotli.wasm.gz","AssetFile":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6944"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw="}]},{"Route":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm","AssetFile":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bselp9vv9w"},{"Name":"integrity","Value":"sha256-5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM="},{"Name":"label","Value":"_framework/System.IO.Compression.FileSystem.wasm"}]},{"Route":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm","AssetFile":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000498504487"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bselp9vv9w"},{"Name":"integrity","Value":"sha256-5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM="},{"Name":"label","Value":"_framework/System.IO.Compression.FileSystem.wasm"},{"Name":"original-resource","Value":"\"5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM=\""}]},{"Route":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm.gz","AssetFile":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bselp9vv9w"},{"Name":"integrity","Value":"sha256-dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI="},{"Name":"label","Value":"_framework/System.IO.Compression.FileSystem.wasm.gz"}]},{"Route":"_framework/System.IO.Compression.FileSystem.wasm","AssetFile":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM="}]},{"Route":"_framework/System.IO.Compression.FileSystem.wasm","AssetFile":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000498504487"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM="},{"Name":"original-resource","Value":"\"5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM=\""}]},{"Route":"_framework/System.IO.Compression.FileSystem.wasm.gz","AssetFile":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI="}]},{"Route":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm","AssetFile":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"43285"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b0ha8vyo8i"},{"Name":"integrity","Value":"sha256-m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk="},{"Name":"label","Value":"_framework/System.IO.Compression.ZipFile.wasm"}]},{"Route":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm","AssetFile":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053490238"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18694"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b0ha8vyo8i"},{"Name":"integrity","Value":"sha256-m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk="},{"Name":"label","Value":"_framework/System.IO.Compression.ZipFile.wasm"},{"Name":"original-resource","Value":"\"m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk=\""}]},{"Route":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm.gz","AssetFile":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18694"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b0ha8vyo8i"},{"Name":"integrity","Value":"sha256-+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc="},{"Name":"label","Value":"_framework/System.IO.Compression.ZipFile.wasm.gz"}]},{"Route":"_framework/System.IO.Compression.ZipFile.wasm","AssetFile":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"43285"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk="}]},{"Route":"_framework/System.IO.Compression.ZipFile.wasm","AssetFile":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053490238"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18694"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk="},{"Name":"original-resource","Value":"\"m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk=\""}]},{"Route":"_framework/System.IO.Compression.ZipFile.wasm.gz","AssetFile":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18694"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc="}]},{"Route":"_framework/System.IO.Compression.sgbc42zrd8.wasm","AssetFile":"_framework/System.IO.Compression.sgbc42zrd8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"157461"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sgbc42zrd8"},{"Name":"integrity","Value":"sha256-DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY="},{"Name":"label","Value":"_framework/System.IO.Compression.wasm"}]},{"Route":"_framework/System.IO.Compression.sgbc42zrd8.wasm","AssetFile":"_framework/System.IO.Compression.sgbc42zrd8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015435195"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64786"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sgbc42zrd8"},{"Name":"integrity","Value":"sha256-DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY="},{"Name":"label","Value":"_framework/System.IO.Compression.wasm"},{"Name":"original-resource","Value":"\"DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY=\""}]},{"Route":"_framework/System.IO.Compression.sgbc42zrd8.wasm.gz","AssetFile":"_framework/System.IO.Compression.sgbc42zrd8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64786"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sgbc42zrd8"},{"Name":"integrity","Value":"sha256-/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28="},{"Name":"label","Value":"_framework/System.IO.Compression.wasm.gz"}]},{"Route":"_framework/System.IO.Compression.wasm","AssetFile":"_framework/System.IO.Compression.sgbc42zrd8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"157461"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY="}]},{"Route":"_framework/System.IO.Compression.wasm","AssetFile":"_framework/System.IO.Compression.sgbc42zrd8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015435195"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64786"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY="},{"Name":"original-resource","Value":"\"DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY=\""}]},{"Route":"_framework/System.IO.Compression.wasm.gz","AssetFile":"_framework/System.IO.Compression.sgbc42zrd8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64786"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28="}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm","AssetFile":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"21781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oi9xn5s0h3"},{"Name":"integrity","Value":"sha256-kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg="},{"Name":"label","Value":"_framework/System.IO.FileSystem.AccessControl.wasm"}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm","AssetFile":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000117994100"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8474"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oi9xn5s0h3"},{"Name":"integrity","Value":"sha256-kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg="},{"Name":"label","Value":"_framework/System.IO.FileSystem.AccessControl.wasm"},{"Name":"original-resource","Value":"\"kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg=\""}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8474"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oi9xn5s0h3"},{"Name":"integrity","Value":"sha256-dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A="},{"Name":"label","Value":"_framework/System.IO.FileSystem.AccessControl.wasm.gz"}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.wasm","AssetFile":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"21781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg="}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.wasm","AssetFile":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000117994100"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8474"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg="},{"Name":"original-resource","Value":"\"kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg=\""}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8474"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A="}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm","AssetFile":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13589"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fi1uhp9255"},{"Name":"integrity","Value":"sha256-2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU="},{"Name":"label","Value":"_framework/System.IO.FileSystem.DriveInfo.wasm"}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm","AssetFile":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000165727544"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fi1uhp9255"},{"Name":"integrity","Value":"sha256-2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU="},{"Name":"label","Value":"_framework/System.IO.FileSystem.DriveInfo.wasm"},{"Name":"original-resource","Value":"\"2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU=\""}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fi1uhp9255"},{"Name":"integrity","Value":"sha256-9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4="},{"Name":"label","Value":"_framework/System.IO.FileSystem.DriveInfo.wasm.gz"}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.wasm","AssetFile":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13589"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU="}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.wasm","AssetFile":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000165727544"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU="},{"Name":"original-resource","Value":"\"2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU=\""}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4="}]},{"Route":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm","AssetFile":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6j2ed42ac7"},{"Name":"integrity","Value":"sha256-UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Primitives.wasm"}]},{"Route":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm","AssetFile":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455996352"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2192"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6j2ed42ac7"},{"Name":"integrity","Value":"sha256-UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Primitives.wasm"},{"Name":"original-resource","Value":"\"UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI=\""}]},{"Route":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2192"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6j2ed42ac7"},{"Name":"integrity","Value":"sha256-apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Primitives.wasm.gz"}]},{"Route":"_framework/System.IO.FileSystem.Primitives.wasm","AssetFile":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI="}]},{"Route":"_framework/System.IO.FileSystem.Primitives.wasm","AssetFile":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455996352"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2192"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI="},{"Name":"original-resource","Value":"\"UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI=\""}]},{"Route":"_framework/System.IO.FileSystem.Primitives.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2192"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg="}]},{"Route":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm","AssetFile":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v9i07bnq2k"},{"Name":"integrity","Value":"sha256-g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Watcher.wasm"}]},{"Route":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm","AssetFile":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000114259598"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8751"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v9i07bnq2k"},{"Name":"integrity","Value":"sha256-g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Watcher.wasm"},{"Name":"original-resource","Value":"\"g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg=\""}]},{"Route":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8751"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v9i07bnq2k"},{"Name":"integrity","Value":"sha256-XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Watcher.wasm.gz"}]},{"Route":"_framework/System.IO.FileSystem.Watcher.wasm","AssetFile":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg="}]},{"Route":"_framework/System.IO.FileSystem.Watcher.wasm","AssetFile":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000114259598"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8751"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg="},{"Name":"original-resource","Value":"\"g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg=\""}]},{"Route":"_framework/System.IO.FileSystem.Watcher.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8751"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ="}]},{"Route":"_framework/System.IO.FileSystem.fktu0k4b93.wasm","AssetFile":"_framework/System.IO.FileSystem.fktu0k4b93.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fktu0k4b93"},{"Name":"integrity","Value":"sha256-L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM="},{"Name":"label","Value":"_framework/System.IO.FileSystem.wasm"}]},{"Route":"_framework/System.IO.FileSystem.fktu0k4b93.wasm","AssetFile":"_framework/System.IO.FileSystem.fktu0k4b93.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000434027778"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2303"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fktu0k4b93"},{"Name":"integrity","Value":"sha256-L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM="},{"Name":"label","Value":"_framework/System.IO.FileSystem.wasm"},{"Name":"original-resource","Value":"\"L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM=\""}]},{"Route":"_framework/System.IO.FileSystem.fktu0k4b93.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.fktu0k4b93.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2303"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fktu0k4b93"},{"Name":"integrity","Value":"sha256-1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ="},{"Name":"label","Value":"_framework/System.IO.FileSystem.wasm.gz"}]},{"Route":"_framework/System.IO.FileSystem.wasm","AssetFile":"_framework/System.IO.FileSystem.fktu0k4b93.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM="}]},{"Route":"_framework/System.IO.FileSystem.wasm","AssetFile":"_framework/System.IO.FileSystem.fktu0k4b93.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000434027778"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2303"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM="},{"Name":"original-resource","Value":"\"L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM=\""}]},{"Route":"_framework/System.IO.FileSystem.wasm.gz","AssetFile":"_framework/System.IO.FileSystem.fktu0k4b93.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2303"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ="}]},{"Route":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm","AssetFile":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"24853"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8ll4gxwfs1"},{"Name":"integrity","Value":"sha256-TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4="},{"Name":"label","Value":"_framework/System.IO.IsolatedStorage.wasm"}]},{"Route":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm","AssetFile":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000106723586"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9369"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8ll4gxwfs1"},{"Name":"integrity","Value":"sha256-TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4="},{"Name":"label","Value":"_framework/System.IO.IsolatedStorage.wasm"},{"Name":"original-resource","Value":"\"TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4=\""}]},{"Route":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm.gz","AssetFile":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9369"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8ll4gxwfs1"},{"Name":"integrity","Value":"sha256-KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ="},{"Name":"label","Value":"_framework/System.IO.IsolatedStorage.wasm.gz"}]},{"Route":"_framework/System.IO.IsolatedStorage.wasm","AssetFile":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"24853"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4="}]},{"Route":"_framework/System.IO.IsolatedStorage.wasm","AssetFile":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000106723586"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9369"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4="},{"Name":"original-resource","Value":"\"TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4=\""}]},{"Route":"_framework/System.IO.IsolatedStorage.wasm.gz","AssetFile":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9369"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ="}]},{"Route":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm","AssetFile":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"39701"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6do4olk7ib"},{"Name":"integrity","Value":"sha256-WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk="},{"Name":"label","Value":"_framework/System.IO.MemoryMappedFiles.wasm"}]},{"Route":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm","AssetFile":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000058775126"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6do4olk7ib"},{"Name":"integrity","Value":"sha256-WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk="},{"Name":"label","Value":"_framework/System.IO.MemoryMappedFiles.wasm"},{"Name":"original-resource","Value":"\"WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk=\""}]},{"Route":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm.gz","AssetFile":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6do4olk7ib"},{"Name":"integrity","Value":"sha256-uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk="},{"Name":"label","Value":"_framework/System.IO.MemoryMappedFiles.wasm.gz"}]},{"Route":"_framework/System.IO.MemoryMappedFiles.wasm","AssetFile":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"39701"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk="}]},{"Route":"_framework/System.IO.MemoryMappedFiles.wasm","AssetFile":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000058775126"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk="},{"Name":"original-resource","Value":"\"WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk=\""}]},{"Route":"_framework/System.IO.MemoryMappedFiles.wasm.gz","AssetFile":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk="}]},{"Route":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm","AssetFile":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"67861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"21z0t9w6sq"},{"Name":"integrity","Value":"sha256-VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM="},{"Name":"label","Value":"_framework/System.IO.Pipelines.wasm"}]},{"Route":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm","AssetFile":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032928315"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30368"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"21z0t9w6sq"},{"Name":"integrity","Value":"sha256-VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM="},{"Name":"label","Value":"_framework/System.IO.Pipelines.wasm"},{"Name":"original-resource","Value":"\"VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM=\""}]},{"Route":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm.gz","AssetFile":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30368"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"21z0t9w6sq"},{"Name":"integrity","Value":"sha256-7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8="},{"Name":"label","Value":"_framework/System.IO.Pipelines.wasm.gz"}]},{"Route":"_framework/System.IO.Pipelines.wasm","AssetFile":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"67861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM="}]},{"Route":"_framework/System.IO.Pipelines.wasm","AssetFile":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032928315"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30368"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM="},{"Name":"original-resource","Value":"\"VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM=\""}]},{"Route":"_framework/System.IO.Pipelines.wasm.gz","AssetFile":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30368"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8="}]},{"Route":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm","AssetFile":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5lvzz4lks7"},{"Name":"integrity","Value":"sha256-qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE="},{"Name":"label","Value":"_framework/System.IO.Pipes.AccessControl.wasm"}]},{"Route":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm","AssetFile":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000179597701"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5567"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5lvzz4lks7"},{"Name":"integrity","Value":"sha256-qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE="},{"Name":"label","Value":"_framework/System.IO.Pipes.AccessControl.wasm"},{"Name":"original-resource","Value":"\"qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE=\""}]},{"Route":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm.gz","AssetFile":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5567"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5lvzz4lks7"},{"Name":"integrity","Value":"sha256-+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4="},{"Name":"label","Value":"_framework/System.IO.Pipes.AccessControl.wasm.gz"}]},{"Route":"_framework/System.IO.Pipes.AccessControl.wasm","AssetFile":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE="}]},{"Route":"_framework/System.IO.Pipes.AccessControl.wasm","AssetFile":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000179597701"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5567"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE="},{"Name":"original-resource","Value":"\"qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE=\""}]},{"Route":"_framework/System.IO.Pipes.AccessControl.wasm.gz","AssetFile":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5567"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4="}]},{"Route":"_framework/System.IO.Pipes.wasm","AssetFile":"_framework/System.IO.Pipes.xosph8vk4a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg="}]},{"Route":"_framework/System.IO.Pipes.wasm","AssetFile":"_framework/System.IO.Pipes.xosph8vk4a.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000087703912"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg="},{"Name":"original-resource","Value":"\"gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg=\""}]},{"Route":"_framework/System.IO.Pipes.wasm.gz","AssetFile":"_framework/System.IO.Pipes.xosph8vk4a.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE="}]},{"Route":"_framework/System.IO.Pipes.xosph8vk4a.wasm","AssetFile":"_framework/System.IO.Pipes.xosph8vk4a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xosph8vk4a"},{"Name":"integrity","Value":"sha256-gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg="},{"Name":"label","Value":"_framework/System.IO.Pipes.wasm"}]},{"Route":"_framework/System.IO.Pipes.xosph8vk4a.wasm","AssetFile":"_framework/System.IO.Pipes.xosph8vk4a.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000087703912"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xosph8vk4a"},{"Name":"integrity","Value":"sha256-gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg="},{"Name":"label","Value":"_framework/System.IO.Pipes.wasm"},{"Name":"original-resource","Value":"\"gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg=\""}]},{"Route":"_framework/System.IO.Pipes.xosph8vk4a.wasm.gz","AssetFile":"_framework/System.IO.Pipes.xosph8vk4a.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xosph8vk4a"},{"Name":"integrity","Value":"sha256-BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE="},{"Name":"label","Value":"_framework/System.IO.Pipes.wasm.gz"}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm","AssetFile":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d1pja42pyi"},{"Name":"integrity","Value":"sha256-gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4="},{"Name":"label","Value":"_framework/System.IO.UnmanagedMemoryStream.wasm"}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm","AssetFile":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000450045005"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2221"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d1pja42pyi"},{"Name":"integrity","Value":"sha256-gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4="},{"Name":"label","Value":"_framework/System.IO.UnmanagedMemoryStream.wasm"},{"Name":"original-resource","Value":"\"gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4=\""}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm.gz","AssetFile":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2221"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d1pja42pyi"},{"Name":"integrity","Value":"sha256-TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU="},{"Name":"label","Value":"_framework/System.IO.UnmanagedMemoryStream.wasm.gz"}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.wasm","AssetFile":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4="}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.wasm","AssetFile":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000450045005"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2221"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4="},{"Name":"original-resource","Value":"\"gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4=\""}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.wasm.gz","AssetFile":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2221"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU="}]},{"Route":"_framework/System.IO.i9g92fmb9y.wasm","AssetFile":"_framework/System.IO.i9g92fmb9y.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"i9g92fmb9y"},{"Name":"integrity","Value":"sha256-akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw="},{"Name":"label","Value":"_framework/System.IO.wasm"}]},{"Route":"_framework/System.IO.i9g92fmb9y.wasm","AssetFile":"_framework/System.IO.i9g92fmb9y.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438404209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"i9g92fmb9y"},{"Name":"integrity","Value":"sha256-akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw="},{"Name":"label","Value":"_framework/System.IO.wasm"},{"Name":"original-resource","Value":"\"akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw=\""}]},{"Route":"_framework/System.IO.i9g92fmb9y.wasm.gz","AssetFile":"_framework/System.IO.i9g92fmb9y.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"i9g92fmb9y"},{"Name":"integrity","Value":"sha256-DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM="},{"Name":"label","Value":"_framework/System.IO.wasm.gz"}]},{"Route":"_framework/System.IO.wasm","AssetFile":"_framework/System.IO.i9g92fmb9y.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw="}]},{"Route":"_framework/System.IO.wasm","AssetFile":"_framework/System.IO.i9g92fmb9y.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438404209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw="},{"Name":"original-resource","Value":"\"akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw=\""}]},{"Route":"_framework/System.IO.wasm.gz","AssetFile":"_framework/System.IO.i9g92fmb9y.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM="}]},{"Route":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm","AssetFile":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"446229"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m1mh525k0"},{"Name":"integrity","Value":"sha256-VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48="},{"Name":"label","Value":"_framework/System.Linq.AsyncEnumerable.wasm"}]},{"Route":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm","AssetFile":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006961607"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"143644"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m1mh525k0"},{"Name":"integrity","Value":"sha256-VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48="},{"Name":"label","Value":"_framework/System.Linq.AsyncEnumerable.wasm"},{"Name":"original-resource","Value":"\"VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48=\""}]},{"Route":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm.gz","AssetFile":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"143644"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m1mh525k0"},{"Name":"integrity","Value":"sha256-Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8="},{"Name":"label","Value":"_framework/System.Linq.AsyncEnumerable.wasm.gz"}]},{"Route":"_framework/System.Linq.AsyncEnumerable.wasm","AssetFile":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"446229"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48="}]},{"Route":"_framework/System.Linq.AsyncEnumerable.wasm","AssetFile":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006961607"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"143644"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48="},{"Name":"original-resource","Value":"\"VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48=\""}]},{"Route":"_framework/System.Linq.AsyncEnumerable.wasm.gz","AssetFile":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"143644"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8="}]},{"Route":"_framework/System.Linq.Expressions.4nat0rber0.wasm","AssetFile":"_framework/System.Linq.Expressions.4nat0rber0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"565013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4nat0rber0"},{"Name":"integrity","Value":"sha256-IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA="},{"Name":"label","Value":"_framework/System.Linq.Expressions.wasm"}]},{"Route":"_framework/System.Linq.Expressions.4nat0rber0.wasm","AssetFile":"_framework/System.Linq.Expressions.4nat0rber0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004689002"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"213264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4nat0rber0"},{"Name":"integrity","Value":"sha256-IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA="},{"Name":"label","Value":"_framework/System.Linq.Expressions.wasm"},{"Name":"original-resource","Value":"\"IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA=\""}]},{"Route":"_framework/System.Linq.Expressions.4nat0rber0.wasm.gz","AssetFile":"_framework/System.Linq.Expressions.4nat0rber0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"213264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4nat0rber0"},{"Name":"integrity","Value":"sha256-Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0="},{"Name":"label","Value":"_framework/System.Linq.Expressions.wasm.gz"}]},{"Route":"_framework/System.Linq.Expressions.wasm","AssetFile":"_framework/System.Linq.Expressions.4nat0rber0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"565013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA="}]},{"Route":"_framework/System.Linq.Expressions.wasm","AssetFile":"_framework/System.Linq.Expressions.4nat0rber0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004689002"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"213264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA="},{"Name":"original-resource","Value":"\"IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA=\""}]},{"Route":"_framework/System.Linq.Expressions.wasm.gz","AssetFile":"_framework/System.Linq.Expressions.4nat0rber0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"213264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0="}]},{"Route":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm","AssetFile":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"212757"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qf7zemz9aw"},{"Name":"integrity","Value":"sha256-ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18="},{"Name":"label","Value":"_framework/System.Linq.Parallel.wasm"}]},{"Route":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm","AssetFile":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011571663"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86417"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qf7zemz9aw"},{"Name":"integrity","Value":"sha256-ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18="},{"Name":"label","Value":"_framework/System.Linq.Parallel.wasm"},{"Name":"original-resource","Value":"\"ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18=\""}]},{"Route":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm.gz","AssetFile":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86417"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qf7zemz9aw"},{"Name":"integrity","Value":"sha256-NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo="},{"Name":"label","Value":"_framework/System.Linq.Parallel.wasm.gz"}]},{"Route":"_framework/System.Linq.Parallel.wasm","AssetFile":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"212757"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18="}]},{"Route":"_framework/System.Linq.Parallel.wasm","AssetFile":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011571663"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86417"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18="},{"Name":"original-resource","Value":"\"ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18=\""}]},{"Route":"_framework/System.Linq.Parallel.wasm.gz","AssetFile":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86417"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo="}]},{"Route":"_framework/System.Linq.Queryable.vwinf8twbn.wasm","AssetFile":"_framework/System.Linq.Queryable.vwinf8twbn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"68373"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vwinf8twbn"},{"Name":"integrity","Value":"sha256-geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM="},{"Name":"label","Value":"_framework/System.Linq.Queryable.wasm"}]},{"Route":"_framework/System.Linq.Queryable.vwinf8twbn.wasm","AssetFile":"_framework/System.Linq.Queryable.vwinf8twbn.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000046755190"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21387"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vwinf8twbn"},{"Name":"integrity","Value":"sha256-geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM="},{"Name":"label","Value":"_framework/System.Linq.Queryable.wasm"},{"Name":"original-resource","Value":"\"geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM=\""}]},{"Route":"_framework/System.Linq.Queryable.vwinf8twbn.wasm.gz","AssetFile":"_framework/System.Linq.Queryable.vwinf8twbn.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21387"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vwinf8twbn"},{"Name":"integrity","Value":"sha256-K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts="},{"Name":"label","Value":"_framework/System.Linq.Queryable.wasm.gz"}]},{"Route":"_framework/System.Linq.Queryable.wasm","AssetFile":"_framework/System.Linq.Queryable.vwinf8twbn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"68373"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM="}]},{"Route":"_framework/System.Linq.Queryable.wasm","AssetFile":"_framework/System.Linq.Queryable.vwinf8twbn.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000046755190"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21387"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM="},{"Name":"original-resource","Value":"\"geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM=\""}]},{"Route":"_framework/System.Linq.Queryable.wasm.gz","AssetFile":"_framework/System.Linq.Queryable.vwinf8twbn.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21387"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts="}]},{"Route":"_framework/System.Linq.rp2jklkmsi.wasm","AssetFile":"_framework/System.Linq.rp2jklkmsi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"190741"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rp2jklkmsi"},{"Name":"integrity","Value":"sha256-f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA="},{"Name":"label","Value":"_framework/System.Linq.wasm"}]},{"Route":"_framework/System.Linq.rp2jklkmsi.wasm","AssetFile":"_framework/System.Linq.rp2jklkmsi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013362017"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"74838"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rp2jklkmsi"},{"Name":"integrity","Value":"sha256-f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA="},{"Name":"label","Value":"_framework/System.Linq.wasm"},{"Name":"original-resource","Value":"\"f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA=\""}]},{"Route":"_framework/System.Linq.rp2jklkmsi.wasm.gz","AssetFile":"_framework/System.Linq.rp2jklkmsi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"74838"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rp2jklkmsi"},{"Name":"integrity","Value":"sha256-+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw="},{"Name":"label","Value":"_framework/System.Linq.wasm.gz"}]},{"Route":"_framework/System.Linq.wasm","AssetFile":"_framework/System.Linq.rp2jklkmsi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"190741"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA="}]},{"Route":"_framework/System.Linq.wasm","AssetFile":"_framework/System.Linq.rp2jklkmsi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013362017"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"74838"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA="},{"Name":"original-resource","Value":"\"f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA=\""}]},{"Route":"_framework/System.Linq.wasm.gz","AssetFile":"_framework/System.Linq.rp2jklkmsi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"74838"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw="}]},{"Route":"_framework/System.Memory.3r0soomurg.wasm","AssetFile":"_framework/System.Memory.3r0soomurg.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"45333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3r0soomurg"},{"Name":"integrity","Value":"sha256-z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc="},{"Name":"label","Value":"_framework/System.Memory.wasm"}]},{"Route":"_framework/System.Memory.3r0soomurg.wasm","AssetFile":"_framework/System.Memory.3r0soomurg.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000048600311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3r0soomurg"},{"Name":"integrity","Value":"sha256-z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc="},{"Name":"label","Value":"_framework/System.Memory.wasm"},{"Name":"original-resource","Value":"\"z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc=\""}]},{"Route":"_framework/System.Memory.3r0soomurg.wasm.gz","AssetFile":"_framework/System.Memory.3r0soomurg.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3r0soomurg"},{"Name":"integrity","Value":"sha256-lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60="},{"Name":"label","Value":"_framework/System.Memory.wasm.gz"}]},{"Route":"_framework/System.Memory.wasm","AssetFile":"_framework/System.Memory.3r0soomurg.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"45333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc="}]},{"Route":"_framework/System.Memory.wasm","AssetFile":"_framework/System.Memory.3r0soomurg.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000048600311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc="},{"Name":"original-resource","Value":"\"z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc=\""}]},{"Route":"_framework/System.Memory.wasm.gz","AssetFile":"_framework/System.Memory.3r0soomurg.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60="}]},{"Route":"_framework/System.Net.Http.9rl4gopayw.wasm","AssetFile":"_framework/System.Net.Http.9rl4gopayw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"285973"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9rl4gopayw"},{"Name":"integrity","Value":"sha256-JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU="},{"Name":"label","Value":"_framework/System.Net.Http.wasm"}]},{"Route":"_framework/System.Net.Http.9rl4gopayw.wasm","AssetFile":"_framework/System.Net.Http.9rl4gopayw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008532787"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"117194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9rl4gopayw"},{"Name":"integrity","Value":"sha256-JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU="},{"Name":"label","Value":"_framework/System.Net.Http.wasm"},{"Name":"original-resource","Value":"\"JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU=\""}]},{"Route":"_framework/System.Net.Http.9rl4gopayw.wasm.gz","AssetFile":"_framework/System.Net.Http.9rl4gopayw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"117194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9rl4gopayw"},{"Name":"integrity","Value":"sha256-Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc="},{"Name":"label","Value":"_framework/System.Net.Http.wasm.gz"}]},{"Route":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm","AssetFile":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t9gqpmtbpb"},{"Name":"integrity","Value":"sha256-H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0="},{"Name":"label","Value":"_framework/System.Net.Http.Json.wasm"}]},{"Route":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm","AssetFile":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051591601"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19382"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t9gqpmtbpb"},{"Name":"integrity","Value":"sha256-H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0="},{"Name":"label","Value":"_framework/System.Net.Http.Json.wasm"},{"Name":"original-resource","Value":"\"H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0=\""}]},{"Route":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm.gz","AssetFile":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19382"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t9gqpmtbpb"},{"Name":"integrity","Value":"sha256-h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg="},{"Name":"label","Value":"_framework/System.Net.Http.Json.wasm.gz"}]},{"Route":"_framework/System.Net.Http.Json.wasm","AssetFile":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0="}]},{"Route":"_framework/System.Net.Http.Json.wasm","AssetFile":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051591601"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19382"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0="},{"Name":"original-resource","Value":"\"H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0=\""}]},{"Route":"_framework/System.Net.Http.Json.wasm.gz","AssetFile":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19382"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg="}]},{"Route":"_framework/System.Net.Http.wasm","AssetFile":"_framework/System.Net.Http.9rl4gopayw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"285973"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU="}]},{"Route":"_framework/System.Net.Http.wasm","AssetFile":"_framework/System.Net.Http.9rl4gopayw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008532787"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"117194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU="},{"Name":"original-resource","Value":"\"JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU=\""}]},{"Route":"_framework/System.Net.Http.wasm.gz","AssetFile":"_framework/System.Net.Http.9rl4gopayw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"117194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc="}]},{"Route":"_framework/System.Net.HttpListener.wasm","AssetFile":"_framework/System.Net.HttpListener.zg37o92yol.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE="}]},{"Route":"_framework/System.Net.HttpListener.wasm","AssetFile":"_framework/System.Net.HttpListener.zg37o92yol.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000062289772"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE="},{"Name":"original-resource","Value":"\"rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE=\""}]},{"Route":"_framework/System.Net.HttpListener.wasm.gz","AssetFile":"_framework/System.Net.HttpListener.zg37o92yol.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs="}]},{"Route":"_framework/System.Net.HttpListener.zg37o92yol.wasm","AssetFile":"_framework/System.Net.HttpListener.zg37o92yol.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zg37o92yol"},{"Name":"integrity","Value":"sha256-rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE="},{"Name":"label","Value":"_framework/System.Net.HttpListener.wasm"}]},{"Route":"_framework/System.Net.HttpListener.zg37o92yol.wasm","AssetFile":"_framework/System.Net.HttpListener.zg37o92yol.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000062289772"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zg37o92yol"},{"Name":"integrity","Value":"sha256-rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE="},{"Name":"label","Value":"_framework/System.Net.HttpListener.wasm"},{"Name":"original-resource","Value":"\"rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE=\""}]},{"Route":"_framework/System.Net.HttpListener.zg37o92yol.wasm.gz","AssetFile":"_framework/System.Net.HttpListener.zg37o92yol.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zg37o92yol"},{"Name":"integrity","Value":"sha256-2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs="},{"Name":"label","Value":"_framework/System.Net.HttpListener.wasm.gz"}]},{"Route":"_framework/System.Net.Mail.qk214miut2.wasm","AssetFile":"_framework/System.Net.Mail.qk214miut2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"94997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qk214miut2"},{"Name":"integrity","Value":"sha256-tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk="},{"Name":"label","Value":"_framework/System.Net.Mail.wasm"}]},{"Route":"_framework/System.Net.Mail.qk214miut2.wasm","AssetFile":"_framework/System.Net.Mail.qk214miut2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023562122"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42440"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qk214miut2"},{"Name":"integrity","Value":"sha256-tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk="},{"Name":"label","Value":"_framework/System.Net.Mail.wasm"},{"Name":"original-resource","Value":"\"tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk=\""}]},{"Route":"_framework/System.Net.Mail.qk214miut2.wasm.gz","AssetFile":"_framework/System.Net.Mail.qk214miut2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42440"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qk214miut2"},{"Name":"integrity","Value":"sha256-T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys="},{"Name":"label","Value":"_framework/System.Net.Mail.wasm.gz"}]},{"Route":"_framework/System.Net.Mail.wasm","AssetFile":"_framework/System.Net.Mail.qk214miut2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"94997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk="}]},{"Route":"_framework/System.Net.Mail.wasm","AssetFile":"_framework/System.Net.Mail.qk214miut2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023562122"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42440"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk="},{"Name":"original-resource","Value":"\"tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk=\""}]},{"Route":"_framework/System.Net.Mail.wasm.gz","AssetFile":"_framework/System.Net.Mail.qk214miut2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42440"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys="}]},{"Route":"_framework/System.Net.NameResolution.50dzekuu9x.wasm","AssetFile":"_framework/System.Net.NameResolution.50dzekuu9x.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"14101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"50dzekuu9x"},{"Name":"integrity","Value":"sha256-a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs="},{"Name":"label","Value":"_framework/System.Net.NameResolution.wasm"}]},{"Route":"_framework/System.Net.NameResolution.50dzekuu9x.wasm","AssetFile":"_framework/System.Net.NameResolution.50dzekuu9x.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000168520391"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"50dzekuu9x"},{"Name":"integrity","Value":"sha256-a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs="},{"Name":"label","Value":"_framework/System.Net.NameResolution.wasm"},{"Name":"original-resource","Value":"\"a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs=\""}]},{"Route":"_framework/System.Net.NameResolution.50dzekuu9x.wasm.gz","AssetFile":"_framework/System.Net.NameResolution.50dzekuu9x.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"50dzekuu9x"},{"Name":"integrity","Value":"sha256-A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI="},{"Name":"label","Value":"_framework/System.Net.NameResolution.wasm.gz"}]},{"Route":"_framework/System.Net.NameResolution.wasm","AssetFile":"_framework/System.Net.NameResolution.50dzekuu9x.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"14101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs="}]},{"Route":"_framework/System.Net.NameResolution.wasm","AssetFile":"_framework/System.Net.NameResolution.50dzekuu9x.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000168520391"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs="},{"Name":"original-resource","Value":"\"a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs=\""}]},{"Route":"_framework/System.Net.NameResolution.wasm.gz","AssetFile":"_framework/System.Net.NameResolution.50dzekuu9x.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI="}]},{"Route":"_framework/System.Net.NetworkInformation.k8343mqust.wasm","AssetFile":"_framework/System.Net.NetworkInformation.k8343mqust.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8343mqust"},{"Name":"integrity","Value":"sha256-ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8="},{"Name":"label","Value":"_framework/System.Net.NetworkInformation.wasm"}]},{"Route":"_framework/System.Net.NetworkInformation.k8343mqust.wasm","AssetFile":"_framework/System.Net.NetworkInformation.k8343mqust.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000078560767"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12728"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8343mqust"},{"Name":"integrity","Value":"sha256-ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8="},{"Name":"label","Value":"_framework/System.Net.NetworkInformation.wasm"},{"Name":"original-resource","Value":"\"ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8=\""}]},{"Route":"_framework/System.Net.NetworkInformation.k8343mqust.wasm.gz","AssetFile":"_framework/System.Net.NetworkInformation.k8343mqust.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12728"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8343mqust"},{"Name":"integrity","Value":"sha256-Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0="},{"Name":"label","Value":"_framework/System.Net.NetworkInformation.wasm.gz"}]},{"Route":"_framework/System.Net.NetworkInformation.wasm","AssetFile":"_framework/System.Net.NetworkInformation.k8343mqust.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8="}]},{"Route":"_framework/System.Net.NetworkInformation.wasm","AssetFile":"_framework/System.Net.NetworkInformation.k8343mqust.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000078560767"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12728"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8="},{"Name":"original-resource","Value":"\"ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8=\""}]},{"Route":"_framework/System.Net.NetworkInformation.wasm.gz","AssetFile":"_framework/System.Net.NetworkInformation.k8343mqust.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12728"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0="}]},{"Route":"_framework/System.Net.Ping.00vh2kvsiz.wasm","AssetFile":"_framework/System.Net.Ping.00vh2kvsiz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"17685"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"00vh2kvsiz"},{"Name":"integrity","Value":"sha256-MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s="},{"Name":"label","Value":"_framework/System.Net.Ping.wasm"}]},{"Route":"_framework/System.Net.Ping.00vh2kvsiz.wasm","AssetFile":"_framework/System.Net.Ping.00vh2kvsiz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000132573247"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7542"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"00vh2kvsiz"},{"Name":"integrity","Value":"sha256-MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s="},{"Name":"label","Value":"_framework/System.Net.Ping.wasm"},{"Name":"original-resource","Value":"\"MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s=\""}]},{"Route":"_framework/System.Net.Ping.00vh2kvsiz.wasm.gz","AssetFile":"_framework/System.Net.Ping.00vh2kvsiz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7542"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"00vh2kvsiz"},{"Name":"integrity","Value":"sha256-MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM="},{"Name":"label","Value":"_framework/System.Net.Ping.wasm.gz"}]},{"Route":"_framework/System.Net.Ping.wasm","AssetFile":"_framework/System.Net.Ping.00vh2kvsiz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"17685"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s="}]},{"Route":"_framework/System.Net.Ping.wasm","AssetFile":"_framework/System.Net.Ping.00vh2kvsiz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000132573247"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7542"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s="},{"Name":"original-resource","Value":"\"MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s=\""}]},{"Route":"_framework/System.Net.Ping.wasm.gz","AssetFile":"_framework/System.Net.Ping.00vh2kvsiz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7542"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM="}]},{"Route":"_framework/System.Net.Primitives.wasm","AssetFile":"_framework/System.Net.Primitives.whs5oed1wm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"97045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s="}]},{"Route":"_framework/System.Net.Primitives.wasm","AssetFile":"_framework/System.Net.Primitives.whs5oed1wm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000021790765"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"45890"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s="},{"Name":"original-resource","Value":"\"fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s=\""}]},{"Route":"_framework/System.Net.Primitives.wasm.gz","AssetFile":"_framework/System.Net.Primitives.whs5oed1wm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"45890"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0="}]},{"Route":"_framework/System.Net.Primitives.whs5oed1wm.wasm","AssetFile":"_framework/System.Net.Primitives.whs5oed1wm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"97045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"whs5oed1wm"},{"Name":"integrity","Value":"sha256-fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s="},{"Name":"label","Value":"_framework/System.Net.Primitives.wasm"}]},{"Route":"_framework/System.Net.Primitives.whs5oed1wm.wasm","AssetFile":"_framework/System.Net.Primitives.whs5oed1wm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000021790765"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"45890"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"whs5oed1wm"},{"Name":"integrity","Value":"sha256-fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s="},{"Name":"label","Value":"_framework/System.Net.Primitives.wasm"},{"Name":"original-resource","Value":"\"fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s=\""}]},{"Route":"_framework/System.Net.Primitives.whs5oed1wm.wasm.gz","AssetFile":"_framework/System.Net.Primitives.whs5oed1wm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"45890"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"whs5oed1wm"},{"Name":"integrity","Value":"sha256-v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0="},{"Name":"label","Value":"_framework/System.Net.Primitives.wasm.gz"}]},{"Route":"_framework/System.Net.Quic.grloe2ix5j.wasm","AssetFile":"_framework/System.Net.Quic.grloe2ix5j.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"28949"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"grloe2ix5j"},{"Name":"integrity","Value":"sha256-1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA="},{"Name":"label","Value":"_framework/System.Net.Quic.wasm"}]},{"Route":"_framework/System.Net.Quic.grloe2ix5j.wasm","AssetFile":"_framework/System.Net.Quic.grloe2ix5j.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000091449474"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10934"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"grloe2ix5j"},{"Name":"integrity","Value":"sha256-1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA="},{"Name":"label","Value":"_framework/System.Net.Quic.wasm"},{"Name":"original-resource","Value":"\"1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA=\""}]},{"Route":"_framework/System.Net.Quic.grloe2ix5j.wasm.gz","AssetFile":"_framework/System.Net.Quic.grloe2ix5j.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10934"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"grloe2ix5j"},{"Name":"integrity","Value":"sha256-IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8="},{"Name":"label","Value":"_framework/System.Net.Quic.wasm.gz"}]},{"Route":"_framework/System.Net.Quic.wasm","AssetFile":"_framework/System.Net.Quic.grloe2ix5j.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"28949"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA="}]},{"Route":"_framework/System.Net.Quic.wasm","AssetFile":"_framework/System.Net.Quic.grloe2ix5j.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000091449474"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10934"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA="},{"Name":"original-resource","Value":"\"1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA=\""}]},{"Route":"_framework/System.Net.Quic.wasm.gz","AssetFile":"_framework/System.Net.Quic.grloe2ix5j.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10934"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8="}]},{"Route":"_framework/System.Net.Requests.r8ar2pd94c.wasm","AssetFile":"_framework/System.Net.Requests.r8ar2pd94c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r8ar2pd94c"},{"Name":"integrity","Value":"sha256-ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88="},{"Name":"label","Value":"_framework/System.Net.Requests.wasm"}]},{"Route":"_framework/System.Net.Requests.r8ar2pd94c.wasm","AssetFile":"_framework/System.Net.Requests.r8ar2pd94c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000049275648"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20293"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r8ar2pd94c"},{"Name":"integrity","Value":"sha256-ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88="},{"Name":"label","Value":"_framework/System.Net.Requests.wasm"},{"Name":"original-resource","Value":"\"ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88=\""}]},{"Route":"_framework/System.Net.Requests.r8ar2pd94c.wasm.gz","AssetFile":"_framework/System.Net.Requests.r8ar2pd94c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20293"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r8ar2pd94c"},{"Name":"integrity","Value":"sha256-gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA="},{"Name":"label","Value":"_framework/System.Net.Requests.wasm.gz"}]},{"Route":"_framework/System.Net.Requests.wasm","AssetFile":"_framework/System.Net.Requests.r8ar2pd94c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88="}]},{"Route":"_framework/System.Net.Requests.wasm","AssetFile":"_framework/System.Net.Requests.r8ar2pd94c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000049275648"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20293"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88="},{"Name":"original-resource","Value":"\"ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88=\""}]},{"Route":"_framework/System.Net.Requests.wasm.gz","AssetFile":"_framework/System.Net.Requests.r8ar2pd94c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20293"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA="}]},{"Route":"_framework/System.Net.Security.wasm","AssetFile":"_framework/System.Net.Security.yn3zcskz4j.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"104213"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ="}]},{"Route":"_framework/System.Net.Security.wasm","AssetFile":"_framework/System.Net.Security.yn3zcskz4j.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029683279"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33688"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ="},{"Name":"original-resource","Value":"\"TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ=\""}]},{"Route":"_framework/System.Net.Security.wasm.gz","AssetFile":"_framework/System.Net.Security.yn3zcskz4j.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33688"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ="}]},{"Route":"_framework/System.Net.Security.yn3zcskz4j.wasm","AssetFile":"_framework/System.Net.Security.yn3zcskz4j.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"104213"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yn3zcskz4j"},{"Name":"integrity","Value":"sha256-TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ="},{"Name":"label","Value":"_framework/System.Net.Security.wasm"}]},{"Route":"_framework/System.Net.Security.yn3zcskz4j.wasm","AssetFile":"_framework/System.Net.Security.yn3zcskz4j.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029683279"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33688"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yn3zcskz4j"},{"Name":"integrity","Value":"sha256-TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ="},{"Name":"label","Value":"_framework/System.Net.Security.wasm"},{"Name":"original-resource","Value":"\"TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ=\""}]},{"Route":"_framework/System.Net.Security.yn3zcskz4j.wasm.gz","AssetFile":"_framework/System.Net.Security.yn3zcskz4j.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33688"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yn3zcskz4j"},{"Name":"integrity","Value":"sha256-pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ="},{"Name":"label","Value":"_framework/System.Net.Security.wasm.gz"}]},{"Route":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm","AssetFile":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"30485"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37wbq4jfsy"},{"Name":"integrity","Value":"sha256-Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho="},{"Name":"label","Value":"_framework/System.Net.ServerSentEvents.wasm"}]},{"Route":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm","AssetFile":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000068175620"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14667"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37wbq4jfsy"},{"Name":"integrity","Value":"sha256-Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho="},{"Name":"label","Value":"_framework/System.Net.ServerSentEvents.wasm"},{"Name":"original-resource","Value":"\"Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho=\""}]},{"Route":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm.gz","AssetFile":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14667"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37wbq4jfsy"},{"Name":"integrity","Value":"sha256-FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o="},{"Name":"label","Value":"_framework/System.Net.ServerSentEvents.wasm.gz"}]},{"Route":"_framework/System.Net.ServerSentEvents.wasm","AssetFile":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"30485"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho="}]},{"Route":"_framework/System.Net.ServerSentEvents.wasm","AssetFile":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000068175620"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14667"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho="},{"Name":"original-resource","Value":"\"Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho=\""}]},{"Route":"_framework/System.Net.ServerSentEvents.wasm.gz","AssetFile":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14667"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o="}]},{"Route":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm","AssetFile":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j436yqvrg9"},{"Name":"integrity","Value":"sha256-rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg="},{"Name":"label","Value":"_framework/System.Net.ServicePoint.wasm"}]},{"Route":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm","AssetFile":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000458715596"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2179"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j436yqvrg9"},{"Name":"integrity","Value":"sha256-rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg="},{"Name":"label","Value":"_framework/System.Net.ServicePoint.wasm"},{"Name":"original-resource","Value":"\"rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg=\""}]},{"Route":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm.gz","AssetFile":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2179"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j436yqvrg9"},{"Name":"integrity","Value":"sha256-NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI="},{"Name":"label","Value":"_framework/System.Net.ServicePoint.wasm.gz"}]},{"Route":"_framework/System.Net.ServicePoint.wasm","AssetFile":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg="}]},{"Route":"_framework/System.Net.ServicePoint.wasm","AssetFile":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000458715596"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2179"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg="},{"Name":"original-resource","Value":"\"rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg=\""}]},{"Route":"_framework/System.Net.ServicePoint.wasm.gz","AssetFile":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2179"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI="}]},{"Route":"_framework/System.Net.Sockets.utzdm9sw2p.wasm","AssetFile":"_framework/System.Net.Sockets.utzdm9sw2p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"64277"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"utzdm9sw2p"},{"Name":"integrity","Value":"sha256-olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo="},{"Name":"label","Value":"_framework/System.Net.Sockets.wasm"}]},{"Route":"_framework/System.Net.Sockets.utzdm9sw2p.wasm","AssetFile":"_framework/System.Net.Sockets.utzdm9sw2p.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000043631921"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22918"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"utzdm9sw2p"},{"Name":"integrity","Value":"sha256-olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo="},{"Name":"label","Value":"_framework/System.Net.Sockets.wasm"},{"Name":"original-resource","Value":"\"olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo=\""}]},{"Route":"_framework/System.Net.Sockets.utzdm9sw2p.wasm.gz","AssetFile":"_framework/System.Net.Sockets.utzdm9sw2p.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22918"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"utzdm9sw2p"},{"Name":"integrity","Value":"sha256-XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI="},{"Name":"label","Value":"_framework/System.Net.Sockets.wasm.gz"}]},{"Route":"_framework/System.Net.Sockets.wasm","AssetFile":"_framework/System.Net.Sockets.utzdm9sw2p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"64277"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo="}]},{"Route":"_framework/System.Net.Sockets.wasm","AssetFile":"_framework/System.Net.Sockets.utzdm9sw2p.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000043631921"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22918"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo="},{"Name":"original-resource","Value":"\"olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo=\""}]},{"Route":"_framework/System.Net.Sockets.wasm.gz","AssetFile":"_framework/System.Net.Sockets.utzdm9sw2p.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22918"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI="}]},{"Route":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm","AssetFile":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e5a4gx4ylt"},{"Name":"integrity","Value":"sha256-YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk="},{"Name":"label","Value":"_framework/System.Net.WebClient.wasm"}]},{"Route":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm","AssetFile":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067870232"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e5a4gx4ylt"},{"Name":"integrity","Value":"sha256-YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk="},{"Name":"label","Value":"_framework/System.Net.WebClient.wasm"},{"Name":"original-resource","Value":"\"YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk=\""}]},{"Route":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm.gz","AssetFile":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e5a4gx4ylt"},{"Name":"integrity","Value":"sha256-FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI="},{"Name":"label","Value":"_framework/System.Net.WebClient.wasm.gz"}]},{"Route":"_framework/System.Net.WebClient.wasm","AssetFile":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk="}]},{"Route":"_framework/System.Net.WebClient.wasm","AssetFile":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067870232"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk="},{"Name":"original-resource","Value":"\"YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk=\""}]},{"Route":"_framework/System.Net.WebClient.wasm.gz","AssetFile":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI="}]},{"Route":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm","AssetFile":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rbzkmij005"},{"Name":"integrity","Value":"sha256-132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE="},{"Name":"label","Value":"_framework/System.Net.WebHeaderCollection.wasm"}]},{"Route":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm","AssetFile":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000097952787"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10208"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rbzkmij005"},{"Name":"integrity","Value":"sha256-132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE="},{"Name":"label","Value":"_framework/System.Net.WebHeaderCollection.wasm"},{"Name":"original-resource","Value":"\"132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE=\""}]},{"Route":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm.gz","AssetFile":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10208"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rbzkmij005"},{"Name":"integrity","Value":"sha256-y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU="},{"Name":"label","Value":"_framework/System.Net.WebHeaderCollection.wasm.gz"}]},{"Route":"_framework/System.Net.WebHeaderCollection.wasm","AssetFile":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE="}]},{"Route":"_framework/System.Net.WebHeaderCollection.wasm","AssetFile":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000097952787"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10208"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE="},{"Name":"original-resource","Value":"\"132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE=\""}]},{"Route":"_framework/System.Net.WebHeaderCollection.wasm.gz","AssetFile":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10208"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU="}]},{"Route":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm","AssetFile":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"38jcv8jeeu"},{"Name":"integrity","Value":"sha256-UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok="},{"Name":"label","Value":"_framework/System.Net.WebProxy.wasm"}]},{"Route":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm","AssetFile":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000177872643"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5621"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"38jcv8jeeu"},{"Name":"integrity","Value":"sha256-UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok="},{"Name":"label","Value":"_framework/System.Net.WebProxy.wasm"},{"Name":"original-resource","Value":"\"UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok=\""}]},{"Route":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm.gz","AssetFile":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5621"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"38jcv8jeeu"},{"Name":"integrity","Value":"sha256-8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA="},{"Name":"label","Value":"_framework/System.Net.WebProxy.wasm.gz"}]},{"Route":"_framework/System.Net.WebProxy.wasm","AssetFile":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok="}]},{"Route":"_framework/System.Net.WebProxy.wasm","AssetFile":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000177872643"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5621"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok="},{"Name":"original-resource","Value":"\"UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok=\""}]},{"Route":"_framework/System.Net.WebProxy.wasm.gz","AssetFile":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5621"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA="}]},{"Route":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm","AssetFile":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"42261"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nv5izr3rt6"},{"Name":"integrity","Value":"sha256-vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc="},{"Name":"label","Value":"_framework/System.Net.WebSockets.Client.wasm"}]},{"Route":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm","AssetFile":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000055803571"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17919"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nv5izr3rt6"},{"Name":"integrity","Value":"sha256-vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc="},{"Name":"label","Value":"_framework/System.Net.WebSockets.Client.wasm"},{"Name":"original-resource","Value":"\"vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc=\""}]},{"Route":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm.gz","AssetFile":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17919"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nv5izr3rt6"},{"Name":"integrity","Value":"sha256-XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY="},{"Name":"label","Value":"_framework/System.Net.WebSockets.Client.wasm.gz"}]},{"Route":"_framework/System.Net.WebSockets.Client.wasm","AssetFile":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"42261"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc="}]},{"Route":"_framework/System.Net.WebSockets.Client.wasm","AssetFile":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000055803571"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17919"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc="},{"Name":"original-resource","Value":"\"vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc=\""}]},{"Route":"_framework/System.Net.WebSockets.Client.wasm.gz","AssetFile":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17919"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY="}]},{"Route":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm","AssetFile":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"98581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hdzn84g6uh"},{"Name":"integrity","Value":"sha256-1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE="},{"Name":"label","Value":"_framework/System.Net.WebSockets.wasm"}]},{"Route":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm","AssetFile":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000024645718"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"40574"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hdzn84g6uh"},{"Name":"integrity","Value":"sha256-1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE="},{"Name":"label","Value":"_framework/System.Net.WebSockets.wasm"},{"Name":"original-resource","Value":"\"1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE=\""}]},{"Route":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm.gz","AssetFile":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"40574"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hdzn84g6uh"},{"Name":"integrity","Value":"sha256-dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo="},{"Name":"label","Value":"_framework/System.Net.WebSockets.wasm.gz"}]},{"Route":"_framework/System.Net.WebSockets.wasm","AssetFile":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"98581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE="}]},{"Route":"_framework/System.Net.WebSockets.wasm","AssetFile":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000024645718"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"40574"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE="},{"Name":"original-resource","Value":"\"1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE=\""}]},{"Route":"_framework/System.Net.WebSockets.wasm.gz","AssetFile":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"40574"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo="}]},{"Route":"_framework/System.Net.wasm","AssetFile":"_framework/System.Net.zku96ychk7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU="}]},{"Route":"_framework/System.Net.wasm","AssetFile":"_framework/System.Net.zku96ychk7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000362976407"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2754"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU="},{"Name":"original-resource","Value":"\"E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU=\""}]},{"Route":"_framework/System.Net.wasm.gz","AssetFile":"_framework/System.Net.zku96ychk7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2754"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY="}]},{"Route":"_framework/System.Net.zku96ychk7.wasm","AssetFile":"_framework/System.Net.zku96ychk7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zku96ychk7"},{"Name":"integrity","Value":"sha256-E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU="},{"Name":"label","Value":"_framework/System.Net.wasm"}]},{"Route":"_framework/System.Net.zku96ychk7.wasm","AssetFile":"_framework/System.Net.zku96ychk7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000362976407"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2754"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zku96ychk7"},{"Name":"integrity","Value":"sha256-E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU="},{"Name":"label","Value":"_framework/System.Net.wasm"},{"Name":"original-resource","Value":"\"E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU=\""}]},{"Route":"_framework/System.Net.zku96ychk7.wasm.gz","AssetFile":"_framework/System.Net.zku96ychk7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2754"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zku96ychk7"},{"Name":"integrity","Value":"sha256-boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY="},{"Name":"label","Value":"_framework/System.Net.wasm.gz"}]},{"Route":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm","AssetFile":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1l8xruz8uh"},{"Name":"integrity","Value":"sha256-tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg="},{"Name":"label","Value":"_framework/System.Numerics.Vectors.wasm"}]},{"Route":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm","AssetFile":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000439367311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1l8xruz8uh"},{"Name":"integrity","Value":"sha256-tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg="},{"Name":"label","Value":"_framework/System.Numerics.Vectors.wasm"},{"Name":"original-resource","Value":"\"tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg=\""}]},{"Route":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm.gz","AssetFile":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1l8xruz8uh"},{"Name":"integrity","Value":"sha256-XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q="},{"Name":"label","Value":"_framework/System.Numerics.Vectors.wasm.gz"}]},{"Route":"_framework/System.Numerics.Vectors.wasm","AssetFile":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg="}]},{"Route":"_framework/System.Numerics.Vectors.wasm","AssetFile":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000439367311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg="},{"Name":"original-resource","Value":"\"tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg=\""}]},{"Route":"_framework/System.Numerics.Vectors.wasm.gz","AssetFile":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q="}]},{"Route":"_framework/System.Numerics.on9qk50okp.wasm","AssetFile":"_framework/System.Numerics.on9qk50okp.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"on9qk50okp"},{"Name":"integrity","Value":"sha256-ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk="},{"Name":"label","Value":"_framework/System.Numerics.wasm"}]},{"Route":"_framework/System.Numerics.on9qk50okp.wasm","AssetFile":"_framework/System.Numerics.on9qk50okp.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000490677134"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2037"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"on9qk50okp"},{"Name":"integrity","Value":"sha256-ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk="},{"Name":"label","Value":"_framework/System.Numerics.wasm"},{"Name":"original-resource","Value":"\"ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk=\""}]},{"Route":"_framework/System.Numerics.on9qk50okp.wasm.gz","AssetFile":"_framework/System.Numerics.on9qk50okp.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2037"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"on9qk50okp"},{"Name":"integrity","Value":"sha256-voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ="},{"Name":"label","Value":"_framework/System.Numerics.wasm.gz"}]},{"Route":"_framework/System.Numerics.wasm","AssetFile":"_framework/System.Numerics.on9qk50okp.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk="}]},{"Route":"_framework/System.Numerics.wasm","AssetFile":"_framework/System.Numerics.on9qk50okp.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000490677134"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2037"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk="},{"Name":"original-resource","Value":"\"ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk=\""}]},{"Route":"_framework/System.Numerics.wasm.gz","AssetFile":"_framework/System.Numerics.on9qk50okp.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2037"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ="}]},{"Route":"_framework/System.ObjectModel.4omhtq90sd.wasm","AssetFile":"_framework/System.ObjectModel.4omhtq90sd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"30997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4omhtq90sd"},{"Name":"integrity","Value":"sha256-BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU="},{"Name":"label","Value":"_framework/System.ObjectModel.wasm"}]},{"Route":"_framework/System.ObjectModel.4omhtq90sd.wasm","AssetFile":"_framework/System.ObjectModel.4omhtq90sd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000074867111"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13356"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4omhtq90sd"},{"Name":"integrity","Value":"sha256-BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU="},{"Name":"label","Value":"_framework/System.ObjectModel.wasm"},{"Name":"original-resource","Value":"\"BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU=\""}]},{"Route":"_framework/System.ObjectModel.4omhtq90sd.wasm.gz","AssetFile":"_framework/System.ObjectModel.4omhtq90sd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13356"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4omhtq90sd"},{"Name":"integrity","Value":"sha256-RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw="},{"Name":"label","Value":"_framework/System.ObjectModel.wasm.gz"}]},{"Route":"_framework/System.ObjectModel.wasm","AssetFile":"_framework/System.ObjectModel.4omhtq90sd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"30997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU="}]},{"Route":"_framework/System.ObjectModel.wasm","AssetFile":"_framework/System.ObjectModel.4omhtq90sd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000074867111"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13356"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU="},{"Name":"original-resource","Value":"\"BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU=\""}]},{"Route":"_framework/System.ObjectModel.wasm.gz","AssetFile":"_framework/System.ObjectModel.4omhtq90sd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13356"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw="}]},{"Route":"_framework/System.Private.CoreLib.koxlwnosh6.wasm","AssetFile":"_framework/System.Private.CoreLib.koxlwnosh6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4869401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"koxlwnosh6"},{"Name":"integrity","Value":"sha256-xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg="},{"Name":"label","Value":"_framework/System.Private.CoreLib.wasm"}]},{"Route":"_framework/System.Private.CoreLib.koxlwnosh6.wasm","AssetFile":"_framework/System.Private.CoreLib.koxlwnosh6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000644190"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1552335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"koxlwnosh6"},{"Name":"integrity","Value":"sha256-xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg="},{"Name":"label","Value":"_framework/System.Private.CoreLib.wasm"},{"Name":"original-resource","Value":"\"xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg=\""}]},{"Route":"_framework/System.Private.CoreLib.koxlwnosh6.wasm.gz","AssetFile":"_framework/System.Private.CoreLib.koxlwnosh6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1552335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"koxlwnosh6"},{"Name":"integrity","Value":"sha256-8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw="},{"Name":"label","Value":"_framework/System.Private.CoreLib.wasm.gz"}]},{"Route":"_framework/System.Private.CoreLib.wasm","AssetFile":"_framework/System.Private.CoreLib.koxlwnosh6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4869401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg="}]},{"Route":"_framework/System.Private.CoreLib.wasm","AssetFile":"_framework/System.Private.CoreLib.koxlwnosh6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000644190"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1552335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg="},{"Name":"original-resource","Value":"\"xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg=\""}]},{"Route":"_framework/System.Private.CoreLib.wasm.gz","AssetFile":"_framework/System.Private.CoreLib.koxlwnosh6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1552335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw="}]},{"Route":"_framework/System.Private.DataContractSerialization.wasm","AssetFile":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"849173"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs="}]},{"Route":"_framework/System.Private.DataContractSerialization.wasm","AssetFile":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003313518"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"301793"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs="},{"Name":"original-resource","Value":"\"qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs=\""}]},{"Route":"_framework/System.Private.DataContractSerialization.wasm.gz","AssetFile":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"301793"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E="}]},{"Route":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm","AssetFile":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"849173"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zlwtcvnuqv"},{"Name":"integrity","Value":"sha256-qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs="},{"Name":"label","Value":"_framework/System.Private.DataContractSerialization.wasm"}]},{"Route":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm","AssetFile":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003313518"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"301793"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zlwtcvnuqv"},{"Name":"integrity","Value":"sha256-qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs="},{"Name":"label","Value":"_framework/System.Private.DataContractSerialization.wasm"},{"Name":"original-resource","Value":"\"qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs=\""}]},{"Route":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm.gz","AssetFile":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"301793"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zlwtcvnuqv"},{"Name":"integrity","Value":"sha256-U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E="},{"Name":"label","Value":"_framework/System.Private.DataContractSerialization.wasm.gz"}]},{"Route":"_framework/System.Private.Uri.clehp4avpy.wasm","AssetFile":"_framework/System.Private.Uri.clehp4avpy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"95509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clehp4avpy"},{"Name":"integrity","Value":"sha256-IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU="},{"Name":"label","Value":"_framework/System.Private.Uri.wasm"}]},{"Route":"_framework/System.Private.Uri.clehp4avpy.wasm","AssetFile":"_framework/System.Private.Uri.clehp4avpy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023629490"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42319"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clehp4avpy"},{"Name":"integrity","Value":"sha256-IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU="},{"Name":"label","Value":"_framework/System.Private.Uri.wasm"},{"Name":"original-resource","Value":"\"IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU=\""}]},{"Route":"_framework/System.Private.Uri.clehp4avpy.wasm.gz","AssetFile":"_framework/System.Private.Uri.clehp4avpy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42319"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clehp4avpy"},{"Name":"integrity","Value":"sha256-jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8="},{"Name":"label","Value":"_framework/System.Private.Uri.wasm.gz"}]},{"Route":"_framework/System.Private.Uri.wasm","AssetFile":"_framework/System.Private.Uri.clehp4avpy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"95509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU="}]},{"Route":"_framework/System.Private.Uri.wasm","AssetFile":"_framework/System.Private.Uri.clehp4avpy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023629490"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42319"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU="},{"Name":"original-resource","Value":"\"IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU=\""}]},{"Route":"_framework/System.Private.Uri.wasm.gz","AssetFile":"_framework/System.Private.Uri.clehp4avpy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42319"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8="}]},{"Route":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm","AssetFile":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"143637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ga3n3gh9b6"},{"Name":"integrity","Value":"sha256-aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0="},{"Name":"label","Value":"_framework/System.Private.Xml.Linq.wasm"}]},{"Route":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm","AssetFile":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017054951"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"58633"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ga3n3gh9b6"},{"Name":"integrity","Value":"sha256-aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0="},{"Name":"label","Value":"_framework/System.Private.Xml.Linq.wasm"},{"Name":"original-resource","Value":"\"aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0=\""}]},{"Route":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm.gz","AssetFile":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"58633"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ga3n3gh9b6"},{"Name":"integrity","Value":"sha256-wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g="},{"Name":"label","Value":"_framework/System.Private.Xml.Linq.wasm.gz"}]},{"Route":"_framework/System.Private.Xml.Linq.wasm","AssetFile":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"143637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0="}]},{"Route":"_framework/System.Private.Xml.Linq.wasm","AssetFile":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017054951"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"58633"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0="},{"Name":"original-resource","Value":"\"aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0=\""}]},{"Route":"_framework/System.Private.Xml.Linq.wasm.gz","AssetFile":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"58633"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g="}]},{"Route":"_framework/System.Private.Xml.g9rvjereoe.wasm","AssetFile":"_framework/System.Private.Xml.g9rvjereoe.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3095833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g9rvjereoe"},{"Name":"integrity","Value":"sha256-xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0="},{"Name":"label","Value":"_framework/System.Private.Xml.wasm"}]},{"Route":"_framework/System.Private.Xml.g9rvjereoe.wasm","AssetFile":"_framework/System.Private.Xml.g9rvjereoe.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000949553"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1053126"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g9rvjereoe"},{"Name":"integrity","Value":"sha256-xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0="},{"Name":"label","Value":"_framework/System.Private.Xml.wasm"},{"Name":"original-resource","Value":"\"xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0=\""}]},{"Route":"_framework/System.Private.Xml.g9rvjereoe.wasm.gz","AssetFile":"_framework/System.Private.Xml.g9rvjereoe.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1053126"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g9rvjereoe"},{"Name":"integrity","Value":"sha256-K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw="},{"Name":"label","Value":"_framework/System.Private.Xml.wasm.gz"}]},{"Route":"_framework/System.Private.Xml.wasm","AssetFile":"_framework/System.Private.Xml.g9rvjereoe.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3095833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0="}]},{"Route":"_framework/System.Private.Xml.wasm","AssetFile":"_framework/System.Private.Xml.g9rvjereoe.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000949553"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1053126"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0="},{"Name":"original-resource","Value":"\"xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0=\""}]},{"Route":"_framework/System.Private.Xml.wasm.gz","AssetFile":"_framework/System.Private.Xml.g9rvjereoe.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1053126"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw="}]},{"Route":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm","AssetFile":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27925"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7qn4zpc0q"},{"Name":"integrity","Value":"sha256-mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME="},{"Name":"label","Value":"_framework/System.Reflection.DispatchProxy.wasm"}]},{"Route":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm","AssetFile":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000078814628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12687"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7qn4zpc0q"},{"Name":"integrity","Value":"sha256-mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME="},{"Name":"label","Value":"_framework/System.Reflection.DispatchProxy.wasm"},{"Name":"original-resource","Value":"\"mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME=\""}]},{"Route":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm.gz","AssetFile":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12687"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7qn4zpc0q"},{"Name":"integrity","Value":"sha256-VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w="},{"Name":"label","Value":"_framework/System.Reflection.DispatchProxy.wasm.gz"}]},{"Route":"_framework/System.Reflection.DispatchProxy.wasm","AssetFile":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"27925"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME="}]},{"Route":"_framework/System.Reflection.DispatchProxy.wasm","AssetFile":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000078814628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12687"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME="},{"Name":"original-resource","Value":"\"mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME=\""}]},{"Route":"_framework/System.Reflection.DispatchProxy.wasm.gz","AssetFile":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12687"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w="}]},{"Route":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm","AssetFile":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"122645"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3t7flfwg7o"},{"Name":"integrity","Value":"sha256-uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8="},{"Name":"label","Value":"_framework/System.Reflection.Emit.wasm"}]},{"Route":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm","AssetFile":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018778637"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"53251"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3t7flfwg7o"},{"Name":"integrity","Value":"sha256-uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8="},{"Name":"label","Value":"_framework/System.Reflection.Emit.wasm"},{"Name":"original-resource","Value":"\"uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8=\""}]},{"Route":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm.gz","AssetFile":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"53251"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3t7flfwg7o"},{"Name":"integrity","Value":"sha256-2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ="},{"Name":"label","Value":"_framework/System.Reflection.Emit.wasm.gz"}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.wasm","AssetFile":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80="}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.wasm","AssetFile":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000437828371"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2283"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80="},{"Name":"original-resource","Value":"\"ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80=\""}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.wasm.gz","AssetFile":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2283"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE="}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm","AssetFile":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0vkqyycss"},{"Name":"integrity","Value":"sha256-ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80="},{"Name":"label","Value":"_framework/System.Reflection.Emit.ILGeneration.wasm"}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm","AssetFile":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000437828371"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2283"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0vkqyycss"},{"Name":"integrity","Value":"sha256-ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80="},{"Name":"label","Value":"_framework/System.Reflection.Emit.ILGeneration.wasm"},{"Name":"original-resource","Value":"\"ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80=\""}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm.gz","AssetFile":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2283"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0vkqyycss"},{"Name":"integrity","Value":"sha256-YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE="},{"Name":"label","Value":"_framework/System.Reflection.Emit.ILGeneration.wasm.gz"}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm","AssetFile":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3tzjd7znni"},{"Name":"integrity","Value":"sha256-B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k="},{"Name":"label","Value":"_framework/System.Reflection.Emit.Lightweight.wasm"}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm","AssetFile":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000446827525"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3tzjd7znni"},{"Name":"integrity","Value":"sha256-B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k="},{"Name":"label","Value":"_framework/System.Reflection.Emit.Lightweight.wasm"},{"Name":"original-resource","Value":"\"B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k=\""}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm.gz","AssetFile":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3tzjd7znni"},{"Name":"integrity","Value":"sha256-XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk="},{"Name":"label","Value":"_framework/System.Reflection.Emit.Lightweight.wasm.gz"}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.wasm","AssetFile":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k="}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.wasm","AssetFile":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000446827525"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k="},{"Name":"original-resource","Value":"\"B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k=\""}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.wasm.gz","AssetFile":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk="}]},{"Route":"_framework/System.Reflection.Emit.wasm","AssetFile":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"122645"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8="}]},{"Route":"_framework/System.Reflection.Emit.wasm","AssetFile":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018778637"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"53251"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8="},{"Name":"original-resource","Value":"\"uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8=\""}]},{"Route":"_framework/System.Reflection.Emit.wasm.gz","AssetFile":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"53251"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ="}]},{"Route":"_framework/System.Reflection.Extensions.wasm","AssetFile":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo="}]},{"Route":"_framework/System.Reflection.Extensions.wasm","AssetFile":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000462107209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2163"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo="},{"Name":"original-resource","Value":"\"xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo=\""}]},{"Route":"_framework/System.Reflection.Extensions.wasm.gz","AssetFile":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2163"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4="}]},{"Route":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm","AssetFile":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ymwga5opgl"},{"Name":"integrity","Value":"sha256-xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo="},{"Name":"label","Value":"_framework/System.Reflection.Extensions.wasm"}]},{"Route":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm","AssetFile":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000462107209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2163"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ymwga5opgl"},{"Name":"integrity","Value":"sha256-xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo="},{"Name":"label","Value":"_framework/System.Reflection.Extensions.wasm"},{"Name":"original-resource","Value":"\"xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo=\""}]},{"Route":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm.gz","AssetFile":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2163"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ymwga5opgl"},{"Name":"integrity","Value":"sha256-QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4="},{"Name":"label","Value":"_framework/System.Reflection.Extensions.wasm.gz"}]},{"Route":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm","AssetFile":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"493333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9lgg9wjd2a"},{"Name":"integrity","Value":"sha256-/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0="},{"Name":"label","Value":"_framework/System.Reflection.Metadata.wasm"}]},{"Route":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm","AssetFile":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005202589"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"192211"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9lgg9wjd2a"},{"Name":"integrity","Value":"sha256-/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0="},{"Name":"label","Value":"_framework/System.Reflection.Metadata.wasm"},{"Name":"original-resource","Value":"\"/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0=\""}]},{"Route":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm.gz","AssetFile":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"192211"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9lgg9wjd2a"},{"Name":"integrity","Value":"sha256-bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM="},{"Name":"label","Value":"_framework/System.Reflection.Metadata.wasm.gz"}]},{"Route":"_framework/System.Reflection.Metadata.wasm","AssetFile":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"493333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0="}]},{"Route":"_framework/System.Reflection.Metadata.wasm","AssetFile":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005202589"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"192211"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0="},{"Name":"original-resource","Value":"\"/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0=\""}]},{"Route":"_framework/System.Reflection.Metadata.wasm.gz","AssetFile":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"192211"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM="}]},{"Route":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm","AssetFile":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"n2ngq6as7g"},{"Name":"integrity","Value":"sha256-z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY="},{"Name":"label","Value":"_framework/System.Reflection.Primitives.wasm"}]},{"Route":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm","AssetFile":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000423190859"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"n2ngq6as7g"},{"Name":"integrity","Value":"sha256-z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY="},{"Name":"label","Value":"_framework/System.Reflection.Primitives.wasm"},{"Name":"original-resource","Value":"\"z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY=\""}]},{"Route":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm.gz","AssetFile":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"n2ngq6as7g"},{"Name":"integrity","Value":"sha256-DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac="},{"Name":"label","Value":"_framework/System.Reflection.Primitives.wasm.gz"}]},{"Route":"_framework/System.Reflection.Primitives.wasm","AssetFile":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY="}]},{"Route":"_framework/System.Reflection.Primitives.wasm","AssetFile":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000423190859"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY="},{"Name":"original-resource","Value":"\"z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY=\""}]},{"Route":"_framework/System.Reflection.Primitives.wasm.gz","AssetFile":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac="}]},{"Route":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm","AssetFile":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"14101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ivmzcfvrc6"},{"Name":"integrity","Value":"sha256-jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0="},{"Name":"label","Value":"_framework/System.Reflection.TypeExtensions.wasm"}]},{"Route":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm","AssetFile":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000170561146"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ivmzcfvrc6"},{"Name":"integrity","Value":"sha256-jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0="},{"Name":"label","Value":"_framework/System.Reflection.TypeExtensions.wasm"},{"Name":"original-resource","Value":"\"jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0=\""}]},{"Route":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm.gz","AssetFile":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ivmzcfvrc6"},{"Name":"integrity","Value":"sha256-UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY="},{"Name":"label","Value":"_framework/System.Reflection.TypeExtensions.wasm.gz"}]},{"Route":"_framework/System.Reflection.TypeExtensions.wasm","AssetFile":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"14101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0="}]},{"Route":"_framework/System.Reflection.TypeExtensions.wasm","AssetFile":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000170561146"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0="},{"Name":"original-resource","Value":"\"jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0=\""}]},{"Route":"_framework/System.Reflection.TypeExtensions.wasm.gz","AssetFile":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY="}]},{"Route":"_framework/System.Reflection.v4mfyzbte8.wasm","AssetFile":"_framework/System.Reflection.v4mfyzbte8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v4mfyzbte8"},{"Name":"integrity","Value":"sha256-MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw="},{"Name":"label","Value":"_framework/System.Reflection.wasm"}]},{"Route":"_framework/System.Reflection.v4mfyzbte8.wasm","AssetFile":"_framework/System.Reflection.v4mfyzbte8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000404530744"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2471"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v4mfyzbte8"},{"Name":"integrity","Value":"sha256-MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw="},{"Name":"label","Value":"_framework/System.Reflection.wasm"},{"Name":"original-resource","Value":"\"MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw=\""}]},{"Route":"_framework/System.Reflection.v4mfyzbte8.wasm.gz","AssetFile":"_framework/System.Reflection.v4mfyzbte8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2471"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v4mfyzbte8"},{"Name":"integrity","Value":"sha256-/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng="},{"Name":"label","Value":"_framework/System.Reflection.wasm.gz"}]},{"Route":"_framework/System.Reflection.wasm","AssetFile":"_framework/System.Reflection.v4mfyzbte8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw="}]},{"Route":"_framework/System.Reflection.wasm","AssetFile":"_framework/System.Reflection.v4mfyzbte8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000404530744"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2471"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw="},{"Name":"original-resource","Value":"\"MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw=\""}]},{"Route":"_framework/System.Reflection.wasm.gz","AssetFile":"_framework/System.Reflection.v4mfyzbte8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2471"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng="}]},{"Route":"_framework/System.Resources.Reader.c9z9nieytf.wasm","AssetFile":"_framework/System.Resources.Reader.c9z9nieytf.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c9z9nieytf"},{"Name":"integrity","Value":"sha256-QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8="},{"Name":"label","Value":"_framework/System.Resources.Reader.wasm"}]},{"Route":"_framework/System.Resources.Reader.c9z9nieytf.wasm","AssetFile":"_framework/System.Resources.Reader.c9z9nieytf.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000469043152"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2131"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c9z9nieytf"},{"Name":"integrity","Value":"sha256-QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8="},{"Name":"label","Value":"_framework/System.Resources.Reader.wasm"},{"Name":"original-resource","Value":"\"QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8=\""}]},{"Route":"_framework/System.Resources.Reader.c9z9nieytf.wasm.gz","AssetFile":"_framework/System.Resources.Reader.c9z9nieytf.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2131"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c9z9nieytf"},{"Name":"integrity","Value":"sha256-1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI="},{"Name":"label","Value":"_framework/System.Resources.Reader.wasm.gz"}]},{"Route":"_framework/System.Resources.Reader.wasm","AssetFile":"_framework/System.Resources.Reader.c9z9nieytf.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8="}]},{"Route":"_framework/System.Resources.Reader.wasm","AssetFile":"_framework/System.Resources.Reader.c9z9nieytf.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000469043152"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2131"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8="},{"Name":"original-resource","Value":"\"QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8=\""}]},{"Route":"_framework/System.Resources.Reader.wasm.gz","AssetFile":"_framework/System.Resources.Reader.c9z9nieytf.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2131"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI="}]},{"Route":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm","AssetFile":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f3fiwdwb50"},{"Name":"integrity","Value":"sha256-61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw="},{"Name":"label","Value":"_framework/System.Resources.ResourceManager.wasm"}]},{"Route":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm","AssetFile":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000444642063"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2248"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f3fiwdwb50"},{"Name":"integrity","Value":"sha256-61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw="},{"Name":"label","Value":"_framework/System.Resources.ResourceManager.wasm"},{"Name":"original-resource","Value":"\"61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw=\""}]},{"Route":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm.gz","AssetFile":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2248"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f3fiwdwb50"},{"Name":"integrity","Value":"sha256-yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg="},{"Name":"label","Value":"_framework/System.Resources.ResourceManager.wasm.gz"}]},{"Route":"_framework/System.Resources.ResourceManager.wasm","AssetFile":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw="}]},{"Route":"_framework/System.Resources.ResourceManager.wasm","AssetFile":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000444642063"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2248"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw="},{"Name":"original-resource","Value":"\"61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw=\""}]},{"Route":"_framework/System.Resources.ResourceManager.wasm.gz","AssetFile":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2248"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg="}]},{"Route":"_framework/System.Resources.Writer.tx9namivq6.wasm","AssetFile":"_framework/System.Resources.Writer.tx9namivq6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"16661"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tx9namivq6"},{"Name":"integrity","Value":"sha256-EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw="},{"Name":"label","Value":"_framework/System.Resources.Writer.wasm"}]},{"Route":"_framework/System.Resources.Writer.tx9namivq6.wasm","AssetFile":"_framework/System.Resources.Writer.tx9namivq6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000131839156"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7584"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tx9namivq6"},{"Name":"integrity","Value":"sha256-EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw="},{"Name":"label","Value":"_framework/System.Resources.Writer.wasm"},{"Name":"original-resource","Value":"\"EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw=\""}]},{"Route":"_framework/System.Resources.Writer.tx9namivq6.wasm.gz","AssetFile":"_framework/System.Resources.Writer.tx9namivq6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7584"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tx9namivq6"},{"Name":"integrity","Value":"sha256-mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw="},{"Name":"label","Value":"_framework/System.Resources.Writer.wasm.gz"}]},{"Route":"_framework/System.Resources.Writer.wasm","AssetFile":"_framework/System.Resources.Writer.tx9namivq6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"16661"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw="}]},{"Route":"_framework/System.Resources.Writer.wasm","AssetFile":"_framework/System.Resources.Writer.tx9namivq6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000131839156"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7584"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw="},{"Name":"original-resource","Value":"\"EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw=\""}]},{"Route":"_framework/System.Resources.Writer.wasm.gz","AssetFile":"_framework/System.Resources.Writer.tx9namivq6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7584"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw="}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5yw8jyjkyt"},{"Name":"integrity","Value":"sha256-M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.Unsafe.wasm"}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000468164794"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2135"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5yw8jyjkyt"},{"Name":"integrity","Value":"sha256-M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.Unsafe.wasm"},{"Name":"original-resource","Value":"\"M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc=\""}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm.gz","AssetFile":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2135"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5yw8jyjkyt"},{"Name":"integrity","Value":"sha256-b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.Unsafe.wasm.gz"}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc="}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000468164794"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2135"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc="},{"Name":"original-resource","Value":"\"M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc=\""}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.wasm.gz","AssetFile":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2135"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks="}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ddbsai2xh9"},{"Name":"integrity","Value":"sha256-b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.VisualC.wasm"}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000327868852"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3049"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ddbsai2xh9"},{"Name":"integrity","Value":"sha256-b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.VisualC.wasm"},{"Name":"original-resource","Value":"\"b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM=\""}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm.gz","AssetFile":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3049"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ddbsai2xh9"},{"Name":"integrity","Value":"sha256-XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.VisualC.wasm.gz"}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM="}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.wasm","AssetFile":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000327868852"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3049"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM="},{"Name":"original-resource","Value":"\"b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM=\""}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.wasm.gz","AssetFile":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3049"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo="}]},{"Route":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm","AssetFile":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"7445"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f4fqaba1oz"},{"Name":"integrity","Value":"sha256-8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8="},{"Name":"label","Value":"_framework/System.Runtime.Extensions.wasm"}]},{"Route":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm","AssetFile":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000333555704"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f4fqaba1oz"},{"Name":"integrity","Value":"sha256-8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8="},{"Name":"label","Value":"_framework/System.Runtime.Extensions.wasm"},{"Name":"original-resource","Value":"\"8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8=\""}]},{"Route":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm.gz","AssetFile":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f4fqaba1oz"},{"Name":"integrity","Value":"sha256-UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM="},{"Name":"label","Value":"_framework/System.Runtime.Extensions.wasm.gz"}]},{"Route":"_framework/System.Runtime.Extensions.wasm","AssetFile":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"7445"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8="}]},{"Route":"_framework/System.Runtime.Extensions.wasm","AssetFile":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000333555704"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8="},{"Name":"original-resource","Value":"\"8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8=\""}]},{"Route":"_framework/System.Runtime.Extensions.wasm.gz","AssetFile":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM="}]},{"Route":"_framework/System.Runtime.Handles.kpe61fymig.wasm","AssetFile":"_framework/System.Runtime.Handles.kpe61fymig.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kpe61fymig"},{"Name":"integrity","Value":"sha256-+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ="},{"Name":"label","Value":"_framework/System.Runtime.Handles.wasm"}]},{"Route":"_framework/System.Runtime.Handles.kpe61fymig.wasm","AssetFile":"_framework/System.Runtime.Handles.kpe61fymig.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000451467269"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2214"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kpe61fymig"},{"Name":"integrity","Value":"sha256-+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ="},{"Name":"label","Value":"_framework/System.Runtime.Handles.wasm"},{"Name":"original-resource","Value":"\"+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ=\""}]},{"Route":"_framework/System.Runtime.Handles.kpe61fymig.wasm.gz","AssetFile":"_framework/System.Runtime.Handles.kpe61fymig.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2214"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kpe61fymig"},{"Name":"integrity","Value":"sha256-P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8="},{"Name":"label","Value":"_framework/System.Runtime.Handles.wasm.gz"}]},{"Route":"_framework/System.Runtime.Handles.wasm","AssetFile":"_framework/System.Runtime.Handles.kpe61fymig.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ="}]},{"Route":"_framework/System.Runtime.Handles.wasm","AssetFile":"_framework/System.Runtime.Handles.kpe61fymig.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000451467269"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2214"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ="},{"Name":"original-resource","Value":"\"+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ=\""}]},{"Route":"_framework/System.Runtime.Handles.wasm.gz","AssetFile":"_framework/System.Runtime.Handles.kpe61fymig.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2214"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8="}]},{"Route":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm","AssetFile":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"54549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"02r2ubft18"},{"Name":"integrity","Value":"sha256-iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.wasm"}]},{"Route":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm","AssetFile":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000042457436"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23552"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"02r2ubft18"},{"Name":"integrity","Value":"sha256-iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.wasm"},{"Name":"original-resource","Value":"\"iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI=\""}]},{"Route":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm.gz","AssetFile":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23552"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"02r2ubft18"},{"Name":"integrity","Value":"sha256-hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.wasm.gz"}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.wasm","AssetFile":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"79637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk="}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.wasm","AssetFile":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000031413942"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk="},{"Name":"original-resource","Value":"\"BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk=\""}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.wasm.gz","AssetFile":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A="}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm","AssetFile":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"79637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ythr5w8c2e"},{"Name":"integrity","Value":"sha256-BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.JavaScript.wasm"}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm","AssetFile":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000031413942"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ythr5w8c2e"},{"Name":"integrity","Value":"sha256-BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.JavaScript.wasm"},{"Name":"original-resource","Value":"\"BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk=\""}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm.gz","AssetFile":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ythr5w8c2e"},{"Name":"integrity","Value":"sha256-BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.JavaScript.wasm.gz"}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm","AssetFile":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"esodb2rpbi"},{"Name":"integrity","Value":"sha256-Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm"}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm","AssetFile":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000462962963"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2159"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"esodb2rpbi"},{"Name":"integrity","Value":"sha256-Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm"},{"Name":"original-resource","Value":"\"Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s=\""}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm.gz","AssetFile":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2159"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"esodb2rpbi"},{"Name":"integrity","Value":"sha256-XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm.gz"}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm","AssetFile":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s="}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm","AssetFile":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000462962963"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2159"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s="},{"Name":"original-resource","Value":"\"Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s=\""}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm.gz","AssetFile":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2159"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA="}]},{"Route":"_framework/System.Runtime.InteropServices.wasm","AssetFile":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"54549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI="}]},{"Route":"_framework/System.Runtime.InteropServices.wasm","AssetFile":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000042457436"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23552"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI="},{"Name":"original-resource","Value":"\"iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI=\""}]},{"Route":"_framework/System.Runtime.InteropServices.wasm.gz","AssetFile":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23552"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs="}]},{"Route":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm","AssetFile":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8lrpban8m"},{"Name":"integrity","Value":"sha256-vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk="},{"Name":"label","Value":"_framework/System.Runtime.Intrinsics.wasm"}]},{"Route":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm","AssetFile":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000351617440"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2843"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8lrpban8m"},{"Name":"integrity","Value":"sha256-vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk="},{"Name":"label","Value":"_framework/System.Runtime.Intrinsics.wasm"},{"Name":"original-resource","Value":"\"vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk=\""}]},{"Route":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm.gz","AssetFile":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2843"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8lrpban8m"},{"Name":"integrity","Value":"sha256-RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4="},{"Name":"label","Value":"_framework/System.Runtime.Intrinsics.wasm.gz"}]},{"Route":"_framework/System.Runtime.Intrinsics.wasm","AssetFile":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk="}]},{"Route":"_framework/System.Runtime.Intrinsics.wasm","AssetFile":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000351617440"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2843"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk="},{"Name":"original-resource","Value":"\"vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk=\""}]},{"Route":"_framework/System.Runtime.Intrinsics.wasm.gz","AssetFile":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2843"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4="}]},{"Route":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm","AssetFile":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bm8d2pac0a"},{"Name":"integrity","Value":"sha256-Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4="},{"Name":"label","Value":"_framework/System.Runtime.Loader.wasm"}]},{"Route":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm","AssetFile":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000429000429"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2330"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bm8d2pac0a"},{"Name":"integrity","Value":"sha256-Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4="},{"Name":"label","Value":"_framework/System.Runtime.Loader.wasm"},{"Name":"original-resource","Value":"\"Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4=\""}]},{"Route":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm.gz","AssetFile":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2330"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bm8d2pac0a"},{"Name":"integrity","Value":"sha256-InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns="},{"Name":"label","Value":"_framework/System.Runtime.Loader.wasm.gz"}]},{"Route":"_framework/System.Runtime.Loader.wasm","AssetFile":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4="}]},{"Route":"_framework/System.Runtime.Loader.wasm","AssetFile":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000429000429"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2330"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4="},{"Name":"original-resource","Value":"\"Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4=\""}]},{"Route":"_framework/System.Runtime.Loader.wasm.gz","AssetFile":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2330"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns="}]},{"Route":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm","AssetFile":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"134933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e3fl2oogjk"},{"Name":"integrity","Value":"sha256-Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4="},{"Name":"label","Value":"_framework/System.Runtime.Numerics.wasm"}]},{"Route":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm","AssetFile":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018948725"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"52773"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e3fl2oogjk"},{"Name":"integrity","Value":"sha256-Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4="},{"Name":"label","Value":"_framework/System.Runtime.Numerics.wasm"},{"Name":"original-resource","Value":"\"Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4=\""}]},{"Route":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm.gz","AssetFile":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"52773"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e3fl2oogjk"},{"Name":"integrity","Value":"sha256-aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs="},{"Name":"label","Value":"_framework/System.Runtime.Numerics.wasm.gz"}]},{"Route":"_framework/System.Runtime.Numerics.wasm","AssetFile":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"134933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4="}]},{"Route":"_framework/System.Runtime.Numerics.wasm","AssetFile":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018948725"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"52773"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4="},{"Name":"original-resource","Value":"\"Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4=\""}]},{"Route":"_framework/System.Runtime.Numerics.wasm.gz","AssetFile":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"52773"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs="}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm","AssetFile":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a0v88kqnif"},{"Name":"integrity","Value":"sha256-Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Formatters.wasm"}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm","AssetFile":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041467966"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24114"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a0v88kqnif"},{"Name":"integrity","Value":"sha256-Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Formatters.wasm"},{"Name":"original-resource","Value":"\"Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU=\""}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24114"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a0v88kqnif"},{"Name":"integrity","Value":"sha256-89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Formatters.wasm.gz"}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.wasm","AssetFile":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU="}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.wasm","AssetFile":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041467966"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24114"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU="},{"Name":"original-resource","Value":"\"Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU=\""}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24114"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4="}]},{"Route":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm","AssetFile":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pez04wd9mo"},{"Name":"integrity","Value":"sha256-vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Json.wasm"}]},{"Route":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm","AssetFile":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000441501104"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pez04wd9mo"},{"Name":"integrity","Value":"sha256-vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Json.wasm"},{"Name":"original-resource","Value":"\"vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw=\""}]},{"Route":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pez04wd9mo"},{"Name":"integrity","Value":"sha256-F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Json.wasm.gz"}]},{"Route":"_framework/System.Runtime.Serialization.Json.wasm","AssetFile":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw="}]},{"Route":"_framework/System.Runtime.Serialization.Json.wasm","AssetFile":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000441501104"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw="},{"Name":"original-resource","Value":"\"vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw=\""}]},{"Route":"_framework/System.Runtime.Serialization.Json.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM="}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.wasm","AssetFile":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY="}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.wasm","AssetFile":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000184501845"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY="},{"Name":"original-resource","Value":"\"hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY=\""}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g="}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm","AssetFile":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xy5d3j3dn1"},{"Name":"integrity","Value":"sha256-hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Primitives.wasm"}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm","AssetFile":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000184501845"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xy5d3j3dn1"},{"Name":"integrity","Value":"sha256-hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Primitives.wasm"},{"Name":"original-resource","Value":"\"hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY=\""}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xy5d3j3dn1"},{"Name":"integrity","Value":"sha256-nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Primitives.wasm.gz"}]},{"Route":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm","AssetFile":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mmwsbcsgly"},{"Name":"integrity","Value":"sha256-0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Xml.wasm"}]},{"Route":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm","AssetFile":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388953715"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2570"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mmwsbcsgly"},{"Name":"integrity","Value":"sha256-0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Xml.wasm"},{"Name":"original-resource","Value":"\"0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0=\""}]},{"Route":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2570"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mmwsbcsgly"},{"Name":"integrity","Value":"sha256-ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Xml.wasm.gz"}]},{"Route":"_framework/System.Runtime.Serialization.Xml.wasm","AssetFile":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0="}]},{"Route":"_framework/System.Runtime.Serialization.Xml.wasm","AssetFile":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388953715"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2570"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0="},{"Name":"original-resource","Value":"\"0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0=\""}]},{"Route":"_framework/System.Runtime.Serialization.Xml.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2570"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs="}]},{"Route":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm","AssetFile":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qfpmfujegm"},{"Name":"integrity","Value":"sha256-un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.wasm"}]},{"Route":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm","AssetFile":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000399042298"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2505"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qfpmfujegm"},{"Name":"integrity","Value":"sha256-un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.wasm"},{"Name":"original-resource","Value":"\"un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk=\""}]},{"Route":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2505"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qfpmfujegm"},{"Name":"integrity","Value":"sha256-wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.wasm.gz"}]},{"Route":"_framework/System.Runtime.Serialization.wasm","AssetFile":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk="}]},{"Route":"_framework/System.Runtime.Serialization.wasm","AssetFile":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000399042298"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2505"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk="},{"Name":"original-resource","Value":"\"un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk=\""}]},{"Route":"_framework/System.Runtime.Serialization.wasm.gz","AssetFile":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2505"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g="}]},{"Route":"_framework/System.Runtime.k6ze2203p2.wasm","AssetFile":"_framework/System.Runtime.k6ze2203p2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6ze2203p2"},{"Name":"integrity","Value":"sha256-ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM="},{"Name":"label","Value":"_framework/System.Runtime.wasm"}]},{"Route":"_framework/System.Runtime.k6ze2203p2.wasm","AssetFile":"_framework/System.Runtime.k6ze2203p2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000092302012"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6ze2203p2"},{"Name":"integrity","Value":"sha256-ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM="},{"Name":"label","Value":"_framework/System.Runtime.wasm"},{"Name":"original-resource","Value":"\"ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM=\""}]},{"Route":"_framework/System.Runtime.k6ze2203p2.wasm.gz","AssetFile":"_framework/System.Runtime.k6ze2203p2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6ze2203p2"},{"Name":"integrity","Value":"sha256-yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4="},{"Name":"label","Value":"_framework/System.Runtime.wasm.gz"}]},{"Route":"_framework/System.Runtime.wasm","AssetFile":"_framework/System.Runtime.k6ze2203p2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM="}]},{"Route":"_framework/System.Runtime.wasm","AssetFile":"_framework/System.Runtime.k6ze2203p2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000092302012"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM="},{"Name":"original-resource","Value":"\"ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM=\""}]},{"Route":"_framework/System.Runtime.wasm.gz","AssetFile":"_framework/System.Runtime.k6ze2203p2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4="}]},{"Route":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm","AssetFile":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"47893"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4mxo8hy5cn"},{"Name":"integrity","Value":"sha256-1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA="},{"Name":"label","Value":"_framework/System.Security.AccessControl.wasm"}]},{"Route":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm","AssetFile":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000059421237"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4mxo8hy5cn"},{"Name":"integrity","Value":"sha256-1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA="},{"Name":"label","Value":"_framework/System.Security.AccessControl.wasm"},{"Name":"original-resource","Value":"\"1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA=\""}]},{"Route":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm.gz","AssetFile":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4mxo8hy5cn"},{"Name":"integrity","Value":"sha256-lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak="},{"Name":"label","Value":"_framework/System.Security.AccessControl.wasm.gz"}]},{"Route":"_framework/System.Security.AccessControl.wasm","AssetFile":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"47893"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA="}]},{"Route":"_framework/System.Security.AccessControl.wasm","AssetFile":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000059421237"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA="},{"Name":"original-resource","Value":"\"1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA=\""}]},{"Route":"_framework/System.Security.AccessControl.wasm.gz","AssetFile":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak="}]},{"Route":"_framework/System.Security.Claims.9n1yusa5e5.wasm","AssetFile":"_framework/System.Security.Claims.9n1yusa5e5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"44821"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9n1yusa5e5"},{"Name":"integrity","Value":"sha256-KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA="},{"Name":"label","Value":"_framework/System.Security.Claims.wasm"}]},{"Route":"_framework/System.Security.Claims.9n1yusa5e5.wasm","AssetFile":"_framework/System.Security.Claims.9n1yusa5e5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060397415"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16556"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9n1yusa5e5"},{"Name":"integrity","Value":"sha256-KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA="},{"Name":"label","Value":"_framework/System.Security.Claims.wasm"},{"Name":"original-resource","Value":"\"KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA=\""}]},{"Route":"_framework/System.Security.Claims.9n1yusa5e5.wasm.gz","AssetFile":"_framework/System.Security.Claims.9n1yusa5e5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16556"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9n1yusa5e5"},{"Name":"integrity","Value":"sha256-ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY="},{"Name":"label","Value":"_framework/System.Security.Claims.wasm.gz"}]},{"Route":"_framework/System.Security.Claims.wasm","AssetFile":"_framework/System.Security.Claims.9n1yusa5e5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"44821"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA="}]},{"Route":"_framework/System.Security.Claims.wasm","AssetFile":"_framework/System.Security.Claims.9n1yusa5e5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060397415"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16556"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA="},{"Name":"original-resource","Value":"\"KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA=\""}]},{"Route":"_framework/System.Security.Claims.wasm.gz","AssetFile":"_framework/System.Security.Claims.9n1yusa5e5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16556"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY="}]},{"Route":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm","AssetFile":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"642325"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5rp84ijz8t"},{"Name":"integrity","Value":"sha256-YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM="},{"Name":"label","Value":"_framework/System.Security.Cryptography.wasm"}]},{"Route":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm","AssetFile":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004398891"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"227329"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5rp84ijz8t"},{"Name":"integrity","Value":"sha256-YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM="},{"Name":"label","Value":"_framework/System.Security.Cryptography.wasm"},{"Name":"original-resource","Value":"\"YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM=\""}]},{"Route":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"227329"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5rp84ijz8t"},{"Name":"integrity","Value":"sha256-+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y="},{"Name":"label","Value":"_framework/System.Security.Cryptography.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm","AssetFile":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4dnz7b15a9"},{"Name":"integrity","Value":"sha256-CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Algorithms.wasm"}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm","AssetFile":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000368595651"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2712"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4dnz7b15a9"},{"Name":"integrity","Value":"sha256-CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Algorithms.wasm"},{"Name":"original-resource","Value":"\"CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0=\""}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2712"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4dnz7b15a9"},{"Name":"integrity","Value":"sha256-kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Algorithms.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.wasm","AssetFile":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0="}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.wasm","AssetFile":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000368595651"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2712"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0="},{"Name":"original-resource","Value":"\"CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0=\""}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2712"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A="}]},{"Route":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm","AssetFile":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyaxkkx3lb"},{"Name":"integrity","Value":"sha256-SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Cng.wasm"}]},{"Route":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm","AssetFile":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000403714170"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2476"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyaxkkx3lb"},{"Name":"integrity","Value":"sha256-SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Cng.wasm"},{"Name":"original-resource","Value":"\"SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug=\""}]},{"Route":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2476"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyaxkkx3lb"},{"Name":"integrity","Value":"sha256-xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Cng.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Cng.wasm","AssetFile":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug="}]},{"Route":"_framework/System.Security.Cryptography.Cng.wasm","AssetFile":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000403714170"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2476"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug="},{"Name":"original-resource","Value":"\"SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug=\""}]},{"Route":"_framework/System.Security.Cryptography.Cng.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2476"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178="}]},{"Route":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm","AssetFile":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"20t5iw27a6"},{"Name":"integrity","Value":"sha256-EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Csp.wasm"}]},{"Route":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm","AssetFile":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000428082192"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"20t5iw27a6"},{"Name":"integrity","Value":"sha256-EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Csp.wasm"},{"Name":"original-resource","Value":"\"EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M=\""}]},{"Route":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"20t5iw27a6"},{"Name":"integrity","Value":"sha256-lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Csp.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Csp.wasm","AssetFile":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M="}]},{"Route":"_framework/System.Security.Cryptography.Csp.wasm","AssetFile":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000428082192"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M="},{"Name":"original-resource","Value":"\"EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M=\""}]},{"Route":"_framework/System.Security.Cryptography.Csp.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek="}]},{"Route":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm","AssetFile":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0lu5m0tfx2"},{"Name":"integrity","Value":"sha256-7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Encoding.wasm"}]},{"Route":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm","AssetFile":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438404209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0lu5m0tfx2"},{"Name":"integrity","Value":"sha256-7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Encoding.wasm"},{"Name":"original-resource","Value":"\"7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU=\""}]},{"Route":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0lu5m0tfx2"},{"Name":"integrity","Value":"sha256-EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Encoding.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Encoding.wasm","AssetFile":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU="}]},{"Route":"_framework/System.Security.Cryptography.Encoding.wasm","AssetFile":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438404209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU="},{"Name":"original-resource","Value":"\"7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU=\""}]},{"Route":"_framework/System.Security.Cryptography.Encoding.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg="}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm","AssetFile":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m4pzjxi3g"},{"Name":"integrity","Value":"sha256-nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o="},{"Name":"label","Value":"_framework/System.Security.Cryptography.OpenSsl.wasm"}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm","AssetFile":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000449842555"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2222"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m4pzjxi3g"},{"Name":"integrity","Value":"sha256-nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o="},{"Name":"label","Value":"_framework/System.Security.Cryptography.OpenSsl.wasm"},{"Name":"original-resource","Value":"\"nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o=\""}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2222"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m4pzjxi3g"},{"Name":"integrity","Value":"sha256-vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM="},{"Name":"label","Value":"_framework/System.Security.Cryptography.OpenSsl.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.wasm","AssetFile":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o="}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.wasm","AssetFile":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000449842555"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2222"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o="},{"Name":"original-resource","Value":"\"nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o=\""}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2222"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM="}]},{"Route":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm","AssetFile":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7bcdd4uolu"},{"Name":"integrity","Value":"sha256-kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Primitives.wasm"}]},{"Route":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm","AssetFile":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000425894378"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2347"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7bcdd4uolu"},{"Name":"integrity","Value":"sha256-kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Primitives.wasm"},{"Name":"original-resource","Value":"\"kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0=\""}]},{"Route":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2347"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7bcdd4uolu"},{"Name":"integrity","Value":"sha256-o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Primitives.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Primitives.wasm","AssetFile":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0="}]},{"Route":"_framework/System.Security.Cryptography.Primitives.wasm","AssetFile":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000425894378"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2347"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0="},{"Name":"original-resource","Value":"\"kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0=\""}]},{"Route":"_framework/System.Security.Cryptography.Primitives.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2347"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE="}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm","AssetFile":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dmew7c9amv"},{"Name":"integrity","Value":"sha256-+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8="},{"Name":"label","Value":"_framework/System.Security.Cryptography.X509Certificates.wasm"}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm","AssetFile":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000374251497"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2671"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dmew7c9amv"},{"Name":"integrity","Value":"sha256-+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8="},{"Name":"label","Value":"_framework/System.Security.Cryptography.X509Certificates.wasm"},{"Name":"original-resource","Value":"\"+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8=\""}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2671"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dmew7c9amv"},{"Name":"integrity","Value":"sha256-KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw="},{"Name":"label","Value":"_framework/System.Security.Cryptography.X509Certificates.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.wasm","AssetFile":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8="}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.wasm","AssetFile":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000374251497"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2671"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8="},{"Name":"original-resource","Value":"\"+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8=\""}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2671"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw="}]},{"Route":"_framework/System.Security.Cryptography.wasm","AssetFile":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"642325"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM="}]},{"Route":"_framework/System.Security.Cryptography.wasm","AssetFile":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004398891"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"227329"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM="},{"Name":"original-resource","Value":"\"YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM=\""}]},{"Route":"_framework/System.Security.Cryptography.wasm.gz","AssetFile":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"227329"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y="}]},{"Route":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm","AssetFile":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27413"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7ssqvw2wfy"},{"Name":"integrity","Value":"sha256-NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ="},{"Name":"label","Value":"_framework/System.Security.Principal.Windows.wasm"}]},{"Route":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm","AssetFile":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090171326"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11089"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7ssqvw2wfy"},{"Name":"integrity","Value":"sha256-NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ="},{"Name":"label","Value":"_framework/System.Security.Principal.Windows.wasm"},{"Name":"original-resource","Value":"\"NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ=\""}]},{"Route":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm.gz","AssetFile":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11089"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7ssqvw2wfy"},{"Name":"integrity","Value":"sha256-ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg="},{"Name":"label","Value":"_framework/System.Security.Principal.Windows.wasm.gz"}]},{"Route":"_framework/System.Security.Principal.Windows.wasm","AssetFile":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"27413"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ="}]},{"Route":"_framework/System.Security.Principal.Windows.wasm","AssetFile":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090171326"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11089"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ="},{"Name":"original-resource","Value":"\"NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ=\""}]},{"Route":"_framework/System.Security.Principal.Windows.wasm.gz","AssetFile":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11089"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg="}]},{"Route":"_framework/System.Security.Principal.j5dp7k8x6u.wasm","AssetFile":"_framework/System.Security.Principal.j5dp7k8x6u.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5dp7k8x6u"},{"Name":"integrity","Value":"sha256-KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no="},{"Name":"label","Value":"_framework/System.Security.Principal.wasm"}]},{"Route":"_framework/System.Security.Principal.j5dp7k8x6u.wasm","AssetFile":"_framework/System.Security.Principal.j5dp7k8x6u.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000459558824"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2175"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5dp7k8x6u"},{"Name":"integrity","Value":"sha256-KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no="},{"Name":"label","Value":"_framework/System.Security.Principal.wasm"},{"Name":"original-resource","Value":"\"KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no=\""}]},{"Route":"_framework/System.Security.Principal.j5dp7k8x6u.wasm.gz","AssetFile":"_framework/System.Security.Principal.j5dp7k8x6u.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2175"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5dp7k8x6u"},{"Name":"integrity","Value":"sha256-HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA="},{"Name":"label","Value":"_framework/System.Security.Principal.wasm.gz"}]},{"Route":"_framework/System.Security.Principal.wasm","AssetFile":"_framework/System.Security.Principal.j5dp7k8x6u.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no="}]},{"Route":"_framework/System.Security.Principal.wasm","AssetFile":"_framework/System.Security.Principal.j5dp7k8x6u.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000459558824"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2175"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no="},{"Name":"original-resource","Value":"\"KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no=\""}]},{"Route":"_framework/System.Security.Principal.wasm.gz","AssetFile":"_framework/System.Security.Principal.j5dp7k8x6u.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2175"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA="}]},{"Route":"_framework/System.Security.SecureString.7weoywtuje.wasm","AssetFile":"_framework/System.Security.SecureString.7weoywtuje.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7weoywtuje"},{"Name":"integrity","Value":"sha256-Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY="},{"Name":"label","Value":"_framework/System.Security.SecureString.wasm"}]},{"Route":"_framework/System.Security.SecureString.7weoywtuje.wasm","AssetFile":"_framework/System.Security.SecureString.7weoywtuje.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000453309157"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2205"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7weoywtuje"},{"Name":"integrity","Value":"sha256-Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY="},{"Name":"label","Value":"_framework/System.Security.SecureString.wasm"},{"Name":"original-resource","Value":"\"Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY=\""}]},{"Route":"_framework/System.Security.SecureString.7weoywtuje.wasm.gz","AssetFile":"_framework/System.Security.SecureString.7weoywtuje.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2205"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7weoywtuje"},{"Name":"integrity","Value":"sha256-z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM="},{"Name":"label","Value":"_framework/System.Security.SecureString.wasm.gz"}]},{"Route":"_framework/System.Security.SecureString.wasm","AssetFile":"_framework/System.Security.SecureString.7weoywtuje.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY="}]},{"Route":"_framework/System.Security.SecureString.wasm","AssetFile":"_framework/System.Security.SecureString.7weoywtuje.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000453309157"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2205"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY="},{"Name":"original-resource","Value":"\"Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY=\""}]},{"Route":"_framework/System.Security.SecureString.wasm.gz","AssetFile":"_framework/System.Security.SecureString.7weoywtuje.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2205"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM="}]},{"Route":"_framework/System.Security.snpv53zusk.wasm","AssetFile":"_framework/System.Security.snpv53zusk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"7957"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"snpv53zusk"},{"Name":"integrity","Value":"sha256-qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk="},{"Name":"label","Value":"_framework/System.Security.wasm"}]},{"Route":"_framework/System.Security.snpv53zusk.wasm","AssetFile":"_framework/System.Security.snpv53zusk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000336927224"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2967"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"snpv53zusk"},{"Name":"integrity","Value":"sha256-qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk="},{"Name":"label","Value":"_framework/System.Security.wasm"},{"Name":"original-resource","Value":"\"qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk=\""}]},{"Route":"_framework/System.Security.snpv53zusk.wasm.gz","AssetFile":"_framework/System.Security.snpv53zusk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2967"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"snpv53zusk"},{"Name":"integrity","Value":"sha256-l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk="},{"Name":"label","Value":"_framework/System.Security.wasm.gz"}]},{"Route":"_framework/System.Security.wasm","AssetFile":"_framework/System.Security.snpv53zusk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"7957"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk="}]},{"Route":"_framework/System.Security.wasm","AssetFile":"_framework/System.Security.snpv53zusk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000336927224"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2967"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk="},{"Name":"original-resource","Value":"\"qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk=\""}]},{"Route":"_framework/System.Security.wasm.gz","AssetFile":"_framework/System.Security.snpv53zusk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2967"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk="}]},{"Route":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm","AssetFile":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3f1khl8k32"},{"Name":"integrity","Value":"sha256-0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY="},{"Name":"label","Value":"_framework/System.ServiceModel.Web.wasm"}]},{"Route":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm","AssetFile":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000392464678"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2547"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3f1khl8k32"},{"Name":"integrity","Value":"sha256-0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY="},{"Name":"label","Value":"_framework/System.ServiceModel.Web.wasm"},{"Name":"original-resource","Value":"\"0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY=\""}]},{"Route":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm.gz","AssetFile":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2547"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3f1khl8k32"},{"Name":"integrity","Value":"sha256-E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4="},{"Name":"label","Value":"_framework/System.ServiceModel.Web.wasm.gz"}]},{"Route":"_framework/System.ServiceModel.Web.wasm","AssetFile":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY="}]},{"Route":"_framework/System.ServiceModel.Web.wasm","AssetFile":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000392464678"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2547"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY="},{"Name":"original-resource","Value":"\"0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY=\""}]},{"Route":"_framework/System.ServiceModel.Web.wasm.gz","AssetFile":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2547"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4="}]},{"Route":"_framework/System.ServiceProcess.a95c1olw0i.wasm","AssetFile":"_framework/System.ServiceProcess.a95c1olw0i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a95c1olw0i"},{"Name":"integrity","Value":"sha256-nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU="},{"Name":"label","Value":"_framework/System.ServiceProcess.wasm"}]},{"Route":"_framework/System.ServiceProcess.a95c1olw0i.wasm","AssetFile":"_framework/System.ServiceProcess.a95c1olw0i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000433275563"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a95c1olw0i"},{"Name":"integrity","Value":"sha256-nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU="},{"Name":"label","Value":"_framework/System.ServiceProcess.wasm"},{"Name":"original-resource","Value":"\"nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU=\""}]},{"Route":"_framework/System.ServiceProcess.a95c1olw0i.wasm.gz","AssetFile":"_framework/System.ServiceProcess.a95c1olw0i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a95c1olw0i"},{"Name":"integrity","Value":"sha256-EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q="},{"Name":"label","Value":"_framework/System.ServiceProcess.wasm.gz"}]},{"Route":"_framework/System.ServiceProcess.wasm","AssetFile":"_framework/System.ServiceProcess.a95c1olw0i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU="}]},{"Route":"_framework/System.ServiceProcess.wasm","AssetFile":"_framework/System.ServiceProcess.a95c1olw0i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000433275563"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU="},{"Name":"original-resource","Value":"\"nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU=\""}]},{"Route":"_framework/System.ServiceProcess.wasm.gz","AssetFile":"_framework/System.ServiceProcess.a95c1olw0i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q="}]},{"Route":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm","AssetFile":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"732437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8bhn50uz8f"},{"Name":"integrity","Value":"sha256-nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A="},{"Name":"label","Value":"_framework/System.Text.Encoding.CodePages.wasm"}]},{"Route":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm","AssetFile":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000001939067"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"515711"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8bhn50uz8f"},{"Name":"integrity","Value":"sha256-nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A="},{"Name":"label","Value":"_framework/System.Text.Encoding.CodePages.wasm"},{"Name":"original-resource","Value":"\"nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A=\""}]},{"Route":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm.gz","AssetFile":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"515711"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8bhn50uz8f"},{"Name":"integrity","Value":"sha256-hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y="},{"Name":"label","Value":"_framework/System.Text.Encoding.CodePages.wasm.gz"}]},{"Route":"_framework/System.Text.Encoding.CodePages.wasm","AssetFile":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"732437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A="}]},{"Route":"_framework/System.Text.Encoding.CodePages.wasm","AssetFile":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000001939067"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"515711"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A="},{"Name":"original-resource","Value":"\"nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A=\""}]},{"Route":"_framework/System.Text.Encoding.CodePages.wasm.gz","AssetFile":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"515711"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y="}]},{"Route":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm","AssetFile":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tqz9dyg6j7"},{"Name":"integrity","Value":"sha256-y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A="},{"Name":"label","Value":"_framework/System.Text.Encoding.Extensions.wasm"}]},{"Route":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm","AssetFile":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000442673749"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2258"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tqz9dyg6j7"},{"Name":"integrity","Value":"sha256-y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A="},{"Name":"label","Value":"_framework/System.Text.Encoding.Extensions.wasm"},{"Name":"original-resource","Value":"\"y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A=\""}]},{"Route":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm.gz","AssetFile":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2258"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tqz9dyg6j7"},{"Name":"integrity","Value":"sha256-jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k="},{"Name":"label","Value":"_framework/System.Text.Encoding.Extensions.wasm.gz"}]},{"Route":"_framework/System.Text.Encoding.Extensions.wasm","AssetFile":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A="}]},{"Route":"_framework/System.Text.Encoding.Extensions.wasm","AssetFile":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000442673749"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2258"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A="},{"Name":"original-resource","Value":"\"y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A=\""}]},{"Route":"_framework/System.Text.Encoding.Extensions.wasm.gz","AssetFile":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2258"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k="}]},{"Route":"_framework/System.Text.Encoding.s9ic8sulfi.wasm","AssetFile":"_framework/System.Text.Encoding.s9ic8sulfi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s9ic8sulfi"},{"Name":"integrity","Value":"sha256-gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg="},{"Name":"label","Value":"_framework/System.Text.Encoding.wasm"}]},{"Route":"_framework/System.Text.Encoding.s9ic8sulfi.wasm","AssetFile":"_framework/System.Text.Encoding.s9ic8sulfi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000445434298"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2244"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s9ic8sulfi"},{"Name":"integrity","Value":"sha256-gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg="},{"Name":"label","Value":"_framework/System.Text.Encoding.wasm"},{"Name":"original-resource","Value":"\"gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg=\""}]},{"Route":"_framework/System.Text.Encoding.s9ic8sulfi.wasm.gz","AssetFile":"_framework/System.Text.Encoding.s9ic8sulfi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2244"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s9ic8sulfi"},{"Name":"integrity","Value":"sha256-oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA="},{"Name":"label","Value":"_framework/System.Text.Encoding.wasm.gz"}]},{"Route":"_framework/System.Text.Encoding.wasm","AssetFile":"_framework/System.Text.Encoding.s9ic8sulfi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg="}]},{"Route":"_framework/System.Text.Encoding.wasm","AssetFile":"_framework/System.Text.Encoding.s9ic8sulfi.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000445434298"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2244"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg="},{"Name":"original-resource","Value":"\"gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg=\""}]},{"Route":"_framework/System.Text.Encoding.wasm.gz","AssetFile":"_framework/System.Text.Encoding.s9ic8sulfi.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2244"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA="}]},{"Route":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm","AssetFile":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"07hq35kp92"},{"Name":"integrity","Value":"sha256-dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE="},{"Name":"label","Value":"_framework/System.Text.Encodings.Web.wasm"}]},{"Route":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm","AssetFile":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000045293958"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"07hq35kp92"},{"Name":"integrity","Value":"sha256-dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE="},{"Name":"label","Value":"_framework/System.Text.Encodings.Web.wasm"},{"Name":"original-resource","Value":"\"dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE=\""}]},{"Route":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm.gz","AssetFile":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"07hq35kp92"},{"Name":"integrity","Value":"sha256-vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4="},{"Name":"label","Value":"_framework/System.Text.Encodings.Web.wasm.gz"}]},{"Route":"_framework/System.Text.Encodings.Web.wasm","AssetFile":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE="}]},{"Route":"_framework/System.Text.Encodings.Web.wasm","AssetFile":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000045293958"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE="},{"Name":"original-resource","Value":"\"dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE=\""}]},{"Route":"_framework/System.Text.Encodings.Web.wasm.gz","AssetFile":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4="}]},{"Route":"_framework/System.Text.Json.2alhj4y3bm.wasm","AssetFile":"_framework/System.Text.Json.2alhj4y3bm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"638741"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2alhj4y3bm"},{"Name":"integrity","Value":"sha256-BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY="},{"Name":"label","Value":"_framework/System.Text.Json.wasm"}]},{"Route":"_framework/System.Text.Json.2alhj4y3bm.wasm","AssetFile":"_framework/System.Text.Json.2alhj4y3bm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004372674"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"228692"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2alhj4y3bm"},{"Name":"integrity","Value":"sha256-BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY="},{"Name":"label","Value":"_framework/System.Text.Json.wasm"},{"Name":"original-resource","Value":"\"BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY=\""}]},{"Route":"_framework/System.Text.Json.2alhj4y3bm.wasm.gz","AssetFile":"_framework/System.Text.Json.2alhj4y3bm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"228692"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2alhj4y3bm"},{"Name":"integrity","Value":"sha256-L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw="},{"Name":"label","Value":"_framework/System.Text.Json.wasm.gz"}]},{"Route":"_framework/System.Text.Json.wasm","AssetFile":"_framework/System.Text.Json.2alhj4y3bm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"638741"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY="}]},{"Route":"_framework/System.Text.Json.wasm","AssetFile":"_framework/System.Text.Json.2alhj4y3bm.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004372674"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"228692"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY="},{"Name":"original-resource","Value":"\"BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY=\""}]},{"Route":"_framework/System.Text.Json.wasm.gz","AssetFile":"_framework/System.Text.Json.2alhj4y3bm.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"228692"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw="}]},{"Route":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm","AssetFile":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"374549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1qtkesphd"},{"Name":"integrity","Value":"sha256-FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ="},{"Name":"label","Value":"_framework/System.Text.RegularExpressions.wasm"}]},{"Route":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm","AssetFile":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006311418"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"158442"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1qtkesphd"},{"Name":"integrity","Value":"sha256-FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ="},{"Name":"label","Value":"_framework/System.Text.RegularExpressions.wasm"},{"Name":"original-resource","Value":"\"FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ=\""}]},{"Route":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm.gz","AssetFile":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"158442"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1qtkesphd"},{"Name":"integrity","Value":"sha256-BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U="},{"Name":"label","Value":"_framework/System.Text.RegularExpressions.wasm.gz"}]},{"Route":"_framework/System.Text.RegularExpressions.wasm","AssetFile":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"374549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ="}]},{"Route":"_framework/System.Text.RegularExpressions.wasm","AssetFile":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006311418"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"158442"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ="},{"Name":"original-resource","Value":"\"FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ=\""}]},{"Route":"_framework/System.Text.RegularExpressions.wasm.gz","AssetFile":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"158442"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U="}]},{"Route":"_framework/System.Threading.47ucbn1gg1.wasm","AssetFile":"_framework/System.Threading.47ucbn1gg1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"47ucbn1gg1"},{"Name":"integrity","Value":"sha256-ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts="},{"Name":"label","Value":"_framework/System.Threading.wasm"}]},{"Route":"_framework/System.Threading.47ucbn1gg1.wasm","AssetFile":"_framework/System.Threading.47ucbn1gg1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000068045727"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14695"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"47ucbn1gg1"},{"Name":"integrity","Value":"sha256-ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts="},{"Name":"label","Value":"_framework/System.Threading.wasm"},{"Name":"original-resource","Value":"\"ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts=\""}]},{"Route":"_framework/System.Threading.47ucbn1gg1.wasm.gz","AssetFile":"_framework/System.Threading.47ucbn1gg1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14695"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"47ucbn1gg1"},{"Name":"integrity","Value":"sha256-fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g="},{"Name":"label","Value":"_framework/System.Threading.wasm.gz"}]},{"Route":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm","AssetFile":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"23317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ruehy0ud5k"},{"Name":"integrity","Value":"sha256-c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s="},{"Name":"label","Value":"_framework/System.Threading.AccessControl.wasm"}]},{"Route":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm","AssetFile":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000117785630"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ruehy0ud5k"},{"Name":"integrity","Value":"sha256-c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s="},{"Name":"label","Value":"_framework/System.Threading.AccessControl.wasm"},{"Name":"original-resource","Value":"\"c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s=\""}]},{"Route":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm.gz","AssetFile":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ruehy0ud5k"},{"Name":"integrity","Value":"sha256-INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s="},{"Name":"label","Value":"_framework/System.Threading.AccessControl.wasm.gz"}]},{"Route":"_framework/System.Threading.AccessControl.wasm","AssetFile":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"23317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s="}]},{"Route":"_framework/System.Threading.AccessControl.wasm","AssetFile":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000117785630"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s="},{"Name":"original-resource","Value":"\"c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s=\""}]},{"Route":"_framework/System.Threading.AccessControl.wasm.gz","AssetFile":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s="}]},{"Route":"_framework/System.Threading.Channels.s3i62rxr2p.wasm","AssetFile":"_framework/System.Threading.Channels.s3i62rxr2p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"56085"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s3i62rxr2p"},{"Name":"integrity","Value":"sha256-2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4="},{"Name":"label","Value":"_framework/System.Threading.Channels.wasm"}]},{"Route":"_framework/System.Threading.Channels.s3i62rxr2p.wasm","AssetFile":"_framework/System.Threading.Channels.s3i62rxr2p.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040955072"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24416"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s3i62rxr2p"},{"Name":"integrity","Value":"sha256-2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4="},{"Name":"label","Value":"_framework/System.Threading.Channels.wasm"},{"Name":"original-resource","Value":"\"2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4=\""}]},{"Route":"_framework/System.Threading.Channels.s3i62rxr2p.wasm.gz","AssetFile":"_framework/System.Threading.Channels.s3i62rxr2p.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24416"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s3i62rxr2p"},{"Name":"integrity","Value":"sha256-u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo="},{"Name":"label","Value":"_framework/System.Threading.Channels.wasm.gz"}]},{"Route":"_framework/System.Threading.Channels.wasm","AssetFile":"_framework/System.Threading.Channels.s3i62rxr2p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"56085"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4="}]},{"Route":"_framework/System.Threading.Channels.wasm","AssetFile":"_framework/System.Threading.Channels.s3i62rxr2p.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040955072"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24416"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4="},{"Name":"original-resource","Value":"\"2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4=\""}]},{"Route":"_framework/System.Threading.Channels.wasm.gz","AssetFile":"_framework/System.Threading.Channels.s3i62rxr2p.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24416"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo="}]},{"Route":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm","AssetFile":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzl7igry1t"},{"Name":"integrity","Value":"sha256-ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8="},{"Name":"label","Value":"_framework/System.Threading.Overlapped.wasm"}]},{"Route":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm","AssetFile":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000431406385"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzl7igry1t"},{"Name":"integrity","Value":"sha256-ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8="},{"Name":"label","Value":"_framework/System.Threading.Overlapped.wasm"},{"Name":"original-resource","Value":"\"ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8=\""}]},{"Route":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm.gz","AssetFile":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzl7igry1t"},{"Name":"integrity","Value":"sha256-2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto="},{"Name":"label","Value":"_framework/System.Threading.Overlapped.wasm.gz"}]},{"Route":"_framework/System.Threading.Overlapped.wasm","AssetFile":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8="}]},{"Route":"_framework/System.Threading.Overlapped.wasm","AssetFile":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000431406385"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8="},{"Name":"original-resource","Value":"\"ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8=\""}]},{"Route":"_framework/System.Threading.Overlapped.wasm.gz","AssetFile":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto="}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm","AssetFile":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"175381"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"p9bjzp5pyo"},{"Name":"integrity","Value":"sha256-zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Dataflow.wasm"}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm","AssetFile":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013652623"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"73245"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"p9bjzp5pyo"},{"Name":"integrity","Value":"sha256-zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Dataflow.wasm"},{"Name":"original-resource","Value":"\"zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k=\""}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"73245"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"p9bjzp5pyo"},{"Name":"integrity","Value":"sha256-3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Dataflow.wasm.gz"}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.wasm","AssetFile":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"175381"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k="}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.wasm","AssetFile":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013652623"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"73245"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k="},{"Name":"original-resource","Value":"\"zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k=\""}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"73245"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U="}]},{"Route":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm","AssetFile":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"unp0hcfijn"},{"Name":"integrity","Value":"sha256-Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Extensions.wasm"}]},{"Route":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm","AssetFile":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000433275563"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"unp0hcfijn"},{"Name":"integrity","Value":"sha256-Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Extensions.wasm"},{"Name":"original-resource","Value":"\"Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4=\""}]},{"Route":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"unp0hcfijn"},{"Name":"integrity","Value":"sha256-+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Extensions.wasm.gz"}]},{"Route":"_framework/System.Threading.Tasks.Extensions.wasm","AssetFile":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4="}]},{"Route":"_framework/System.Threading.Tasks.Extensions.wasm","AssetFile":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000433275563"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4="},{"Name":"original-resource","Value":"\"Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4=\""}]},{"Route":"_framework/System.Threading.Tasks.Extensions.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw="}]},{"Route":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm","AssetFile":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"50965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hyku0ejwye"},{"Name":"integrity","Value":"sha256-ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Parallel.wasm"}]},{"Route":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm","AssetFile":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000047418085"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21088"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hyku0ejwye"},{"Name":"integrity","Value":"sha256-ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Parallel.wasm"},{"Name":"original-resource","Value":"\"ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo=\""}]},{"Route":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21088"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hyku0ejwye"},{"Name":"integrity","Value":"sha256-m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Parallel.wasm.gz"}]},{"Route":"_framework/System.Threading.Tasks.Parallel.wasm","AssetFile":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"50965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo="}]},{"Route":"_framework/System.Threading.Tasks.Parallel.wasm","AssetFile":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000047418085"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21088"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo="},{"Name":"original-resource","Value":"\"ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo=\""}]},{"Route":"_framework/System.Threading.Tasks.Parallel.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21088"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk="}]},{"Route":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm","AssetFile":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t0sjw89o0i"},{"Name":"integrity","Value":"sha256-YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo="},{"Name":"label","Value":"_framework/System.Threading.Tasks.wasm"}]},{"Route":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm","AssetFile":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388198758"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t0sjw89o0i"},{"Name":"integrity","Value":"sha256-YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo="},{"Name":"label","Value":"_framework/System.Threading.Tasks.wasm"},{"Name":"original-resource","Value":"\"YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo=\""}]},{"Route":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t0sjw89o0i"},{"Name":"integrity","Value":"sha256-Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE="},{"Name":"label","Value":"_framework/System.Threading.Tasks.wasm.gz"}]},{"Route":"_framework/System.Threading.Tasks.wasm","AssetFile":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo="}]},{"Route":"_framework/System.Threading.Tasks.wasm","AssetFile":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388198758"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo="},{"Name":"original-resource","Value":"\"YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo=\""}]},{"Route":"_framework/System.Threading.Tasks.wasm.gz","AssetFile":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE="}]},{"Route":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm","AssetFile":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nfbg9v9bn0"},{"Name":"integrity","Value":"sha256-43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0="},{"Name":"label","Value":"_framework/System.Threading.Thread.wasm"}]},{"Route":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm","AssetFile":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000427533134"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2338"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nfbg9v9bn0"},{"Name":"integrity","Value":"sha256-43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0="},{"Name":"label","Value":"_framework/System.Threading.Thread.wasm"},{"Name":"original-resource","Value":"\"43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0=\""}]},{"Route":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm.gz","AssetFile":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2338"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nfbg9v9bn0"},{"Name":"integrity","Value":"sha256-FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE="},{"Name":"label","Value":"_framework/System.Threading.Thread.wasm.gz"}]},{"Route":"_framework/System.Threading.Thread.wasm","AssetFile":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0="}]},{"Route":"_framework/System.Threading.Thread.wasm","AssetFile":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000427533134"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2338"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0="},{"Name":"original-resource","Value":"\"43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0=\""}]},{"Route":"_framework/System.Threading.Thread.wasm.gz","AssetFile":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2338"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE="}]},{"Route":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm","AssetFile":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jrzo6stg1k"},{"Name":"integrity","Value":"sha256-D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas="},{"Name":"label","Value":"_framework/System.Threading.ThreadPool.wasm"}]},{"Route":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm","AssetFile":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000442282176"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2260"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jrzo6stg1k"},{"Name":"integrity","Value":"sha256-D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas="},{"Name":"label","Value":"_framework/System.Threading.ThreadPool.wasm"},{"Name":"original-resource","Value":"\"D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas=\""}]},{"Route":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm.gz","AssetFile":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2260"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jrzo6stg1k"},{"Name":"integrity","Value":"sha256-yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8="},{"Name":"label","Value":"_framework/System.Threading.ThreadPool.wasm.gz"}]},{"Route":"_framework/System.Threading.ThreadPool.wasm","AssetFile":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas="}]},{"Route":"_framework/System.Threading.ThreadPool.wasm","AssetFile":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000442282176"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2260"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas="},{"Name":"original-resource","Value":"\"D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas=\""}]},{"Route":"_framework/System.Threading.ThreadPool.wasm.gz","AssetFile":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2260"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8="}]},{"Route":"_framework/System.Threading.Timer.wasm","AssetFile":"_framework/System.Threading.Timer.y8l1kxazi5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0="}]},{"Route":"_framework/System.Threading.Timer.wasm","AssetFile":"_framework/System.Threading.Timer.y8l1kxazi5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000467726848"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2137"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0="},{"Name":"original-resource","Value":"\"0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0=\""}]},{"Route":"_framework/System.Threading.Timer.wasm.gz","AssetFile":"_framework/System.Threading.Timer.y8l1kxazi5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2137"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M="}]},{"Route":"_framework/System.Threading.Timer.y8l1kxazi5.wasm","AssetFile":"_framework/System.Threading.Timer.y8l1kxazi5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y8l1kxazi5"},{"Name":"integrity","Value":"sha256-0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0="},{"Name":"label","Value":"_framework/System.Threading.Timer.wasm"}]},{"Route":"_framework/System.Threading.Timer.y8l1kxazi5.wasm","AssetFile":"_framework/System.Threading.Timer.y8l1kxazi5.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000467726848"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2137"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y8l1kxazi5"},{"Name":"integrity","Value":"sha256-0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0="},{"Name":"label","Value":"_framework/System.Threading.Timer.wasm"},{"Name":"original-resource","Value":"\"0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0=\""}]},{"Route":"_framework/System.Threading.Timer.y8l1kxazi5.wasm.gz","AssetFile":"_framework/System.Threading.Timer.y8l1kxazi5.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2137"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y8l1kxazi5"},{"Name":"integrity","Value":"sha256-pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M="},{"Name":"label","Value":"_framework/System.Threading.Timer.wasm.gz"}]},{"Route":"_framework/System.Threading.wasm","AssetFile":"_framework/System.Threading.47ucbn1gg1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts="}]},{"Route":"_framework/System.Threading.wasm","AssetFile":"_framework/System.Threading.47ucbn1gg1.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000068045727"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14695"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts="},{"Name":"original-resource","Value":"\"ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts=\""}]},{"Route":"_framework/System.Threading.wasm.gz","AssetFile":"_framework/System.Threading.47ucbn1gg1.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14695"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g="}]},{"Route":"_framework/System.Transactions.Local.cig01jt23c.wasm","AssetFile":"_framework/System.Transactions.Local.cig01jt23c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"165653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cig01jt23c"},{"Name":"integrity","Value":"sha256-lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4="},{"Name":"label","Value":"_framework/System.Transactions.Local.wasm"}]},{"Route":"_framework/System.Transactions.Local.cig01jt23c.wasm","AssetFile":"_framework/System.Transactions.Local.cig01jt23c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000019435590"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"51451"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cig01jt23c"},{"Name":"integrity","Value":"sha256-lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4="},{"Name":"label","Value":"_framework/System.Transactions.Local.wasm"},{"Name":"original-resource","Value":"\"lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4=\""}]},{"Route":"_framework/System.Transactions.Local.cig01jt23c.wasm.gz","AssetFile":"_framework/System.Transactions.Local.cig01jt23c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"51451"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cig01jt23c"},{"Name":"integrity","Value":"sha256-ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8="},{"Name":"label","Value":"_framework/System.Transactions.Local.wasm.gz"}]},{"Route":"_framework/System.Transactions.Local.wasm","AssetFile":"_framework/System.Transactions.Local.cig01jt23c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"165653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4="}]},{"Route":"_framework/System.Transactions.Local.wasm","AssetFile":"_framework/System.Transactions.Local.cig01jt23c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000019435590"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"51451"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4="},{"Name":"original-resource","Value":"\"lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4=\""}]},{"Route":"_framework/System.Transactions.Local.wasm.gz","AssetFile":"_framework/System.Transactions.Local.cig01jt23c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"51451"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8="}]},{"Route":"_framework/System.Transactions.pl50n6qbg7.wasm","AssetFile":"_framework/System.Transactions.pl50n6qbg7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pl50n6qbg7"},{"Name":"integrity","Value":"sha256-XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio="},{"Name":"label","Value":"_framework/System.Transactions.wasm"}]},{"Route":"_framework/System.Transactions.pl50n6qbg7.wasm","AssetFile":"_framework/System.Transactions.pl50n6qbg7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000419287212"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2384"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pl50n6qbg7"},{"Name":"integrity","Value":"sha256-XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio="},{"Name":"label","Value":"_framework/System.Transactions.wasm"},{"Name":"original-resource","Value":"\"XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio=\""}]},{"Route":"_framework/System.Transactions.pl50n6qbg7.wasm.gz","AssetFile":"_framework/System.Transactions.pl50n6qbg7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2384"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pl50n6qbg7"},{"Name":"integrity","Value":"sha256-Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA="},{"Name":"label","Value":"_framework/System.Transactions.wasm.gz"}]},{"Route":"_framework/System.Transactions.wasm","AssetFile":"_framework/System.Transactions.pl50n6qbg7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio="}]},{"Route":"_framework/System.Transactions.wasm","AssetFile":"_framework/System.Transactions.pl50n6qbg7.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000419287212"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2384"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio="},{"Name":"original-resource","Value":"\"XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio=\""}]},{"Route":"_framework/System.Transactions.wasm.gz","AssetFile":"_framework/System.Transactions.pl50n6qbg7.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2384"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA="}]},{"Route":"_framework/System.ValueTuple.mj3r9p0pcw.wasm","AssetFile":"_framework/System.ValueTuple.mj3r9p0pcw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mj3r9p0pcw"},{"Name":"integrity","Value":"sha256-Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY="},{"Name":"label","Value":"_framework/System.ValueTuple.wasm"}]},{"Route":"_framework/System.ValueTuple.mj3r9p0pcw.wasm","AssetFile":"_framework/System.ValueTuple.mj3r9p0pcw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455788514"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2193"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mj3r9p0pcw"},{"Name":"integrity","Value":"sha256-Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY="},{"Name":"label","Value":"_framework/System.ValueTuple.wasm"},{"Name":"original-resource","Value":"\"Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY=\""}]},{"Route":"_framework/System.ValueTuple.mj3r9p0pcw.wasm.gz","AssetFile":"_framework/System.ValueTuple.mj3r9p0pcw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2193"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mj3r9p0pcw"},{"Name":"integrity","Value":"sha256-qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY="},{"Name":"label","Value":"_framework/System.ValueTuple.wasm.gz"}]},{"Route":"_framework/System.ValueTuple.wasm","AssetFile":"_framework/System.ValueTuple.mj3r9p0pcw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY="}]},{"Route":"_framework/System.ValueTuple.wasm","AssetFile":"_framework/System.ValueTuple.mj3r9p0pcw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455788514"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2193"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY="},{"Name":"original-resource","Value":"\"Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY=\""}]},{"Route":"_framework/System.ValueTuple.wasm.gz","AssetFile":"_framework/System.ValueTuple.mj3r9p0pcw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2193"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY="}]},{"Route":"_framework/System.Web.2a6wq9gv6d.wasm","AssetFile":"_framework/System.Web.2a6wq9gv6d.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2a6wq9gv6d"},{"Name":"integrity","Value":"sha256-Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk="},{"Name":"label","Value":"_framework/System.Web.wasm"}]},{"Route":"_framework/System.Web.2a6wq9gv6d.wasm","AssetFile":"_framework/System.Web.2a6wq9gv6d.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000469924812"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2127"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2a6wq9gv6d"},{"Name":"integrity","Value":"sha256-Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk="},{"Name":"label","Value":"_framework/System.Web.wasm"},{"Name":"original-resource","Value":"\"Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk=\""}]},{"Route":"_framework/System.Web.2a6wq9gv6d.wasm.gz","AssetFile":"_framework/System.Web.2a6wq9gv6d.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2127"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2a6wq9gv6d"},{"Name":"integrity","Value":"sha256-UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4="},{"Name":"label","Value":"_framework/System.Web.wasm.gz"}]},{"Route":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm","AssetFile":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"19733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3jfxpyq4in"},{"Name":"integrity","Value":"sha256-IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4="},{"Name":"label","Value":"_framework/System.Web.HttpUtility.wasm"}]},{"Route":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm","AssetFile":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000104766894"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9544"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3jfxpyq4in"},{"Name":"integrity","Value":"sha256-IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4="},{"Name":"label","Value":"_framework/System.Web.HttpUtility.wasm"},{"Name":"original-resource","Value":"\"IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4=\""}]},{"Route":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm.gz","AssetFile":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9544"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3jfxpyq4in"},{"Name":"integrity","Value":"sha256-eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg="},{"Name":"label","Value":"_framework/System.Web.HttpUtility.wasm.gz"}]},{"Route":"_framework/System.Web.HttpUtility.wasm","AssetFile":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"19733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4="}]},{"Route":"_framework/System.Web.HttpUtility.wasm","AssetFile":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000104766894"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9544"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4="},{"Name":"original-resource","Value":"\"IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4=\""}]},{"Route":"_framework/System.Web.HttpUtility.wasm.gz","AssetFile":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9544"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg="}]},{"Route":"_framework/System.Web.wasm","AssetFile":"_framework/System.Web.2a6wq9gv6d.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk="}]},{"Route":"_framework/System.Web.wasm","AssetFile":"_framework/System.Web.2a6wq9gv6d.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000469924812"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2127"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk="},{"Name":"original-resource","Value":"\"Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk=\""}]},{"Route":"_framework/System.Web.wasm.gz","AssetFile":"_framework/System.Web.2a6wq9gv6d.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2127"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4="}]},{"Route":"_framework/System.Windows.bw79ix589z.wasm","AssetFile":"_framework/System.Windows.bw79ix589z.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bw79ix589z"},{"Name":"integrity","Value":"sha256-O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA="},{"Name":"label","Value":"_framework/System.Windows.wasm"}]},{"Route":"_framework/System.Windows.bw79ix589z.wasm","AssetFile":"_framework/System.Windows.bw79ix589z.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438212095"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bw79ix589z"},{"Name":"integrity","Value":"sha256-O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA="},{"Name":"label","Value":"_framework/System.Windows.wasm"},{"Name":"original-resource","Value":"\"O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA=\""}]},{"Route":"_framework/System.Windows.bw79ix589z.wasm.gz","AssetFile":"_framework/System.Windows.bw79ix589z.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bw79ix589z"},{"Name":"integrity","Value":"sha256-YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs="},{"Name":"label","Value":"_framework/System.Windows.wasm.gz"}]},{"Route":"_framework/System.Windows.wasm","AssetFile":"_framework/System.Windows.bw79ix589z.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA="}]},{"Route":"_framework/System.Windows.wasm","AssetFile":"_framework/System.Windows.bw79ix589z.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438212095"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA="},{"Name":"original-resource","Value":"\"O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA=\""}]},{"Route":"_framework/System.Windows.wasm.gz","AssetFile":"_framework/System.Windows.bw79ix589z.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs="}]},{"Route":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm","AssetFile":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvnhbwdsg6"},{"Name":"integrity","Value":"sha256-I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE="},{"Name":"label","Value":"_framework/System.Xml.Linq.wasm"}]},{"Route":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm","AssetFile":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000452488688"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2209"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvnhbwdsg6"},{"Name":"integrity","Value":"sha256-I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE="},{"Name":"label","Value":"_framework/System.Xml.Linq.wasm"},{"Name":"original-resource","Value":"\"I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE=\""}]},{"Route":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm.gz","AssetFile":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2209"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvnhbwdsg6"},{"Name":"integrity","Value":"sha256-NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog="},{"Name":"label","Value":"_framework/System.Xml.Linq.wasm.gz"}]},{"Route":"_framework/System.Xml.Linq.wasm","AssetFile":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE="}]},{"Route":"_framework/System.Xml.Linq.wasm","AssetFile":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000452488688"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2209"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE="},{"Name":"original-resource","Value":"\"I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE=\""}]},{"Route":"_framework/System.Xml.Linq.wasm.gz","AssetFile":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2209"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog="}]},{"Route":"_framework/System.Xml.ReaderWriter.szsdminork.wasm","AssetFile":"_framework/System.Xml.ReaderWriter.szsdminork.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"szsdminork"},{"Name":"integrity","Value":"sha256-+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho="},{"Name":"label","Value":"_framework/System.Xml.ReaderWriter.wasm"}]},{"Route":"_framework/System.Xml.ReaderWriter.szsdminork.wasm","AssetFile":"_framework/System.Xml.ReaderWriter.szsdminork.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000248632521"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"szsdminork"},{"Name":"integrity","Value":"sha256-+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho="},{"Name":"label","Value":"_framework/System.Xml.ReaderWriter.wasm"},{"Name":"original-resource","Value":"\"+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho=\""}]},{"Route":"_framework/System.Xml.ReaderWriter.szsdminork.wasm.gz","AssetFile":"_framework/System.Xml.ReaderWriter.szsdminork.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"szsdminork"},{"Name":"integrity","Value":"sha256-v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI="},{"Name":"label","Value":"_framework/System.Xml.ReaderWriter.wasm.gz"}]},{"Route":"_framework/System.Xml.ReaderWriter.wasm","AssetFile":"_framework/System.Xml.ReaderWriter.szsdminork.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho="}]},{"Route":"_framework/System.Xml.ReaderWriter.wasm","AssetFile":"_framework/System.Xml.ReaderWriter.szsdminork.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000248632521"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho="},{"Name":"original-resource","Value":"\"+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho=\""}]},{"Route":"_framework/System.Xml.ReaderWriter.wasm.gz","AssetFile":"_framework/System.Xml.ReaderWriter.szsdminork.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI="}]},{"Route":"_framework/System.Xml.Serialization.b9imguls9w.wasm","AssetFile":"_framework/System.Xml.Serialization.b9imguls9w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b9imguls9w"},{"Name":"integrity","Value":"sha256-EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8="},{"Name":"label","Value":"_framework/System.Xml.Serialization.wasm"}]},{"Route":"_framework/System.Xml.Serialization.b9imguls9w.wasm","AssetFile":"_framework/System.Xml.Serialization.b9imguls9w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000443852641"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2252"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b9imguls9w"},{"Name":"integrity","Value":"sha256-EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8="},{"Name":"label","Value":"_framework/System.Xml.Serialization.wasm"},{"Name":"original-resource","Value":"\"EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8=\""}]},{"Route":"_framework/System.Xml.Serialization.b9imguls9w.wasm.gz","AssetFile":"_framework/System.Xml.Serialization.b9imguls9w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2252"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b9imguls9w"},{"Name":"integrity","Value":"sha256-UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M="},{"Name":"label","Value":"_framework/System.Xml.Serialization.wasm.gz"}]},{"Route":"_framework/System.Xml.Serialization.wasm","AssetFile":"_framework/System.Xml.Serialization.b9imguls9w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8="}]},{"Route":"_framework/System.Xml.Serialization.wasm","AssetFile":"_framework/System.Xml.Serialization.b9imguls9w.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000443852641"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2252"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8="},{"Name":"original-resource","Value":"\"EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8=\""}]},{"Route":"_framework/System.Xml.Serialization.wasm.gz","AssetFile":"_framework/System.Xml.Serialization.b9imguls9w.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2252"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M="}]},{"Route":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm","AssetFile":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8hg6c0at0c"},{"Name":"integrity","Value":"sha256-7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk="},{"Name":"label","Value":"_framework/System.Xml.XDocument.wasm"}]},{"Route":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm","AssetFile":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000417362270"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2395"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8hg6c0at0c"},{"Name":"integrity","Value":"sha256-7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk="},{"Name":"label","Value":"_framework/System.Xml.XDocument.wasm"},{"Name":"original-resource","Value":"\"7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk=\""}]},{"Route":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm.gz","AssetFile":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2395"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8hg6c0at0c"},{"Name":"integrity","Value":"sha256-JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU="},{"Name":"label","Value":"_framework/System.Xml.XDocument.wasm.gz"}]},{"Route":"_framework/System.Xml.XDocument.wasm","AssetFile":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk="}]},{"Route":"_framework/System.Xml.XDocument.wasm","AssetFile":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000417362270"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2395"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk="},{"Name":"original-resource","Value":"\"7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk=\""}]},{"Route":"_framework/System.Xml.XDocument.wasm.gz","AssetFile":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2395"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU="}]},{"Route":"_framework/System.Xml.XPath.11wk1hhnfk.wasm","AssetFile":"_framework/System.Xml.XPath.11wk1hhnfk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"11wk1hhnfk"},{"Name":"integrity","Value":"sha256-28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM="},{"Name":"label","Value":"_framework/System.Xml.XPath.wasm"}]},{"Route":"_framework/System.Xml.XPath.11wk1hhnfk.wasm","AssetFile":"_framework/System.Xml.XPath.11wk1hhnfk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000430848772"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2320"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"11wk1hhnfk"},{"Name":"integrity","Value":"sha256-28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM="},{"Name":"label","Value":"_framework/System.Xml.XPath.wasm"},{"Name":"original-resource","Value":"\"28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM=\""}]},{"Route":"_framework/System.Xml.XPath.11wk1hhnfk.wasm.gz","AssetFile":"_framework/System.Xml.XPath.11wk1hhnfk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2320"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"11wk1hhnfk"},{"Name":"integrity","Value":"sha256-5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM="},{"Name":"label","Value":"_framework/System.Xml.XPath.wasm.gz"}]},{"Route":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm","AssetFile":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g7i5gd64yo"},{"Name":"integrity","Value":"sha256-bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg="},{"Name":"label","Value":"_framework/System.Xml.XPath.XDocument.wasm"}]},{"Route":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm","AssetFile":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000401284109"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2491"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g7i5gd64yo"},{"Name":"integrity","Value":"sha256-bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg="},{"Name":"label","Value":"_framework/System.Xml.XPath.XDocument.wasm"},{"Name":"original-resource","Value":"\"bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg=\""}]},{"Route":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm.gz","AssetFile":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2491"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g7i5gd64yo"},{"Name":"integrity","Value":"sha256-6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918="},{"Name":"label","Value":"_framework/System.Xml.XPath.XDocument.wasm.gz"}]},{"Route":"_framework/System.Xml.XPath.XDocument.wasm","AssetFile":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg="}]},{"Route":"_framework/System.Xml.XPath.XDocument.wasm","AssetFile":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000401284109"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2491"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg="},{"Name":"original-resource","Value":"\"bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg=\""}]},{"Route":"_framework/System.Xml.XPath.XDocument.wasm.gz","AssetFile":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2491"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918="}]},{"Route":"_framework/System.Xml.XPath.wasm","AssetFile":"_framework/System.Xml.XPath.11wk1hhnfk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM="}]},{"Route":"_framework/System.Xml.XPath.wasm","AssetFile":"_framework/System.Xml.XPath.11wk1hhnfk.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000430848772"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2320"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM="},{"Name":"original-resource","Value":"\"28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM=\""}]},{"Route":"_framework/System.Xml.XPath.wasm.gz","AssetFile":"_framework/System.Xml.XPath.11wk1hhnfk.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2320"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM="}]},{"Route":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm","AssetFile":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"isetn6xlxa"},{"Name":"integrity","Value":"sha256-Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw="},{"Name":"label","Value":"_framework/System.Xml.XmlDocument.wasm"}]},{"Route":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm","AssetFile":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000423190859"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"isetn6xlxa"},{"Name":"integrity","Value":"sha256-Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw="},{"Name":"label","Value":"_framework/System.Xml.XmlDocument.wasm"},{"Name":"original-resource","Value":"\"Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw=\""}]},{"Route":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm.gz","AssetFile":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"isetn6xlxa"},{"Name":"integrity","Value":"sha256-520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs="},{"Name":"label","Value":"_framework/System.Xml.XmlDocument.wasm.gz"}]},{"Route":"_framework/System.Xml.XmlDocument.wasm","AssetFile":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw="}]},{"Route":"_framework/System.Xml.XmlDocument.wasm","AssetFile":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000423190859"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw="},{"Name":"original-resource","Value":"\"Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw=\""}]},{"Route":"_framework/System.Xml.XmlDocument.wasm.gz","AssetFile":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs="}]},{"Route":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm","AssetFile":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"7445"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"okgnp5v9bw"},{"Name":"integrity","Value":"sha256-WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U="},{"Name":"label","Value":"_framework/System.Xml.XmlSerializer.wasm"}]},{"Route":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm","AssetFile":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000349406010"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"okgnp5v9bw"},{"Name":"integrity","Value":"sha256-WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U="},{"Name":"label","Value":"_framework/System.Xml.XmlSerializer.wasm"},{"Name":"original-resource","Value":"\"WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U=\""}]},{"Route":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm.gz","AssetFile":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"okgnp5v9bw"},{"Name":"integrity","Value":"sha256-WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA="},{"Name":"label","Value":"_framework/System.Xml.XmlSerializer.wasm.gz"}]},{"Route":"_framework/System.Xml.XmlSerializer.wasm","AssetFile":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"7445"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U="}]},{"Route":"_framework/System.Xml.XmlSerializer.wasm","AssetFile":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000349406010"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U="},{"Name":"original-resource","Value":"\"WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U=\""}]},{"Route":"_framework/System.Xml.XmlSerializer.wasm.gz","AssetFile":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA="}]},{"Route":"_framework/System.Xml.wasm","AssetFile":"_framework/System.Xml.zjgi7nrlno.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas="}]},{"Route":"_framework/System.Xml.wasm","AssetFile":"_framework/System.Xml.zjgi7nrlno.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000237079184"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4217"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas="},{"Name":"original-resource","Value":"\"scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas=\""}]},{"Route":"_framework/System.Xml.wasm.gz","AssetFile":"_framework/System.Xml.zjgi7nrlno.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4217"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY="}]},{"Route":"_framework/System.Xml.zjgi7nrlno.wasm","AssetFile":"_framework/System.Xml.zjgi7nrlno.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zjgi7nrlno"},{"Name":"integrity","Value":"sha256-scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas="},{"Name":"label","Value":"_framework/System.Xml.wasm"}]},{"Route":"_framework/System.Xml.zjgi7nrlno.wasm","AssetFile":"_framework/System.Xml.zjgi7nrlno.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000237079184"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4217"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zjgi7nrlno"},{"Name":"integrity","Value":"sha256-scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas="},{"Name":"label","Value":"_framework/System.Xml.wasm"},{"Name":"original-resource","Value":"\"scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas=\""}]},{"Route":"_framework/System.Xml.zjgi7nrlno.wasm.gz","AssetFile":"_framework/System.Xml.zjgi7nrlno.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4217"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zjgi7nrlno"},{"Name":"integrity","Value":"sha256-Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY="},{"Name":"label","Value":"_framework/System.Xml.wasm.gz"}]},{"Route":"_framework/System.wasm","AssetFile":"_framework/System.7rk3uansaa.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"39701"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q="}]},{"Route":"_framework/System.wasm","AssetFile":"_framework/System.7rk3uansaa.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000084875233"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q="},{"Name":"original-resource","Value":"\"00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q=\""}]},{"Route":"_framework/System.wasm.gz","AssetFile":"_framework/System.7rk3uansaa.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI="}]},{"Route":"_framework/WindowsBase.wasm","AssetFile":"_framework/WindowsBase.wz82kkc1p3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ="}]},{"Route":"_framework/WindowsBase.wasm","AssetFile":"_framework/WindowsBase.wz82kkc1p3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000395726157"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2526"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ="},{"Name":"original-resource","Value":"\"DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ=\""}]},{"Route":"_framework/WindowsBase.wasm.gz","AssetFile":"_framework/WindowsBase.wz82kkc1p3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2526"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc="}]},{"Route":"_framework/WindowsBase.wz82kkc1p3.wasm","AssetFile":"_framework/WindowsBase.wz82kkc1p3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wz82kkc1p3"},{"Name":"integrity","Value":"sha256-DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ="},{"Name":"label","Value":"_framework/WindowsBase.wasm"}]},{"Route":"_framework/WindowsBase.wz82kkc1p3.wasm","AssetFile":"_framework/WindowsBase.wz82kkc1p3.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000395726157"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2526"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wz82kkc1p3"},{"Name":"integrity","Value":"sha256-DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ="},{"Name":"label","Value":"_framework/WindowsBase.wasm"},{"Name":"original-resource","Value":"\"DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ=\""}]},{"Route":"_framework/WindowsBase.wz82kkc1p3.wasm.gz","AssetFile":"_framework/WindowsBase.wz82kkc1p3.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2526"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wz82kkc1p3"},{"Name":"integrity","Value":"sha256-b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc="},{"Name":"label","Value":"_framework/WindowsBase.wasm.gz"}]},{"Route":"_framework/blazor.server.2tj1sjhksk.js","AssetFile":"_framework/blazor.server.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"164838"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"eg0OnUsgnYSMB4bGEC2eWKHVZZYf6Psyru2+slCqElY=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 20:10:46 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2tj1sjhksk"},{"Name":"integrity","Value":"sha256-eg0OnUsgnYSMB4bGEC2eWKHVZZYf6Psyru2+slCqElY="},{"Name":"label","Value":"_framework/blazor.server.js"}]},{"Route":"_framework/blazor.server.2tj1sjhksk.js","AssetFile":"_framework/blazor.server.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022566741"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44312"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"UZUyVYBpct8fgB7oNrIguu4We/o5Cyak6zO8IAx3S20=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2tj1sjhksk"},{"Name":"integrity","Value":"sha256-eg0OnUsgnYSMB4bGEC2eWKHVZZYf6Psyru2+slCqElY="},{"Name":"label","Value":"_framework/blazor.server.js"},{"Name":"original-resource","Value":"\"eg0OnUsgnYSMB4bGEC2eWKHVZZYf6Psyru2+slCqElY=\""}]},{"Route":"_framework/blazor.server.2tj1sjhksk.js.gz","AssetFile":"_framework/blazor.server.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44312"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"UZUyVYBpct8fgB7oNrIguu4We/o5Cyak6zO8IAx3S20=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2tj1sjhksk"},{"Name":"integrity","Value":"sha256-UZUyVYBpct8fgB7oNrIguu4We/o5Cyak6zO8IAx3S20="},{"Name":"label","Value":"_framework/blazor.server.js.gz"}]},{"Route":"_framework/blazor.server.js","AssetFile":"_framework/blazor.server.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"164838"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"eg0OnUsgnYSMB4bGEC2eWKHVZZYf6Psyru2+slCqElY=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 20:10:46 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eg0OnUsgnYSMB4bGEC2eWKHVZZYf6Psyru2+slCqElY="}]},{"Route":"_framework/blazor.server.js","AssetFile":"_framework/blazor.server.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022566741"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44312"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"UZUyVYBpct8fgB7oNrIguu4We/o5Cyak6zO8IAx3S20=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eg0OnUsgnYSMB4bGEC2eWKHVZZYf6Psyru2+slCqElY="},{"Name":"original-resource","Value":"\"eg0OnUsgnYSMB4bGEC2eWKHVZZYf6Psyru2+slCqElY=\""}]},{"Route":"_framework/blazor.server.js.gz","AssetFile":"_framework/blazor.server.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44312"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"UZUyVYBpct8fgB7oNrIguu4We/o5Cyak6zO8IAx3S20=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UZUyVYBpct8fgB7oNrIguu4We/o5Cyak6zO8IAx3S20="}]},{"Route":"_framework/blazor.web.b9228eflpl.js","AssetFile":"_framework/blazor.web.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"200213"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"EVhyOk3pqPbkypEpHXvWs/DrqujSmP7XEC3pnVHJMUU=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 20:10:52 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b9228eflpl"},{"Name":"integrity","Value":"sha256-EVhyOk3pqPbkypEpHXvWs/DrqujSmP7XEC3pnVHJMUU="},{"Name":"label","Value":"_framework/blazor.web.js"}]},{"Route":"_framework/blazor.web.b9228eflpl.js","AssetFile":"_framework/blazor.web.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018129408"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55158"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8VQ3iMUvfxiGnWgLihInPbvXvnXptUD4QRw4448/j64=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b9228eflpl"},{"Name":"integrity","Value":"sha256-EVhyOk3pqPbkypEpHXvWs/DrqujSmP7XEC3pnVHJMUU="},{"Name":"label","Value":"_framework/blazor.web.js"},{"Name":"original-resource","Value":"\"EVhyOk3pqPbkypEpHXvWs/DrqujSmP7XEC3pnVHJMUU=\""}]},{"Route":"_framework/blazor.web.b9228eflpl.js.gz","AssetFile":"_framework/blazor.web.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55158"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8VQ3iMUvfxiGnWgLihInPbvXvnXptUD4QRw4448/j64=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b9228eflpl"},{"Name":"integrity","Value":"sha256-8VQ3iMUvfxiGnWgLihInPbvXvnXptUD4QRw4448/j64="},{"Name":"label","Value":"_framework/blazor.web.js.gz"}]},{"Route":"_framework/blazor.web.js","AssetFile":"_framework/blazor.web.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"200213"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"EVhyOk3pqPbkypEpHXvWs/DrqujSmP7XEC3pnVHJMUU=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 20:10:52 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EVhyOk3pqPbkypEpHXvWs/DrqujSmP7XEC3pnVHJMUU="}]},{"Route":"_framework/blazor.web.js","AssetFile":"_framework/blazor.web.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018129408"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55158"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8VQ3iMUvfxiGnWgLihInPbvXvnXptUD4QRw4448/j64=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EVhyOk3pqPbkypEpHXvWs/DrqujSmP7XEC3pnVHJMUU="},{"Name":"original-resource","Value":"\"EVhyOk3pqPbkypEpHXvWs/DrqujSmP7XEC3pnVHJMUU=\""}]},{"Route":"_framework/blazor.web.js.gz","AssetFile":"_framework/blazor.web.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55158"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8VQ3iMUvfxiGnWgLihInPbvXvnXptUD4QRw4448/j64=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8VQ3iMUvfxiGnWgLihInPbvXvnXptUD4QRw4448/j64="}]},{"Route":"_framework/blazor.webassembly.js","AssetFile":"_framework/blazor.webassembly.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"60278"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3lCWrko3zwspV40aQhs2S/IMkRSarnHRKIdkHhuXIBA=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 20:10:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3lCWrko3zwspV40aQhs2S/IMkRSarnHRKIdkHhuXIBA="}]},{"Route":"_framework/blazor.webassembly.js","AssetFile":"_framework/blazor.webassembly.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053404539"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18724"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"5Igt0nmzlphL04ESrb7MBY9ts2dhz5i3UJ+aCoJbK0Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3lCWrko3zwspV40aQhs2S/IMkRSarnHRKIdkHhuXIBA="},{"Name":"original-resource","Value":"\"3lCWrko3zwspV40aQhs2S/IMkRSarnHRKIdkHhuXIBA=\""}]},{"Route":"_framework/blazor.webassembly.js.gz","AssetFile":"_framework/blazor.webassembly.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18724"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"5Igt0nmzlphL04ESrb7MBY9ts2dhz5i3UJ+aCoJbK0Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5Igt0nmzlphL04ESrb7MBY9ts2dhz5i3UJ+aCoJbK0Y="}]},{"Route":"_framework/dotnet.js","AssetFile":"_framework/dotnet.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"93305"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk="}]},{"Route":"_framework/dotnet.js","AssetFile":"_framework/dotnet.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000039508514"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25310"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk="},{"Name":"original-resource","Value":"\"WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk=\""}]},{"Route":"_framework/dotnet.js.clndu25lif.map","AssetFile":"_framework/dotnet.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"51818"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:10 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clndu25lif"},{"Name":"integrity","Value":"sha256-sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU="},{"Name":"label","Value":"_framework/dotnet.js.map"}]},{"Route":"_framework/dotnet.js.clndu25lif.map","AssetFile":"_framework/dotnet.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051805419"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19302"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clndu25lif"},{"Name":"integrity","Value":"sha256-sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU="},{"Name":"label","Value":"_framework/dotnet.js.map"},{"Name":"original-resource","Value":"\"sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU=\""}]},{"Route":"_framework/dotnet.js.clndu25lif.map.gz","AssetFile":"_framework/dotnet.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19302"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clndu25lif"},{"Name":"integrity","Value":"sha256-viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs="},{"Name":"label","Value":"_framework/dotnet.js.map.gz"}]},{"Route":"_framework/dotnet.js.gz","AssetFile":"_framework/dotnet.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25310"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I="}]},{"Route":"_framework/dotnet.js.map","AssetFile":"_framework/dotnet.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"51818"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:10 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU="}]},{"Route":"_framework/dotnet.js.map","AssetFile":"_framework/dotnet.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051805419"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19302"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU="},{"Name":"original-resource","Value":"\"sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU=\""}]},{"Route":"_framework/dotnet.js.map.gz","AssetFile":"_framework/dotnet.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19302"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs="}]},{"Route":"_framework/dotnet.kx7meqmil2.js","AssetFile":"_framework/dotnet.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"93305"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"PreloadAs","Value":"script"},{"Name":"PreloadCrossorigin","Value":"anonymous"},{"Name":"PreloadGroup","Value":"webassembly"},{"Name":"PreloadOrder","Value":"1"},{"Name":"PreloadPriority","Value":"high"},{"Name":"PreloadRel","Value":"preload"},{"Name":"fingerprint","Value":"kx7meqmil2"},{"Name":"integrity","Value":"sha256-WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk="},{"Name":"label","Value":"_framework/dotnet.js"}]},{"Route":"_framework/dotnet.kx7meqmil2.js","AssetFile":"_framework/dotnet.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000039508514"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25310"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"PreloadAs","Value":"script"},{"Name":"PreloadCrossorigin","Value":"anonymous"},{"Name":"PreloadGroup","Value":"webassembly"},{"Name":"PreloadOrder","Value":"1"},{"Name":"PreloadPriority","Value":"high"},{"Name":"PreloadRel","Value":"preload"},{"Name":"fingerprint","Value":"kx7meqmil2"},{"Name":"integrity","Value":"sha256-WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk="},{"Name":"label","Value":"_framework/dotnet.js"},{"Name":"original-resource","Value":"\"WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk=\""}]},{"Route":"_framework/dotnet.kx7meqmil2.js.gz","AssetFile":"_framework/dotnet.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25310"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kx7meqmil2"},{"Name":"integrity","Value":"sha256-Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I="},{"Name":"label","Value":"_framework/dotnet.js.gz"}]},{"Route":"_framework/dotnet.native.53ez3dx5uy.wasm","AssetFile":"_framework/dotnet.native.53ez3dx5uy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3002101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:42 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"53ez3dx5uy"},{"Name":"integrity","Value":"sha256-Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU="},{"Name":"label","Value":"_framework/dotnet.native.wasm"}]},{"Route":"_framework/dotnet.native.53ez3dx5uy.wasm","AssetFile":"_framework/dotnet.native.53ez3dx5uy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000842441"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1187026"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"53ez3dx5uy"},{"Name":"integrity","Value":"sha256-Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU="},{"Name":"label","Value":"_framework/dotnet.native.wasm"},{"Name":"original-resource","Value":"\"Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU=\""}]},{"Route":"_framework/dotnet.native.53ez3dx5uy.wasm.gz","AssetFile":"_framework/dotnet.native.53ez3dx5uy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1187026"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"53ez3dx5uy"},{"Name":"integrity","Value":"sha256-SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw="},{"Name":"label","Value":"_framework/dotnet.native.wasm.gz"}]},{"Route":"_framework/dotnet.native.js","AssetFile":"_framework/dotnet.native.ykrnppwhq2.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"145050"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:42 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U="}]},{"Route":"_framework/dotnet.native.js","AssetFile":"_framework/dotnet.native.ykrnppwhq2.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000028845876"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"34666"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U="},{"Name":"original-resource","Value":"\"nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U=\""}]},{"Route":"_framework/dotnet.native.js.gz","AssetFile":"_framework/dotnet.native.ykrnppwhq2.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"34666"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0="}]},{"Route":"_framework/dotnet.native.wasm","AssetFile":"_framework/dotnet.native.53ez3dx5uy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3002101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:42 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU="}]},{"Route":"_framework/dotnet.native.wasm","AssetFile":"_framework/dotnet.native.53ez3dx5uy.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000842441"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1187026"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU="},{"Name":"original-resource","Value":"\"Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU=\""}]},{"Route":"_framework/dotnet.native.wasm.gz","AssetFile":"_framework/dotnet.native.53ez3dx5uy.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1187026"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw="}]},{"Route":"_framework/dotnet.native.ykrnppwhq2.js","AssetFile":"_framework/dotnet.native.ykrnppwhq2.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"145050"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:42 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ykrnppwhq2"},{"Name":"integrity","Value":"sha256-nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U="},{"Name":"label","Value":"_framework/dotnet.native.js"}]},{"Route":"_framework/dotnet.native.ykrnppwhq2.js","AssetFile":"_framework/dotnet.native.ykrnppwhq2.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000028845876"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"34666"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ykrnppwhq2"},{"Name":"integrity","Value":"sha256-nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U="},{"Name":"label","Value":"_framework/dotnet.native.js"},{"Name":"original-resource","Value":"\"nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U=\""}]},{"Route":"_framework/dotnet.native.ykrnppwhq2.js.gz","AssetFile":"_framework/dotnet.native.ykrnppwhq2.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"34666"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ykrnppwhq2"},{"Name":"integrity","Value":"sha256-iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0="},{"Name":"label","Value":"_framework/dotnet.native.js.gz"}]},{"Route":"_framework/dotnet.runtime.js","AssetFile":"_framework/dotnet.runtime.peu2mfb29t.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"198479"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:16 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM="}]},{"Route":"_framework/dotnet.runtime.js","AssetFile":"_framework/dotnet.runtime.peu2mfb29t.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017664099"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56611"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM="},{"Name":"original-resource","Value":"\"cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM=\""}]},{"Route":"_framework/dotnet.runtime.js.gz","AssetFile":"_framework/dotnet.runtime.peu2mfb29t.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56611"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak="}]},{"Route":"_framework/dotnet.runtime.js.map","AssetFile":"_framework/dotnet.runtime.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"276757"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:16 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE="}]},{"Route":"_framework/dotnet.runtime.js.map","AssetFile":"_framework/dotnet.runtime.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011299052"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"88502"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE="},{"Name":"original-resource","Value":"\"+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE=\""}]},{"Route":"_framework/dotnet.runtime.js.map.gz","AssetFile":"_framework/dotnet.runtime.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"88502"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4="}]},{"Route":"_framework/dotnet.runtime.js.y1cse46x0j.map","AssetFile":"_framework/dotnet.runtime.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"276757"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:16 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y1cse46x0j"},{"Name":"integrity","Value":"sha256-+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE="},{"Name":"label","Value":"_framework/dotnet.runtime.js.map"}]},{"Route":"_framework/dotnet.runtime.js.y1cse46x0j.map","AssetFile":"_framework/dotnet.runtime.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011299052"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"88502"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y1cse46x0j"},{"Name":"integrity","Value":"sha256-+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE="},{"Name":"label","Value":"_framework/dotnet.runtime.js.map"},{"Name":"original-resource","Value":"\"+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE=\""}]},{"Route":"_framework/dotnet.runtime.js.y1cse46x0j.map.gz","AssetFile":"_framework/dotnet.runtime.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"88502"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y1cse46x0j"},{"Name":"integrity","Value":"sha256-8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4="},{"Name":"label","Value":"_framework/dotnet.runtime.js.map.gz"}]},{"Route":"_framework/dotnet.runtime.peu2mfb29t.js","AssetFile":"_framework/dotnet.runtime.peu2mfb29t.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"198479"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:16 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"peu2mfb29t"},{"Name":"integrity","Value":"sha256-cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM="},{"Name":"label","Value":"_framework/dotnet.runtime.js"}]},{"Route":"_framework/dotnet.runtime.peu2mfb29t.js","AssetFile":"_framework/dotnet.runtime.peu2mfb29t.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017664099"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56611"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"peu2mfb29t"},{"Name":"integrity","Value":"sha256-cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM="},{"Name":"label","Value":"_framework/dotnet.runtime.js"},{"Name":"original-resource","Value":"\"cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM=\""}]},{"Route":"_framework/dotnet.runtime.peu2mfb29t.js.gz","AssetFile":"_framework/dotnet.runtime.peu2mfb29t.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56611"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"peu2mfb29t"},{"Name":"integrity","Value":"sha256-1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak="},{"Name":"label","Value":"_framework/dotnet.runtime.js.gz"}]},{"Route":"_framework/icudt_CJK.dat","AssetFile":"_framework/icudt_CJK.tjcz0u77k5.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"956416"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk="}]},{"Route":"_framework/icudt_CJK.dat","AssetFile":"_framework/icudt_CJK.tjcz0u77k5.dat.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003002002"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"333110"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk="},{"Name":"original-resource","Value":"\"SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=\""}]},{"Route":"_framework/icudt_CJK.dat.gz","AssetFile":"_framework/icudt_CJK.tjcz0u77k5.dat.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"333110"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g="}]},{"Route":"_framework/icudt_CJK.tjcz0u77k5.dat","AssetFile":"_framework/icudt_CJK.tjcz0u77k5.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"956416"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tjcz0u77k5"},{"Name":"integrity","Value":"sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk="},{"Name":"label","Value":"_framework/icudt_CJK.dat"}]},{"Route":"_framework/icudt_CJK.tjcz0u77k5.dat","AssetFile":"_framework/icudt_CJK.tjcz0u77k5.dat.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003002002"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"333110"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tjcz0u77k5"},{"Name":"integrity","Value":"sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk="},{"Name":"label","Value":"_framework/icudt_CJK.dat"},{"Name":"original-resource","Value":"\"SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=\""}]},{"Route":"_framework/icudt_CJK.tjcz0u77k5.dat.gz","AssetFile":"_framework/icudt_CJK.tjcz0u77k5.dat.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"333110"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tjcz0u77k5"},{"Name":"integrity","Value":"sha256-JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g="},{"Name":"label","Value":"_framework/icudt_CJK.dat.gz"}]},{"Route":"_framework/icudt_EFIGS.dat","AssetFile":"_framework/icudt_EFIGS.tptq2av103.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"550832"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc="}]},{"Route":"_framework/icudt_EFIGS.dat","AssetFile":"_framework/icudt_EFIGS.tptq2av103.dat.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005101052"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196037"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc="},{"Name":"original-resource","Value":"\"8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=\""}]},{"Route":"_framework/icudt_EFIGS.dat.gz","AssetFile":"_framework/icudt_EFIGS.tptq2av103.dat.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196037"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE="}]},{"Route":"_framework/icudt_EFIGS.tptq2av103.dat","AssetFile":"_framework/icudt_EFIGS.tptq2av103.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"550832"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tptq2av103"},{"Name":"integrity","Value":"sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc="},{"Name":"label","Value":"_framework/icudt_EFIGS.dat"}]},{"Route":"_framework/icudt_EFIGS.tptq2av103.dat","AssetFile":"_framework/icudt_EFIGS.tptq2av103.dat.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005101052"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196037"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tptq2av103"},{"Name":"integrity","Value":"sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc="},{"Name":"label","Value":"_framework/icudt_EFIGS.dat"},{"Name":"original-resource","Value":"\"8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=\""}]},{"Route":"_framework/icudt_EFIGS.tptq2av103.dat.gz","AssetFile":"_framework/icudt_EFIGS.tptq2av103.dat.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196037"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tptq2av103"},{"Name":"integrity","Value":"sha256-G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE="},{"Name":"label","Value":"_framework/icudt_EFIGS.dat.gz"}]},{"Route":"_framework/icudt_no_CJK.dat","AssetFile":"_framework/icudt_no_CJK.lfu7j35m59.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1107168"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs="}]},{"Route":"_framework/icudt_no_CJK.dat","AssetFile":"_framework/icudt_no_CJK.lfu7j35m59.dat.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003148426"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"317618"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs="},{"Name":"original-resource","Value":"\"L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs=\""}]},{"Route":"_framework/icudt_no_CJK.dat.gz","AssetFile":"_framework/icudt_no_CJK.lfu7j35m59.dat.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"317618"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk="}]},{"Route":"_framework/icudt_no_CJK.lfu7j35m59.dat","AssetFile":"_framework/icudt_no_CJK.lfu7j35m59.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1107168"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lfu7j35m59"},{"Name":"integrity","Value":"sha256-L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs="},{"Name":"label","Value":"_framework/icudt_no_CJK.dat"}]},{"Route":"_framework/icudt_no_CJK.lfu7j35m59.dat","AssetFile":"_framework/icudt_no_CJK.lfu7j35m59.dat.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003148426"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"317618"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lfu7j35m59"},{"Name":"integrity","Value":"sha256-L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs="},{"Name":"label","Value":"_framework/icudt_no_CJK.dat"},{"Name":"original-resource","Value":"\"L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs=\""}]},{"Route":"_framework/icudt_no_CJK.lfu7j35m59.dat.gz","AssetFile":"_framework/icudt_no_CJK.lfu7j35m59.dat.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"317618"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lfu7j35m59"},{"Name":"integrity","Value":"sha256-S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk="},{"Name":"label","Value":"_framework/icudt_no_CJK.dat.gz"}]},{"Route":"_framework/mscorlib.555t1ekkz8.wasm","AssetFile":"_framework/mscorlib.555t1ekkz8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"49429"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"555t1ekkz8"},{"Name":"integrity","Value":"sha256-SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M="},{"Name":"label","Value":"_framework/mscorlib.wasm"}]},{"Route":"_framework/mscorlib.555t1ekkz8.wasm","AssetFile":"_framework/mscorlib.555t1ekkz8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067417245"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"555t1ekkz8"},{"Name":"integrity","Value":"sha256-SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M="},{"Name":"label","Value":"_framework/mscorlib.wasm"},{"Name":"original-resource","Value":"\"SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M=\""}]},{"Route":"_framework/mscorlib.555t1ekkz8.wasm.gz","AssetFile":"_framework/mscorlib.555t1ekkz8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"555t1ekkz8"},{"Name":"integrity","Value":"sha256-qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4="},{"Name":"label","Value":"_framework/mscorlib.wasm.gz"}]},{"Route":"_framework/mscorlib.wasm","AssetFile":"_framework/mscorlib.555t1ekkz8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"49429"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M="}]},{"Route":"_framework/mscorlib.wasm","AssetFile":"_framework/mscorlib.555t1ekkz8.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067417245"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M="},{"Name":"original-resource","Value":"\"SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M=\""}]},{"Route":"_framework/mscorlib.wasm.gz","AssetFile":"_framework/mscorlib.555t1ekkz8.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4="}]},{"Route":"_framework/netstandard.0e3bjkca9m.wasm","AssetFile":"_framework/netstandard.0e3bjkca9m.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"90389"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0e3bjkca9m"},{"Name":"integrity","Value":"sha256-6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs="},{"Name":"label","Value":"_framework/netstandard.wasm"}]},{"Route":"_framework/netstandard.0e3bjkca9m.wasm","AssetFile":"_framework/netstandard.0e3bjkca9m.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038333269"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26086"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0e3bjkca9m"},{"Name":"integrity","Value":"sha256-6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs="},{"Name":"label","Value":"_framework/netstandard.wasm"},{"Name":"original-resource","Value":"\"6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs=\""}]},{"Route":"_framework/netstandard.0e3bjkca9m.wasm.gz","AssetFile":"_framework/netstandard.0e3bjkca9m.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26086"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0e3bjkca9m"},{"Name":"integrity","Value":"sha256-GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE="},{"Name":"label","Value":"_framework/netstandard.wasm.gz"}]},{"Route":"_framework/netstandard.wasm","AssetFile":"_framework/netstandard.0e3bjkca9m.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"90389"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs="}]},{"Route":"_framework/netstandard.wasm","AssetFile":"_framework/netstandard.0e3bjkca9m.wasm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038333269"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26086"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs="},{"Name":"original-resource","Value":"\"6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs=\""}]},{"Route":"_framework/netstandard.wasm.gz","AssetFile":"_framework/netstandard.0e3bjkca9m.wasm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26086"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE="}]},{"Route":"appsettings.Development.json","AssetFile":"appsettings.Development.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009174311927"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"original-resource","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""}]},{"Route":"appsettings.Development.json","AssetFile":"appsettings.Development.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="}]},{"Route":"appsettings.Development.json.gz","AssetFile":"appsettings.Development.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4="}]},{"Route":"appsettings.Development.x0ueugt8gp.json","AssetFile":"appsettings.Development.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009174311927"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"label","Value":"appsettings.Development.json"},{"Name":"original-resource","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""}]},{"Route":"appsettings.Development.x0ueugt8gp.json","AssetFile":"appsettings.Development.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"label","Value":"appsettings.Development.json"}]},{"Route":"appsettings.Development.x0ueugt8gp.json.gz","AssetFile":"appsettings.Development.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4="},{"Name":"label","Value":"appsettings.Development.json.gz"}]},{"Route":"appsettings.json","AssetFile":"appsettings.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009174311927"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"original-resource","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""}]},{"Route":"appsettings.json","AssetFile":"appsettings.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="}]},{"Route":"appsettings.json.gz","AssetFile":"appsettings.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4="}]},{"Route":"appsettings.x0ueugt8gp.json","AssetFile":"appsettings.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009174311927"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"label","Value":"appsettings.json"},{"Name":"original-resource","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""}]},{"Route":"appsettings.x0ueugt8gp.json","AssetFile":"appsettings.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"label","Value":"appsettings.json"}]},{"Route":"appsettings.x0ueugt8gp.json.gz","AssetFile":"appsettings.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4="},{"Name":"label","Value":"appsettings.json.gz"}]},{"Route":"favicon.2jeq8efc6q.ico","AssetFile":"favicon.ico.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000336021505"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2jeq8efc6q"},{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="},{"Name":"label","Value":"favicon.ico"},{"Name":"original-resource","Value":"\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""}]},{"Route":"favicon.2jeq8efc6q.ico","AssetFile":"favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"15086"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2jeq8efc6q"},{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="},{"Name":"label","Value":"favicon.ico"}]},{"Route":"favicon.2jeq8efc6q.ico.gz","AssetFile":"favicon.ico.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2jeq8efc6q"},{"Name":"integrity","Value":"sha256-b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M="},{"Name":"label","Value":"favicon.ico.gz"}]},{"Route":"favicon.ico","AssetFile":"favicon.ico.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000336021505"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="},{"Name":"original-resource","Value":"\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""}]},{"Route":"favicon.ico","AssetFile":"favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"15086"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="}]},{"Route":"favicon.ico.gz","AssetFile":"favicon.ico.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M="}]}]} \ No newline at end of file diff --git a/OnProfNext/obj/Debug/net10.0/staticwebassets.build.json b/OnProfNext/obj/Debug/net10.0/staticwebassets.build.json new file mode 100644 index 0000000..3e81957 --- /dev/null +++ b/OnProfNext/obj/Debug/net10.0/staticwebassets.build.json @@ -0,0 +1 @@ +{"Version":1,"Hash":"Kib2lfis2XhoZYH6gYAJMrm8xRtWlS3Ge42+woatU0I=","Source":"OnProfNext","BasePath":"/","Mode":"Root","ManifestType":"Build","ReferencedProjectsConfiguration":[{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\OnProfNext.Client.csproj","Version":2,"Source":"OnProfNext.Client","GetPublishAssetsTargets":"ComputeFilesToPublish;GetCurrentProjectPublishStaticWebAssetItems","AdditionalPublishProperties":"_PublishingBlazorWasmProject=true;BuildProjectReferences=false;ResolveAssemblyReferencesFindRelatedSatellites=true;Configuration=Debug;Platform=AnyCPU","AdditionalPublishPropertiesToRemove":"NoBuild;RuntimeIdentifier;WebPublishProfileFile;TargetFramework;RuntimeIdentifier;SelfContained","GetBuildAssetsTargets":"GetCurrentProjectBuildStaticWebAssetItems","AdditionalBuildProperties":"Configuration=Debug;Platform=AnyCPU","AdditionalBuildPropertiesToRemove":"RuntimeIdentifier;SelfContained;WebPublishProfileFile;TargetFramework;RuntimeIdentifier;SelfContained"}],"DiscoveryPatterns":[{"Name":"OnProfNext.Client\\wwwroot","Source":"OnProfNext.Client","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\","BasePath":"/","Pattern":"**"},{"Name":"OnProfNext\\wwwroot","Source":"OnProfNext","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\wwwroot\\","BasePath":"/","Pattern":"**"}],"Assets":[{"Identity":"C:\\Users\\wiela\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.5\\_framework\\blazor.server.js","SourceId":"OnProfNext","SourceType":"Discovered","ContentRoot":"C:\\Users\\wiela\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.5\\_framework\\","BasePath":"/","RelativePath":"_framework/blazor.server#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"2tj1sjhksk","Integrity":"eg0OnUsgnYSMB4bGEC2eWKHVZZYf6Psyru2+slCqElY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\wiela\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.5\\build\\..\\_framework\\blazor.server.js","FileLength":164838,"LastWriteTime":"2026-03-03T20:10:46+00:00"},{"Identity":"C:\\Users\\wiela\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.5\\_framework\\blazor.web.js","SourceId":"OnProfNext","SourceType":"Discovered","ContentRoot":"C:\\Users\\wiela\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.5\\_framework\\","BasePath":"/","RelativePath":"_framework/blazor.web#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"b9228eflpl","Integrity":"EVhyOk3pqPbkypEpHXvWs/DrqujSmP7XEC3pnVHJMUU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\wiela\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.5\\build\\..\\_framework\\blazor.web.js","FileLength":200213,"LastWriteTime":"2026-03-03T20:10:52+00:00"},{"Identity":"C:\\Users\\wiela\\.nuget\\packages\\microsoft.dotnet.hotreload.webassembly.browser\\10.0.201\\staticwebassets\\Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js","SourceId":"Microsoft.DotNet.HotReload.WebAssembly.Browser","SourceType":"Package","ContentRoot":"C:\\Users\\wiela\\.nuget\\packages\\microsoft.dotnet.hotreload.webassembly.browser\\10.0.201\\staticwebassets\\","BasePath":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser","RelativePath":"Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"JSModule","AssetTraitValue":"JSLibraryModule","Fingerprint":"99zm1jdh75","Integrity":"A8e6zZwhOqf7lDQqbbCYcAUv4wGE9aQxOo4WyYxR//0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\wiela\\.nuget\\packages\\microsoft.dotnet.hotreload.webassembly.browser\\10.0.201\\staticwebassets\\Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js","FileLength":1862,"LastWriteTime":"2026-03-04T01:26:18+00:00"},{"Identity":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\MudBlazor.min.css","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"o2b68hjqqd","Integrity":"kBmVfU2BqUZUT8HPz7NUnkObDjxYKbSWXF5q33paHM0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\MudBlazor.min.css","FileLength":607258,"LastWriteTime":"2026-03-18T01:03:28+00:00"},{"Identity":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\MudBlazor.min.js","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"8dleymzaev","Integrity":"VHJcGholtUHNobadpTrhyE/VCi90X4p12vYD83bzI04=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\MudBlazor.min.js","FileLength":64944,"LastWriteTime":"2026-03-18T01:03:27+00:00"},{"Identity":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\MudBlazor.min.js.map","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.js.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"0ykner63ol","Integrity":"yAPYxO0UcV5YvjmoVWBh8O+tMbwO9AMZv1RMPdpxE0Q=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\MudBlazor.min.js.map","FileLength":236222,"LastWriteTime":"2026-03-18T01:03:27+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\Layout\\ReconnectModal.razor.js","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\","BasePath":"/","RelativePath":"Layout/ReconnectModal#[.{fingerprint}]?.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ycbzh0sbjd","Integrity":"QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\Layout\\ReconnectModal.razor.js","FileLength":2746,"LastWriteTime":"2026-03-18T16:33:32+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.AspNetCore.Authorization#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"roqc1km2rj","Integrity":"G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.AspNetCore.Authorization.wasm","FileLength":45333,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.AspNetCore.Components.Forms#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"zrueb40r85","Integrity":"sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.AspNetCore.Components.Forms.wasm","FileLength":37653,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.AspNetCore.Components.Web#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"g5qdp1mxha","Integrity":"XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.AspNetCore.Components.Web.wasm","FileLength":178965,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.AspNetCore.Components.WebAssembly#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"9mjwvs1qyp","Integrity":"r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.AspNetCore.Components.WebAssembly.wasm","FileLength":155925,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.uddsvpv1sv.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.AspNetCore.Components#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"uddsvpv1sv","Integrity":"wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.AspNetCore.Components.wasm","FileLength":388885,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.AspNetCore.Metadata#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"m3mxap0jif","Integrity":"3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.AspNetCore.Metadata.wasm","FileLength":5909,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.CSharp.452y5fjxmv.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.CSharp#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"452y5fjxmv","Integrity":"qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.CSharp.wasm","FileLength":301333,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"hrhwg3a64c","Integrity":"7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm","FileLength":56085,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Configuration.Abstractions#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"thew1o6jcx","Integrity":"YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.Configuration.Abstractions.wasm","FileLength":18197,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Configuration.Binder#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"7o70008j8o","Integrity":"KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.Configuration.Binder.wasm","FileLength":33045,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Configuration.FileExtensions#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"ouivavlhyy","Integrity":"MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.Configuration.FileExtensions.wasm","FileLength":18197,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Configuration.Json#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"giv4t23za9","Integrity":"iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.Configuration.Json.wasm","FileLength":17685,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Configuration#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"fgwnqtu7qk","Integrity":"D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.Configuration.wasm","FileLength":34581,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"ud13mwbta3","Integrity":"PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm","FileLength":55573,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.DependencyInjection#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"vs620n44bv","Integrity":"EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.DependencyInjection.wasm","FileLength":85269,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Diagnostics.Abstractions#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"v59ymogeuz","Integrity":"4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.Diagnostics.Abstractions.wasm","FileLength":20757,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Diagnostics#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"jnogfbng3i","Integrity":"MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.Diagnostics.wasm","FileLength":25877,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.FileProviders.Abstractions#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"ssv83rveyv","Integrity":"/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.FileProviders.Abstractions.wasm","FileLength":13077,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.FileProviders.Physical#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"8gz29xpyh3","Integrity":"CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.FileProviders.Physical.wasm","FileLength":35093,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.FileSystemGlobbing#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"ozuva4e3vv","Integrity":"pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.FileSystemGlobbing.wasm","FileLength":37653,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Localization.Abstractions#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"6jkolue1ka","Integrity":"8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.Localization.Abstractions.wasm","FileLength":8981,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Localization.xcslyy3nju.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Localization#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"xcslyy3nju","Integrity":"L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.Localization.wasm","FileLength":21269,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Logging.Abstractions#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"1q3x7vre4l","Integrity":"5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.Logging.Abstractions.wasm","FileLength":56597,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Logging.y4ydx3rk2c.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Logging#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"y4ydx3rk2c","Integrity":"7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.Logging.wasm","FileLength":41237,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Options.2rz5zbidnd.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Options#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"2rz5zbidnd","Integrity":"PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.Options.wasm","FileLength":55061,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"zmb03w0weu","Integrity":"652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.Options.ConfigurationExtensions.wasm","FileLength":11541,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.bd164v6l3f.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Primitives#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"bd164v6l3f","Integrity":"b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.Primitives.wasm","FileLength":34581,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Validation.r1sv3m5lsf.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Validation#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"r1sv3m5lsf","Integrity":"QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Extensions.Validation.wasm","FileLength":33045,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.JSInterop.1r0ampr2q1.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.JSInterop#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"1r0ampr2q1","Integrity":"TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.JSInterop.wasm","FileLength":64789,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.JSInterop.WebAssembly#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"oz8fkrrrd6","Integrity":"vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.JSInterop.WebAssembly.wasm","FileLength":14613,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.VisualBasic.91iw3j3d9p.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.VisualBasic#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"91iw3j3d9p","Integrity":"TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.VisualBasic.wasm","FileLength":6933,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.re3geseai5.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.VisualBasic.Core#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"re3geseai5","Integrity":"vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.VisualBasic.Core.wasm","FileLength":418581,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Win32.Primitives.2mjytoh92q.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Win32.Primitives#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"2mjytoh92q","Integrity":"NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Win32.Primitives.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Win32.Registry.yz8nt3ycsq.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/Microsoft.Win32.Registry#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"yz8nt3ycsq","Integrity":"sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\Microsoft.Win32.Registry.wasm","FileLength":22805,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\MudBlazor.k6079czmkm.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/MudBlazor#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"k6079czmkm","Integrity":"rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\MudBlazor.wasm","FileLength":10119449,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\OnProfNext.Client.lplk7v275j.pdb","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/OnProfNext.Client#[.{fingerprint}]!.pdb","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"symbol","Fingerprint":"lplk7v275j","Integrity":"FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\OnProfNext.Client.pdb","FileLength":33624,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\OnProfNext.Client.xhq6acanj0.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/OnProfNext.Client#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"xhq6acanj0","Integrity":"pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\OnProfNext.Client.wasm","FileLength":42261,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.7rk3uansaa.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"7rk3uansaa","Integrity":"00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.wasm","FileLength":39701,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.AppContext.uwq3fpef1w.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.AppContext#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"uwq3fpef1w","Integrity":"/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.AppContext.wasm","FileLength":4885,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Buffers.m4yhcvz2y2.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Buffers#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"m4yhcvz2y2","Integrity":"+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Buffers.wasm","FileLength":4885,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.63jrcion39.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Collections#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"63jrcion39","Integrity":"Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Collections.wasm","FileLength":102677,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.Concurrent.1zv6wuzklu.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Collections.Concurrent#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"1zv6wuzklu","Integrity":"XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Collections.Concurrent.wasm","FileLength":78613,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.Immutable.6uzpuv4o5d.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Collections.Immutable#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"6uzpuv4o5d","Integrity":"UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Collections.Immutable.wasm","FileLength":240917,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.NonGeneric.k5rgagff9o.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Collections.NonGeneric#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"k5rgagff9o","Integrity":"eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Collections.NonGeneric.wasm","FileLength":37653,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.Specialized.84wojkejb4.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Collections.Specialized#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"84wojkejb4","Integrity":"mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Collections.Specialized.wasm","FileLength":37653,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.Annotations.cjsvkufomv.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.ComponentModel.Annotations#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"cjsvkufomv","Integrity":"yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.ComponentModel.Annotations.wasm","FileLength":92437,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.ComponentModel.DataAnnotations#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"vpng0qt4u6","Integrity":"7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.ComponentModel.DataAnnotations.wasm","FileLength":6421,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.ComponentModel.EventBasedAsync#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"en4q13ibd5","Integrity":"9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.ComponentModel.EventBasedAsync.wasm","FileLength":16149,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.Primitives.u0y5oi3qdg.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.ComponentModel.Primitives#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"u0y5oi3qdg","Integrity":"fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.ComponentModel.Primitives.wasm","FileLength":32021,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.e2hbv9lola.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.ComponentModel.TypeConverter#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"e2hbv9lola","Integrity":"Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.ComponentModel.TypeConverter.wasm","FileLength":306453,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.m11rh1qn2x.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.ComponentModel#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"m11rh1qn2x","Integrity":"9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.ComponentModel.wasm","FileLength":5909,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Configuration.j8qjkqg593.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Configuration#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"j8qjkqg593","Integrity":"bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Configuration.wasm","FileLength":8981,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Console.x9at0eh4vs.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Console#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"x9at0eh4vs","Integrity":"ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Console.wasm","FileLength":43797,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Core.ickp29885z.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Core#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"ickp29885z","Integrity":"vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Core.wasm","FileLength":13077,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Data.0h75nr7qqd.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Data#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"0h75nr7qqd","Integrity":"7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Data.wasm","FileLength":15125,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Data.Common.4wisaz8pj4.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Data.Common#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"4wisaz8pj4","Integrity":"pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Data.Common.wasm","FileLength":1007893,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Data.DataSetExtensions.904tnen1ot.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Data.DataSetExtensions#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"904tnen1ot","Integrity":"dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Data.DataSetExtensions.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Contracts.z1eotzj35n.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.Contracts#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"z1eotzj35n","Integrity":"2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Diagnostics.Contracts.wasm","FileLength":5909,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Debug.aeh9b1tcuc.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.Debug#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"aeh9b1tcuc","Integrity":"Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Diagnostics.Debug.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.DiagnosticSource#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"ou2dt7nfo2","Integrity":"sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Diagnostics.DiagnosticSource.wasm","FileLength":192277,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.FileVersionInfo#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"kv9gl8mgag","Integrity":"ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Diagnostics.FileVersionInfo.wasm","FileLength":12565,"LastWriteTime":"2026-03-18T16:34:23+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Process.lqtqkmw274.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.Process#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"lqtqkmw274","Integrity":"87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Diagnostics.Process.wasm","FileLength":46357,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.StackTrace.wvlboxd9cz.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.StackTrace#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"wvlboxd9cz","Integrity":"jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Diagnostics.StackTrace.wasm","FileLength":15637,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.TextWriterTraceListener#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"mx5w1z1p6w","Integrity":"9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Diagnostics.TextWriterTraceListener.wasm","FileLength":21269,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Tools.862j1ozg5o.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.Tools#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"862j1ozg5o","Integrity":"wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Diagnostics.Tools.wasm","FileLength":4885,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.TraceSource.j08okd90mo.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.TraceSource#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"j08okd90mo","Integrity":"k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Diagnostics.TraceSource.wasm","FileLength":48405,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Tracing.bnz7jo4op8.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.Tracing#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"bnz7jo4op8","Integrity":"ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Diagnostics.Tracing.wasm","FileLength":5909,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Drawing.Primitives.k3z431p3v7.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Drawing.Primitives#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"k3z431p3v7","Integrity":"sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Drawing.Primitives.wasm","FileLength":54549,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Drawing.v0usa2s224.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Drawing#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"v0usa2s224","Integrity":"/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Drawing.wasm","FileLength":10005,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Dynamic.Runtime.iktlm0yhdx.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Dynamic.Runtime#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"iktlm0yhdx","Integrity":"8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Dynamic.Runtime.wasm","FileLength":5909,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Formats.Asn1.9iyl1hnh76.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Formats.Asn1#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"9iyl1hnh76","Integrity":"8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Formats.Asn1.wasm","FileLength":86805,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Formats.Tar.9ikmelhi7g.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Formats.Tar#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"9ikmelhi7g","Integrity":"rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Formats.Tar.wasm","FileLength":28437,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Globalization.4ulc930few.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Globalization#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"4ulc930few","Integrity":"jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Globalization.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Globalization.Calendars.e8yl47y6cv.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Globalization.Calendars#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"e8yl47y6cv","Integrity":"jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Globalization.Calendars.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Globalization.Extensions.fvxkfs32tv.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Globalization.Extensions#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"fvxkfs32tv","Integrity":"e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Globalization.Extensions.wasm","FileLength":4885,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.Brotli.ibxx4kh8c6.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.IO.Compression.Brotli#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"ibxx4kh8c6","Integrity":"7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.IO.Compression.Brotli.wasm","FileLength":18197,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.FileSystem.bselp9vv9w.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.IO.Compression.FileSystem#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"bselp9vv9w","Integrity":"5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.IO.Compression.FileSystem.wasm","FileLength":4885,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.ZipFile.b0ha8vyo8i.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.IO.Compression.ZipFile#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"b0ha8vyo8i","Integrity":"m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.IO.Compression.ZipFile.wasm","FileLength":43285,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.sgbc42zrd8.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.IO.Compression#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"sgbc42zrd8","Integrity":"DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.IO.Compression.wasm","FileLength":157461,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.IO.FileSystem.AccessControl#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"oi9xn5s0h3","Integrity":"kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.IO.FileSystem.AccessControl.wasm","FileLength":21781,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.IO.FileSystem.DriveInfo#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"fi1uhp9255","Integrity":"2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.IO.FileSystem.DriveInfo.wasm","FileLength":13589,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.6j2ed42ac7.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.IO.FileSystem.Primitives#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"6j2ed42ac7","Integrity":"UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.IO.FileSystem.Primitives.wasm","FileLength":4885,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.v9i07bnq2k.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.IO.FileSystem.Watcher#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"v9i07bnq2k","Integrity":"g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.IO.FileSystem.Watcher.wasm","FileLength":22805,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.fktu0k4b93.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.IO.FileSystem#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"fktu0k4b93","Integrity":"L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.IO.FileSystem.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.IsolatedStorage.8ll4gxwfs1.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.IO.IsolatedStorage#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"8ll4gxwfs1","Integrity":"TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.IO.IsolatedStorage.wasm","FileLength":24853,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.6do4olk7ib.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.IO.MemoryMappedFiles#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"6do4olk7ib","Integrity":"WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.IO.MemoryMappedFiles.wasm","FileLength":39701,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Pipelines.21z0t9w6sq.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.IO.Pipelines#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"21z0t9w6sq","Integrity":"VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.IO.Pipelines.wasm","FileLength":67861,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.5lvzz4lks7.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.IO.Pipes.AccessControl#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"5lvzz4lks7","Integrity":"qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.IO.Pipes.AccessControl.wasm","FileLength":13077,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Pipes.xosph8vk4a.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.IO.Pipes#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"xosph8vk4a","Integrity":"gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.IO.Pipes.wasm","FileLength":32021,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.IO.UnmanagedMemoryStream#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"d1pja42pyi","Integrity":"gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.IO.UnmanagedMemoryStream.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.i9g92fmb9y.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.IO#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"i9g92fmb9y","Integrity":"akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.IO.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.AsyncEnumerable.4m1mh525k0.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Linq.AsyncEnumerable#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"4m1mh525k0","Integrity":"VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Linq.AsyncEnumerable.wasm","FileLength":446229,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.Expressions.4nat0rber0.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Linq.Expressions#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"4nat0rber0","Integrity":"IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Linq.Expressions.wasm","FileLength":565013,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.Parallel.qf7zemz9aw.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Linq.Parallel#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"qf7zemz9aw","Integrity":"ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Linq.Parallel.wasm","FileLength":212757,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.Queryable.vwinf8twbn.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Linq.Queryable#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"vwinf8twbn","Integrity":"geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Linq.Queryable.wasm","FileLength":68373,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.rp2jklkmsi.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Linq#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"rp2jklkmsi","Integrity":"f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Linq.wasm","FileLength":190741,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Memory.3r0soomurg.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Memory#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"3r0soomurg","Integrity":"z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Memory.wasm","FileLength":45333,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Http.9rl4gopayw.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net.Http#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"9rl4gopayw","Integrity":"JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.Http.wasm","FileLength":285973,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Http.Json.t9gqpmtbpb.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net.Http.Json#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"t9gqpmtbpb","Integrity":"H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.Http.Json.wasm","FileLength":45845,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.HttpListener.zg37o92yol.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net.HttpListener#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"zg37o92yol","Integrity":"rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.HttpListener.wasm","FileLength":45845,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Mail.qk214miut2.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net.Mail#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"qk214miut2","Integrity":"tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.Mail.wasm","FileLength":94997,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.NameResolution.50dzekuu9x.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net.NameResolution#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"50dzekuu9x","Integrity":"a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.NameResolution.wasm","FileLength":14101,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.NetworkInformation.k8343mqust.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net.NetworkInformation#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"k8343mqust","Integrity":"ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.NetworkInformation.wasm","FileLength":32021,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Ping.00vh2kvsiz.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net.Ping#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"00vh2kvsiz","Integrity":"MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.Ping.wasm","FileLength":17685,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Primitives.whs5oed1wm.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net.Primitives#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"whs5oed1wm","Integrity":"fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.Primitives.wasm","FileLength":97045,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Quic.grloe2ix5j.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net.Quic#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"grloe2ix5j","Integrity":"1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.Quic.wasm","FileLength":28949,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Requests.r8ar2pd94c.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net.Requests#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"r8ar2pd94c","Integrity":"ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.Requests.wasm","FileLength":55573,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Security.yn3zcskz4j.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net.Security#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"yn3zcskz4j","Integrity":"TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.Security.wasm","FileLength":104213,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.ServerSentEvents.37wbq4jfsy.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net.ServerSentEvents#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"37wbq4jfsy","Integrity":"Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.ServerSentEvents.wasm","FileLength":30485,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.ServicePoint.j436yqvrg9.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net.ServicePoint#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"j436yqvrg9","Integrity":"rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.ServicePoint.wasm","FileLength":4885,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Sockets.utzdm9sw2p.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net.Sockets#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"utzdm9sw2p","Integrity":"olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.Sockets.wasm","FileLength":64277,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebClient.e5a4gx4ylt.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net.WebClient#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"e5a4gx4ylt","Integrity":"YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.WebClient.wasm","FileLength":45845,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebHeaderCollection.rbzkmij005.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net.WebHeaderCollection#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"rbzkmij005","Integrity":"132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.WebHeaderCollection.wasm","FileLength":22805,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebProxy.38jcv8jeeu.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net.WebProxy#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"38jcv8jeeu","Integrity":"UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.WebProxy.wasm","FileLength":11541,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebSockets.Client.nv5izr3rt6.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net.WebSockets.Client#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"nv5izr3rt6","Integrity":"vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.WebSockets.Client.wasm","FileLength":42261,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebSockets.hdzn84g6uh.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net.WebSockets#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"hdzn84g6uh","Integrity":"1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.WebSockets.wasm","FileLength":98581,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.zku96ychk7.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Net#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"zku96ychk7","Integrity":"E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Net.wasm","FileLength":6933,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Numerics.Vectors.1l8xruz8uh.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Numerics.Vectors#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"1l8xruz8uh","Integrity":"tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Numerics.Vectors.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Numerics.on9qk50okp.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Numerics#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"on9qk50okp","Integrity":"ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Numerics.wasm","FileLength":4885,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ObjectModel.4omhtq90sd.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.ObjectModel#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"4omhtq90sd","Integrity":"BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.ObjectModel.wasm","FileLength":30997,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.CoreLib.koxlwnosh6.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Private.CoreLib#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"koxlwnosh6","Integrity":"xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Private.CoreLib.wasm","FileLength":4869401,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.DataContractSerialization.zlwtcvnuqv.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Private.DataContractSerialization#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"zlwtcvnuqv","Integrity":"qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Private.DataContractSerialization.wasm","FileLength":849173,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.Uri.clehp4avpy.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Private.Uri#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"clehp4avpy","Integrity":"IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Private.Uri.wasm","FileLength":95509,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.Xml.Linq.ga3n3gh9b6.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Private.Xml.Linq#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"ga3n3gh9b6","Integrity":"aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Private.Xml.Linq.wasm","FileLength":143637,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.Xml.g9rvjereoe.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Private.Xml#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"g9rvjereoe","Integrity":"xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Private.Xml.wasm","FileLength":3095833,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.DispatchProxy.b7qn4zpc0q.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Reflection.DispatchProxy#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"b7qn4zpc0q","Integrity":"mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Reflection.DispatchProxy.wasm","FileLength":27925,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Emit.3t7flfwg7o.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Reflection.Emit#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"3t7flfwg7o","Integrity":"uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Reflection.Emit.wasm","FileLength":122645,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Reflection.Emit.ILGeneration#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"x0vkqyycss","Integrity":"ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Reflection.Emit.ILGeneration.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.3tzjd7znni.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Reflection.Emit.Lightweight#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"3tzjd7znni","Integrity":"B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Reflection.Emit.Lightweight.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Extensions.ymwga5opgl.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Reflection.Extensions#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"ymwga5opgl","Integrity":"xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Reflection.Extensions.wasm","FileLength":4885,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Metadata.9lgg9wjd2a.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Reflection.Metadata#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"9lgg9wjd2a","Integrity":"/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Reflection.Metadata.wasm","FileLength":493333,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Primitives.n2ngq6as7g.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Reflection.Primitives#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"n2ngq6as7g","Integrity":"z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Reflection.Primitives.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.TypeExtensions.ivmzcfvrc6.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Reflection.TypeExtensions#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"ivmzcfvrc6","Integrity":"jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Reflection.TypeExtensions.wasm","FileLength":14101,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.v4mfyzbte8.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Reflection#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"v4mfyzbte8","Integrity":"MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Reflection.wasm","FileLength":5909,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Resources.Reader.c9z9nieytf.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Resources.Reader#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"c9z9nieytf","Integrity":"QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Resources.Reader.wasm","FileLength":4885,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Resources.ResourceManager.f3fiwdwb50.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Resources.ResourceManager#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"f3fiwdwb50","Integrity":"61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Resources.ResourceManager.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Resources.Writer.tx9namivq6.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Resources.Writer#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"tx9namivq6","Integrity":"EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Resources.Writer.wasm","FileLength":16661,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Runtime.CompilerServices.Unsafe#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"5yw8jyjkyt","Integrity":"M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Runtime.CompilerServices.Unsafe.wasm","FileLength":4885,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Runtime.CompilerServices.VisualC#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"ddbsai2xh9","Integrity":"b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Runtime.CompilerServices.VisualC.wasm","FileLength":6933,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Extensions.f4fqaba1oz.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Extensions#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"f4fqaba1oz","Integrity":"8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Runtime.Extensions.wasm","FileLength":7445,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Handles.kpe61fymig.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Handles#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"kpe61fymig","Integrity":"+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Runtime.Handles.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.InteropServices.02r2ubft18.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Runtime.InteropServices#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"02r2ubft18","Integrity":"iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Runtime.InteropServices.wasm","FileLength":54549,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Runtime.InteropServices.JavaScript#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"ythr5w8c2e","Integrity":"BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Runtime.InteropServices.JavaScript.wasm","FileLength":79637,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Runtime.InteropServices.RuntimeInformation#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"esodb2rpbi","Integrity":"Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Runtime.InteropServices.RuntimeInformation.wasm","FileLength":4885,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Intrinsics.j8lrpban8m.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Intrinsics#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"j8lrpban8m","Integrity":"vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Runtime.Intrinsics.wasm","FileLength":6933,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Loader.bm8d2pac0a.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Loader#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"bm8d2pac0a","Integrity":"Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Runtime.Loader.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Numerics.e3fl2oogjk.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Numerics#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"e3fl2oogjk","Integrity":"Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Runtime.Numerics.wasm","FileLength":134933,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.a0v88kqnif.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Serialization.Formatters#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"a0v88kqnif","Integrity":"Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Runtime.Serialization.Formatters.wasm","FileLength":55573,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Json.pez04wd9mo.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Serialization.Json#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"pez04wd9mo","Integrity":"vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Runtime.Serialization.Json.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Serialization.Primitives#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"xy5d3j3dn1","Integrity":"hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Runtime.Serialization.Primitives.wasm","FileLength":13077,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.mmwsbcsgly.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Serialization.Xml#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"mmwsbcsgly","Integrity":"0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Runtime.Serialization.Xml.wasm","FileLength":6421,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.qfpmfujegm.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Serialization#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"qfpmfujegm","Integrity":"un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Runtime.Serialization.wasm","FileLength":6933,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.k6ze2203p2.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Runtime#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"k6ze2203p2","Integrity":"ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Runtime.wasm","FileLength":34581,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.AccessControl.4mxo8hy5cn.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Security.AccessControl#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"4mxo8hy5cn","Integrity":"1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Security.AccessControl.wasm","FileLength":47893,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Claims.9n1yusa5e5.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Security.Claims#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"9n1yusa5e5","Integrity":"KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Security.Claims.wasm","FileLength":44821,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.5rp84ijz8t.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"5rp84ijz8t","Integrity":"YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Security.Cryptography.wasm","FileLength":642325,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography.Algorithms#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"4dnz7b15a9","Integrity":"CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Security.Cryptography.Algorithms.wasm","FileLength":6933,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dyaxkkx3lb.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography.Cng#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"dyaxkkx3lb","Integrity":"SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Security.Cryptography.Cng.wasm","FileLength":5909,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Csp.20t5iw27a6.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography.Csp#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"20t5iw27a6","Integrity":"EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Security.Cryptography.Csp.wasm","FileLength":5909,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography.Encoding#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"0lu5m0tfx2","Integrity":"7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Security.Cryptography.Encoding.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography.OpenSsl#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"4m4pzjxi3g","Integrity":"nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Security.Cryptography.OpenSsl.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.7bcdd4uolu.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography.Primitives#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"7bcdd4uolu","Integrity":"kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Security.Cryptography.Primitives.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography.X509Certificates#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"dmew7c9amv","Integrity":"+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Security.Cryptography.X509Certificates.wasm","FileLength":6421,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Principal.Windows.7ssqvw2wfy.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Security.Principal.Windows#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"7ssqvw2wfy","Integrity":"NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Security.Principal.Windows.wasm","FileLength":27413,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Principal.j5dp7k8x6u.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Security.Principal#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"j5dp7k8x6u","Integrity":"KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Security.Principal.wasm","FileLength":4885,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.SecureString.7weoywtuje.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Security.SecureString#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"7weoywtuje","Integrity":"Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Security.SecureString.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.snpv53zusk.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Security#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"snpv53zusk","Integrity":"qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Security.wasm","FileLength":7957,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ServiceModel.Web.3f1khl8k32.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.ServiceModel.Web#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"3f1khl8k32","Integrity":"0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.ServiceModel.Web.wasm","FileLength":6421,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ServiceProcess.a95c1olw0i.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.ServiceProcess#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"a95c1olw0i","Integrity":"nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.ServiceProcess.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encoding.CodePages.8bhn50uz8f.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Text.Encoding.CodePages#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"8bhn50uz8f","Integrity":"nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Text.Encoding.CodePages.wasm","FileLength":732437,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encoding.Extensions.tqz9dyg6j7.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Text.Encoding.Extensions#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"tqz9dyg6j7","Integrity":"y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Text.Encoding.Extensions.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encoding.s9ic8sulfi.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Text.Encoding#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"s9ic8sulfi","Integrity":"gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Text.Encoding.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encodings.Web.07hq35kp92.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Text.Encodings.Web#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"07hq35kp92","Integrity":"dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Text.Encodings.Web.wasm","FileLength":55573,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Json.2alhj4y3bm.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Text.Json#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"2alhj4y3bm","Integrity":"BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Text.Json.wasm","FileLength":638741,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.RegularExpressions.h1qtkesphd.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Text.RegularExpressions#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"h1qtkesphd","Integrity":"FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Text.RegularExpressions.wasm","FileLength":374549,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.47ucbn1gg1.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Threading#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"47ucbn1gg1","Integrity":"ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Threading.wasm","FileLength":34581,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.AccessControl.ruehy0ud5k.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Threading.AccessControl#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"ruehy0ud5k","Integrity":"c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Threading.AccessControl.wasm","FileLength":23317,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Channels.s3i62rxr2p.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Threading.Channels#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"s3i62rxr2p","Integrity":"2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Threading.Channels.wasm","FileLength":56085,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Overlapped.lzl7igry1t.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Threading.Overlapped#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"lzl7igry1t","Integrity":"ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Threading.Overlapped.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Threading.Tasks.Dataflow#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"p9bjzp5pyo","Integrity":"zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Threading.Tasks.Dataflow.wasm","FileLength":175381,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.unp0hcfijn.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Threading.Tasks.Extensions#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"unp0hcfijn","Integrity":"Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Threading.Tasks.Extensions.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.hyku0ejwye.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Threading.Tasks.Parallel#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"hyku0ejwye","Integrity":"ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Threading.Tasks.Parallel.wasm","FileLength":50965,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.t0sjw89o0i.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Threading.Tasks#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"t0sjw89o0i","Integrity":"YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Threading.Tasks.wasm","FileLength":6421,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Thread.nfbg9v9bn0.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Threading.Thread#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"nfbg9v9bn0","Integrity":"43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Threading.Thread.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.ThreadPool.jrzo6stg1k.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Threading.ThreadPool#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"jrzo6stg1k","Integrity":"D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Threading.ThreadPool.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Timer.y8l1kxazi5.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Threading.Timer#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"y8l1kxazi5","Integrity":"0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Threading.Timer.wasm","FileLength":4885,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Transactions.Local.cig01jt23c.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Transactions.Local#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"cig01jt23c","Integrity":"lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Transactions.Local.wasm","FileLength":165653,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Transactions.pl50n6qbg7.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Transactions#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"pl50n6qbg7","Integrity":"XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Transactions.wasm","FileLength":6421,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ValueTuple.mj3r9p0pcw.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.ValueTuple#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"mj3r9p0pcw","Integrity":"Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.ValueTuple.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Web.2a6wq9gv6d.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Web#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"2a6wq9gv6d","Integrity":"Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Web.wasm","FileLength":4885,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Web.HttpUtility.3jfxpyq4in.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Web.HttpUtility#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"3jfxpyq4in","Integrity":"IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Web.HttpUtility.wasm","FileLength":19733,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Windows.bw79ix589z.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Windows#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"bw79ix589z","Integrity":"O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Windows.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.Linq.nvnhbwdsg6.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Xml.Linq#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"nvnhbwdsg6","Integrity":"I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Xml.Linq.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.ReaderWriter.szsdminork.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Xml.ReaderWriter#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"szsdminork","Integrity":"+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Xml.ReaderWriter.wasm","FileLength":11541,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.Serialization.b9imguls9w.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Xml.Serialization#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"b9imguls9w","Integrity":"EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Xml.Serialization.wasm","FileLength":5909,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XDocument.8hg6c0at0c.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Xml.XDocument#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"8hg6c0at0c","Integrity":"7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Xml.XDocument.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XPath.11wk1hhnfk.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Xml.XPath#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"11wk1hhnfk","Integrity":"28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Xml.XPath.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XPath.XDocument.g7i5gd64yo.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Xml.XPath.XDocument#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"g7i5gd64yo","Integrity":"bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Xml.XPath.XDocument.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XmlDocument.isetn6xlxa.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Xml.XmlDocument#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"isetn6xlxa","Integrity":"Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Xml.XmlDocument.wasm","FileLength":5397,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XmlSerializer.okgnp5v9bw.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Xml.XmlSerializer#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"okgnp5v9bw","Integrity":"WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Xml.XmlSerializer.wasm","FileLength":7445,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.zjgi7nrlno.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/System.Xml#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"zjgi7nrlno","Integrity":"scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\System.Xml.wasm","FileLength":13077,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\WindowsBase.wz82kkc1p3.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/WindowsBase#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"wz82kkc1p3","Integrity":"DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\WindowsBase.wasm","FileLength":5909,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\blazor.webassembly.js","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/blazor.webassembly.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"boot","Fingerprint":"66stpp682q","Integrity":"3lCWrko3zwspV40aQhs2S/IMkRSarnHRKIdkHhuXIBA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\wiela\\.nuget\\packages\\microsoft.aspnetcore.components.webassembly\\10.0.5\\build\\net10.0\\blazor.webassembly.js","FileLength":60278,"LastWriteTime":"2026-03-03T20:10:58+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.js","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/dotnet#[.{fingerprint}]?.js","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"manifest","Fingerprint":"kx7meqmil2","Integrity":"WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\dotnet.js","FileLength":93305,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.js.map","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/dotnet.js#[.{fingerprint}]?.map","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"clndu25lif","Integrity":"sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Runtime.Mono.browser-wasm\\10.0.5\\runtimes\\browser-wasm\\native\\dotnet.js.map","FileLength":51818,"LastWriteTime":"2026-03-03T17:21:10+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.native.53ez3dx5uy.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/dotnet.native#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"native","Fingerprint":"53ez3dx5uy","Integrity":"Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Runtime.Mono.browser-wasm\\10.0.5\\runtimes\\browser-wasm\\native\\dotnet.native.wasm","FileLength":3002101,"LastWriteTime":"2026-03-03T17:21:42+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.native.ykrnppwhq2.js","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/dotnet.native#[.{fingerprint}]!.js","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"native","Fingerprint":"ykrnppwhq2","Integrity":"nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Runtime.Mono.browser-wasm\\10.0.5\\runtimes\\browser-wasm\\native\\dotnet.native.js","FileLength":145050,"LastWriteTime":"2026-03-03T17:21:42+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.runtime.js.map","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/dotnet.runtime.js#[.{fingerprint}]?.map","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"y1cse46x0j","Integrity":"+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Runtime.Mono.browser-wasm\\10.0.5\\runtimes\\browser-wasm\\native\\dotnet.runtime.js.map","FileLength":276757,"LastWriteTime":"2026-03-03T17:21:16+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.runtime.peu2mfb29t.js","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/dotnet.runtime#[.{fingerprint}]!.js","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"native","Fingerprint":"peu2mfb29t","Integrity":"cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Runtime.Mono.browser-wasm\\10.0.5\\runtimes\\browser-wasm\\native\\dotnet.runtime.js","FileLength":198479,"LastWriteTime":"2026-03-03T17:21:16+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\icudt_CJK.tjcz0u77k5.dat","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/icudt_CJK#[.{fingerprint}]!.dat","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"native","Fingerprint":"tjcz0u77k5","Integrity":"SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Runtime.Mono.browser-wasm\\10.0.5\\runtimes\\browser-wasm\\native\\icudt_CJK.dat","FileLength":956416,"LastWriteTime":"2026-02-04T17:40:56+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\icudt_EFIGS.tptq2av103.dat","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/icudt_EFIGS#[.{fingerprint}]!.dat","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"native","Fingerprint":"tptq2av103","Integrity":"8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Runtime.Mono.browser-wasm\\10.0.5\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat","FileLength":550832,"LastWriteTime":"2026-02-04T17:40:56+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\icudt_no_CJK.lfu7j35m59.dat","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/icudt_no_CJK#[.{fingerprint}]!.dat","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"native","Fingerprint":"lfu7j35m59","Integrity":"L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Runtime.Mono.browser-wasm\\10.0.5\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat","FileLength":1107168,"LastWriteTime":"2026-02-04T17:40:56+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\mscorlib.555t1ekkz8.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/mscorlib#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"555t1ekkz8","Integrity":"SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\mscorlib.wasm","FileLength":49429,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\netstandard.0e3bjkca9m.wasm","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","BasePath":"/","RelativePath":"_framework/netstandard#[.{fingerprint}]!.wasm","AssetKind":"Build","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"runtime","Fingerprint":"0e3bjkca9m","Integrity":"6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\webcil\\netstandard.wasm","FileLength":90389,"LastWriteTime":"2026-03-18T16:34:24+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0064fe6uur-{0}-2alhj4y3bm-2alhj4y3bm.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Text.Json#[.{fingerprint=2alhj4y3bm}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Json.2alhj4y3bm.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9e91cyfosn","Integrity":"L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Json.2alhj4y3bm.wasm","FileLength":228692,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\019ldzgpk2-{0}-qk214miut2-qk214miut2.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.Mail#[.{fingerprint=qk214miut2}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Mail.qk214miut2.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"vwbkysdtgf","Integrity":"T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Mail.qk214miut2.wasm","FileLength":42440,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\06jmrwgemt-{0}-bm8d2pac0a-bm8d2pac0a.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Loader#[.{fingerprint=bm8d2pac0a}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Loader.bm8d2pac0a.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"u8iepuojih","Integrity":"InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Loader.bm8d2pac0a.wasm","FileLength":2330,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0o3yap4xcv-{0}-v59ymogeuz-v59ymogeuz.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Diagnostics.Abstractions#[.{fingerprint=v59ymogeuz}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"1d4dr8p0gt","Integrity":"q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm","FileLength":8585,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0qximx7h6w-{0}-e5a4gx4ylt-e5a4gx4ylt.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.WebClient#[.{fingerprint=e5a4gx4ylt}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebClient.e5a4gx4ylt.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"71c4zcajqa","Integrity":"FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebClient.e5a4gx4ylt.wasm","FileLength":14733,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0st0knthx5-{0}-02r2ubft18-02r2ubft18.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.InteropServices#[.{fingerprint=02r2ubft18}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.InteropServices.02r2ubft18.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"a0n0ubbzpl","Integrity":"hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.InteropServices.02r2ubft18.wasm","FileLength":23552,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\10vfj5e8p2-{0}-wz82kkc1p3-wz82kkc1p3.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/WindowsBase#[.{fingerprint=wz82kkc1p3}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\WindowsBase.wz82kkc1p3.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"f8gt6nt5v1","Integrity":"b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\WindowsBase.wz82kkc1p3.wasm","FileLength":2526,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\11oooy7jd2-{0}-7o70008j8o-7o70008j8o.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Configuration.Binder#[.{fingerprint=7o70008j8o}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"tc4mjf07ok","Integrity":"c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm","FileLength":14172,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\12m83h5a1i-{0}-4m4pzjxi3g-4m4pzjxi3g.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography.OpenSsl#[.{fingerprint=4m4pzjxi3g}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"rdx3jhokd5","Integrity":"vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm","FileLength":2222,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\1u9lol5zjk-{0}-4m1mh525k0-4m1mh525k0.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Linq.AsyncEnumerable#[.{fingerprint=4m1mh525k0}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.AsyncEnumerable.4m1mh525k0.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ui9j0r4hxl","Integrity":"Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.AsyncEnumerable.4m1mh525k0.wasm","FileLength":143644,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\2eqyybz3l2-{0}-9iyl1hnh76-9iyl1hnh76.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Formats.Asn1#[.{fingerprint=9iyl1hnh76}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Formats.Asn1.9iyl1hnh76.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0fd9ispd0f","Integrity":"LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Formats.Asn1.9iyl1hnh76.wasm","FileLength":35706,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\2noakrdf2j-{0}-tjcz0u77k5-tjcz0u77k5.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/icudt_CJK#[.{fingerprint=tjcz0u77k5}]!.dat.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\icudt_CJK.tjcz0u77k5.dat","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"su9h2nea1m","Integrity":"JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\icudt_CJK.tjcz0u77k5.dat","FileLength":333110,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\35llacexwm-{0}-qf7zemz9aw-qf7zemz9aw.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Linq.Parallel#[.{fingerprint=qf7zemz9aw}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.Parallel.qf7zemz9aw.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"15geimm1az","Integrity":"NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.Parallel.qf7zemz9aw.wasm","FileLength":86417,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3hvscw4lq4-{0}-x0ueugt8gp-x0ueugt8gp.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"appsettings#[.{fingerprint=x0ueugt8gp}]?.json.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\appsettings.json","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"zt9ktt9z9k","Integrity":"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\appsettings.json","FileLength":108,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3k0w0ci5df-{0}-6uzpuv4o5d-6uzpuv4o5d.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Collections.Immutable#[.{fingerprint=6uzpuv4o5d}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.Immutable.6uzpuv4o5d.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"qgpgqsl74x","Integrity":"FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.Immutable.6uzpuv4o5d.wasm","FileLength":98053,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3of7h5c6n8-{0}-hrhwg3a64c-hrhwg3a64c.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser#[.{fingerprint=hrhwg3a64c}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"1it2uduzuc","Integrity":"2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm","FileLength":24419,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3rwukvhyra-{0}-jnogfbng3i-jnogfbng3i.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Diagnostics#[.{fingerprint=jnogfbng3i}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9y06osgqhd","Integrity":"UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm","FileLength":12090,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3txc49hfsy-{0}-5yw8jyjkyt-5yw8jyjkyt.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.CompilerServices.Unsafe#[.{fingerprint=5yw8jyjkyt}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bh824og9pz","Integrity":"b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm","FileLength":2135,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3zhncs8zdy-{0}-63jrcion39-63jrcion39.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Collections#[.{fingerprint=63jrcion39}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.63jrcion39.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"2jtttpxj8w","Integrity":"vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.63jrcion39.wasm","FileLength":43289,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3zyfvkhmnk-{0}-koxlwnosh6-koxlwnosh6.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Private.CoreLib#[.{fingerprint=koxlwnosh6}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.CoreLib.koxlwnosh6.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"u4ey83ooeo","Integrity":"8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.CoreLib.koxlwnosh6.wasm","FileLength":1552335,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4131vl2c0u-{0}-ykrnppwhq2-ykrnppwhq2.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/dotnet.native#[.{fingerprint=ykrnppwhq2}]!.js.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.native.ykrnppwhq2.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"xmtmurkslm","Integrity":"iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.native.ykrnppwhq2.js","FileLength":34666,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4gmvxkcg2g-{0}-53ez3dx5uy-53ez3dx5uy.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/dotnet.native#[.{fingerprint=53ez3dx5uy}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.native.53ez3dx5uy.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"wev1umwx52","Integrity":"SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.native.53ez3dx5uy.wasm","FileLength":1187026,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4k92vl8md2-{0}-a0v88kqnif-a0v88kqnif.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Serialization.Formatters#[.{fingerprint=a0v88kqnif}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.a0v88kqnif.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"pdepispd6w","Integrity":"89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.a0v88kqnif.wasm","FileLength":24114,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4syo1xqmc8-{0}-f4fqaba1oz-f4fqaba1oz.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Extensions#[.{fingerprint=f4fqaba1oz}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Extensions.f4fqaba1oz.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"txhuzt8zv6","Integrity":"UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Extensions.f4fqaba1oz.wasm","FileLength":2997,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\553rwsqb4a-{0}-yz8nt3ycsq-yz8nt3ycsq.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Win32.Registry#[.{fingerprint=yz8nt3ycsq}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Win32.Registry.yz8nt3ycsq.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"6vmzj7j11v","Integrity":"gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Win32.Registry.yz8nt3ycsq.wasm","FileLength":9112,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5g3srlr8jx-{0}-roqc1km2rj-roqc1km2rj.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.AspNetCore.Authorization#[.{fingerprint=roqc1km2rj}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"dnuvacvqw8","Integrity":"6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm","FileLength":19732,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5g4i44bi6s-{0}-jrzo6stg1k-jrzo6stg1k.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Threading.ThreadPool#[.{fingerprint=jrzo6stg1k}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.ThreadPool.jrzo6stg1k.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"6hixptdyye","Integrity":"yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.ThreadPool.jrzo6stg1k.wasm","FileLength":2260,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5onvg4v1ie-{0}-7rk3uansaa-7rk3uansaa.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System#[.{fingerprint=7rk3uansaa}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.7rk3uansaa.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"c3f3hm8or8","Integrity":"KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.7rk3uansaa.wasm","FileLength":11781,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5psn88uayv-{0}-mx5w1z1p6w-mx5w1z1p6w.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.TextWriterTraceListener#[.{fingerprint=mx5w1z1p6w}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"of2hbj3jtu","Integrity":"bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm","FileLength":9390,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\67s0zux9y9-{0}-lqtqkmw274-lqtqkmw274.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.Process#[.{fingerprint=lqtqkmw274}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Process.lqtqkmw274.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"3ago6fw6i6","Integrity":"a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Process.lqtqkmw274.wasm","FileLength":16197,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\68hq2gv5cb-{0}-4wisaz8pj4-4wisaz8pj4.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Data.Common#[.{fingerprint=4wisaz8pj4}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Data.Common.4wisaz8pj4.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"s1468k0u99","Integrity":"ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Data.Common.4wisaz8pj4.wasm","FileLength":375378,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\69vphje66t-{0}-giv4t23za9-giv4t23za9.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Configuration.Json#[.{fingerprint=giv4t23za9}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"d4992121ss","Integrity":"kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm","FileLength":7862,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6fczie0f1k-{0}-y1cse46x0j-y1cse46x0j.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/dotnet.runtime.js#[.{fingerprint=y1cse46x0j}]?.map.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.runtime.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"k3l5g6t8d3","Integrity":"8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.runtime.js.map","FileLength":88502,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6ixuumt5h1-{0}-555t1ekkz8-555t1ekkz8.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/mscorlib#[.{fingerprint=555t1ekkz8}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\mscorlib.555t1ekkz8.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"cf3kfqyddt","Integrity":"qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\mscorlib.555t1ekkz8.wasm","FileLength":14832,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6mv5cent6u-{0}-oz8fkrrrd6-oz8fkrrrd6.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.JSInterop.WebAssembly#[.{fingerprint=oz8fkrrrd6}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"vqm70abvg2","Integrity":"50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm","FileLength":6861,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6yvil548ai-{0}-862j1ozg5o-862j1ozg5o.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.Tools#[.{fingerprint=862j1ozg5o}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Tools.862j1ozg5o.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"e8yn8tx9b6","Integrity":"Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Tools.862j1ozg5o.wasm","FileLength":2194,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\79deazooef-{0}-nvnhbwdsg6-nvnhbwdsg6.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Xml.Linq#[.{fingerprint=nvnhbwdsg6}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.Linq.nvnhbwdsg6.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"u344kyov9m","Integrity":"NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.Linq.nvnhbwdsg6.wasm","FileLength":2209,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\7d15z782y2-{0}-h1qtkesphd-h1qtkesphd.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Text.RegularExpressions#[.{fingerprint=h1qtkesphd}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.RegularExpressions.h1qtkesphd.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ejgp754x7r","Integrity":"BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.RegularExpressions.h1qtkesphd.wasm","FileLength":158442,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\7o4w0lfocu-{0}-unp0hcfijn-unp0hcfijn.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Threading.Tasks.Extensions#[.{fingerprint=unp0hcfijn}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.unp0hcfijn.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"qwyx5haebb","Integrity":"+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.unp0hcfijn.wasm","FileLength":2307,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\7yd9j54hd0-{0}-j8lrpban8m-j8lrpban8m.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Intrinsics#[.{fingerprint=j8lrpban8m}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Intrinsics.j8lrpban8m.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bbrcg1brto","Integrity":"RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Intrinsics.j8lrpban8m.wasm","FileLength":2843,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\808kb9dz89-{0}-uzl7ca9j9c-uzl7ca9j9c.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"OnProfNext.Client#[.{fingerprint=uzl7ca9j9c}]!.bundle.scp.css.gz","AssetKind":"All","AssetMode":"Reference","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\scopedcss\\projectbundle\\OnProfNext.Client.bundle.scp.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"8ygq2qmxxz","Integrity":"UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\scopedcss\\projectbundle\\OnProfNext.Client.bundle.scp.css","FileLength":1448,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\84jx0dmgdc-{0}-xcslyy3nju-xcslyy3nju.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Localization#[.{fingerprint=xcslyy3nju}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Localization.xcslyy3nju.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"t8f4qjkh0j","Integrity":"LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Localization.xcslyy3nju.wasm","FileLength":9994,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8dl34ipw8j-{0}-0e3bjkca9m-0e3bjkca9m.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/netstandard#[.{fingerprint=0e3bjkca9m}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\netstandard.0e3bjkca9m.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"a7ek15y8at","Integrity":"GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\netstandard.0e3bjkca9m.wasm","FileLength":26086,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8i8whn9pm1-{0}-fi1uhp9255-fi1uhp9255.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.FileSystem.DriveInfo#[.{fingerprint=fi1uhp9255}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"7hebj64a57","Integrity":"9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm","FileLength":6033,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8pmauzinw9-{0}-mmwsbcsgly-mmwsbcsgly.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Serialization.Xml#[.{fingerprint=mmwsbcsgly}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.mmwsbcsgly.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"stzn0dpvhw","Integrity":"ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.mmwsbcsgly.wasm","FileLength":2570,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8rrnar5gtv-{0}-t0sjw89o0i-t0sjw89o0i.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Threading.Tasks#[.{fingerprint=t0sjw89o0i}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.t0sjw89o0i.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ih31xgx7gx","Integrity":"Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.t0sjw89o0i.wasm","FileLength":2575,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8srr1acehr-{0}-snpv53zusk-snpv53zusk.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security#[.{fingerprint=snpv53zusk}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.snpv53zusk.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"rrzajs05pn","Integrity":"l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.snpv53zusk.wasm","FileLength":2967,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8u2rup9szd-{0}-m4yhcvz2y2-m4yhcvz2y2.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Buffers#[.{fingerprint=m4yhcvz2y2}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Buffers.m4yhcvz2y2.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"mmzbmsscku","Integrity":"Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Buffers.m4yhcvz2y2.wasm","FileLength":2117,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8ynwqwcefg-{0}-j5dp7k8x6u-j5dp7k8x6u.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security.Principal#[.{fingerprint=j5dp7k8x6u}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Principal.j5dp7k8x6u.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"t59yqcarie","Integrity":"HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Principal.j5dp7k8x6u.wasm","FileLength":2175,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\93opzeh57b-{0}-ga3n3gh9b6-ga3n3gh9b6.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Private.Xml.Linq#[.{fingerprint=ga3n3gh9b6}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.Xml.Linq.ga3n3gh9b6.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"z02ij3rv9o","Integrity":"wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.Xml.Linq.ga3n3gh9b6.wasm","FileLength":58633,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\95o3q4uwxv-{0}-iktlm0yhdx-iktlm0yhdx.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Dynamic.Runtime#[.{fingerprint=iktlm0yhdx}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Dynamic.Runtime.iktlm0yhdx.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"jwqvny79hr","Integrity":"DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Dynamic.Runtime.iktlm0yhdx.wasm","FileLength":2444,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\9n1qe841ua-{0}-4mxo8hy5cn-4mxo8hy5cn.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security.AccessControl#[.{fingerprint=4mxo8hy5cn}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.AccessControl.4mxo8hy5cn.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bgmvr02kn5","Integrity":"lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.AccessControl.4mxo8hy5cn.wasm","FileLength":16828,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\9ru0gm9zti-{0}-k6ze2203p2-k6ze2203p2.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime#[.{fingerprint=k6ze2203p2}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.k6ze2203p2.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ey60xjxn2s","Integrity":"yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.k6ze2203p2.wasm","FileLength":10833,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\a99cqvh69a-{0}-b0ha8vyo8i-b0ha8vyo8i.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.Compression.ZipFile#[.{fingerprint=b0ha8vyo8i}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.ZipFile.b0ha8vyo8i.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9vm9g5dkex","Integrity":"+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.ZipFile.b0ha8vyo8i.wasm","FileLength":18694,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\aawrgxq7b9-{0}-9ikmelhi7g-9ikmelhi7g.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Formats.Tar#[.{fingerprint=9ikmelhi7g}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Formats.Tar.9ikmelhi7g.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"pw9bxbzc7p","Integrity":"F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Formats.Tar.9ikmelhi7g.wasm","FileLength":10493,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ae1qv5wfu3-{0}-wvlboxd9cz-wvlboxd9cz.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.StackTrace#[.{fingerprint=wvlboxd9cz}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.StackTrace.wvlboxd9cz.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"6h9497gan2","Integrity":"+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.StackTrace.wvlboxd9cz.wasm","FileLength":7365,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\akapjt0sxo-{0}-91iw3j3d9p-91iw3j3d9p.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.VisualBasic#[.{fingerprint=91iw3j3d9p}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.VisualBasic.91iw3j3d9p.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"h1hqahv7du","Integrity":"O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.VisualBasic.91iw3j3d9p.wasm","FileLength":2863,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\arn1xqjw1x-{0}-peu2mfb29t-peu2mfb29t.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/dotnet.runtime#[.{fingerprint=peu2mfb29t}]!.js.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.runtime.peu2mfb29t.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"iavj8wyhfn","Integrity":"1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.runtime.peu2mfb29t.js","FileLength":56611,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\awwlmj7zy5-{0}-9n1yusa5e5-9n1yusa5e5.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security.Claims#[.{fingerprint=9n1yusa5e5}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Claims.9n1yusa5e5.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"lcn83o9k5m","Integrity":"ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Claims.9n1yusa5e5.wasm","FileLength":16556,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\b1pqie8d42-{0}-e3fl2oogjk-e3fl2oogjk.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Numerics#[.{fingerprint=e3fl2oogjk}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Numerics.e3fl2oogjk.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"og1ky6ahsr","Integrity":"aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Numerics.e3fl2oogjk.wasm","FileLength":52773,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\beyjjw9nw7-{0}-k3z431p3v7-k3z431p3v7.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Drawing.Primitives#[.{fingerprint=k3z431p3v7}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Drawing.Primitives.k3z431p3v7.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"j4p6zyk3r4","Integrity":"s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Drawing.Primitives.k3z431p3v7.wasm","FileLength":24043,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\bfkt9xtjsh-{0}-x0ueugt8gp-x0ueugt8gp.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"appsettings.Development#[.{fingerprint=x0ueugt8gp}]?.json.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\appsettings.Development.json","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"zt9ktt9z9k","Integrity":"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\appsettings.Development.json","FileLength":108,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\blwck2749u-{0}-8hg6c0at0c-8hg6c0at0c.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Xml.XDocument#[.{fingerprint=8hg6c0at0c}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XDocument.8hg6c0at0c.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"4o0fiht1d3","Integrity":"JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XDocument.8hg6c0at0c.wasm","FileLength":2395,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\bm4t56k5pn-{0}-v0usa2s224-v0usa2s224.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Drawing#[.{fingerprint=v0usa2s224}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Drawing.v0usa2s224.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"r4neytsin0","Integrity":"ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Drawing.v0usa2s224.wasm","FileLength":3864,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\byxake4xdz-{0}-g9rvjereoe-g9rvjereoe.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Private.Xml#[.{fingerprint=g9rvjereoe}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.Xml.g9rvjereoe.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"daids8fpga","Integrity":"K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.Xml.g9rvjereoe.wasm","FileLength":1053126,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\cagt9idkdm-{0}-b9imguls9w-b9imguls9w.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Xml.Serialization#[.{fingerprint=b9imguls9w}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.Serialization.b9imguls9w.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"2gx8hets28","Integrity":"UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.Serialization.b9imguls9w.wasm","FileLength":2252,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\co27dkpaxa-{0}-bd164v6l3f-bd164v6l3f.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Primitives#[.{fingerprint=bd164v6l3f}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.bd164v6l3f.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bj7ikxinm7","Integrity":"WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.bd164v6l3f.wasm","FileLength":15247,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\cycczivqx5-{0}-lplk7v275j-lplk7v275j.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/OnProfNext.Client#[.{fingerprint=lplk7v275j}]!.pdb.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\OnProfNext.Client.lplk7v275j.pdb","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"2v0j1pjbhw","Integrity":"4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\OnProfNext.Client.lplk7v275j.pdb","FileLength":26158,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\d2kqqmb0bv-{0}-8bhn50uz8f-8bhn50uz8f.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Text.Encoding.CodePages#[.{fingerprint=8bhn50uz8f}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encoding.CodePages.8bhn50uz8f.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"mdh6jg86ph","Integrity":"hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encoding.CodePages.8bhn50uz8f.wasm","FileLength":515711,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\dnrp0xl7wy-{0}-fgwnqtu7qk-fgwnqtu7qk.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Configuration#[.{fingerprint=fgwnqtu7qk}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"midc3whqfr","Integrity":"bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm","FileLength":15475,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\du4skpg5oq-{0}-re3geseai5-re3geseai5.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.VisualBasic.Core#[.{fingerprint=re3geseai5}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.re3geseai5.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"dwyqqei2y4","Integrity":"09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.re3geseai5.wasm","FileLength":166913,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\dy6tcjmb9q-{0}-mj3r9p0pcw-mj3r9p0pcw.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.ValueTuple#[.{fingerprint=mj3r9p0pcw}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ValueTuple.mj3r9p0pcw.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"iqz39h2edb","Integrity":"qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ValueTuple.mj3r9p0pcw.wasm","FileLength":2193,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\dzqyarawy9-{0}-d1pja42pyi-d1pja42pyi.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.UnmanagedMemoryStream#[.{fingerprint=d1pja42pyi}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"vdo10os1fk","Integrity":"TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm","FileLength":2221,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\e2kh1woy2q-{0}-whs5oed1wm-whs5oed1wm.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.Primitives#[.{fingerprint=whs5oed1wm}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Primitives.whs5oed1wm.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9izefwu8g8","Integrity":"v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Primitives.whs5oed1wm.wasm","FileLength":45890,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\e2ypaal8k2-{0}-47ucbn1gg1-47ucbn1gg1.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Threading#[.{fingerprint=47ucbn1gg1}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.47ucbn1gg1.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ulv66c32nm","Integrity":"fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.47ucbn1gg1.wasm","FileLength":14695,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\e67ma35du3-{0}-clehp4avpy-clehp4avpy.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Private.Uri#[.{fingerprint=clehp4avpy}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.Uri.clehp4avpy.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ppfsjc24fs","Integrity":"jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.Uri.clehp4avpy.wasm","FileLength":42319,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ea8uo6cwb8-{0}-x9at0eh4vs-x9at0eh4vs.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Console#[.{fingerprint=x9at0eh4vs}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Console.x9at0eh4vs.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"uojdvkwt3s","Integrity":"EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Console.x9at0eh4vs.wasm","FileLength":19390,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\edgswerp4g-{0}-ickp29885z-ickp29885z.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Core#[.{fingerprint=ickp29885z}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Core.ickp29885z.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"79fagkdleb","Integrity":"RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Core.ickp29885z.wasm","FileLength":4558,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\epsgnejg6l-{0}-vs620n44bv-vs620n44bv.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.DependencyInjection#[.{fingerprint=vs620n44bv}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"tffkpdcxi8","Integrity":"KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm","FileLength":36541,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ezxlu8d1x1-{0}-ssv83rveyv-ssv83rveyv.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.FileProviders.Abstractions#[.{fingerprint=ssv83rveyv}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ggs2562wfp","Integrity":"kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm","FileLength":5652,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\f62yejuwjc-{0}-4omhtq90sd-4omhtq90sd.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.ObjectModel#[.{fingerprint=4omhtq90sd}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ObjectModel.4omhtq90sd.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"qwqekt33jv","Integrity":"RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ObjectModel.4omhtq90sd.wasm","FileLength":13356,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\f6u1msztxb-{0}-xhq6acanj0-xhq6acanj0.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/OnProfNext.Client#[.{fingerprint=xhq6acanj0}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\OnProfNext.Client.xhq6acanj0.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"mqrlhu4nlf","Integrity":"UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\OnProfNext.Client.xhq6acanj0.wasm","FileLength":14848,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fappprmifz-{0}-r1sv3m5lsf-r1sv3m5lsf.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Validation#[.{fingerprint=r1sv3m5lsf}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Validation.r1sv3m5lsf.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"uctmea5fo6","Integrity":"4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Validation.r1sv3m5lsf.wasm","FileLength":14443,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ffagyufl1o-{0}-bselp9vv9w-bselp9vv9w.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.Compression.FileSystem#[.{fingerprint=bselp9vv9w}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.FileSystem.bselp9vv9w.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"5ohw841xcg","Integrity":"dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.FileSystem.bselp9vv9w.wasm","FileLength":2005,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ffumllgt4m-{0}-m11rh1qn2x-m11rh1qn2x.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.ComponentModel#[.{fingerprint=m11rh1qn2x}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.m11rh1qn2x.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"aipvp5fgnc","Integrity":"4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.m11rh1qn2x.wasm","FileLength":2572,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\flmzbagm0p-{0}-ibxx4kh8c6-ibxx4kh8c6.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.Compression.Brotli#[.{fingerprint=ibxx4kh8c6}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.Brotli.ibxx4kh8c6.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"5w5ohwyzbs","Integrity":"1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.Brotli.ibxx4kh8c6.wasm","FileLength":6944,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fmcag5xdn2-{0}-on9qk50okp-on9qk50okp.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Numerics#[.{fingerprint=on9qk50okp}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Numerics.on9qk50okp.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"yf0mwfai6t","Integrity":"voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Numerics.on9qk50okp.wasm","FileLength":2037,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fs9spivh8g-{0}-uddsvpv1sv-uddsvpv1sv.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.AspNetCore.Components#[.{fingerprint=uddsvpv1sv}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.uddsvpv1sv.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"kkn2n533lj","Integrity":"1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.uddsvpv1sv.wasm","FileLength":154281,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fz4pecsmjf-{0}-kpe61fymig-kpe61fymig.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Handles#[.{fingerprint=kpe61fymig}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Handles.kpe61fymig.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"l3c23v44di","Integrity":"P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Handles.kpe61fymig.wasm","FileLength":2214,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\g0qzdert85-{0}-zlwtcvnuqv-zlwtcvnuqv.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Private.DataContractSerialization#[.{fingerprint=zlwtcvnuqv}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.DataContractSerialization.zlwtcvnuqv.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"b2kfnzp5bc","Integrity":"U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.DataContractSerialization.zlwtcvnuqv.wasm","FileLength":301793,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\g3b5a282rj-{0}-fvxkfs32tv-fvxkfs32tv.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Globalization.Extensions#[.{fingerprint=fvxkfs32tv}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Globalization.Extensions.fvxkfs32tv.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"02ayb7artg","Integrity":"mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Globalization.Extensions.fvxkfs32tv.wasm","FileLength":2190,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\g4w42juzkx-{0}-e8yl47y6cv-e8yl47y6cv.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Globalization.Calendars#[.{fingerprint=e8yl47y6cv}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Globalization.Calendars.e8yl47y6cv.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9lrv8us0bl","Integrity":"bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Globalization.Calendars.e8yl47y6cv.wasm","FileLength":2298,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gnkv5k3g9v-{0}-lfu7j35m59-lfu7j35m59.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/icudt_no_CJK#[.{fingerprint=lfu7j35m59}]!.dat.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\icudt_no_CJK.lfu7j35m59.dat","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"v385ycndre","Integrity":"S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\icudt_no_CJK.lfu7j35m59.dat","FileLength":317618,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gpzobq46fp-{0}-e2hbv9lola-e2hbv9lola.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.ComponentModel.TypeConverter#[.{fingerprint=e2hbv9lola}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.e2hbv9lola.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"otvdjow6va","Integrity":"pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.e2hbv9lola.wasm","FileLength":122798,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gqmneoqstx-{0}-5rp84ijz8t-5rp84ijz8t.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography#[.{fingerprint=5rp84ijz8t}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.5rp84ijz8t.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"zdpmmy3hvx","Integrity":"+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.5rp84ijz8t.wasm","FileLength":227329,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gremm5qhcr-{0}-3tzjd7znni-3tzjd7znni.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Reflection.Emit.Lightweight#[.{fingerprint=3tzjd7znni}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.3tzjd7znni.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"8l6oh4glwo","Integrity":"XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.3tzjd7znni.wasm","FileLength":2237,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gsr2zhdiud-{0}-g7i5gd64yo-g7i5gd64yo.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Xml.XPath.XDocument#[.{fingerprint=g7i5gd64yo}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XPath.XDocument.g7i5gd64yo.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"kdk317qr42","Integrity":"6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XPath.XDocument.g7i5gd64yo.wasm","FileLength":2491,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gx4y3aoczp-{0}-g5qdp1mxha-g5qdp1mxha.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.AspNetCore.Components.Web#[.{fingerprint=g5qdp1mxha}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"7joby0gmhk","Integrity":"Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm","FileLength":71572,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\h9925thw3k-{0}-ythr5w8c2e-ythr5w8c2e.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.InteropServices.JavaScript#[.{fingerprint=ythr5w8c2e}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ajxd2v6lfp","Integrity":"BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm","FileLength":31832,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hoalsbog2o-{0}-ivmzcfvrc6-ivmzcfvrc6.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Reflection.TypeExtensions#[.{fingerprint=ivmzcfvrc6}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.TypeExtensions.ivmzcfvrc6.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"4jyu10wr5a","Integrity":"UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.TypeExtensions.ivmzcfvrc6.wasm","FileLength":5862,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hq538hfxem-{0}-y8l1kxazi5-y8l1kxazi5.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Threading.Timer#[.{fingerprint=y8l1kxazi5}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Timer.y8l1kxazi5.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"o794zzlysj","Integrity":"pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Timer.y8l1kxazi5.wasm","FileLength":2137,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hylqczc46z-{0}-vwinf8twbn-vwinf8twbn.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Linq.Queryable#[.{fingerprint=vwinf8twbn}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.Queryable.vwinf8twbn.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bklodz3kxf","Integrity":"K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.Queryable.vwinf8twbn.wasm","FileLength":21387,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hz1tpel2o0-{0}-9rl4gopayw-9rl4gopayw.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.Http#[.{fingerprint=9rl4gopayw}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Http.9rl4gopayw.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"u8euvk1cpm","Integrity":"Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Http.9rl4gopayw.wasm","FileLength":117194,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i30lqfoca8-{0}-3f1khl8k32-3f1khl8k32.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.ServiceModel.Web#[.{fingerprint=3f1khl8k32}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ServiceModel.Web.3f1khl8k32.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"lav6j5stx6","Integrity":"E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ServiceModel.Web.3f1khl8k32.wasm","FileLength":2547,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i7dsezujyr-{0}-kv9gl8mgag-kv9gl8mgag.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.FileVersionInfo#[.{fingerprint=kv9gl8mgag}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"j4wrreo1h8","Integrity":"Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm","FileLength":5132,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i7n8kqec4e-{0}-2mjytoh92q-2mjytoh92q.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Win32.Primitives#[.{fingerprint=2mjytoh92q}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Win32.Primitives.2mjytoh92q.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"4eibfa0pj4","Integrity":"JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Win32.Primitives.2mjytoh92q.wasm","FileLength":2216,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i8msa0z88m-{0}-x0vkqyycss-x0vkqyycss.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Reflection.Emit.ILGeneration#[.{fingerprint=x0vkqyycss}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"o2w8yjk0oz","Integrity":"YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm","FileLength":2283,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i9mn6d27vy-{0}-aeh9b1tcuc-aeh9b1tcuc.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.Debug#[.{fingerprint=aeh9b1tcuc}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Debug.aeh9b1tcuc.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0bwmu5jjo7","Integrity":"DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Debug.aeh9b1tcuc.wasm","FileLength":2284,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\iem13k4n35-{0}-yn3zcskz4j-yn3zcskz4j.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.Security#[.{fingerprint=yn3zcskz4j}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Security.yn3zcskz4j.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"cyh7fwwt9g","Integrity":"pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Security.yn3zcskz4j.wasm","FileLength":33688,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\iok845swr0-{0}-2a6wq9gv6d-2a6wq9gv6d.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Web#[.{fingerprint=2a6wq9gv6d}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Web.2a6wq9gv6d.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"jo2b7bl28x","Integrity":"UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Web.2a6wq9gv6d.wasm","FileLength":2127,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ixx2bqnfah-{0}-en4q13ibd5-en4q13ibd5.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.ComponentModel.EventBasedAsync#[.{fingerprint=en4q13ibd5}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"1t9lhk7tl2","Integrity":"G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm","FileLength":6777,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\j81tt1y6rj-{0}-xy5d3j3dn1-xy5d3j3dn1.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Serialization.Primitives#[.{fingerprint=xy5d3j3dn1}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"c44nsj5fc5","Integrity":"nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm","FileLength":5419,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jcwxb5s78i-{0}-uwq3fpef1w-uwq3fpef1w.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.AppContext#[.{fingerprint=uwq3fpef1w}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.AppContext.uwq3fpef1w.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ubhhfy85j7","Integrity":"Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.AppContext.uwq3fpef1w.wasm","FileLength":2115,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jg5bcwzjkb-{0}-clndu25lif-clndu25lif.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/dotnet.js#[.{fingerprint=clndu25lif}]?.map.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"i4y67pcvny","Integrity":"viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.js.map","FileLength":19302,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jhjpqkptaq-{0}-dyaxkkx3lb-dyaxkkx3lb.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography.Cng#[.{fingerprint=dyaxkkx3lb}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dyaxkkx3lb.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"y5vw5769bq","Integrity":"xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dyaxkkx3lb.wasm","FileLength":2476,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jimv6lw5j5-{0}-vpng0qt4u6-vpng0qt4u6.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.ComponentModel.DataAnnotations#[.{fingerprint=vpng0qt4u6}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"4mahw0a2fi","Integrity":"BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm","FileLength":2583,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jjcxq3ejac-{0}-b7qn4zpc0q-b7qn4zpc0q.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Reflection.DispatchProxy#[.{fingerprint=b7qn4zpc0q}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.DispatchProxy.b7qn4zpc0q.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"eqyyjrpmbo","Integrity":"VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.DispatchProxy.b7qn4zpc0q.wasm","FileLength":12687,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\k6k7jlyl2f-{0}-9lgg9wjd2a-9lgg9wjd2a.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Reflection.Metadata#[.{fingerprint=9lgg9wjd2a}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Metadata.9lgg9wjd2a.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"5mtud3umo5","Integrity":"bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Metadata.9lgg9wjd2a.wasm","FileLength":192211,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\keeokmerp8-{0}-8gz29xpyh3-8gz29xpyh3.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.FileProviders.Physical#[.{fingerprint=8gz29xpyh3}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"05hyyioq0r","Integrity":"RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm","FileLength":16448,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kmdzqqqt27-{0}-pl50n6qbg7-pl50n6qbg7.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Transactions#[.{fingerprint=pl50n6qbg7}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Transactions.pl50n6qbg7.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"llh2keu3u7","Integrity":"Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Transactions.pl50n6qbg7.wasm","FileLength":2384,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kmp1cwjk7f-{0}-szsdminork-szsdminork.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Xml.ReaderWriter#[.{fingerprint=szsdminork}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.ReaderWriter.szsdminork.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9ad0wbobz3","Integrity":"v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.ReaderWriter.szsdminork.wasm","FileLength":4021,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kstk0dzyw1-{0}-ud13mwbta3-ud13mwbta3.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions#[.{fingerprint=ud13mwbta3}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"w0dzf4xi6r","Integrity":"UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm","FileLength":21732,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kukm29h8dt-{0}-i9g92fmb9y-i9g92fmb9y.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO#[.{fingerprint=i9g92fmb9y}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.i9g92fmb9y.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"icnv0lnc0i","Integrity":"DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.i9g92fmb9y.wasm","FileLength":2280,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kwztau0oyy-{0}-38jcv8jeeu-38jcv8jeeu.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.WebProxy#[.{fingerprint=38jcv8jeeu}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebProxy.38jcv8jeeu.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"x8z2lgf060","Integrity":"8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebProxy.38jcv8jeeu.wasm","FileLength":5621,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kzc385ysv6-{0}-6j2ed42ac7-6j2ed42ac7.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.FileSystem.Primitives#[.{fingerprint=6j2ed42ac7}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.6j2ed42ac7.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"2e3l0cy7lg","Integrity":"apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.6j2ed42ac7.wasm","FileLength":2192,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\l2v44xhbzj-{0}-ozuva4e3vv-ozuva4e3vv.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.FileSystemGlobbing#[.{fingerprint=ozuva4e3vv}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"4zdwe30v1x","Integrity":"QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm","FileLength":16965,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\lbcric48ji-{0}-ruehy0ud5k-ruehy0ud5k.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Threading.AccessControl#[.{fingerprint=ruehy0ud5k}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.AccessControl.ruehy0ud5k.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"sxqijfks4m","Integrity":"INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.AccessControl.ruehy0ud5k.wasm","FileLength":8489,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\lgx6p69ons-{0}-ou2dt7nfo2-ou2dt7nfo2.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.DiagnosticSource#[.{fingerprint=ou2dt7nfo2}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ehzhw0b8x3","Integrity":"4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm","FileLength":81033,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\luuq2ppq8r-{0}-k8343mqust-k8343mqust.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.NetworkInformation#[.{fingerprint=k8343mqust}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.NetworkInformation.k8343mqust.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"fconal7ces","Integrity":"Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.NetworkInformation.k8343mqust.wasm","FileLength":12728,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\lvyasyre47-{0}-5lvzz4lks7-5lvzz4lks7.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.Pipes.AccessControl#[.{fingerprint=5lvzz4lks7}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.5lvzz4lks7.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"gekrupgc08","Integrity":"+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.5lvzz4lks7.wasm","FileLength":5567,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ly70359tb6-{0}-7bcdd4uolu-7bcdd4uolu.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography.Primitives#[.{fingerprint=7bcdd4uolu}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.7bcdd4uolu.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"h32r6tttj6","Integrity":"o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.7bcdd4uolu.wasm","FileLength":2347,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m02xm5ue7p-{0}-4dnz7b15a9-4dnz7b15a9.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography.Algorithms#[.{fingerprint=4dnz7b15a9}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ybki534pum","Integrity":"kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm","FileLength":2712,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m0i5wjywsx-{0}-v4mfyzbte8-v4mfyzbte8.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Reflection#[.{fingerprint=v4mfyzbte8}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.v4mfyzbte8.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"c0fw9fozii","Integrity":"/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.v4mfyzbte8.wasm","FileLength":2471,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m10se0yx1g-{0}-tqz9dyg6j7-tqz9dyg6j7.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Text.Encoding.Extensions#[.{fingerprint=tqz9dyg6j7}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encoding.Extensions.tqz9dyg6j7.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"2opuvzttkl","Integrity":"jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encoding.Extensions.tqz9dyg6j7.wasm","FileLength":2258,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m3i6jtsneo-{0}-oi9xn5s0h3-oi9xn5s0h3.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.FileSystem.AccessControl#[.{fingerprint=oi9xn5s0h3}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"g9qipdfnsf","Integrity":"dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm","FileLength":8474,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m428rlfc87-{0}-v9i07bnq2k-v9i07bnq2k.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.FileSystem.Watcher#[.{fingerprint=v9i07bnq2k}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.v9i07bnq2k.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"8n2p85wzfo","Integrity":"XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.v9i07bnq2k.wasm","FileLength":8751,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\me1or200pv-{0}-ddbsai2xh9-ddbsai2xh9.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.CompilerServices.VisualC#[.{fingerprint=ddbsai2xh9}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"v9gpkfoy8o","Integrity":"XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm","FileLength":3049,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mk5261bq2v-{0}-sgbc42zrd8-sgbc42zrd8.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.Compression#[.{fingerprint=sgbc42zrd8}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.sgbc42zrd8.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"66qmqm0jtr","Integrity":"/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.sgbc42zrd8.wasm","FileLength":64786,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mkj61d469a-{0}-qfpmfujegm-qfpmfujegm.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Serialization#[.{fingerprint=qfpmfujegm}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.qfpmfujegm.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"1z5o61ix8q","Integrity":"wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.qfpmfujegm.wasm","FileLength":2505,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mkyh3erkm9-{0}-zg37o92yol-zg37o92yol.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.HttpListener#[.{fingerprint=zg37o92yol}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.HttpListener.zg37o92yol.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"qfnuawkynh","Integrity":"2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.HttpListener.zg37o92yol.wasm","FileLength":16053,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mwxs9jgpi5-{0}-zku96ychk7-zku96ychk7.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net#[.{fingerprint=zku96ychk7}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.zku96ychk7.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ir1et9ocs2","Integrity":"boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.zku96ychk7.wasm","FileLength":2754,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mx4r46cpu7-{0}-9mjwvs1qyp-9mjwvs1qyp.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.AspNetCore.Components.WebAssembly#[.{fingerprint=9mjwvs1qyp}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"n094wzgwgi","Integrity":"WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm","FileLength":61540,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\na7pgc18jv-{0}-8ll4gxwfs1-8ll4gxwfs1.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.IsolatedStorage#[.{fingerprint=8ll4gxwfs1}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.IsolatedStorage.8ll4gxwfs1.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"huqxar7psw","Integrity":"KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.IsolatedStorage.8ll4gxwfs1.wasm","FileLength":9369,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\niv8zsbxhl-{0}-1zv6wuzklu-1zv6wuzklu.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Collections.Concurrent#[.{fingerprint=1zv6wuzklu}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.Concurrent.1zv6wuzklu.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bq2g07ai1i","Integrity":"LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.Concurrent.1zv6wuzklu.wasm","FileLength":33673,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\nu73pdet4t-{0}-u0y5oi3qdg-u0y5oi3qdg.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.ComponentModel.Primitives#[.{fingerprint=u0y5oi3qdg}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.Primitives.u0y5oi3qdg.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"8scmms1euz","Integrity":"yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.Primitives.u0y5oi3qdg.wasm","FileLength":13423,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\nvjr9jta08-{0}-4ulc930few-4ulc930few.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Globalization#[.{fingerprint=4ulc930few}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Globalization.4ulc930few.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0y2gwsj5of","Integrity":"GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Globalization.4ulc930few.wasm","FileLength":2275,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\o9xpqh7wzb-{0}-j8qjkqg593-j8qjkqg593.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Configuration#[.{fingerprint=j8qjkqg593}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Configuration.j8qjkqg593.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ipksztdpap","Integrity":"KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Configuration.j8qjkqg593.wasm","FileLength":3122,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ogcs9ucvrf-{0}-7weoywtuje-7weoywtuje.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security.SecureString#[.{fingerprint=7weoywtuje}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.SecureString.7weoywtuje.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"tplt9bq51t","Integrity":"z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.SecureString.7weoywtuje.wasm","FileLength":2205,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ohlfbgu01g-{0}-hyku0ejwye-hyku0ejwye.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Threading.Tasks.Parallel#[.{fingerprint=hyku0ejwye}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.hyku0ejwye.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ze0qpj2ft1","Integrity":"m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.hyku0ejwye.wasm","FileLength":21088,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\oix89w3uk2-{0}-y4ydx3rk2c-y4ydx3rk2c.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Logging#[.{fingerprint=y4ydx3rk2c}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Logging.y4ydx3rk2c.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"mwqfamp4zc","Integrity":"CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Logging.y4ydx3rk2c.wasm","FileLength":18618,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ozc2mb3rdz-{0}-zmb03w0weu-zmb03w0weu.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions#[.{fingerprint=zmb03w0weu}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"dqcssuy61d","Integrity":"i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm","FileLength":5101,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ozd9l95cy8-{0}-utzdm9sw2p-utzdm9sw2p.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.Sockets#[.{fingerprint=utzdm9sw2p}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Sockets.utzdm9sw2p.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"46c7yu1zqk","Integrity":"XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Sockets.utzdm9sw2p.wasm","FileLength":22918,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\p0pe0blimm-{0}-rp2jklkmsi-rp2jklkmsi.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Linq#[.{fingerprint=rp2jklkmsi}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.rp2jklkmsi.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"npq7r9d4h5","Integrity":"+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.rp2jklkmsi.wasm","FileLength":74838,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\p1p1dduoka-{0}-3t7flfwg7o-3t7flfwg7o.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Reflection.Emit#[.{fingerprint=3t7flfwg7o}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Emit.3t7flfwg7o.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"7klo5pzc4x","Integrity":"2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Emit.3t7flfwg7o.wasm","FileLength":53251,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\pfi56k79hn-{0}-3jfxpyq4in-3jfxpyq4in.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Web.HttpUtility#[.{fingerprint=3jfxpyq4in}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Web.HttpUtility.3jfxpyq4in.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"028nsingxa","Integrity":"eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Web.HttpUtility.3jfxpyq4in.wasm","FileLength":9544,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\pro4ajsvfg-{0}-1r0ampr2q1-1r0ampr2q1.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.JSInterop#[.{fingerprint=1r0ampr2q1}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.JSInterop.1r0ampr2q1.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"83n0xwuttg","Integrity":"5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.JSInterop.1r0ampr2q1.wasm","FileLength":27523,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\pxy8xfz0ow-{0}-21z0t9w6sq-21z0t9w6sq.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.Pipelines#[.{fingerprint=21z0t9w6sq}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Pipelines.21z0t9w6sq.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"qhvaeyhv35","Integrity":"7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Pipelines.21z0t9w6sq.wasm","FileLength":30368,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\q6am3o85wz-{0}-84wojkejb4-84wojkejb4.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Collections.Specialized#[.{fingerprint=84wojkejb4}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.Specialized.84wojkejb4.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0egm0291ft","Integrity":"iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.Specialized.84wojkejb4.wasm","FileLength":16334,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qlfvznror3-{0}-zrueb40r85-zrueb40r85.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.AspNetCore.Components.Forms#[.{fingerprint=zrueb40r85}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"83yupvvf0z","Integrity":"FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm","FileLength":17376,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qrheoix2ig-{0}-f3fiwdwb50-f3fiwdwb50.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Resources.ResourceManager#[.{fingerprint=f3fiwdwb50}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Resources.ResourceManager.f3fiwdwb50.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0mnxpc9lyj","Integrity":"yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Resources.ResourceManager.f3fiwdwb50.wasm","FileLength":2248,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qt3o35adbl-{0}-okgnp5v9bw-okgnp5v9bw.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Xml.XmlSerializer#[.{fingerprint=okgnp5v9bw}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XmlSerializer.okgnp5v9bw.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"tjd36i6n6w","Integrity":"WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XmlSerializer.okgnp5v9bw.wasm","FileLength":2861,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qz9h56e7z8-{0}-kx7meqmil2-kx7meqmil2.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/dotnet#[.{fingerprint=kx7meqmil2}]?.js.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9d4679pf7x","Integrity":"Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.js","FileLength":25310,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\r0xa1dsvvu-{0}-4nat0rber0-4nat0rber0.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Linq.Expressions#[.{fingerprint=4nat0rber0}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.Expressions.4nat0rber0.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9tived7r2w","Integrity":"Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.Expressions.4nat0rber0.wasm","FileLength":213264,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\r1c02csw1u-{0}-k5rgagff9o-k5rgagff9o.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Collections.NonGeneric#[.{fingerprint=k5rgagff9o}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.NonGeneric.k5rgagff9o.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"dvlsa6rrt1","Integrity":"RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.NonGeneric.k5rgagff9o.wasm","FileLength":14717,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ra6e7v46m5-{0}-zjgi7nrlno-zjgi7nrlno.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Xml#[.{fingerprint=zjgi7nrlno}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.zjgi7nrlno.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"7bphnl6e9l","Integrity":"Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.zjgi7nrlno.wasm","FileLength":4217,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\rma0vjtbld-{0}-s3i62rxr2p-s3i62rxr2p.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Threading.Channels#[.{fingerprint=s3i62rxr2p}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Channels.s3i62rxr2p.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"p7z829j3zv","Integrity":"u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Channels.s3i62rxr2p.wasm","FileLength":24416,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\rsffl3vumf-{0}-6do4olk7ib-6do4olk7ib.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.MemoryMappedFiles#[.{fingerprint=6do4olk7ib}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.6do4olk7ib.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"4dma9hit54","Integrity":"uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.6do4olk7ib.wasm","FileLength":17013,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\rz1qtq0z6d-{0}-dmew7c9amv-dmew7c9amv.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography.X509Certificates#[.{fingerprint=dmew7c9amv}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"qcmgapxu82","Integrity":"KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm","FileLength":2671,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\s4opith0ak-{0}-thew1o6jcx-thew1o6jcx.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Configuration.Abstractions#[.{fingerprint=thew1o6jcx}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ghofgzfbll","Integrity":"TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm","FileLength":8096,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sl0sft7bkv-{0}-7ssqvw2wfy-7ssqvw2wfy.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security.Principal.Windows#[.{fingerprint=7ssqvw2wfy}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Principal.Windows.7ssqvw2wfy.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"isx6bre34i","Integrity":"ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Principal.Windows.7ssqvw2wfy.wasm","FileLength":11089,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sm8o0gwk5g-{0}-904tnen1ot-904tnen1ot.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Data.DataSetExtensions#[.{fingerprint=904tnen1ot}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Data.DataSetExtensions.904tnen1ot.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"52ipu6ljxy","Integrity":"re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Data.DataSetExtensions.904tnen1ot.wasm","FileLength":2081,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sn0mpm6uvc-{0}-1q3x7vre4l-1q3x7vre4l.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Logging.Abstractions#[.{fingerprint=1q3x7vre4l}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"vw2uqtemv2","Integrity":"wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm","FileLength":24489,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sz4qmwa0cz-{0}-j436yqvrg9-j436yqvrg9.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.ServicePoint#[.{fingerprint=j436yqvrg9}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.ServicePoint.j436yqvrg9.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0t2wur1hsg","Integrity":"NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.ServicePoint.j436yqvrg9.wasm","FileLength":2179,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\szit2ufpnx-{0}-tx9namivq6-tx9namivq6.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Resources.Writer#[.{fingerprint=tx9namivq6}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Resources.Writer.tx9namivq6.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"3pift1if2v","Integrity":"mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Resources.Writer.tx9namivq6.wasm","FileLength":7584,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\t2mopjsgs5-{0}-37wbq4jfsy-37wbq4jfsy.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.ServerSentEvents#[.{fingerprint=37wbq4jfsy}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.ServerSentEvents.37wbq4jfsy.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"6ojmnuk21h","Integrity":"FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.ServerSentEvents.37wbq4jfsy.wasm","FileLength":14667,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\t7lpa3lwov-{0}-grloe2ix5j-grloe2ix5j.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.Quic#[.{fingerprint=grloe2ix5j}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Quic.grloe2ix5j.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"3nqwdf9vdo","Integrity":"IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Quic.grloe2ix5j.wasm","FileLength":10934,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tdpp3qw974-{0}-n2ngq6as7g-n2ngq6as7g.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Reflection.Primitives#[.{fingerprint=n2ngq6as7g}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Primitives.n2ngq6as7g.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"lahejca87r","Integrity":"DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Primitives.n2ngq6as7g.wasm","FileLength":2362,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tezhiquus4-{0}-6jkolue1ka-6jkolue1ka.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Localization.Abstractions#[.{fingerprint=6jkolue1ka}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"zynb14uzz8","Integrity":"5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm","FileLength":3828,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tmgotixosa-{0}-1l8xruz8uh-1l8xruz8uh.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Numerics.Vectors#[.{fingerprint=1l8xruz8uh}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Numerics.Vectors.1l8xruz8uh.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"1zn0i5c3ic","Integrity":"XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Numerics.Vectors.1l8xruz8uh.wasm","FileLength":2275,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\to8tkrj8cc-{0}-p9bjzp5pyo-p9bjzp5pyo.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Threading.Tasks.Dataflow#[.{fingerprint=p9bjzp5pyo}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"42hyvsnaqu","Integrity":"3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm","FileLength":73245,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ttu14uxg7m-{0}-hdzn84g6uh-hdzn84g6uh.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.WebSockets#[.{fingerprint=hdzn84g6uh}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebSockets.hdzn84g6uh.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"rwv4qr12j8","Integrity":"dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebSockets.hdzn84g6uh.wasm","FileLength":40574,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tvvpa50077-{0}-bw79ix589z-bw79ix589z.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Windows#[.{fingerprint=bw79ix589z}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Windows.bw79ix589z.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"24566f8mt4","Integrity":"YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Windows.bw79ix589z.wasm","FileLength":2281,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\u4abyqnekj-{0}-2rz5zbidnd-2rz5zbidnd.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Options#[.{fingerprint=2rz5zbidnd}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Options.2rz5zbidnd.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"v0o0qd5zi3","Integrity":"nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Options.2rz5zbidnd.wasm","FileLength":23512,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ug9ge1behf-{0}-ycbzh0sbjd-ycbzh0sbjd.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"Layout/ReconnectModal#[.{fingerprint=ycbzh0sbjd}]?.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\Layout\\ReconnectModal.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"e94n4p5e08","Integrity":"rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\Layout\\ReconnectModal.razor.js","FileLength":787,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ui1ul8tpby-{0}-50dzekuu9x-50dzekuu9x.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.NameResolution#[.{fingerprint=50dzekuu9x}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.NameResolution.50dzekuu9x.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"3k34wxzq9g","Integrity":"A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.NameResolution.50dzekuu9x.wasm","FileLength":5933,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\uu7wfp4do2-{0}-0lu5m0tfx2-0lu5m0tfx2.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography.Encoding#[.{fingerprint=0lu5m0tfx2}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"fw6kh8k1tw","Integrity":"EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm","FileLength":2280,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\uz6wr238mp-{0}-cig01jt23c-cig01jt23c.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Transactions.Local#[.{fingerprint=cig01jt23c}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Transactions.Local.cig01jt23c.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"vj5q1xzbda","Integrity":"ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Transactions.Local.cig01jt23c.wasm","FileLength":51451,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\v9jar86jna-{0}-20t5iw27a6-20t5iw27a6.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Security.Cryptography.Csp#[.{fingerprint=20t5iw27a6}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Csp.20t5iw27a6.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ye9z1wtmih","Integrity":"lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Csp.20t5iw27a6.wasm","FileLength":2335,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vbwtfewq79-{0}-66stpp682q-66stpp682q.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/blazor.webassembly.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\blazor.webassembly.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ob0lsmap0j","Integrity":"5Igt0nmzlphL04ESrb7MBY9ts2dhz5i3UJ+aCoJbK0Y=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\blazor.webassembly.js","FileLength":18724,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vhumncwy1p-{0}-ouivavlhyy-ouivavlhyy.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.Extensions.Configuration.FileExtensions#[.{fingerprint=ouivavlhyy}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"7xgfmwx4a3","Integrity":"a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm","FileLength":7985,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vjl93wt59v-{0}-xosph8vk4a-xosph8vk4a.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.Pipes#[.{fingerprint=xosph8vk4a}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Pipes.xosph8vk4a.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"cwn8d6c7ve","Integrity":"BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Pipes.xosph8vk4a.wasm","FileLength":11401,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vnqjd4ny0q-{0}-fktu0k4b93-fktu0k4b93.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.IO.FileSystem#[.{fingerprint=fktu0k4b93}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.fktu0k4b93.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"gx6nm5qbny","Integrity":"1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.fktu0k4b93.wasm","FileLength":2303,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vtgrfa0p11-{0}-ymwga5opgl-ymwga5opgl.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Reflection.Extensions#[.{fingerprint=ymwga5opgl}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Extensions.ymwga5opgl.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"cx1gfip5ma","Integrity":"QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Extensions.ymwga5opgl.wasm","FileLength":2163,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\w2iaa8sc3u-{0}-k6079czmkm-k6079czmkm.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/MudBlazor#[.{fingerprint=k6079czmkm}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\MudBlazor.k6079czmkm.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"pzzlmu9pfo","Integrity":"dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\MudBlazor.k6079czmkm.wasm","FileLength":2249638,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\w4xw0gq3pj-{0}-s9ic8sulfi-s9ic8sulfi.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Text.Encoding#[.{fingerprint=s9ic8sulfi}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encoding.s9ic8sulfi.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"wkro82bmx3","Integrity":"oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encoding.s9ic8sulfi.wasm","FileLength":2244,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\w9uuhprkgr-{0}-j08okd90mo-j08okd90mo.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.TraceSource#[.{fingerprint=j08okd90mo}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.TraceSource.j08okd90mo.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"298gstgzqo","Integrity":"xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.TraceSource.j08okd90mo.wasm","FileLength":20119,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wgdliulfxe-{0}-z1eotzj35n-z1eotzj35n.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.Contracts#[.{fingerprint=z1eotzj35n}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Contracts.z1eotzj35n.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"33jofr2vn1","Integrity":"Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Contracts.z1eotzj35n.wasm","FileLength":2392,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wi7nbv7im4-{0}-nfbg9v9bn0-nfbg9v9bn0.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Threading.Thread#[.{fingerprint=nfbg9v9bn0}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Thread.nfbg9v9bn0.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"mdkrp4y6nu","Integrity":"FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Thread.nfbg9v9bn0.wasm","FileLength":2338,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wj9cgpvw17-{0}-cjsvkufomv-cjsvkufomv.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.ComponentModel.Annotations#[.{fingerprint=cjsvkufomv}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.Annotations.cjsvkufomv.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"vvzp0orytg","Integrity":"6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.Annotations.cjsvkufomv.wasm","FileLength":35777,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wqsee81gb1-{0}-07hq35kp92-07hq35kp92.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Text.Encodings.Web#[.{fingerprint=07hq35kp92}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encodings.Web.07hq35kp92.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"uo8zg9bp7s","Integrity":"vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encodings.Web.07hq35kp92.wasm","FileLength":22077,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ww3wnv8b6s-{0}-isetn6xlxa-isetn6xlxa.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Xml.XmlDocument#[.{fingerprint=isetn6xlxa}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XmlDocument.isetn6xlxa.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"dz24ujiuy1","Integrity":"520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XmlDocument.isetn6xlxa.wasm","FileLength":2362,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wxwyng4xk0-{0}-pez04wd9mo-pez04wd9mo.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.Serialization.Json#[.{fingerprint=pez04wd9mo}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Json.pez04wd9mo.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"llewqzbb1s","Integrity":"F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Json.pez04wd9mo.wasm","FileLength":2264,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\xfyu8pi705-{0}-rbzkmij005-rbzkmij005.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.WebHeaderCollection#[.{fingerprint=rbzkmij005}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebHeaderCollection.rbzkmij005.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"pnu0ylbmbp","Integrity":"y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebHeaderCollection.rbzkmij005.wasm","FileLength":10208,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\xo45czuveq-{0}-11wk1hhnfk-11wk1hhnfk.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Xml.XPath#[.{fingerprint=11wk1hhnfk}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XPath.11wk1hhnfk.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"214is7vbw1","Integrity":"5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XPath.11wk1hhnfk.wasm","FileLength":2320,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\xtefui8dpc-{0}-c9z9nieytf-c9z9nieytf.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Resources.Reader#[.{fingerprint=c9z9nieytf}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Resources.Reader.c9z9nieytf.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"6sus8qhlnm","Integrity":"1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Resources.Reader.c9z9nieytf.wasm","FileLength":2131,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\y20kxtztgi-{0}-0h75nr7qqd-0h75nr7qqd.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Data#[.{fingerprint=0h75nr7qqd}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Data.0h75nr7qqd.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"xg9obt7g2f","Integrity":"8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Data.0h75nr7qqd.wasm","FileLength":5022,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\yee81ivl95-{0}-tptq2av103-tptq2av103.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/icudt_EFIGS#[.{fingerprint=tptq2av103}]!.dat.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\icudt_EFIGS.tptq2av103.dat","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"fnxfkgr4e8","Integrity":"G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\icudt_EFIGS.tptq2av103.dat","FileLength":196037,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ymz6pz7ujf-{0}-bnz7jo4op8-bnz7jo4op8.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Diagnostics.Tracing#[.{fingerprint=bnz7jo4op8}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Tracing.bnz7jo4op8.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"agm35xp769","Integrity":"ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Tracing.bnz7jo4op8.wasm","FileLength":2509,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\yswenxxy60-{0}-00vh2kvsiz-00vh2kvsiz.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.Ping#[.{fingerprint=00vh2kvsiz}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Ping.00vh2kvsiz.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"4r6k7kj18g","Integrity":"MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Ping.00vh2kvsiz.wasm","FileLength":7542,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\yva5srnvsu-{0}-452y5fjxmv-452y5fjxmv.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.CSharp#[.{fingerprint=452y5fjxmv}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.CSharp.452y5fjxmv.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"xagztf6a3s","Integrity":"SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.CSharp.452y5fjxmv.wasm","FileLength":131862,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ywpa2qpg55-{0}-lzl7igry1t-lzl7igry1t.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Threading.Overlapped#[.{fingerprint=lzl7igry1t}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Overlapped.lzl7igry1t.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"qzi45nrx8u","Integrity":"2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Overlapped.lzl7igry1t.wasm","FileLength":2317,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zc08r46902-{0}-nv5izr3rt6-nv5izr3rt6.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.WebSockets.Client#[.{fingerprint=nv5izr3rt6}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebSockets.Client.nv5izr3rt6.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"whi0oxky18","Integrity":"XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebSockets.Client.nv5izr3rt6.wasm","FileLength":17919,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zip5atfnk1-{0}-3r0soomurg-3r0soomurg.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Memory#[.{fingerprint=3r0soomurg}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Memory.3r0soomurg.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"npdk29xyk6","Integrity":"lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Memory.3r0soomurg.wasm","FileLength":20575,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zlxnfbxifc-{0}-a95c1olw0i-a95c1olw0i.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.ServiceProcess#[.{fingerprint=a95c1olw0i}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ServiceProcess.a95c1olw0i.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"me2z6mjve0","Integrity":"EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ServiceProcess.a95c1olw0i.wasm","FileLength":2307,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zpx4nb1yyz-{0}-m3mxap0jif-m3mxap0jif.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/Microsoft.AspNetCore.Metadata#[.{fingerprint=m3mxap0jif}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ervw32usw9","Integrity":"NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm","FileLength":2466,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zx6kj3xmnr-{0}-esodb2rpbi-esodb2rpbi.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Runtime.InteropServices.RuntimeInformation#[.{fingerprint=esodb2rpbi}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"hjiemymc38","Integrity":"XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm","FileLength":2159,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zxgtro8yo7-{0}-t9gqpmtbpb-t9gqpmtbpb.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.Http.Json#[.{fingerprint=t9gqpmtbpb}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Http.Json.t9gqpmtbpb.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"brrohyqrst","Integrity":"h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Http.Json.t9gqpmtbpb.wasm","FileLength":19382,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zy4nys0fbm-{0}-r8ar2pd94c-r8ar2pd94c.gz","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/System.Net.Requests#[.{fingerprint=r8ar2pd94c}]!.wasm.gz","AssetKind":"Build","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Requests.r8ar2pd94c.wasm","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"72b6rw0q6a","Integrity":"gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA=","CopyToOutputDirectory":"PreserveNewest","CopyToPublishDirectory":"Never","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Requests.r8ar2pd94c.wasm","FileLength":20293,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\scopedcss\\projectbundle\\OnProfNext.Client.bundle.scp.css","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\scopedcss\\projectbundle\\","BasePath":"/","RelativePath":"OnProfNext.Client#[.{fingerprint}]!.bundle.scp.css","AssetKind":"All","AssetMode":"Reference","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"ScopedCss","AssetTraitValue":"ProjectBundle","Fingerprint":"uzl7ca9j9c","Integrity":"5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\scopedcss\\projectbundle\\OnProfNext.Client.bundle.scp.css","FileLength":6834,"LastWriteTime":"2026-03-18T16:34:25+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\appsettings.Development.json","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\","BasePath":"/","RelativePath":"appsettings.Development#[.{fingerprint}]?.json","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"settings","Fingerprint":"x0ueugt8gp","Integrity":"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\appsettings.Development.json","FileLength":119,"LastWriteTime":"2026-03-18T16:33:32+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\appsettings.json","SourceId":"OnProfNext.Client","SourceType":"Project","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\","BasePath":"/","RelativePath":"appsettings#[.{fingerprint}]?.json","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"WasmResource","AssetTraitValue":"settings","Fingerprint":"x0ueugt8gp","Integrity":"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\appsettings.json","FileLength":119,"LastWriteTime":"2026-03-18T16:33:32+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\0wz98yz2xy-{0}-8dleymzaev-8dleymzaev.gz","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\MudBlazor.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"huk9fydkzu","Integrity":"ydhcmXIIRl5uGo/vdFRnFzlF8jEiRYezMmXg9Omen8s=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\MudBlazor.min.js","FileLength":15860,"LastWriteTime":"2026-03-18T16:34:27+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\9cjrgkhoez-{0}-2jeq8efc6q-2jeq8efc6q.gz","SourceId":"OnProfNext","SourceType":"Discovered","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"favicon#[.{fingerprint=2jeq8efc6q}]?.ico.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\wwwroot\\favicon.ico","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"3ren6c1acn","Integrity":"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\wwwroot\\favicon.ico","FileLength":2975,"LastWriteTime":"2026-03-18T16:34:27+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\b2aaf1qy0k-{0}-b9228eflpl-b9228eflpl.gz","SourceId":"OnProfNext","SourceType":"Discovered","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/blazor.web#[.{fingerprint=b9228eflpl}]?.js.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\wiela\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.5\\_framework\\blazor.web.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"r5w9ctcrsq","Integrity":"8VQ3iMUvfxiGnWgLihInPbvXvnXptUD4QRw4448/j64=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\wiela\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.5\\_framework\\blazor.web.js","FileLength":55158,"LastWriteTime":"2026-03-18T16:34:27+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\byr04718ni-{0}-0i02oychrm-0i02oychrm.gz","SourceId":"OnProfNext","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"OnProfNext#[.{fingerprint=0i02oychrm}]?.modules.json.gz","AssetKind":"Build","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\jsmodules\\jsmodules.build.manifest.json","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"8vnoutujuo","Integrity":"1KA3582Q2/tA0+cdRJztNonDmZZ3aFTsIlXYblwuK8w=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\jsmodules\\jsmodules.build.manifest.json","FileLength":112,"LastWriteTime":"2026-03-18T16:34:27+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\f9o902iofb-{0}-99zm1jdh75-99zm1jdh75.gz","SourceId":"Microsoft.DotNet.HotReload.WebAssembly.Browser","SourceType":"Package","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\","BasePath":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser","RelativePath":"Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\wiela\\.nuget\\packages\\microsoft.dotnet.hotreload.webassembly.browser\\10.0.201\\staticwebassets\\Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"r26z7w8tez","Integrity":"g7DwAhdgl0oKXmpsFbRzF03rilX1aNUWw1Xnn8Loe4k=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\wiela\\.nuget\\packages\\microsoft.dotnet.hotreload.webassembly.browser\\10.0.201\\staticwebassets\\Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js","FileLength":696,"LastWriteTime":"2026-03-18T16:34:27+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\fixztrjlan-{0}-sif51eb7xk-sif51eb7xk.gz","SourceId":"OnProfNext","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"OnProfNext#[.{fingerprint=sif51eb7xk}]?.styles.css.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\scopedcss\\bundle\\OnProfNext.styles.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"rgmz0g4u1g","Integrity":"e1xci9FnhjZKLfRTggJi4ZGIrW3ZuGNWybwpVURsUzc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\scopedcss\\bundle\\OnProfNext.styles.css","FileLength":78,"LastWriteTime":"2026-03-18T16:34:27+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\o7k4cxtn0u-{0}-0ykner63ol-0ykner63ol.gz","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.js.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\MudBlazor.min.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"mu5ofp27zo","Integrity":"YnlPux4qBuGLWhihs+JuLReInvzFXtqDTWrJOmgWE5Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\MudBlazor.min.js.map","FileLength":50330,"LastWriteTime":"2026-03-18T16:34:27+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\tzxjg6is5z-{0}-o2b68hjqqd-o2b68hjqqd.gz","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\MudBlazor.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"wpsvn4ktvq","Integrity":"3NW/7qanjyyKjmM6tVvxaZsoz0x42qzljiuPWKrKuEA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\MudBlazor.min.css","FileLength":65504,"LastWriteTime":"2026-03-18T16:34:27+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\z7m9u3a7x3-{0}-2tj1sjhksk-2tj1sjhksk.gz","SourceId":"OnProfNext","SourceType":"Discovered","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/blazor.server#[.{fingerprint=2tj1sjhksk}]?.js.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\wiela\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.5\\_framework\\blazor.server.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9aec6z1y8w","Integrity":"UZUyVYBpct8fgB7oNrIguu4We/o5Cyak6zO8IAx3S20=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\wiela\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.5\\_framework\\blazor.server.js","FileLength":44312,"LastWriteTime":"2026-03-18T16:34:27+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\jsmodules\\jsmodules.build.manifest.json","SourceId":"OnProfNext","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\jsmodules\\","BasePath":"/","RelativePath":"OnProfNext#[.{fingerprint}]?.modules.json","AssetKind":"Build","AssetMode":"CurrentProject","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"JSModule","AssetTraitValue":"JSModuleManifest","Fingerprint":"0i02oychrm","Integrity":"CE+c7ulk9jNoFA+3UHSG2yOt3rfyHQQDAmYZ9fTpBe0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"obj\\Debug\\net10.0\\jsmodules\\jsmodules.build.manifest.json","FileLength":137,"LastWriteTime":"2026-03-18T16:34:27+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\scopedcss\\bundle\\OnProfNext.styles.css","SourceId":"OnProfNext","SourceType":"Computed","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\scopedcss\\bundle\\","BasePath":"/","RelativePath":"OnProfNext#[.{fingerprint}]?.styles.css","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"ScopedCss","AssetTraitValue":"ApplicationBundle","Fingerprint":"sif51eb7xk","Integrity":"LBlTGafUdF+7cyLWp5h9/a1ppSj16g8eniJ/4XVjv84=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\scopedcss\\bundle\\OnProfNext.styles.css","FileLength":58,"LastWriteTime":"2026-03-18T16:34:27+00:00"},{"Identity":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\wwwroot\\favicon.ico","SourceId":"OnProfNext","SourceType":"Discovered","ContentRoot":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\wwwroot\\","BasePath":"/","RelativePath":"favicon#[.{fingerprint}]?.ico","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"2jeq8efc6q","Integrity":"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\favicon.ico","FileLength":15086,"LastWriteTime":"2026-03-18T16:33:32+00:00"}],"Endpoints":[{"Route":"Layout/ReconnectModal.razor.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\Layout\\ReconnectModal.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2746"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4="},{"Name":"script-type","Value":"module"}]},{"Route":"Layout/ReconnectModal.razor.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ug9ge1behf-{0}-ycbzh0sbjd-ycbzh0sbjd.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001269035533"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"787"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4="},{"Name":"original-resource","Value":"\"QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4=\""},{"Name":"script-type","Value":"module"}]},{"Route":"Layout/ReconnectModal.razor.js.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ug9ge1behf-{0}-ycbzh0sbjd-ycbzh0sbjd.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"787"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA="}]},{"Route":"Layout/ReconnectModal.ycbzh0sbjd.razor.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\Layout\\ReconnectModal.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2746"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ycbzh0sbjd"},{"Name":"integrity","Value":"sha256-QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4="},{"Name":"label","Value":"Layout/ReconnectModal.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"Layout/ReconnectModal.ycbzh0sbjd.razor.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ug9ge1behf-{0}-ycbzh0sbjd-ycbzh0sbjd.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001269035533"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"787"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ycbzh0sbjd"},{"Name":"integrity","Value":"sha256-QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4="},{"Name":"label","Value":"Layout/ReconnectModal.razor.js"},{"Name":"original-resource","Value":"\"QlWWcf5RpEclEeIaJ/IPv/jDMRlIfAjHvdR/vuJ9su4=\""},{"Name":"script-type","Value":"module"}]},{"Route":"Layout/ReconnectModal.ycbzh0sbjd.razor.js.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ug9ge1behf-{0}-ycbzh0sbjd-ycbzh0sbjd.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"787"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ycbzh0sbjd"},{"Name":"integrity","Value":"sha256-rjIsH32XanW/xMY4HujkJK46Nj2ZE/r5dIHd4/2IQWA="},{"Name":"label","Value":"Layout/ReconnectModal.razor.js.gz"}]},{"Route":"OnProfNext.0i02oychrm.modules.json","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\byr04718ni-{0}-0i02oychrm-0i02oychrm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.008849557522"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"112"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"1KA3582Q2/tA0+cdRJztNonDmZZ3aFTsIlXYblwuK8w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0i02oychrm"},{"Name":"integrity","Value":"sha256-CE+c7ulk9jNoFA+3UHSG2yOt3rfyHQQDAmYZ9fTpBe0="},{"Name":"label","Value":"OnProfNext.modules.json"},{"Name":"original-resource","Value":"\"CE+c7ulk9jNoFA+3UHSG2yOt3rfyHQQDAmYZ9fTpBe0=\""}]},{"Route":"OnProfNext.0i02oychrm.modules.json","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\jsmodules\\jsmodules.build.manifest.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"137"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"CE+c7ulk9jNoFA+3UHSG2yOt3rfyHQQDAmYZ9fTpBe0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0i02oychrm"},{"Name":"integrity","Value":"sha256-CE+c7ulk9jNoFA+3UHSG2yOt3rfyHQQDAmYZ9fTpBe0="},{"Name":"label","Value":"OnProfNext.modules.json"}]},{"Route":"OnProfNext.0i02oychrm.modules.json.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\byr04718ni-{0}-0i02oychrm-0i02oychrm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"112"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"1KA3582Q2/tA0+cdRJztNonDmZZ3aFTsIlXYblwuK8w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0i02oychrm"},{"Name":"integrity","Value":"sha256-1KA3582Q2/tA0+cdRJztNonDmZZ3aFTsIlXYblwuK8w="},{"Name":"label","Value":"OnProfNext.modules.json.gz"}]},{"Route":"OnProfNext.Client.bundle.scp.css","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\808kb9dz89-{0}-uzl7ca9j9c-uzl7ca9j9c.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000690131125"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1448"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4="},{"Name":"original-resource","Value":"\"5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4=\""}]},{"Route":"OnProfNext.Client.bundle.scp.css","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\scopedcss\\projectbundle\\OnProfNext.Client.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6834"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4="}]},{"Route":"OnProfNext.Client.bundle.scp.css.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\808kb9dz89-{0}-uzl7ca9j9c-uzl7ca9j9c.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1448"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o="}]},{"Route":"OnProfNext.Client.uzl7ca9j9c.bundle.scp.css","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\808kb9dz89-{0}-uzl7ca9j9c-uzl7ca9j9c.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000690131125"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1448"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uzl7ca9j9c"},{"Name":"integrity","Value":"sha256-5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4="},{"Name":"label","Value":"OnProfNext.Client.bundle.scp.css"},{"Name":"original-resource","Value":"\"5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4=\""}]},{"Route":"OnProfNext.Client.uzl7ca9j9c.bundle.scp.css","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\scopedcss\\projectbundle\\OnProfNext.Client.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6834"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uzl7ca9j9c"},{"Name":"integrity","Value":"sha256-5lD9HXB3QqmMpfa90JN/n5PpB2ygU2pOFerBQ2xfc/4="},{"Name":"label","Value":"OnProfNext.Client.bundle.scp.css"}]},{"Route":"OnProfNext.Client.uzl7ca9j9c.bundle.scp.css.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\808kb9dz89-{0}-uzl7ca9j9c-uzl7ca9j9c.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1448"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uzl7ca9j9c"},{"Name":"integrity","Value":"sha256-UGIZC3hmID9uyLwteqGH3moaa91005vCRx0I8u9hS+o="},{"Name":"label","Value":"OnProfNext.Client.bundle.scp.css.gz"}]},{"Route":"OnProfNext.modules.json","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\byr04718ni-{0}-0i02oychrm-0i02oychrm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.008849557522"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"112"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"1KA3582Q2/tA0+cdRJztNonDmZZ3aFTsIlXYblwuK8w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CE+c7ulk9jNoFA+3UHSG2yOt3rfyHQQDAmYZ9fTpBe0="},{"Name":"original-resource","Value":"\"CE+c7ulk9jNoFA+3UHSG2yOt3rfyHQQDAmYZ9fTpBe0=\""}]},{"Route":"OnProfNext.modules.json","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\jsmodules\\jsmodules.build.manifest.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"137"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"CE+c7ulk9jNoFA+3UHSG2yOt3rfyHQQDAmYZ9fTpBe0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CE+c7ulk9jNoFA+3UHSG2yOt3rfyHQQDAmYZ9fTpBe0="}]},{"Route":"OnProfNext.modules.json.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\byr04718ni-{0}-0i02oychrm-0i02oychrm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"112"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"1KA3582Q2/tA0+cdRJztNonDmZZ3aFTsIlXYblwuK8w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1KA3582Q2/tA0+cdRJztNonDmZZ3aFTsIlXYblwuK8w="}]},{"Route":"OnProfNext.sif51eb7xk.styles.css","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\fixztrjlan-{0}-sif51eb7xk-sif51eb7xk.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.012658227848"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"78"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"e1xci9FnhjZKLfRTggJi4ZGIrW3ZuGNWybwpVURsUzc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Link","Value":"; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sif51eb7xk"},{"Name":"integrity","Value":"sha256-LBlTGafUdF+7cyLWp5h9/a1ppSj16g8eniJ/4XVjv84="},{"Name":"label","Value":"OnProfNext.styles.css"},{"Name":"original-resource","Value":"\"LBlTGafUdF+7cyLWp5h9/a1ppSj16g8eniJ/4XVjv84=\""}]},{"Route":"OnProfNext.sif51eb7xk.styles.css","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\scopedcss\\bundle\\OnProfNext.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"58"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LBlTGafUdF+7cyLWp5h9/a1ppSj16g8eniJ/4XVjv84=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Link","Value":"; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sif51eb7xk"},{"Name":"integrity","Value":"sha256-LBlTGafUdF+7cyLWp5h9/a1ppSj16g8eniJ/4XVjv84="},{"Name":"label","Value":"OnProfNext.styles.css"}]},{"Route":"OnProfNext.sif51eb7xk.styles.css.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\fixztrjlan-{0}-sif51eb7xk-sif51eb7xk.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"78"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"e1xci9FnhjZKLfRTggJi4ZGIrW3ZuGNWybwpVURsUzc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sif51eb7xk"},{"Name":"integrity","Value":"sha256-e1xci9FnhjZKLfRTggJi4ZGIrW3ZuGNWybwpVURsUzc="},{"Name":"label","Value":"OnProfNext.styles.css.gz"}]},{"Route":"OnProfNext.styles.css","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\fixztrjlan-{0}-sif51eb7xk-sif51eb7xk.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.012658227848"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"78"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"e1xci9FnhjZKLfRTggJi4ZGIrW3ZuGNWybwpVURsUzc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Link","Value":"; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LBlTGafUdF+7cyLWp5h9/a1ppSj16g8eniJ/4XVjv84="},{"Name":"original-resource","Value":"\"LBlTGafUdF+7cyLWp5h9/a1ppSj16g8eniJ/4XVjv84=\""}]},{"Route":"OnProfNext.styles.css","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\scopedcss\\bundle\\OnProfNext.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"58"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LBlTGafUdF+7cyLWp5h9/a1ppSj16g8eniJ/4XVjv84=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Link","Value":"; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LBlTGafUdF+7cyLWp5h9/a1ppSj16g8eniJ/4XVjv84="}]},{"Route":"OnProfNext.styles.css.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\fixztrjlan-{0}-sif51eb7xk-sif51eb7xk.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"78"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"e1xci9FnhjZKLfRTggJi4ZGIrW3ZuGNWybwpVURsUzc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-e1xci9FnhjZKLfRTggJi4ZGIrW3ZuGNWybwpVURsUzc="}]},{"Route":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js","AssetFile":"C:\\Users\\wiela\\.nuget\\packages\\microsoft.dotnet.hotreload.webassembly.browser\\10.0.201\\staticwebassets\\Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1862"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"A8e6zZwhOqf7lDQqbbCYcAUv4wGE9aQxOo4WyYxR//0=\""},{"Name":"Last-Modified","Value":"Wed, 04 Mar 2026 01:26:18 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"dependency-group","Value":"js-initializer"},{"Name":"fingerprint","Value":"99zm1jdh75"},{"Name":"integrity","Value":"sha256-A8e6zZwhOqf7lDQqbbCYcAUv4wGE9aQxOo4WyYxR//0="},{"Name":"label","Value":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\f9o902iofb-{0}-99zm1jdh75-99zm1jdh75.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"696"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"g7DwAhdgl0oKXmpsFbRzF03rilX1aNUWw1Xnn8Loe4k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-g7DwAhdgl0oKXmpsFbRzF03rilX1aNUWw1Xnn8Loe4k="}]},{"Route":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js","AssetFile":"C:\\Users\\wiela\\.nuget\\packages\\microsoft.dotnet.hotreload.webassembly.browser\\10.0.201\\staticwebassets\\Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1862"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"A8e6zZwhOqf7lDQqbbCYcAUv4wGE9aQxOo4WyYxR//0=\""},{"Name":"Last-Modified","Value":"Wed, 04 Mar 2026 01:26:18 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"dependency-group","Value":"js-initializer"},{"Name":"integrity","Value":"sha256-A8e6zZwhOqf7lDQqbbCYcAUv4wGE9aQxOo4WyYxR//0="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\f9o902iofb-{0}-99zm1jdh75-99zm1jdh75.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001434720230"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"696"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"g7DwAhdgl0oKXmpsFbRzF03rilX1aNUWw1Xnn8Loe4k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"dependency-group","Value":"js-initializer"},{"Name":"integrity","Value":"sha256-A8e6zZwhOqf7lDQqbbCYcAUv4wGE9aQxOo4WyYxR//0="},{"Name":"original-resource","Value":"\"A8e6zZwhOqf7lDQqbbCYcAUv4wGE9aQxOo4WyYxR//0=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/MudBlazor/MudBlazor.min.8dleymzaev.js","AssetFile":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"64944"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"VHJcGholtUHNobadpTrhyE/VCi90X4p12vYD83bzI04=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:27 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8dleymzaev"},{"Name":"integrity","Value":"sha256-VHJcGholtUHNobadpTrhyE/VCi90X4p12vYD83bzI04="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js"}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"607258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"kBmVfU2BqUZUT8HPz7NUnkObDjxYKbSWXF5q33paHM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kBmVfU2BqUZUT8HPz7NUnkObDjxYKbSWXF5q33paHM0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\tzxjg6is5z-{0}-o2b68hjqqd-o2b68hjqqd.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015266010"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65504"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"3NW/7qanjyyKjmM6tVvxaZsoz0x42qzljiuPWKrKuEA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kBmVfU2BqUZUT8HPz7NUnkObDjxYKbSWXF5q33paHM0="},{"Name":"original-resource","Value":"\"kBmVfU2BqUZUT8HPz7NUnkObDjxYKbSWXF5q33paHM0=\""}]},{"Route":"_content/MudBlazor/MudBlazor.min.css.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\tzxjg6is5z-{0}-o2b68hjqqd-o2b68hjqqd.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65504"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"3NW/7qanjyyKjmM6tVvxaZsoz0x42qzljiuPWKrKuEA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3NW/7qanjyyKjmM6tVvxaZsoz0x42qzljiuPWKrKuEA="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"64944"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"VHJcGholtUHNobadpTrhyE/VCi90X4p12vYD83bzI04=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VHJcGholtUHNobadpTrhyE/VCi90X4p12vYD83bzI04="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\0wz98yz2xy-{0}-8dleymzaev-8dleymzaev.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000063047727"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15860"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ydhcmXIIRl5uGo/vdFRnFzlF8jEiRYezMmXg9Omen8s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VHJcGholtUHNobadpTrhyE/VCi90X4p12vYD83bzI04="},{"Name":"original-resource","Value":"\"VHJcGholtUHNobadpTrhyE/VCi90X4p12vYD83bzI04=\""}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.0ykner63ol.map","AssetFile":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\MudBlazor.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"236222"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"yAPYxO0UcV5YvjmoVWBh8O+tMbwO9AMZv1RMPdpxE0Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:27 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0ykner63ol"},{"Name":"integrity","Value":"sha256-yAPYxO0UcV5YvjmoVWBh8O+tMbwO9AMZv1RMPdpxE0Q="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js.map"}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\0wz98yz2xy-{0}-8dleymzaev-8dleymzaev.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15860"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ydhcmXIIRl5uGo/vdFRnFzlF8jEiRYezMmXg9Omen8s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ydhcmXIIRl5uGo/vdFRnFzlF8jEiRYezMmXg9Omen8s="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.map","AssetFile":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\MudBlazor.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"236222"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"yAPYxO0UcV5YvjmoVWBh8O+tMbwO9AMZv1RMPdpxE0Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yAPYxO0UcV5YvjmoVWBh8O+tMbwO9AMZv1RMPdpxE0Q="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.map","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\o7k4cxtn0u-{0}-0ykner63ol-0ykner63ol.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000019868471"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"50330"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YnlPux4qBuGLWhihs+JuLReInvzFXtqDTWrJOmgWE5Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yAPYxO0UcV5YvjmoVWBh8O+tMbwO9AMZv1RMPdpxE0Q="},{"Name":"original-resource","Value":"\"yAPYxO0UcV5YvjmoVWBh8O+tMbwO9AMZv1RMPdpxE0Q=\""}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.map.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\o7k4cxtn0u-{0}-0ykner63ol-0ykner63ol.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"50330"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YnlPux4qBuGLWhihs+JuLReInvzFXtqDTWrJOmgWE5Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YnlPux4qBuGLWhihs+JuLReInvzFXtqDTWrJOmgWE5Y="}]},{"Route":"_content/MudBlazor/MudBlazor.min.o2b68hjqqd.css","AssetFile":"C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"607258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"kBmVfU2BqUZUT8HPz7NUnkObDjxYKbSWXF5q33paHM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 01:03:28 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"o2b68hjqqd"},{"Name":"integrity","Value":"sha256-kBmVfU2BqUZUT8HPz7NUnkObDjxYKbSWXF5q33paHM0="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.css"}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"45333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"roqc1km2rj"},{"Name":"integrity","Value":"sha256-G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Authorization.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5g3srlr8jx-{0}-roqc1km2rj-roqc1km2rj.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000050676532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"roqc1km2rj"},{"Name":"integrity","Value":"sha256-G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Authorization.wasm"},{"Name":"original-resource","Value":"\"G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5g3srlr8jx-{0}-roqc1km2rj-roqc1km2rj.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"roqc1km2rj"},{"Name":"integrity","Value":"sha256-6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Authorization.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"45333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc="}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5g3srlr8jx-{0}-roqc1km2rj-roqc1km2rj.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000050676532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc="},{"Name":"original-resource","Value":"\"G2MGZ9ewONcPR9sDqM6GscLX+imqgtCbSDJmYjkq0rc=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Authorization.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5g3srlr8jx-{0}-roqc1km2rj-roqc1km2rj.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6RbsaszehDYrZqEQQAzKB/FB+wDv6vvUz2eK6PuEUG8="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qlfvznror3-{0}-zrueb40r85-zrueb40r85.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000057547333"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17376"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ="},{"Name":"original-resource","Value":"\"sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qlfvznror3-{0}-zrueb40r85-zrueb40r85.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17376"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zrueb40r85"},{"Name":"integrity","Value":"sha256-sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Forms.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qlfvznror3-{0}-zrueb40r85-zrueb40r85.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000057547333"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17376"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zrueb40r85"},{"Name":"integrity","Value":"sha256-sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Forms.wasm"},{"Name":"original-resource","Value":"\"sTHEhK4OXluS5QYyGPIkfDxAb1DqOuLKpTaWfiJmwgQ=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qlfvznror3-{0}-zrueb40r85-zrueb40r85.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17376"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zrueb40r85"},{"Name":"integrity","Value":"sha256-FE210N5QIZ9mXq/9QGVr6IHvq1Muf80zwg0GMTL3nK0="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Forms.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"178965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g5qdp1mxha"},{"Name":"integrity","Value":"sha256-XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Web.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gx4y3aoczp-{0}-g5qdp1mxha-g5qdp1mxha.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013971749"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"71572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g5qdp1mxha"},{"Name":"integrity","Value":"sha256-XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Web.wasm"},{"Name":"original-resource","Value":"\"XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gx4y3aoczp-{0}-g5qdp1mxha-g5qdp1mxha.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"71572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g5qdp1mxha"},{"Name":"integrity","Value":"sha256-Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.Web.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"178965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gx4y3aoczp-{0}-g5qdp1mxha-g5qdp1mxha.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013971749"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"71572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU="},{"Name":"original-resource","Value":"\"XD2AzMV5aAT9HSLBN43quBUP/dVWw6qftqBWBucW0FU=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.Web.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gx4y3aoczp-{0}-g5qdp1mxha-g5qdp1mxha.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"71572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Dc0Ey4v7afGB0cdVgHcV+yL2eNu/jWwcECSHv79Rge0="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"155925"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9mjwvs1qyp"},{"Name":"integrity","Value":"sha256-r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mx4r46cpu7-{0}-9mjwvs1qyp-9mjwvs1qyp.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000016249330"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"61540"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9mjwvs1qyp"},{"Name":"integrity","Value":"sha256-r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm"},{"Name":"original-resource","Value":"\"r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mx4r46cpu7-{0}-9mjwvs1qyp-9mjwvs1qyp.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"61540"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9mjwvs1qyp"},{"Name":"integrity","Value":"sha256-WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"155925"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mx4r46cpu7-{0}-9mjwvs1qyp-9mjwvs1qyp.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000016249330"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"61540"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4="},{"Name":"original-resource","Value":"\"r9UsPiHtdLyFHAIaIW1zZQ8yD7DiKJiKfiRhAw3TsU4=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mx4r46cpu7-{0}-9mjwvs1qyp-9mjwvs1qyp.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"61540"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WW3zqxYZgC6c0x744kfDyH996GRKCtLwbg38aBdqe8A="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.uddsvpv1sv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"388885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uddsvpv1sv"},{"Name":"integrity","Value":"sha256-wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fs9spivh8g-{0}-uddsvpv1sv-uddsvpv1sv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006481638"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"154281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uddsvpv1sv"},{"Name":"integrity","Value":"sha256-wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.wasm"},{"Name":"original-resource","Value":"\"wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fs9spivh8g-{0}-uddsvpv1sv-uddsvpv1sv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"154281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uddsvpv1sv"},{"Name":"integrity","Value":"sha256-1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Components.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Components.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.uddsvpv1sv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"388885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4="}]},{"Route":"_framework/Microsoft.AspNetCore.Components.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fs9spivh8g-{0}-uddsvpv1sv-uddsvpv1sv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006481638"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"154281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4="},{"Name":"original-resource","Value":"\"wuWRCfk296hzRmhePje6J3ah5yXcxXEBd706DXJFRQ4=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Components.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fs9spivh8g-{0}-uddsvpv1sv-uddsvpv1sv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"154281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1H49SqUz/7MNAzx9vBLmysYCNU2I5EshH1qQHWo5oWk="}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m3mxap0jif"},{"Name":"integrity","Value":"sha256-3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Metadata.wasm"}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zpx4nb1yyz-{0}-m3mxap0jif-m3mxap0jif.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000405350628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2466"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m3mxap0jif"},{"Name":"integrity","Value":"sha256-3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Metadata.wasm"},{"Name":"original-resource","Value":"\"3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zpx4nb1yyz-{0}-m3mxap0jif-m3mxap0jif.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2466"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m3mxap0jif"},{"Name":"integrity","Value":"sha256-NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU="},{"Name":"label","Value":"_framework/Microsoft.AspNetCore.Metadata.wasm.gz"}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ="}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zpx4nb1yyz-{0}-m3mxap0jif-m3mxap0jif.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000405350628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2466"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ="},{"Name":"original-resource","Value":"\"3gPh5xu7hiWhbxpuO0oUdHzXtFNcg/mqHDIjIbFraGQ=\""}]},{"Route":"_framework/Microsoft.AspNetCore.Metadata.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zpx4nb1yyz-{0}-m3mxap0jif-m3mxap0jif.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2466"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NozvkViEpiahLH29YBwEtDpY2YjlYxwV778ktRBuEzU="}]},{"Route":"_framework/Microsoft.CSharp.452y5fjxmv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.CSharp.452y5fjxmv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"301333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"452y5fjxmv"},{"Name":"integrity","Value":"sha256-qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g="},{"Name":"label","Value":"_framework/Microsoft.CSharp.wasm"}]},{"Route":"_framework/Microsoft.CSharp.452y5fjxmv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\yva5srnvsu-{0}-452y5fjxmv-452y5fjxmv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000007583628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"131862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"452y5fjxmv"},{"Name":"integrity","Value":"sha256-qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g="},{"Name":"label","Value":"_framework/Microsoft.CSharp.wasm"},{"Name":"original-resource","Value":"\"qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g=\""}]},{"Route":"_framework/Microsoft.CSharp.452y5fjxmv.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\yva5srnvsu-{0}-452y5fjxmv-452y5fjxmv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"131862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"452y5fjxmv"},{"Name":"integrity","Value":"sha256-SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU="},{"Name":"label","Value":"_framework/Microsoft.CSharp.wasm.gz"}]},{"Route":"_framework/Microsoft.CSharp.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.CSharp.452y5fjxmv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"301333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g="}]},{"Route":"_framework/Microsoft.CSharp.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\yva5srnvsu-{0}-452y5fjxmv-452y5fjxmv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000007583628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"131862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g="},{"Name":"original-resource","Value":"\"qI8x1zR8xZT7o0t2zwwcmAEGPfyZIHRH0Os6hiHJS2g=\""}]},{"Route":"_framework/Microsoft.CSharp.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\yva5srnvsu-{0}-452y5fjxmv-452y5fjxmv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"131862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SfYbVnKsJOtJCb7Fw9IbTbXR9CzyktEiCGaQ0emUarU="}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"56085"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrhwg3a64c"},{"Name":"integrity","Value":"sha256-7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU="},{"Name":"label","Value":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm"}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3of7h5c6n8-{0}-hrhwg3a64c-hrhwg3a64c.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040950041"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrhwg3a64c"},{"Name":"integrity","Value":"sha256-7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU="},{"Name":"label","Value":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm"},{"Name":"original-resource","Value":"\"7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU=\""}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3of7h5c6n8-{0}-hrhwg3a64c-hrhwg3a64c.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrhwg3a64c"},{"Name":"integrity","Value":"sha256-2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw="},{"Name":"label","Value":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz"}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"56085"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU="}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3of7h5c6n8-{0}-hrhwg3a64c-hrhwg3a64c.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040950041"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU="},{"Name":"original-resource","Value":"\"7T3xXhofp38yBmdv6CI7STwXMpOeEHm6J4GkYs//NlU=\""}]},{"Route":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3of7h5c6n8-{0}-hrhwg3a64c-hrhwg3a64c.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2dMRVMwgnFA12IGJWjMlr8isVyqoZ1hL0eu/erHJHkw="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"thew1o6jcx"},{"Name":"integrity","Value":"sha256-YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\s4opith0ak-{0}-thew1o6jcx-thew1o6jcx.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000123502532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8096"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"thew1o6jcx"},{"Name":"integrity","Value":"sha256-YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm"},{"Name":"original-resource","Value":"\"YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\s4opith0ak-{0}-thew1o6jcx-thew1o6jcx.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8096"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"thew1o6jcx"},{"Name":"integrity","Value":"sha256-TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\s4opith0ak-{0}-thew1o6jcx-thew1o6jcx.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000123502532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8096"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0="},{"Name":"original-resource","Value":"\"YTLJpJ1JxkU9eodqZ+opZ9x9GpG21u85Vm+XqDhEnK0=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Abstractions.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\s4opith0ak-{0}-thew1o6jcx-thew1o6jcx.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8096"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TKp+ChqkE3DgVPWCAXiVMDc/ydldNGhjw44EUKg2Pis="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"33045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7o70008j8o"},{"Name":"integrity","Value":"sha256-KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Binder.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\11oooy7jd2-{0}-7o70008j8o-7o70008j8o.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000070556692"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14172"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7o70008j8o"},{"Name":"integrity","Value":"sha256-KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Binder.wasm"},{"Name":"original-resource","Value":"\"KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\11oooy7jd2-{0}-7o70008j8o-7o70008j8o.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14172"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7o70008j8o"},{"Name":"integrity","Value":"sha256-c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Binder.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"33045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\11oooy7jd2-{0}-7o70008j8o-7o70008j8o.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000070556692"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14172"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70="},{"Name":"original-resource","Value":"\"KZmgQYV5Lt7ByebbA6decx/7/5wBMmOPdRnvbbOBG70=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Binder.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\11oooy7jd2-{0}-7o70008j8o-7o70008j8o.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14172"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-c/GNU0MQFM2JbqQUc0caJ4yMICSJFO+rkG3AVgEl3dk="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ouivavlhyy"},{"Name":"integrity","Value":"sha256-MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vhumncwy1p-{0}-ouivavlhyy-ouivavlhyy.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000125219133"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7985"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ouivavlhyy"},{"Name":"integrity","Value":"sha256-MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm"},{"Name":"original-resource","Value":"\"MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vhumncwy1p-{0}-ouivavlhyy-ouivavlhyy.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7985"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ouivavlhyy"},{"Name":"integrity","Value":"sha256-a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vhumncwy1p-{0}-ouivavlhyy-ouivavlhyy.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000125219133"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7985"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8="},{"Name":"original-resource","Value":"\"MCcZhVRgzGEJYLBX4qKsBIbNBa/K/XrffR5G9te+hI8=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vhumncwy1p-{0}-ouivavlhyy-ouivavlhyy.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7985"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-a2mD905ysAAJpWnA0nvxtelgUC/3Jt/a0Fj73r//Q3o="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"17685"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"giv4t23za9"},{"Name":"integrity","Value":"sha256-iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Json.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\69vphje66t-{0}-giv4t23za9-giv4t23za9.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000127177922"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"giv4t23za9"},{"Name":"integrity","Value":"sha256-iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Json.wasm"},{"Name":"original-resource","Value":"\"iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\69vphje66t-{0}-giv4t23za9-giv4t23za9.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"giv4t23za9"},{"Name":"integrity","Value":"sha256-kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.Json.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"17685"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\69vphje66t-{0}-giv4t23za9-giv4t23za9.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000127177922"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg="},{"Name":"original-resource","Value":"\"iO3toOz+vT1gVcygKrktyq2sNdxAYEbsT8G/+wFpsNg=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.Json.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\69vphje66t-{0}-giv4t23za9-giv4t23za9.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kyOTAoZVHlTL2ygXO8m2lpIzyb/hdn4Y9i+7wF5sPVY="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fgwnqtu7qk"},{"Name":"integrity","Value":"sha256-D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\dnrp0xl7wy-{0}-fgwnqtu7qk-fgwnqtu7qk.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000064616180"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15475"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fgwnqtu7qk"},{"Name":"integrity","Value":"sha256-D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.wasm"},{"Name":"original-resource","Value":"\"D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\dnrp0xl7wy-{0}-fgwnqtu7qk-fgwnqtu7qk.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15475"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fgwnqtu7qk"},{"Name":"integrity","Value":"sha256-bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Configuration.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Configuration.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY="}]},{"Route":"_framework/Microsoft.Extensions.Configuration.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\dnrp0xl7wy-{0}-fgwnqtu7qk-fgwnqtu7qk.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000064616180"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15475"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY="},{"Name":"original-resource","Value":"\"D5KB5N8DmzgXD7IIQwluWKs42DZg7/JJfC1Ig3H58vY=\""}]},{"Route":"_framework/Microsoft.Extensions.Configuration.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\dnrp0xl7wy-{0}-fgwnqtu7qk-fgwnqtu7qk.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15475"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bsKX3IV7dNcOVpHYtJ2+xwPs7t7xKVBEeTrIRJZQUy0="}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ud13mwbta3"},{"Name":"integrity","Value":"sha256-PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kstk0dzyw1-{0}-ud13mwbta3-ud13mwbta3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000046012976"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ud13mwbta3"},{"Name":"integrity","Value":"sha256-PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm"},{"Name":"original-resource","Value":"\"PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM=\""}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kstk0dzyw1-{0}-ud13mwbta3-ud13mwbta3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ud13mwbta3"},{"Name":"integrity","Value":"sha256-UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM="}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kstk0dzyw1-{0}-ud13mwbta3-ud13mwbta3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000046012976"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM="},{"Name":"original-resource","Value":"\"PpBs/eBAhpaDsADGsob5OEbcNGTxc0pej98psWfWjrM=\""}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kstk0dzyw1-{0}-ud13mwbta3-ud13mwbta3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21732"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UEQ4WHUWNYKuxJ0Ox0DjAhfPo+MKzcGKYsaMc3ZOheU="}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"85269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vs620n44bv"},{"Name":"integrity","Value":"sha256-EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.wasm"}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\epsgnejg6l-{0}-vs620n44bv-vs620n44bv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000027365771"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"36541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vs620n44bv"},{"Name":"integrity","Value":"sha256-EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.wasm"},{"Name":"original-resource","Value":"\"EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ=\""}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\epsgnejg6l-{0}-vs620n44bv-vs620n44bv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"36541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vs620n44bv"},{"Name":"integrity","Value":"sha256-KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA="},{"Name":"label","Value":"_framework/Microsoft.Extensions.DependencyInjection.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"85269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ="}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\epsgnejg6l-{0}-vs620n44bv-vs620n44bv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000027365771"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"36541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ="},{"Name":"original-resource","Value":"\"EXUNskckZFDMuWWnJPnqOVoWea3we0Hxa95yYf+xjCQ=\""}]},{"Route":"_framework/Microsoft.Extensions.DependencyInjection.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\epsgnejg6l-{0}-vs620n44bv-vs620n44bv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"36541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KZjGZEOvPH9jGbObW9vf5d75pgpNOFJaU39IW0LomeA="}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"20757"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v59ymogeuz"},{"Name":"integrity","Value":"sha256-4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0o3yap4xcv-{0}-v59ymogeuz-v59ymogeuz.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000116468670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8585"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v59ymogeuz"},{"Name":"integrity","Value":"sha256-4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm"},{"Name":"original-resource","Value":"\"4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA=\""}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0o3yap4xcv-{0}-v59ymogeuz-v59ymogeuz.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8585"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v59ymogeuz"},{"Name":"integrity","Value":"sha256-q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"20757"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA="}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0o3yap4xcv-{0}-v59ymogeuz-v59ymogeuz.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000116468670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8585"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA="},{"Name":"original-resource","Value":"\"4xgO9yBlTZBNJ+KR0SBjKSeMqh6CoSOevMehMsXhayA=\""}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0o3yap4xcv-{0}-v59ymogeuz-v59ymogeuz.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8585"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-q/1QB4fuP6upiGpsSRq+LbUmBK7AQE/6++TDcsp4qV4="}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"25877"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jnogfbng3i"},{"Name":"integrity","Value":"sha256-MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3rwukvhyra-{0}-jnogfbng3i-jnogfbng3i.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000082706145"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12090"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jnogfbng3i"},{"Name":"integrity","Value":"sha256-MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.wasm"},{"Name":"original-resource","Value":"\"MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo=\""}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3rwukvhyra-{0}-jnogfbng3i-jnogfbng3i.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12090"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jnogfbng3i"},{"Name":"integrity","Value":"sha256-UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Diagnostics.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"25877"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo="}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3rwukvhyra-{0}-jnogfbng3i-jnogfbng3i.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000082706145"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12090"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo="},{"Name":"original-resource","Value":"\"MTR1NLwrzXe0SPvtvttyL6zsX1lCjgPnydpz4nW6Mxo=\""}]},{"Route":"_framework/Microsoft.Extensions.Diagnostics.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3rwukvhyra-{0}-jnogfbng3i-jnogfbng3i.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12090"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UdItVfuhkpcxxSJrx4KqFZstfcANE7TRaQVjIChRpbk="}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ssv83rveyv"},{"Name":"integrity","Value":"sha256-/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ezxlu8d1x1-{0}-ssv83rveyv-ssv83rveyv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000176897223"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5652"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ssv83rveyv"},{"Name":"integrity","Value":"sha256-/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm"},{"Name":"original-resource","Value":"\"/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8=\""}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ezxlu8d1x1-{0}-ssv83rveyv-ssv83rveyv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5652"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ssv83rveyv"},{"Name":"integrity","Value":"sha256-kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8="}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ezxlu8d1x1-{0}-ssv83rveyv-ssv83rveyv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000176897223"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5652"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8="},{"Name":"original-resource","Value":"\"/PFqFXaxbeZtTuMqYl7uXeq55WoiDe+nDrHTrlVW2g8=\""}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ezxlu8d1x1-{0}-ssv83rveyv-ssv83rveyv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5652"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kBmLxswDq6QGLJgwvNNPflQHv38f5KJ81SIZ/4uSpM4="}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"35093"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8gz29xpyh3"},{"Name":"integrity","Value":"sha256-CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm"}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\keeokmerp8-{0}-8gz29xpyh3-8gz29xpyh3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060793969"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16448"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8gz29xpyh3"},{"Name":"integrity","Value":"sha256-CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm"},{"Name":"original-resource","Value":"\"CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0=\""}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\keeokmerp8-{0}-8gz29xpyh3-8gz29xpyh3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16448"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8gz29xpyh3"},{"Name":"integrity","Value":"sha256-RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"35093"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0="}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\keeokmerp8-{0}-8gz29xpyh3-8gz29xpyh3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060793969"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16448"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0="},{"Name":"original-resource","Value":"\"CANeN+322fHd0OgWgAUihPoGE2ex6PFJyPr5d8zQtJ0=\""}]},{"Route":"_framework/Microsoft.Extensions.FileProviders.Physical.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\keeokmerp8-{0}-8gz29xpyh3-8gz29xpyh3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16448"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RHV3CJQakddd0gP9OJ2lMfi1qPJWUCHG9GrVOyEfEoo="}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozuva4e3vv"},{"Name":"integrity","Value":"sha256-pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm"}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\l2v44xhbzj-{0}-ozuva4e3vv-ozuva4e3vv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000058941412"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozuva4e3vv"},{"Name":"integrity","Value":"sha256-pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm"},{"Name":"original-resource","Value":"\"pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI=\""}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\l2v44xhbzj-{0}-ozuva4e3vv-ozuva4e3vv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozuva4e3vv"},{"Name":"integrity","Value":"sha256-QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI="}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\l2v44xhbzj-{0}-ozuva4e3vv-ozuva4e3vv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000058941412"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI="},{"Name":"original-resource","Value":"\"pCgKh5A1+oYM/NUWTY2YuRJWcTqq4NncrT0aVTHxqkI=\""}]},{"Route":"_framework/Microsoft.Extensions.FileSystemGlobbing.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\l2v44xhbzj-{0}-ozuva4e3vv-ozuva4e3vv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QHdjcuh0f/nCH2QuxmXIIorfzdoSe3cf8Pnjy0zQjkY="}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"8981"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6jkolue1ka"},{"Name":"integrity","Value":"sha256-8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tezhiquus4-{0}-6jkolue1ka-6jkolue1ka.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000261164795"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6jkolue1ka"},{"Name":"integrity","Value":"sha256-8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm"},{"Name":"original-resource","Value":"\"8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4=\""}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tezhiquus4-{0}-6jkolue1ka-6jkolue1ka.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6jkolue1ka"},{"Name":"integrity","Value":"sha256-5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"8981"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4="}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tezhiquus4-{0}-6jkolue1ka-6jkolue1ka.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000261164795"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4="},{"Name":"original-resource","Value":"\"8grIRMMlBKEKAmoTlVDM1GNP0SIWIFWIJHeqfc6fel4=\""}]},{"Route":"_framework/Microsoft.Extensions.Localization.Abstractions.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tezhiquus4-{0}-6jkolue1ka-6jkolue1ka.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5eCZruCWTw+zLYZJTOTUJtR79dWEtHkCiTAFzBQBlK8="}]},{"Route":"_framework/Microsoft.Extensions.Localization.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Localization.xcslyy3nju.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"21269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs="}]},{"Route":"_framework/Microsoft.Extensions.Localization.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\84jx0dmgdc-{0}-xcslyy3nju-xcslyy3nju.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000100050025"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9994"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs="},{"Name":"original-resource","Value":"\"L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs=\""}]},{"Route":"_framework/Microsoft.Extensions.Localization.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\84jx0dmgdc-{0}-xcslyy3nju-xcslyy3nju.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9994"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM="}]},{"Route":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Localization.xcslyy3nju.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"21269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xcslyy3nju"},{"Name":"integrity","Value":"sha256-L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\84jx0dmgdc-{0}-xcslyy3nju-xcslyy3nju.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000100050025"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9994"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xcslyy3nju"},{"Name":"integrity","Value":"sha256-L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.wasm"},{"Name":"original-resource","Value":"\"L2P/tLhZ6FSR1KG27vIE/jer8JBjOAPRMf7D9eFEUNs=\""}]},{"Route":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\84jx0dmgdc-{0}-xcslyy3nju-xcslyy3nju.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9994"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xcslyy3nju"},{"Name":"integrity","Value":"sha256-LSxjmeHtWzZi6I0c5vFoBakdOm3kHZRaoULjCsVVeoM="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Localization.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"56597"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1q3x7vre4l"},{"Name":"integrity","Value":"sha256-5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sn0mpm6uvc-{0}-1q3x7vre4l-1q3x7vre4l.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040832993"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1q3x7vre4l"},{"Name":"integrity","Value":"sha256-5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm"},{"Name":"original-resource","Value":"\"5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI=\""}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sn0mpm6uvc-{0}-1q3x7vre4l-1q3x7vre4l.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1q3x7vre4l"},{"Name":"integrity","Value":"sha256-wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"56597"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI="}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sn0mpm6uvc-{0}-1q3x7vre4l-1q3x7vre4l.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040832993"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI="},{"Name":"original-resource","Value":"\"5/skwcro+miLeAW0+DIiiy2N9/0lMXvcH7LyAr9wacI=\""}]},{"Route":"_framework/Microsoft.Extensions.Logging.Abstractions.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sn0mpm6uvc-{0}-1q3x7vre4l-1q3x7vre4l.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wUfYq4DcofbxDCzv6Td8lKn/aMvRiwXkqp4xkN1bZOo="}]},{"Route":"_framework/Microsoft.Extensions.Logging.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Logging.y4ydx3rk2c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"41237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis="}]},{"Route":"_framework/Microsoft.Extensions.Logging.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\oix89w3uk2-{0}-y4ydx3rk2c-y4ydx3rk2c.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053708577"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18618"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis="},{"Name":"original-resource","Value":"\"7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis=\""}]},{"Route":"_framework/Microsoft.Extensions.Logging.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\oix89w3uk2-{0}-y4ydx3rk2c-y4ydx3rk2c.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18618"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q="}]},{"Route":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Logging.y4ydx3rk2c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"41237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y4ydx3rk2c"},{"Name":"integrity","Value":"sha256-7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\oix89w3uk2-{0}-y4ydx3rk2c-y4ydx3rk2c.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053708577"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18618"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y4ydx3rk2c"},{"Name":"integrity","Value":"sha256-7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.wasm"},{"Name":"original-resource","Value":"\"7rQS5FTbW6HOY7Az4Q4xfopDObDh6RaYVVBpy2gddis=\""}]},{"Route":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\oix89w3uk2-{0}-y4ydx3rk2c-y4ydx3rk2c.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18618"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y4ydx3rk2c"},{"Name":"integrity","Value":"sha256-CtiF9zYgjHiwqpDd9X2Bj9BmMDOBQ1dEIu1fm9P+I9Q="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Logging.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Options.2rz5zbidnd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55061"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2rz5zbidnd"},{"Name":"integrity","Value":"sha256-PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\u4abyqnekj-{0}-2rz5zbidnd-2rz5zbidnd.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000042529664"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23512"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2rz5zbidnd"},{"Name":"integrity","Value":"sha256-PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.wasm"},{"Name":"original-resource","Value":"\"PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY=\""}]},{"Route":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\u4abyqnekj-{0}-2rz5zbidnd-2rz5zbidnd.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23512"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2rz5zbidnd"},{"Name":"integrity","Value":"sha256-nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U="}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ozc2mb3rdz-{0}-zmb03w0weu-zmb03w0weu.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000196001568"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U="},{"Name":"original-resource","Value":"\"652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U=\""}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ozc2mb3rdz-{0}-zmb03w0weu-zmb03w0weu.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I="}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zmb03w0weu"},{"Name":"integrity","Value":"sha256-652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ozc2mb3rdz-{0}-zmb03w0weu-zmb03w0weu.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000196001568"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zmb03w0weu"},{"Name":"integrity","Value":"sha256-652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm"},{"Name":"original-resource","Value":"\"652PeC0NOeRXAGuKIVsw6IOAbOjqYxwiAQzRSRNZX6U=\""}]},{"Route":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ozc2mb3rdz-{0}-zmb03w0weu-zmb03w0weu.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zmb03w0weu"},{"Name":"integrity","Value":"sha256-i1zEjdBZKbXswBX6kHTGH0+YyPT+plGhxAd/Yi/2l4I="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Options.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Options.2rz5zbidnd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"55061"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY="}]},{"Route":"_framework/Microsoft.Extensions.Options.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\u4abyqnekj-{0}-2rz5zbidnd-2rz5zbidnd.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000042529664"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23512"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY="},{"Name":"original-resource","Value":"\"PrPNB4uF87saF4wn4wOtUMtwGEGphK6czOeS2ZoS8xY=\""}]},{"Route":"_framework/Microsoft.Extensions.Options.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\u4abyqnekj-{0}-2rz5zbidnd-2rz5zbidnd.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23512"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nzeBvV+gl9ds4rfJfKt/1OnDZ4xfDhMSLAA9qgj/Rk4="}]},{"Route":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.bd164v6l3f.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bd164v6l3f"},{"Name":"integrity","Value":"sha256-b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Primitives.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\co27dkpaxa-{0}-bd164v6l3f-bd164v6l3f.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000065582371"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15247"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bd164v6l3f"},{"Name":"integrity","Value":"sha256-b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Primitives.wasm"},{"Name":"original-resource","Value":"\"b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo=\""}]},{"Route":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\co27dkpaxa-{0}-bd164v6l3f-bd164v6l3f.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15247"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bd164v6l3f"},{"Name":"integrity","Value":"sha256-WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Primitives.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Primitives.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.bd164v6l3f.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo="}]},{"Route":"_framework/Microsoft.Extensions.Primitives.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\co27dkpaxa-{0}-bd164v6l3f-bd164v6l3f.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000065582371"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15247"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo="},{"Name":"original-resource","Value":"\"b0zJNvj5YDRD34cwkYLJ2wyQ4DRqQhXtTuJ+XlS9/zo=\""}]},{"Route":"_framework/Microsoft.Extensions.Primitives.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\co27dkpaxa-{0}-bd164v6l3f-bd164v6l3f.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15247"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WXG6UXmXjCzHviXDMc0aqNvTq43lX3GbhBJpkp0bkC8="}]},{"Route":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Validation.r1sv3m5lsf.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"33045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r1sv3m5lsf"},{"Name":"integrity","Value":"sha256-QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Validation.wasm"}]},{"Route":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fappprmifz-{0}-r1sv3m5lsf-r1sv3m5lsf.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000069232899"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14443"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r1sv3m5lsf"},{"Name":"integrity","Value":"sha256-QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Validation.wasm"},{"Name":"original-resource","Value":"\"QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk=\""}]},{"Route":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fappprmifz-{0}-r1sv3m5lsf-r1sv3m5lsf.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14443"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r1sv3m5lsf"},{"Name":"integrity","Value":"sha256-4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0="},{"Name":"label","Value":"_framework/Microsoft.Extensions.Validation.wasm.gz"}]},{"Route":"_framework/Microsoft.Extensions.Validation.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Extensions.Validation.r1sv3m5lsf.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"33045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk="}]},{"Route":"_framework/Microsoft.Extensions.Validation.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fappprmifz-{0}-r1sv3m5lsf-r1sv3m5lsf.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000069232899"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14443"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk="},{"Name":"original-resource","Value":"\"QdXTsh7zkwbh9Mf0A/ImTlaiefipVUlZ6uvOUX6C+Xk=\""}]},{"Route":"_framework/Microsoft.Extensions.Validation.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fappprmifz-{0}-r1sv3m5lsf-r1sv3m5lsf.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14443"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4ntd2XiZhXbhHrdABGWFl5j2WrqYU9CHO0+QjMnaGM0="}]},{"Route":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.JSInterop.1r0ampr2q1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"64789"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1r0ampr2q1"},{"Name":"integrity","Value":"sha256-TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.wasm"}]},{"Route":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\pro4ajsvfg-{0}-1r0ampr2q1-1r0ampr2q1.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000036331928"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"27523"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1r0ampr2q1"},{"Name":"integrity","Value":"sha256-TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.wasm"},{"Name":"original-resource","Value":"\"TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA=\""}]},{"Route":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\pro4ajsvfg-{0}-1r0ampr2q1-1r0ampr2q1.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"27523"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1r0ampr2q1"},{"Name":"integrity","Value":"sha256-5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.wasm.gz"}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"14613"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oz8fkrrrd6"},{"Name":"integrity","Value":"sha256-vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.WebAssembly.wasm"}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6mv5cent6u-{0}-oz8fkrrrd6-oz8fkrrrd6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000145730108"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oz8fkrrrd6"},{"Name":"integrity","Value":"sha256-vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.WebAssembly.wasm"},{"Name":"original-resource","Value":"\"vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU=\""}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6mv5cent6u-{0}-oz8fkrrrd6-oz8fkrrrd6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oz8fkrrrd6"},{"Name":"integrity","Value":"sha256-50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA="},{"Name":"label","Value":"_framework/Microsoft.JSInterop.WebAssembly.wasm.gz"}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"14613"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU="}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6mv5cent6u-{0}-oz8fkrrrd6-oz8fkrrrd6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000145730108"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU="},{"Name":"original-resource","Value":"\"vNQI+7PzYwneCfXCfLMKUdjpMicKS0Ihwi/xu1KAywU=\""}]},{"Route":"_framework/Microsoft.JSInterop.WebAssembly.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6mv5cent6u-{0}-oz8fkrrrd6-oz8fkrrrd6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-50Y32GddVqMuzHg822Lvotaht0JmJLbVvMPT+sJ6bbA="}]},{"Route":"_framework/Microsoft.JSInterop.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.JSInterop.1r0ampr2q1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"64789"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA="}]},{"Route":"_framework/Microsoft.JSInterop.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\pro4ajsvfg-{0}-1r0ampr2q1-1r0ampr2q1.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000036331928"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"27523"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA="},{"Name":"original-resource","Value":"\"TSwG0RXuP19z/VcPtEg0e8LJSFS4rFKf01zHcqNJaKA=\""}]},{"Route":"_framework/Microsoft.JSInterop.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\pro4ajsvfg-{0}-1r0ampr2q1-1r0ampr2q1.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"27523"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5NWw0RiMY0Fm2mcJ8VUQy+Irp2YOHr+s+5gqJXTt/C0="}]},{"Route":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.VisualBasic.91iw3j3d9p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"91iw3j3d9p"},{"Name":"integrity","Value":"sha256-TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.wasm"}]},{"Route":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\akapjt0sxo-{0}-91iw3j3d9p-91iw3j3d9p.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000349162011"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2863"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"91iw3j3d9p"},{"Name":"integrity","Value":"sha256-TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.wasm"},{"Name":"original-resource","Value":"\"TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM=\""}]},{"Route":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\akapjt0sxo-{0}-91iw3j3d9p-91iw3j3d9p.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2863"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"91iw3j3d9p"},{"Name":"integrity","Value":"sha256-O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.wasm.gz"}]},{"Route":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.re3geseai5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"418581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"re3geseai5"},{"Name":"integrity","Value":"sha256-vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.Core.wasm"}]},{"Route":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\du4skpg5oq-{0}-re3geseai5-re3geseai5.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005991109"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"166913"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"re3geseai5"},{"Name":"integrity","Value":"sha256-vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.Core.wasm"},{"Name":"original-resource","Value":"\"vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0=\""}]},{"Route":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\du4skpg5oq-{0}-re3geseai5-re3geseai5.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"166913"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"re3geseai5"},{"Name":"integrity","Value":"sha256-09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc="},{"Name":"label","Value":"_framework/Microsoft.VisualBasic.Core.wasm.gz"}]},{"Route":"_framework/Microsoft.VisualBasic.Core.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.re3geseai5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"418581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0="}]},{"Route":"_framework/Microsoft.VisualBasic.Core.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\du4skpg5oq-{0}-re3geseai5-re3geseai5.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005991109"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"166913"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0="},{"Name":"original-resource","Value":"\"vWy86fZ2jrmML8i9uG6vpskGWNYsPobE7GNKaElcK+0=\""}]},{"Route":"_framework/Microsoft.VisualBasic.Core.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\du4skpg5oq-{0}-re3geseai5-re3geseai5.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"166913"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-09qPDugEWC730ER7vOQXX1S7aDAk1dUPNS5M8c9vcuc="}]},{"Route":"_framework/Microsoft.VisualBasic.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.VisualBasic.91iw3j3d9p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM="}]},{"Route":"_framework/Microsoft.VisualBasic.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\akapjt0sxo-{0}-91iw3j3d9p-91iw3j3d9p.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000349162011"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2863"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM="},{"Name":"original-resource","Value":"\"TaKBjR51XLJb2PIo8OsUrQyrnjijpg4dE22qOC/odlM=\""}]},{"Route":"_framework/Microsoft.VisualBasic.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\akapjt0sxo-{0}-91iw3j3d9p-91iw3j3d9p.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2863"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-O0ns9FlIVZvwF/JPEVtZ3lsOMrTWJW6cZrCkOHYX2as="}]},{"Route":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Win32.Primitives.2mjytoh92q.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mjytoh92q"},{"Name":"integrity","Value":"sha256-NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM="},{"Name":"label","Value":"_framework/Microsoft.Win32.Primitives.wasm"}]},{"Route":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i7n8kqec4e-{0}-2mjytoh92q-2mjytoh92q.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000451059991"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2216"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mjytoh92q"},{"Name":"integrity","Value":"sha256-NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM="},{"Name":"label","Value":"_framework/Microsoft.Win32.Primitives.wasm"},{"Name":"original-resource","Value":"\"NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM=\""}]},{"Route":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i7n8kqec4e-{0}-2mjytoh92q-2mjytoh92q.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2216"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mjytoh92q"},{"Name":"integrity","Value":"sha256-JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As="},{"Name":"label","Value":"_framework/Microsoft.Win32.Primitives.wasm.gz"}]},{"Route":"_framework/Microsoft.Win32.Primitives.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Win32.Primitives.2mjytoh92q.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM="}]},{"Route":"_framework/Microsoft.Win32.Primitives.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i7n8kqec4e-{0}-2mjytoh92q-2mjytoh92q.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000451059991"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2216"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM="},{"Name":"original-resource","Value":"\"NnsWCzlYsbSXluNe5+VlC4yRnnlsr8U/R6g+b+7loWM=\""}]},{"Route":"_framework/Microsoft.Win32.Primitives.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i7n8kqec4e-{0}-2mjytoh92q-2mjytoh92q.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2216"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JLc1QOuDYEW3x7c6/ET/9JZuHuYStXo7vQASw39f2As="}]},{"Route":"_framework/Microsoft.Win32.Registry.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Win32.Registry.yz8nt3ycsq.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU="}]},{"Route":"_framework/Microsoft.Win32.Registry.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\553rwsqb4a-{0}-yz8nt3ycsq-yz8nt3ycsq.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000109733348"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9112"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU="},{"Name":"original-resource","Value":"\"sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU=\""}]},{"Route":"_framework/Microsoft.Win32.Registry.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\553rwsqb4a-{0}-yz8nt3ycsq-yz8nt3ycsq.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9112"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk="}]},{"Route":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\Microsoft.Win32.Registry.yz8nt3ycsq.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yz8nt3ycsq"},{"Name":"integrity","Value":"sha256-sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU="},{"Name":"label","Value":"_framework/Microsoft.Win32.Registry.wasm"}]},{"Route":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\553rwsqb4a-{0}-yz8nt3ycsq-yz8nt3ycsq.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000109733348"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9112"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yz8nt3ycsq"},{"Name":"integrity","Value":"sha256-sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU="},{"Name":"label","Value":"_framework/Microsoft.Win32.Registry.wasm"},{"Name":"original-resource","Value":"\"sinZAashymf16TV/TJcbeDp0w84/AvwQd3GjkUofxXU=\""}]},{"Route":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\553rwsqb4a-{0}-yz8nt3ycsq-yz8nt3ycsq.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9112"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yz8nt3ycsq"},{"Name":"integrity","Value":"sha256-gj2ERPP/2Aw1VtWaqPmMYJqtTgNTXoJ1+jM0Wgt/8Nk="},{"Name":"label","Value":"_framework/Microsoft.Win32.Registry.wasm.gz"}]},{"Route":"_framework/MudBlazor.k6079czmkm.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\MudBlazor.k6079czmkm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10119449"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6079czmkm"},{"Name":"integrity","Value":"sha256-rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI="},{"Name":"label","Value":"_framework/MudBlazor.wasm"}]},{"Route":"_framework/MudBlazor.k6079czmkm.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\w2iaa8sc3u-{0}-k6079czmkm-k6079czmkm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000444516"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2249638"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6079czmkm"},{"Name":"integrity","Value":"sha256-rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI="},{"Name":"label","Value":"_framework/MudBlazor.wasm"},{"Name":"original-resource","Value":"\"rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI=\""}]},{"Route":"_framework/MudBlazor.k6079czmkm.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\w2iaa8sc3u-{0}-k6079czmkm-k6079czmkm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2249638"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6079czmkm"},{"Name":"integrity","Value":"sha256-dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM="},{"Name":"label","Value":"_framework/MudBlazor.wasm.gz"}]},{"Route":"_framework/MudBlazor.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\MudBlazor.k6079czmkm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10119449"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI="}]},{"Route":"_framework/MudBlazor.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\w2iaa8sc3u-{0}-k6079czmkm-k6079czmkm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000444516"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2249638"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI="},{"Name":"original-resource","Value":"\"rAWwqD56vrMaVnbnDn2OUp7WOeNWO7wmZlQczvKeZLI=\""}]},{"Route":"_framework/MudBlazor.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\w2iaa8sc3u-{0}-k6079czmkm-k6079czmkm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2249638"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dYfdbZQgaoBzURDR4ktTrN2o+X9BWw8vX3qCAw5LhvM="}]},{"Route":"_framework/OnProfNext.Client.lplk7v275j.pdb","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\OnProfNext.Client.lplk7v275j.pdb","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"33624"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lplk7v275j"},{"Name":"integrity","Value":"sha256-FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0="},{"Name":"label","Value":"_framework/OnProfNext.Client.pdb"}]},{"Route":"_framework/OnProfNext.Client.lplk7v275j.pdb","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\cycczivqx5-{0}-lplk7v275j-lplk7v275j.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038227761"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26158"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lplk7v275j"},{"Name":"integrity","Value":"sha256-FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0="},{"Name":"label","Value":"_framework/OnProfNext.Client.pdb"},{"Name":"original-resource","Value":"\"FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0=\""}]},{"Route":"_framework/OnProfNext.Client.lplk7v275j.pdb.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\cycczivqx5-{0}-lplk7v275j-lplk7v275j.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26158"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lplk7v275j"},{"Name":"integrity","Value":"sha256-4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU="},{"Name":"label","Value":"_framework/OnProfNext.Client.pdb.gz"}]},{"Route":"_framework/OnProfNext.Client.pdb","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\OnProfNext.Client.lplk7v275j.pdb","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"33624"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0="}]},{"Route":"_framework/OnProfNext.Client.pdb","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\cycczivqx5-{0}-lplk7v275j-lplk7v275j.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038227761"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26158"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0="},{"Name":"original-resource","Value":"\"FzJxB1kObDXtJl6LQBqdztVtUDsN/MYYii9cIVIw0V0=\""}]},{"Route":"_framework/OnProfNext.Client.pdb.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\cycczivqx5-{0}-lplk7v275j-lplk7v275j.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26158"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4t9CIgwfVKHyonkU3M4oR4j21FL9IWe7hT9/E+kCrzU="}]},{"Route":"_framework/OnProfNext.Client.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\OnProfNext.Client.xhq6acanj0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"42261"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc="}]},{"Route":"_framework/OnProfNext.Client.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\f6u1msztxb-{0}-xhq6acanj0-xhq6acanj0.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067344602"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14848"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc="},{"Name":"original-resource","Value":"\"pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc=\""}]},{"Route":"_framework/OnProfNext.Client.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\f6u1msztxb-{0}-xhq6acanj0-xhq6acanj0.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14848"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA="}]},{"Route":"_framework/OnProfNext.Client.xhq6acanj0.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\OnProfNext.Client.xhq6acanj0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"42261"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xhq6acanj0"},{"Name":"integrity","Value":"sha256-pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc="},{"Name":"label","Value":"_framework/OnProfNext.Client.wasm"}]},{"Route":"_framework/OnProfNext.Client.xhq6acanj0.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\f6u1msztxb-{0}-xhq6acanj0-xhq6acanj0.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067344602"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14848"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xhq6acanj0"},{"Name":"integrity","Value":"sha256-pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc="},{"Name":"label","Value":"_framework/OnProfNext.Client.wasm"},{"Name":"original-resource","Value":"\"pSUmCc6Q8OM1kfj4eQFTSxUS3rQozwExYZDhrDC6qFc=\""}]},{"Route":"_framework/OnProfNext.Client.xhq6acanj0.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\f6u1msztxb-{0}-xhq6acanj0-xhq6acanj0.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14848"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xhq6acanj0"},{"Name":"integrity","Value":"sha256-UpcYtCysWW66DCWFE1NGB3ylC1GIjonn0tNk8t/IxWA="},{"Name":"label","Value":"_framework/OnProfNext.Client.wasm.gz"}]},{"Route":"_framework/System.7rk3uansaa.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.7rk3uansaa.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"39701"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7rk3uansaa"},{"Name":"integrity","Value":"sha256-00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q="},{"Name":"label","Value":"_framework/System.wasm"}]},{"Route":"_framework/System.7rk3uansaa.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5onvg4v1ie-{0}-7rk3uansaa-7rk3uansaa.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000084875233"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7rk3uansaa"},{"Name":"integrity","Value":"sha256-00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q="},{"Name":"label","Value":"_framework/System.wasm"},{"Name":"original-resource","Value":"\"00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q=\""}]},{"Route":"_framework/System.7rk3uansaa.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5onvg4v1ie-{0}-7rk3uansaa-7rk3uansaa.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7rk3uansaa"},{"Name":"integrity","Value":"sha256-KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI="},{"Name":"label","Value":"_framework/System.wasm.gz"}]},{"Route":"_framework/System.AppContext.uwq3fpef1w.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.AppContext.uwq3fpef1w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uwq3fpef1w"},{"Name":"integrity","Value":"sha256-/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA="},{"Name":"label","Value":"_framework/System.AppContext.wasm"}]},{"Route":"_framework/System.AppContext.uwq3fpef1w.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jcwxb5s78i-{0}-uwq3fpef1w-uwq3fpef1w.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000472589792"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2115"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uwq3fpef1w"},{"Name":"integrity","Value":"sha256-/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA="},{"Name":"label","Value":"_framework/System.AppContext.wasm"},{"Name":"original-resource","Value":"\"/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA=\""}]},{"Route":"_framework/System.AppContext.uwq3fpef1w.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jcwxb5s78i-{0}-uwq3fpef1w-uwq3fpef1w.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2115"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uwq3fpef1w"},{"Name":"integrity","Value":"sha256-Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8="},{"Name":"label","Value":"_framework/System.AppContext.wasm.gz"}]},{"Route":"_framework/System.AppContext.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.AppContext.uwq3fpef1w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA="}]},{"Route":"_framework/System.AppContext.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jcwxb5s78i-{0}-uwq3fpef1w-uwq3fpef1w.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000472589792"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2115"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA="},{"Name":"original-resource","Value":"\"/r2mIP99iJhZh+H7qzKreHvUN124Hpvx8VQVL153+DA=\""}]},{"Route":"_framework/System.AppContext.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jcwxb5s78i-{0}-uwq3fpef1w-uwq3fpef1w.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2115"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bpe6MQ1/xgbnN456ByZfdL9VGWhrYbgM3vjJeD40xf8="}]},{"Route":"_framework/System.Buffers.m4yhcvz2y2.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Buffers.m4yhcvz2y2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m4yhcvz2y2"},{"Name":"integrity","Value":"sha256-+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g="},{"Name":"label","Value":"_framework/System.Buffers.wasm"}]},{"Route":"_framework/System.Buffers.m4yhcvz2y2.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8u2rup9szd-{0}-m4yhcvz2y2-m4yhcvz2y2.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000472143532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2117"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m4yhcvz2y2"},{"Name":"integrity","Value":"sha256-+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g="},{"Name":"label","Value":"_framework/System.Buffers.wasm"},{"Name":"original-resource","Value":"\"+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g=\""}]},{"Route":"_framework/System.Buffers.m4yhcvz2y2.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8u2rup9szd-{0}-m4yhcvz2y2-m4yhcvz2y2.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2117"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m4yhcvz2y2"},{"Name":"integrity","Value":"sha256-Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g="},{"Name":"label","Value":"_framework/System.Buffers.wasm.gz"}]},{"Route":"_framework/System.Buffers.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Buffers.m4yhcvz2y2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g="}]},{"Route":"_framework/System.Buffers.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8u2rup9szd-{0}-m4yhcvz2y2-m4yhcvz2y2.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000472143532"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2117"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g="},{"Name":"original-resource","Value":"\"+iDgAF9PtIHWe2dO+xAT40YPLenBJIBcAzxtX+LiH5g=\""}]},{"Route":"_framework/System.Buffers.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8u2rup9szd-{0}-m4yhcvz2y2-m4yhcvz2y2.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2117"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Hg+zsjLM0iUTT3aURoeW5VhtVtoqdxqbhKGZIGeZh+g="}]},{"Route":"_framework/System.Collections.63jrcion39.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.63jrcion39.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"102677"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63jrcion39"},{"Name":"integrity","Value":"sha256-Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg="},{"Name":"label","Value":"_framework/System.Collections.wasm"}]},{"Route":"_framework/System.Collections.63jrcion39.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3zhncs8zdy-{0}-63jrcion39-63jrcion39.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023100023"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"43289"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63jrcion39"},{"Name":"integrity","Value":"sha256-Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg="},{"Name":"label","Value":"_framework/System.Collections.wasm"},{"Name":"original-resource","Value":"\"Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg=\""}]},{"Route":"_framework/System.Collections.63jrcion39.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3zhncs8zdy-{0}-63jrcion39-63jrcion39.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"43289"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63jrcion39"},{"Name":"integrity","Value":"sha256-vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU="},{"Name":"label","Value":"_framework/System.Collections.wasm.gz"}]},{"Route":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.Concurrent.1zv6wuzklu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"78613"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1zv6wuzklu"},{"Name":"integrity","Value":"sha256-XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw="},{"Name":"label","Value":"_framework/System.Collections.Concurrent.wasm"}]},{"Route":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\niv8zsbxhl-{0}-1zv6wuzklu-1zv6wuzklu.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029696502"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33673"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1zv6wuzklu"},{"Name":"integrity","Value":"sha256-XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw="},{"Name":"label","Value":"_framework/System.Collections.Concurrent.wasm"},{"Name":"original-resource","Value":"\"XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw=\""}]},{"Route":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\niv8zsbxhl-{0}-1zv6wuzklu-1zv6wuzklu.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33673"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1zv6wuzklu"},{"Name":"integrity","Value":"sha256-LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU="},{"Name":"label","Value":"_framework/System.Collections.Concurrent.wasm.gz"}]},{"Route":"_framework/System.Collections.Concurrent.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.Concurrent.1zv6wuzklu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"78613"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw="}]},{"Route":"_framework/System.Collections.Concurrent.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\niv8zsbxhl-{0}-1zv6wuzklu-1zv6wuzklu.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029696502"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33673"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw="},{"Name":"original-resource","Value":"\"XW/R3VJ2r942Zv4xzVwk5xmlwGJHZQgsvIHMGty4/cw=\""}]},{"Route":"_framework/System.Collections.Concurrent.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\niv8zsbxhl-{0}-1zv6wuzklu-1zv6wuzklu.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33673"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LfLZ+cyWkGP+WtYeXahx4mTey0ofblMty43jGWQLufU="}]},{"Route":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.Immutable.6uzpuv4o5d.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"240917"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6uzpuv4o5d"},{"Name":"integrity","Value":"sha256-UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE="},{"Name":"label","Value":"_framework/System.Collections.Immutable.wasm"}]},{"Route":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3k0w0ci5df-{0}-6uzpuv4o5d-6uzpuv4o5d.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010198462"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"98053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6uzpuv4o5d"},{"Name":"integrity","Value":"sha256-UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE="},{"Name":"label","Value":"_framework/System.Collections.Immutable.wasm"},{"Name":"original-resource","Value":"\"UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE=\""}]},{"Route":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3k0w0ci5df-{0}-6uzpuv4o5d-6uzpuv4o5d.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"98053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6uzpuv4o5d"},{"Name":"integrity","Value":"sha256-FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI="},{"Name":"label","Value":"_framework/System.Collections.Immutable.wasm.gz"}]},{"Route":"_framework/System.Collections.Immutable.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.Immutable.6uzpuv4o5d.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"240917"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE="}]},{"Route":"_framework/System.Collections.Immutable.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3k0w0ci5df-{0}-6uzpuv4o5d-6uzpuv4o5d.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010198462"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"98053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE="},{"Name":"original-resource","Value":"\"UoSXJJLA1WOclL6V5l+j6fsn8AIU2zyP8e4+WqHARiE=\""}]},{"Route":"_framework/System.Collections.Immutable.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3k0w0ci5df-{0}-6uzpuv4o5d-6uzpuv4o5d.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"98053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FsE3jIZMB2yzHeNKwwa9e8hdkqDBufPUnM7wacum0UI="}]},{"Route":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.NonGeneric.k5rgagff9o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k5rgagff9o"},{"Name":"integrity","Value":"sha256-eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q="},{"Name":"label","Value":"_framework/System.Collections.NonGeneric.wasm"}]},{"Route":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\r1c02csw1u-{0}-k5rgagff9o-k5rgagff9o.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067944014"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14717"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k5rgagff9o"},{"Name":"integrity","Value":"sha256-eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q="},{"Name":"label","Value":"_framework/System.Collections.NonGeneric.wasm"},{"Name":"original-resource","Value":"\"eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q=\""}]},{"Route":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\r1c02csw1u-{0}-k5rgagff9o-k5rgagff9o.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14717"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k5rgagff9o"},{"Name":"integrity","Value":"sha256-RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M="},{"Name":"label","Value":"_framework/System.Collections.NonGeneric.wasm.gz"}]},{"Route":"_framework/System.Collections.NonGeneric.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.NonGeneric.k5rgagff9o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q="}]},{"Route":"_framework/System.Collections.NonGeneric.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\r1c02csw1u-{0}-k5rgagff9o-k5rgagff9o.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067944014"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14717"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q="},{"Name":"original-resource","Value":"\"eCf3yNlNqdcdcPGQPg4IHLMGVNGHK1MWCUM3vatUZ8Q=\""}]},{"Route":"_framework/System.Collections.NonGeneric.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\r1c02csw1u-{0}-k5rgagff9o-k5rgagff9o.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14717"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RxBzWkSmtmX0dYCIO3LwEBc3PS/CdHFulFJBZLTe51M="}]},{"Route":"_framework/System.Collections.Specialized.84wojkejb4.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.Specialized.84wojkejb4.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"84wojkejb4"},{"Name":"integrity","Value":"sha256-mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74="},{"Name":"label","Value":"_framework/System.Collections.Specialized.wasm"}]},{"Route":"_framework/System.Collections.Specialized.84wojkejb4.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\q6am3o85wz-{0}-84wojkejb4-84wojkejb4.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061218243"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16334"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"84wojkejb4"},{"Name":"integrity","Value":"sha256-mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74="},{"Name":"label","Value":"_framework/System.Collections.Specialized.wasm"},{"Name":"original-resource","Value":"\"mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74=\""}]},{"Route":"_framework/System.Collections.Specialized.84wojkejb4.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\q6am3o85wz-{0}-84wojkejb4-84wojkejb4.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16334"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"84wojkejb4"},{"Name":"integrity","Value":"sha256-iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0="},{"Name":"label","Value":"_framework/System.Collections.Specialized.wasm.gz"}]},{"Route":"_framework/System.Collections.Specialized.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.Specialized.84wojkejb4.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"37653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74="}]},{"Route":"_framework/System.Collections.Specialized.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\q6am3o85wz-{0}-84wojkejb4-84wojkejb4.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061218243"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16334"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74="},{"Name":"original-resource","Value":"\"mBs6H0JxWwAf/TSA96YAGdrbEuD1rzwQCrDyeeXWf74=\""}]},{"Route":"_framework/System.Collections.Specialized.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\q6am3o85wz-{0}-84wojkejb4-84wojkejb4.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16334"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iOvRV5L3COfrkkIasFjW2/5/HJahH17s1/JAI8jbzJ0="}]},{"Route":"_framework/System.Collections.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Collections.63jrcion39.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"102677"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg="}]},{"Route":"_framework/System.Collections.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3zhncs8zdy-{0}-63jrcion39-63jrcion39.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023100023"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"43289"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg="},{"Name":"original-resource","Value":"\"Yu0OYA+3NZBsWqkZ/wV/TwuR1wjjRX4z19nv1LLKavg=\""}]},{"Route":"_framework/System.Collections.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3zhncs8zdy-{0}-63jrcion39-63jrcion39.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"43289"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vkueO9DVZkgX2boQs6gYSpqxKhnoaXBoa1Udp6izmqU="}]},{"Route":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.Annotations.cjsvkufomv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"92437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cjsvkufomv"},{"Name":"integrity","Value":"sha256-yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg="},{"Name":"label","Value":"_framework/System.ComponentModel.Annotations.wasm"}]},{"Route":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wj9cgpvw17-{0}-cjsvkufomv-cjsvkufomv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000027950137"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cjsvkufomv"},{"Name":"integrity","Value":"sha256-yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg="},{"Name":"label","Value":"_framework/System.ComponentModel.Annotations.wasm"},{"Name":"original-resource","Value":"\"yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg=\""}]},{"Route":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wj9cgpvw17-{0}-cjsvkufomv-cjsvkufomv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cjsvkufomv"},{"Name":"integrity","Value":"sha256-6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM="},{"Name":"label","Value":"_framework/System.ComponentModel.Annotations.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.Annotations.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.Annotations.cjsvkufomv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"92437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg="}]},{"Route":"_framework/System.ComponentModel.Annotations.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wj9cgpvw17-{0}-cjsvkufomv-cjsvkufomv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000027950137"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg="},{"Name":"original-resource","Value":"\"yKGfz9VP+u6xJaoq0kwZgNGHw8Yq68mBa1UviKl9+Zg=\""}]},{"Route":"_framework/System.ComponentModel.Annotations.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wj9cgpvw17-{0}-cjsvkufomv-cjsvkufomv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6xFK4/6VtL5AVhQOXSrXK6Yr9NPzuuT9ErrlIvX2znM="}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vpng0qt4u6"},{"Name":"integrity","Value":"sha256-7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o="},{"Name":"label","Value":"_framework/System.ComponentModel.DataAnnotations.wasm"}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jimv6lw5j5-{0}-vpng0qt4u6-vpng0qt4u6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000386996904"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2583"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vpng0qt4u6"},{"Name":"integrity","Value":"sha256-7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o="},{"Name":"label","Value":"_framework/System.ComponentModel.DataAnnotations.wasm"},{"Name":"original-resource","Value":"\"7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o=\""}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jimv6lw5j5-{0}-vpng0qt4u6-vpng0qt4u6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2583"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vpng0qt4u6"},{"Name":"integrity","Value":"sha256-BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs="},{"Name":"label","Value":"_framework/System.ComponentModel.DataAnnotations.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o="}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jimv6lw5j5-{0}-vpng0qt4u6-vpng0qt4u6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000386996904"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2583"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o="},{"Name":"original-resource","Value":"\"7asbHrFHUGGCub/8B5yu8IhIYWWPHx2Pp2lpuOLMq9o=\""}]},{"Route":"_framework/System.ComponentModel.DataAnnotations.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jimv6lw5j5-{0}-vpng0qt4u6-vpng0qt4u6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2583"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BHBFvQmGuu735h+kJlTEPGpWBVhLBXuBvSIyIGFPGNs="}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"16149"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"en4q13ibd5"},{"Name":"integrity","Value":"sha256-9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38="},{"Name":"label","Value":"_framework/System.ComponentModel.EventBasedAsync.wasm"}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ixx2bqnfah-{0}-en4q13ibd5-en4q13ibd5.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000147536146"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"en4q13ibd5"},{"Name":"integrity","Value":"sha256-9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38="},{"Name":"label","Value":"_framework/System.ComponentModel.EventBasedAsync.wasm"},{"Name":"original-resource","Value":"\"9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38=\""}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ixx2bqnfah-{0}-en4q13ibd5-en4q13ibd5.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"en4q13ibd5"},{"Name":"integrity","Value":"sha256-G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU="},{"Name":"label","Value":"_framework/System.ComponentModel.EventBasedAsync.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"16149"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38="}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ixx2bqnfah-{0}-en4q13ibd5-en4q13ibd5.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000147536146"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38="},{"Name":"original-resource","Value":"\"9vgmzw0BDaOQ2PtjeI0DAoi9z/nlUVPflx8eqjRdD38=\""}]},{"Route":"_framework/System.ComponentModel.EventBasedAsync.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ixx2bqnfah-{0}-en4q13ibd5-en4q13ibd5.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6777"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G6qEYEhLfOHzANlxo5d5M0BxmC1YcKWaEcoYjrBdQQU="}]},{"Route":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.Primitives.u0y5oi3qdg.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u0y5oi3qdg"},{"Name":"integrity","Value":"sha256-fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4="},{"Name":"label","Value":"_framework/System.ComponentModel.Primitives.wasm"}]},{"Route":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\nu73pdet4t-{0}-u0y5oi3qdg-u0y5oi3qdg.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000074493445"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13423"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u0y5oi3qdg"},{"Name":"integrity","Value":"sha256-fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4="},{"Name":"label","Value":"_framework/System.ComponentModel.Primitives.wasm"},{"Name":"original-resource","Value":"\"fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4=\""}]},{"Route":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\nu73pdet4t-{0}-u0y5oi3qdg-u0y5oi3qdg.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13423"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u0y5oi3qdg"},{"Name":"integrity","Value":"sha256-yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM="},{"Name":"label","Value":"_framework/System.ComponentModel.Primitives.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.Primitives.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.Primitives.u0y5oi3qdg.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4="}]},{"Route":"_framework/System.ComponentModel.Primitives.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\nu73pdet4t-{0}-u0y5oi3qdg-u0y5oi3qdg.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000074493445"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13423"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4="},{"Name":"original-resource","Value":"\"fosXsxXbJuBmXUV2VMWlI0jZsySyUeihq2/jlJhcGF4=\""}]},{"Route":"_framework/System.ComponentModel.Primitives.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\nu73pdet4t-{0}-u0y5oi3qdg-u0y5oi3qdg.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13423"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yL9x3B/I5LiKd4HL2A5Zy4Oj3qYHICdow9Zl1g7cwxM="}]},{"Route":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.e2hbv9lola.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"306453"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e2hbv9lola"},{"Name":"integrity","Value":"sha256-Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco="},{"Name":"label","Value":"_framework/System.ComponentModel.TypeConverter.wasm"}]},{"Route":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gpzobq46fp-{0}-e2hbv9lola-e2hbv9lola.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008143389"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"122798"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e2hbv9lola"},{"Name":"integrity","Value":"sha256-Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco="},{"Name":"label","Value":"_framework/System.ComponentModel.TypeConverter.wasm"},{"Name":"original-resource","Value":"\"Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco=\""}]},{"Route":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gpzobq46fp-{0}-e2hbv9lola-e2hbv9lola.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"122798"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e2hbv9lola"},{"Name":"integrity","Value":"sha256-pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs="},{"Name":"label","Value":"_framework/System.ComponentModel.TypeConverter.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.TypeConverter.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.e2hbv9lola.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"306453"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco="}]},{"Route":"_framework/System.ComponentModel.TypeConverter.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gpzobq46fp-{0}-e2hbv9lola-e2hbv9lola.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008143389"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"122798"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco="},{"Name":"original-resource","Value":"\"Jr7BJQdvjrZ3QD5DKD4j6P2dJCeBDPXdXiZ0KlRdWco=\""}]},{"Route":"_framework/System.ComponentModel.TypeConverter.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gpzobq46fp-{0}-e2hbv9lola-e2hbv9lola.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"122798"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pEoBfnzbmZ3/HzUMLqS4XQmALFmUnG+VT36qS45cKqs="}]},{"Route":"_framework/System.ComponentModel.m11rh1qn2x.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.m11rh1qn2x.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m11rh1qn2x"},{"Name":"integrity","Value":"sha256-9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ="},{"Name":"label","Value":"_framework/System.ComponentModel.wasm"}]},{"Route":"_framework/System.ComponentModel.m11rh1qn2x.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ffumllgt4m-{0}-m11rh1qn2x-m11rh1qn2x.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388651380"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m11rh1qn2x"},{"Name":"integrity","Value":"sha256-9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ="},{"Name":"label","Value":"_framework/System.ComponentModel.wasm"},{"Name":"original-resource","Value":"\"9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ=\""}]},{"Route":"_framework/System.ComponentModel.m11rh1qn2x.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ffumllgt4m-{0}-m11rh1qn2x-m11rh1qn2x.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m11rh1qn2x"},{"Name":"integrity","Value":"sha256-4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4="},{"Name":"label","Value":"_framework/System.ComponentModel.wasm.gz"}]},{"Route":"_framework/System.ComponentModel.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ComponentModel.m11rh1qn2x.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ="}]},{"Route":"_framework/System.ComponentModel.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ffumllgt4m-{0}-m11rh1qn2x-m11rh1qn2x.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388651380"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ="},{"Name":"original-resource","Value":"\"9gzZfUDJ0ufIZyrdScgqPEFkjPgo0MIHyBlHboBM7KQ=\""}]},{"Route":"_framework/System.ComponentModel.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ffumllgt4m-{0}-m11rh1qn2x-m11rh1qn2x.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2572"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4m9J9H7LF58hlsHffW31ekYo5bpvNnPzC8N9JFVHjJ4="}]},{"Route":"_framework/System.Configuration.j8qjkqg593.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Configuration.j8qjkqg593.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"8981"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8qjkqg593"},{"Name":"integrity","Value":"sha256-bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU="},{"Name":"label","Value":"_framework/System.Configuration.wasm"}]},{"Route":"_framework/System.Configuration.j8qjkqg593.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\o9xpqh7wzb-{0}-j8qjkqg593-j8qjkqg593.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000320204931"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3122"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8qjkqg593"},{"Name":"integrity","Value":"sha256-bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU="},{"Name":"label","Value":"_framework/System.Configuration.wasm"},{"Name":"original-resource","Value":"\"bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU=\""}]},{"Route":"_framework/System.Configuration.j8qjkqg593.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\o9xpqh7wzb-{0}-j8qjkqg593-j8qjkqg593.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3122"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8qjkqg593"},{"Name":"integrity","Value":"sha256-KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA="},{"Name":"label","Value":"_framework/System.Configuration.wasm.gz"}]},{"Route":"_framework/System.Configuration.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Configuration.j8qjkqg593.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"8981"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU="}]},{"Route":"_framework/System.Configuration.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\o9xpqh7wzb-{0}-j8qjkqg593-j8qjkqg593.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000320204931"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3122"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU="},{"Name":"original-resource","Value":"\"bXjftCUa8kGxdOVzIp+sEQbr/CjIOjXYCs5L/77ufQU=\""}]},{"Route":"_framework/System.Configuration.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\o9xpqh7wzb-{0}-j8qjkqg593-j8qjkqg593.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3122"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KgGQuKshMXbP+itjS2exAQEjGuns5oOaXyP82Gb7YeA="}]},{"Route":"_framework/System.Console.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Console.x9at0eh4vs.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"43797"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI="}]},{"Route":"_framework/System.Console.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ea8uo6cwb8-{0}-x9at0eh4vs-x9at0eh4vs.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051570316"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI="},{"Name":"original-resource","Value":"\"ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI=\""}]},{"Route":"_framework/System.Console.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ea8uo6cwb8-{0}-x9at0eh4vs-x9at0eh4vs.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM="}]},{"Route":"_framework/System.Console.x9at0eh4vs.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Console.x9at0eh4vs.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"43797"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x9at0eh4vs"},{"Name":"integrity","Value":"sha256-ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI="},{"Name":"label","Value":"_framework/System.Console.wasm"}]},{"Route":"_framework/System.Console.x9at0eh4vs.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ea8uo6cwb8-{0}-x9at0eh4vs-x9at0eh4vs.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051570316"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x9at0eh4vs"},{"Name":"integrity","Value":"sha256-ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI="},{"Name":"label","Value":"_framework/System.Console.wasm"},{"Name":"original-resource","Value":"\"ReHhOT1vzMgY6tjmti4nvr5JCwGiPCnAY2vGXnndMMI=\""}]},{"Route":"_framework/System.Console.x9at0eh4vs.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ea8uo6cwb8-{0}-x9at0eh4vs-x9at0eh4vs.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x9at0eh4vs"},{"Name":"integrity","Value":"sha256-EswEndm7vHKUTULFtIykD/W+V6qJ7trZbT6PfrpT9oM="},{"Name":"label","Value":"_framework/System.Console.wasm.gz"}]},{"Route":"_framework/System.Core.ickp29885z.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Core.ickp29885z.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ickp29885z"},{"Name":"integrity","Value":"sha256-vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU="},{"Name":"label","Value":"_framework/System.Core.wasm"}]},{"Route":"_framework/System.Core.ickp29885z.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\edgswerp4g-{0}-ickp29885z-ickp29885z.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000219346348"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ickp29885z"},{"Name":"integrity","Value":"sha256-vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU="},{"Name":"label","Value":"_framework/System.Core.wasm"},{"Name":"original-resource","Value":"\"vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU=\""}]},{"Route":"_framework/System.Core.ickp29885z.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\edgswerp4g-{0}-ickp29885z-ickp29885z.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ickp29885z"},{"Name":"integrity","Value":"sha256-RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4="},{"Name":"label","Value":"_framework/System.Core.wasm.gz"}]},{"Route":"_framework/System.Core.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Core.ickp29885z.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU="}]},{"Route":"_framework/System.Core.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\edgswerp4g-{0}-ickp29885z-ickp29885z.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000219346348"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU="},{"Name":"original-resource","Value":"\"vkafG31oXTrMX5yaamDI/spd8jNnomgUr9PzhOkIOHU=\""}]},{"Route":"_framework/System.Core.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\edgswerp4g-{0}-ickp29885z-ickp29885z.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RaTwbduOmxH6uBTUU6fVSBtLLhzZ3pGZZ8udioTXcM4="}]},{"Route":"_framework/System.Data.0h75nr7qqd.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Data.0h75nr7qqd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"15125"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0h75nr7qqd"},{"Name":"integrity","Value":"sha256-7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg="},{"Name":"label","Value":"_framework/System.Data.wasm"}]},{"Route":"_framework/System.Data.0h75nr7qqd.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\y20kxtztgi-{0}-0h75nr7qqd-0h75nr7qqd.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000199084213"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5022"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0h75nr7qqd"},{"Name":"integrity","Value":"sha256-7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg="},{"Name":"label","Value":"_framework/System.Data.wasm"},{"Name":"original-resource","Value":"\"7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg=\""}]},{"Route":"_framework/System.Data.0h75nr7qqd.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\y20kxtztgi-{0}-0h75nr7qqd-0h75nr7qqd.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5022"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0h75nr7qqd"},{"Name":"integrity","Value":"sha256-8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE="},{"Name":"label","Value":"_framework/System.Data.wasm.gz"}]},{"Route":"_framework/System.Data.Common.4wisaz8pj4.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Data.Common.4wisaz8pj4.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1007893"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4wisaz8pj4"},{"Name":"integrity","Value":"sha256-pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q="},{"Name":"label","Value":"_framework/System.Data.Common.wasm"}]},{"Route":"_framework/System.Data.Common.4wisaz8pj4.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\68hq2gv5cb-{0}-4wisaz8pj4-4wisaz8pj4.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000002663974"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"375378"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4wisaz8pj4"},{"Name":"integrity","Value":"sha256-pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q="},{"Name":"label","Value":"_framework/System.Data.Common.wasm"},{"Name":"original-resource","Value":"\"pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q=\""}]},{"Route":"_framework/System.Data.Common.4wisaz8pj4.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\68hq2gv5cb-{0}-4wisaz8pj4-4wisaz8pj4.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"375378"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4wisaz8pj4"},{"Name":"integrity","Value":"sha256-ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A="},{"Name":"label","Value":"_framework/System.Data.Common.wasm.gz"}]},{"Route":"_framework/System.Data.Common.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Data.Common.4wisaz8pj4.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1007893"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q="}]},{"Route":"_framework/System.Data.Common.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\68hq2gv5cb-{0}-4wisaz8pj4-4wisaz8pj4.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000002663974"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"375378"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q="},{"Name":"original-resource","Value":"\"pMSY+zIRjzUEQWRY9rVDxY7nURLKRGCtekIisuLMZ4Q=\""}]},{"Route":"_framework/System.Data.Common.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\68hq2gv5cb-{0}-4wisaz8pj4-4wisaz8pj4.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"375378"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ALJuG+4aK49MBHRp3h99cCYdbZOekMkDrYDrxd5z+9A="}]},{"Route":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Data.DataSetExtensions.904tnen1ot.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"904tnen1ot"},{"Name":"integrity","Value":"sha256-dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A="},{"Name":"label","Value":"_framework/System.Data.DataSetExtensions.wasm"}]},{"Route":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sm8o0gwk5g-{0}-904tnen1ot-904tnen1ot.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000480307397"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2081"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"904tnen1ot"},{"Name":"integrity","Value":"sha256-dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A="},{"Name":"label","Value":"_framework/System.Data.DataSetExtensions.wasm"},{"Name":"original-resource","Value":"\"dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A=\""}]},{"Route":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sm8o0gwk5g-{0}-904tnen1ot-904tnen1ot.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2081"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"904tnen1ot"},{"Name":"integrity","Value":"sha256-re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY="},{"Name":"label","Value":"_framework/System.Data.DataSetExtensions.wasm.gz"}]},{"Route":"_framework/System.Data.DataSetExtensions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Data.DataSetExtensions.904tnen1ot.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A="}]},{"Route":"_framework/System.Data.DataSetExtensions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sm8o0gwk5g-{0}-904tnen1ot-904tnen1ot.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000480307397"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2081"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A="},{"Name":"original-resource","Value":"\"dye0vFa+ZoGZX4D1zyaAGLdUEjpEGDxIHDwPZH8uL4A=\""}]},{"Route":"_framework/System.Data.DataSetExtensions.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sm8o0gwk5g-{0}-904tnen1ot-904tnen1ot.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2081"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-re32+lNN8a1z5EgMMcIwNZ/KlHDo+u/sfXKFzTW6FnY="}]},{"Route":"_framework/System.Data.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Data.0h75nr7qqd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"15125"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg="}]},{"Route":"_framework/System.Data.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\y20kxtztgi-{0}-0h75nr7qqd-0h75nr7qqd.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000199084213"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5022"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg="},{"Name":"original-resource","Value":"\"7JfF3VIG7BKWP53hvF39h0S2oPBH0YY7m3pWq7HiwOg=\""}]},{"Route":"_framework/System.Data.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\y20kxtztgi-{0}-0h75nr7qqd-0h75nr7qqd.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5022"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8TQb8DoHDKgOKFa+77OjGkEjpNTmWi5rEFBqAQATfjE="}]},{"Route":"_framework/System.Diagnostics.Contracts.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Contracts.z1eotzj35n.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I="}]},{"Route":"_framework/System.Diagnostics.Contracts.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wgdliulfxe-{0}-z1eotzj35n-z1eotzj35n.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000417885499"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2392"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I="},{"Name":"original-resource","Value":"\"2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I=\""}]},{"Route":"_framework/System.Diagnostics.Contracts.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wgdliulfxe-{0}-z1eotzj35n-z1eotzj35n.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2392"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY="}]},{"Route":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Contracts.z1eotzj35n.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z1eotzj35n"},{"Name":"integrity","Value":"sha256-2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I="},{"Name":"label","Value":"_framework/System.Diagnostics.Contracts.wasm"}]},{"Route":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wgdliulfxe-{0}-z1eotzj35n-z1eotzj35n.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000417885499"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2392"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z1eotzj35n"},{"Name":"integrity","Value":"sha256-2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I="},{"Name":"label","Value":"_framework/System.Diagnostics.Contracts.wasm"},{"Name":"original-resource","Value":"\"2QlZ5VU2ri3A/0GQYMjhjgs7BzKfppBn0OCQGVZMk1I=\""}]},{"Route":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wgdliulfxe-{0}-z1eotzj35n-z1eotzj35n.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2392"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z1eotzj35n"},{"Name":"integrity","Value":"sha256-Ye47dpCNg3GjJpfq3hX07qqUpOec/PE8U60XnFlbvdY="},{"Name":"label","Value":"_framework/System.Diagnostics.Contracts.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Debug.aeh9b1tcuc.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aeh9b1tcuc"},{"Name":"integrity","Value":"sha256-Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g="},{"Name":"label","Value":"_framework/System.Diagnostics.Debug.wasm"}]},{"Route":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i9mn6d27vy-{0}-aeh9b1tcuc-aeh9b1tcuc.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000437636761"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2284"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aeh9b1tcuc"},{"Name":"integrity","Value":"sha256-Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g="},{"Name":"label","Value":"_framework/System.Diagnostics.Debug.wasm"},{"Name":"original-resource","Value":"\"Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g=\""}]},{"Route":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i9mn6d27vy-{0}-aeh9b1tcuc-aeh9b1tcuc.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2284"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aeh9b1tcuc"},{"Name":"integrity","Value":"sha256-DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk="},{"Name":"label","Value":"_framework/System.Diagnostics.Debug.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.Debug.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Debug.aeh9b1tcuc.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g="}]},{"Route":"_framework/System.Diagnostics.Debug.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i9mn6d27vy-{0}-aeh9b1tcuc-aeh9b1tcuc.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000437636761"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2284"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g="},{"Name":"original-resource","Value":"\"Uh+ZcinJKjFTWgTT+AlkXhc9bpsVehsi27YCvBN3g4g=\""}]},{"Route":"_framework/System.Diagnostics.Debug.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i9mn6d27vy-{0}-aeh9b1tcuc-aeh9b1tcuc.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2284"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DE9XvEhVPJxxGBJlQ3da0xtrwVVurRxN5gtXyo3viRk="}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"192277"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ou2dt7nfo2"},{"Name":"integrity","Value":"sha256-sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc="},{"Name":"label","Value":"_framework/System.Diagnostics.DiagnosticSource.wasm"}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\lgx6p69ons-{0}-ou2dt7nfo2-ou2dt7nfo2.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000012340499"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"81033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ou2dt7nfo2"},{"Name":"integrity","Value":"sha256-sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc="},{"Name":"label","Value":"_framework/System.Diagnostics.DiagnosticSource.wasm"},{"Name":"original-resource","Value":"\"sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc=\""}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\lgx6p69ons-{0}-ou2dt7nfo2-ou2dt7nfo2.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"81033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ou2dt7nfo2"},{"Name":"integrity","Value":"sha256-4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs="},{"Name":"label","Value":"_framework/System.Diagnostics.DiagnosticSource.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"192277"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc="}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\lgx6p69ons-{0}-ou2dt7nfo2-ou2dt7nfo2.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000012340499"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"81033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc="},{"Name":"original-resource","Value":"\"sDg7Uzjnb8IAlZ8RbPJKm3DcXmBz2EmLRg251rERMEc=\""}]},{"Route":"_framework/System.Diagnostics.DiagnosticSource.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\lgx6p69ons-{0}-ou2dt7nfo2-ou2dt7nfo2.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"81033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4p0VmjhhOpwfFUsI6GqCzzJZUOxyWHCU+hONKFUuCvs="}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"12565"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kv9gl8mgag"},{"Name":"integrity","Value":"sha256-ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4="},{"Name":"label","Value":"_framework/System.Diagnostics.FileVersionInfo.wasm"}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i7dsezujyr-{0}-kv9gl8mgag-kv9gl8mgag.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000194817845"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5132"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kv9gl8mgag"},{"Name":"integrity","Value":"sha256-ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4="},{"Name":"label","Value":"_framework/System.Diagnostics.FileVersionInfo.wasm"},{"Name":"original-resource","Value":"\"ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4=\""}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i7dsezujyr-{0}-kv9gl8mgag-kv9gl8mgag.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5132"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kv9gl8mgag"},{"Name":"integrity","Value":"sha256-Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA="},{"Name":"label","Value":"_framework/System.Diagnostics.FileVersionInfo.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"12565"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4="}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i7dsezujyr-{0}-kv9gl8mgag-kv9gl8mgag.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000194817845"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5132"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4="},{"Name":"original-resource","Value":"\"ALV7jJpaVcDzfTp4s+VJsVEfds/FdMFrU9Yu0d68Ck4=\""}]},{"Route":"_framework/System.Diagnostics.FileVersionInfo.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i7dsezujyr-{0}-kv9gl8mgag-kv9gl8mgag.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5132"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Y44VzHMxcOMr4+dX02zEmCpwgqCCLv0x84iVnj65/CA="}]},{"Route":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Process.lqtqkmw274.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"46357"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lqtqkmw274"},{"Name":"integrity","Value":"sha256-87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk="},{"Name":"label","Value":"_framework/System.Diagnostics.Process.wasm"}]},{"Route":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\67s0zux9y9-{0}-lqtqkmw274-lqtqkmw274.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061736017"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lqtqkmw274"},{"Name":"integrity","Value":"sha256-87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk="},{"Name":"label","Value":"_framework/System.Diagnostics.Process.wasm"},{"Name":"original-resource","Value":"\"87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk=\""}]},{"Route":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\67s0zux9y9-{0}-lqtqkmw274-lqtqkmw274.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lqtqkmw274"},{"Name":"integrity","Value":"sha256-a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0="},{"Name":"label","Value":"_framework/System.Diagnostics.Process.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.Process.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Process.lqtqkmw274.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"46357"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk="}]},{"Route":"_framework/System.Diagnostics.Process.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\67s0zux9y9-{0}-lqtqkmw274-lqtqkmw274.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061736017"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk="},{"Name":"original-resource","Value":"\"87qMRUyI/yWzglHnmUlgzJCB1L5nKBLE5t0eMNGHvWk=\""}]},{"Route":"_framework/System.Diagnostics.Process.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\67s0zux9y9-{0}-lqtqkmw274-lqtqkmw274.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-a0ocUU6+5CAKiflHMnWhQOGjQQL+dttoeApZK3a+Cf0="}]},{"Route":"_framework/System.Diagnostics.StackTrace.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.StackTrace.wvlboxd9cz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"15637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls="}]},{"Route":"_framework/System.Diagnostics.StackTrace.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ae1qv5wfu3-{0}-wvlboxd9cz-wvlboxd9cz.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000135758892"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7365"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls="},{"Name":"original-resource","Value":"\"jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls=\""}]},{"Route":"_framework/System.Diagnostics.StackTrace.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ae1qv5wfu3-{0}-wvlboxd9cz-wvlboxd9cz.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7365"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg="}]},{"Route":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.StackTrace.wvlboxd9cz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"15637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wvlboxd9cz"},{"Name":"integrity","Value":"sha256-jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls="},{"Name":"label","Value":"_framework/System.Diagnostics.StackTrace.wasm"}]},{"Route":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ae1qv5wfu3-{0}-wvlboxd9cz-wvlboxd9cz.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000135758892"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7365"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wvlboxd9cz"},{"Name":"integrity","Value":"sha256-jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls="},{"Name":"label","Value":"_framework/System.Diagnostics.StackTrace.wasm"},{"Name":"original-resource","Value":"\"jI8q0Fmsrrg+dNuXV4i4Gh9UKR0Ne13rXus01hw3nls=\""}]},{"Route":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ae1qv5wfu3-{0}-wvlboxd9cz-wvlboxd9cz.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7365"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wvlboxd9cz"},{"Name":"integrity","Value":"sha256-+q1yN+Ocdrkh4oqvCOJc0yR6idbG0lw4T1hTbeeUJAg="},{"Name":"label","Value":"_framework/System.Diagnostics.StackTrace.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"21269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mx5w1z1p6w"},{"Name":"integrity","Value":"sha256-9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8="},{"Name":"label","Value":"_framework/System.Diagnostics.TextWriterTraceListener.wasm"}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5psn88uayv-{0}-mx5w1z1p6w-mx5w1z1p6w.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000106484932"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mx5w1z1p6w"},{"Name":"integrity","Value":"sha256-9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8="},{"Name":"label","Value":"_framework/System.Diagnostics.TextWriterTraceListener.wasm"},{"Name":"original-resource","Value":"\"9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8=\""}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5psn88uayv-{0}-mx5w1z1p6w-mx5w1z1p6w.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mx5w1z1p6w"},{"Name":"integrity","Value":"sha256-bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY="},{"Name":"label","Value":"_framework/System.Diagnostics.TextWriterTraceListener.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"21269"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8="}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5psn88uayv-{0}-mx5w1z1p6w-mx5w1z1p6w.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000106484932"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8="},{"Name":"original-resource","Value":"\"9rxh6TqQmUbRCCgjXZoU1/6ORMu3I6iXk3w28M6acC8=\""}]},{"Route":"_framework/System.Diagnostics.TextWriterTraceListener.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5psn88uayv-{0}-mx5w1z1p6w-mx5w1z1p6w.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9390"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bNIOvfCZC4ftF84+wWb33BdcM37Jo5E9sGby/4fRKJY="}]},{"Route":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Tools.862j1ozg5o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"862j1ozg5o"},{"Name":"integrity","Value":"sha256-wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE="},{"Name":"label","Value":"_framework/System.Diagnostics.Tools.wasm"}]},{"Route":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6yvil548ai-{0}-862j1ozg5o-862j1ozg5o.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455580866"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"862j1ozg5o"},{"Name":"integrity","Value":"sha256-wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE="},{"Name":"label","Value":"_framework/System.Diagnostics.Tools.wasm"},{"Name":"original-resource","Value":"\"wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE=\""}]},{"Route":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6yvil548ai-{0}-862j1ozg5o-862j1ozg5o.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"862j1ozg5o"},{"Name":"integrity","Value":"sha256-Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0="},{"Name":"label","Value":"_framework/System.Diagnostics.Tools.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.Tools.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Tools.862j1ozg5o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE="}]},{"Route":"_framework/System.Diagnostics.Tools.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6yvil548ai-{0}-862j1ozg5o-862j1ozg5o.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455580866"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE="},{"Name":"original-resource","Value":"\"wMJeVy0r09tdEK4PT0pjKM0sRx8XOTOEch4cF15ZpBE=\""}]},{"Route":"_framework/System.Diagnostics.Tools.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6yvil548ai-{0}-862j1ozg5o-862j1ozg5o.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Dvl2rN34nY8e52voLGMezYCRRD7RnbbbJElvkVsSeK0="}]},{"Route":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.TraceSource.j08okd90mo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"48405"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j08okd90mo"},{"Name":"integrity","Value":"sha256-k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc="},{"Name":"label","Value":"_framework/System.Diagnostics.TraceSource.wasm"}]},{"Route":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\w9uuhprkgr-{0}-j08okd90mo-j08okd90mo.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000049701789"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20119"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j08okd90mo"},{"Name":"integrity","Value":"sha256-k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc="},{"Name":"label","Value":"_framework/System.Diagnostics.TraceSource.wasm"},{"Name":"original-resource","Value":"\"k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc=\""}]},{"Route":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\w9uuhprkgr-{0}-j08okd90mo-j08okd90mo.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20119"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j08okd90mo"},{"Name":"integrity","Value":"sha256-xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM="},{"Name":"label","Value":"_framework/System.Diagnostics.TraceSource.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.TraceSource.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.TraceSource.j08okd90mo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"48405"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc="}]},{"Route":"_framework/System.Diagnostics.TraceSource.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\w9uuhprkgr-{0}-j08okd90mo-j08okd90mo.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000049701789"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20119"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc="},{"Name":"original-resource","Value":"\"k7Zpex9zx84qbCIW8u70Lau05LtbEnyqycQhVZcAeCc=\""}]},{"Route":"_framework/System.Diagnostics.TraceSource.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\w9uuhprkgr-{0}-j08okd90mo-j08okd90mo.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20119"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xn2rEuDz+/dGOl4wNEuLYuqCeakCEeMpdYsCTtl2GPM="}]},{"Route":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Tracing.bnz7jo4op8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bnz7jo4op8"},{"Name":"integrity","Value":"sha256-ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg="},{"Name":"label","Value":"_framework/System.Diagnostics.Tracing.wasm"}]},{"Route":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ymz6pz7ujf-{0}-bnz7jo4op8-bnz7jo4op8.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000398406375"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bnz7jo4op8"},{"Name":"integrity","Value":"sha256-ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg="},{"Name":"label","Value":"_framework/System.Diagnostics.Tracing.wasm"},{"Name":"original-resource","Value":"\"ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg=\""}]},{"Route":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ymz6pz7ujf-{0}-bnz7jo4op8-bnz7jo4op8.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bnz7jo4op8"},{"Name":"integrity","Value":"sha256-ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI="},{"Name":"label","Value":"_framework/System.Diagnostics.Tracing.wasm.gz"}]},{"Route":"_framework/System.Diagnostics.Tracing.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Diagnostics.Tracing.bnz7jo4op8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg="}]},{"Route":"_framework/System.Diagnostics.Tracing.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ymz6pz7ujf-{0}-bnz7jo4op8-bnz7jo4op8.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000398406375"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg="},{"Name":"original-resource","Value":"\"ybzYdUnh/rTtVBqcRzhjWaT0zvXQT1dmNHSSP1sIsfg=\""}]},{"Route":"_framework/System.Diagnostics.Tracing.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ymz6pz7ujf-{0}-bnz7jo4op8-bnz7jo4op8.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ai3YdiPKloc71AIxyX97b0YWfFyeAV7Pdb9iLQeWPpI="}]},{"Route":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Drawing.Primitives.k3z431p3v7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"54549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k3z431p3v7"},{"Name":"integrity","Value":"sha256-sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U="},{"Name":"label","Value":"_framework/System.Drawing.Primitives.wasm"}]},{"Route":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\beyjjw9nw7-{0}-k3z431p3v7-k3z431p3v7.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041590418"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24043"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k3z431p3v7"},{"Name":"integrity","Value":"sha256-sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U="},{"Name":"label","Value":"_framework/System.Drawing.Primitives.wasm"},{"Name":"original-resource","Value":"\"sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U=\""}]},{"Route":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\beyjjw9nw7-{0}-k3z431p3v7-k3z431p3v7.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24043"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k3z431p3v7"},{"Name":"integrity","Value":"sha256-s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto="},{"Name":"label","Value":"_framework/System.Drawing.Primitives.wasm.gz"}]},{"Route":"_framework/System.Drawing.Primitives.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Drawing.Primitives.k3z431p3v7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"54549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U="}]},{"Route":"_framework/System.Drawing.Primitives.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\beyjjw9nw7-{0}-k3z431p3v7-k3z431p3v7.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041590418"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24043"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U="},{"Name":"original-resource","Value":"\"sGGZS12uCPIfOHQyOfpT0PDGOeUw2Fdp/413ZTob07U=\""}]},{"Route":"_framework/System.Drawing.Primitives.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\beyjjw9nw7-{0}-k3z431p3v7-k3z431p3v7.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24043"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-s4+Cgvktk2FapamoOcrt9z37UpoApMJA6QstUe0OUto="}]},{"Route":"_framework/System.Drawing.v0usa2s224.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Drawing.v0usa2s224.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0usa2s224"},{"Name":"integrity","Value":"sha256-/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I="},{"Name":"label","Value":"_framework/System.Drawing.wasm"}]},{"Route":"_framework/System.Drawing.v0usa2s224.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\bm4t56k5pn-{0}-v0usa2s224-v0usa2s224.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000258732212"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3864"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0usa2s224"},{"Name":"integrity","Value":"sha256-/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I="},{"Name":"label","Value":"_framework/System.Drawing.wasm"},{"Name":"original-resource","Value":"\"/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I=\""}]},{"Route":"_framework/System.Drawing.v0usa2s224.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\bm4t56k5pn-{0}-v0usa2s224-v0usa2s224.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3864"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0usa2s224"},{"Name":"integrity","Value":"sha256-ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c="},{"Name":"label","Value":"_framework/System.Drawing.wasm.gz"}]},{"Route":"_framework/System.Drawing.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Drawing.v0usa2s224.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I="}]},{"Route":"_framework/System.Drawing.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\bm4t56k5pn-{0}-v0usa2s224-v0usa2s224.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000258732212"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3864"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I="},{"Name":"original-resource","Value":"\"/1gug1Ht0MR5wkSh5F+J2kc7H0pgOg99nHrS/U4gu2I=\""}]},{"Route":"_framework/System.Drawing.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\bm4t56k5pn-{0}-v0usa2s224-v0usa2s224.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3864"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZV38t/WASh++GAocxc9IoEid2DXD9rN8Zr5v0sVWy8c="}]},{"Route":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Dynamic.Runtime.iktlm0yhdx.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iktlm0yhdx"},{"Name":"integrity","Value":"sha256-8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ="},{"Name":"label","Value":"_framework/System.Dynamic.Runtime.wasm"}]},{"Route":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\95o3q4uwxv-{0}-iktlm0yhdx-iktlm0yhdx.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000408997955"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2444"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iktlm0yhdx"},{"Name":"integrity","Value":"sha256-8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ="},{"Name":"label","Value":"_framework/System.Dynamic.Runtime.wasm"},{"Name":"original-resource","Value":"\"8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ=\""}]},{"Route":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\95o3q4uwxv-{0}-iktlm0yhdx-iktlm0yhdx.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2444"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iktlm0yhdx"},{"Name":"integrity","Value":"sha256-DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A="},{"Name":"label","Value":"_framework/System.Dynamic.Runtime.wasm.gz"}]},{"Route":"_framework/System.Dynamic.Runtime.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Dynamic.Runtime.iktlm0yhdx.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ="}]},{"Route":"_framework/System.Dynamic.Runtime.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\95o3q4uwxv-{0}-iktlm0yhdx-iktlm0yhdx.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000408997955"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2444"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ="},{"Name":"original-resource","Value":"\"8r4Gcc75TWtDzR5ea3NAqpujLpas8JLeZOUT1v44IUQ=\""}]},{"Route":"_framework/System.Dynamic.Runtime.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\95o3q4uwxv-{0}-iktlm0yhdx-iktlm0yhdx.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2444"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DXfrPTXCl6WbgktuKWNiDRD+Unpqixe7cG2s1GpTZ9A="}]},{"Route":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Formats.Asn1.9iyl1hnh76.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"86805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9iyl1hnh76"},{"Name":"integrity","Value":"sha256-8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0="},{"Name":"label","Value":"_framework/System.Formats.Asn1.wasm"}]},{"Route":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\2eqyybz3l2-{0}-9iyl1hnh76-9iyl1hnh76.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000028005713"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35706"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9iyl1hnh76"},{"Name":"integrity","Value":"sha256-8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0="},{"Name":"label","Value":"_framework/System.Formats.Asn1.wasm"},{"Name":"original-resource","Value":"\"8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0=\""}]},{"Route":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\2eqyybz3l2-{0}-9iyl1hnh76-9iyl1hnh76.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35706"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9iyl1hnh76"},{"Name":"integrity","Value":"sha256-LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw="},{"Name":"label","Value":"_framework/System.Formats.Asn1.wasm.gz"}]},{"Route":"_framework/System.Formats.Asn1.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Formats.Asn1.9iyl1hnh76.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"86805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0="}]},{"Route":"_framework/System.Formats.Asn1.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\2eqyybz3l2-{0}-9iyl1hnh76-9iyl1hnh76.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000028005713"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35706"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0="},{"Name":"original-resource","Value":"\"8dbpG6+AvMYqSjdWJ9LnxeRWtfGwmcD/PnMFzuOxzK0=\""}]},{"Route":"_framework/System.Formats.Asn1.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\2eqyybz3l2-{0}-9iyl1hnh76-9iyl1hnh76.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"35706"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LL7rShAxY/4moXOv93XtmclEIOBELq66qkF41r4aqIw="}]},{"Route":"_framework/System.Formats.Tar.9ikmelhi7g.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Formats.Tar.9ikmelhi7g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"28437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ikmelhi7g"},{"Name":"integrity","Value":"sha256-rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE="},{"Name":"label","Value":"_framework/System.Formats.Tar.wasm"}]},{"Route":"_framework/System.Formats.Tar.9ikmelhi7g.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\aawrgxq7b9-{0}-9ikmelhi7g-9ikmelhi7g.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000095292548"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10493"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ikmelhi7g"},{"Name":"integrity","Value":"sha256-rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE="},{"Name":"label","Value":"_framework/System.Formats.Tar.wasm"},{"Name":"original-resource","Value":"\"rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE=\""}]},{"Route":"_framework/System.Formats.Tar.9ikmelhi7g.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\aawrgxq7b9-{0}-9ikmelhi7g-9ikmelhi7g.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10493"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ikmelhi7g"},{"Name":"integrity","Value":"sha256-F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k="},{"Name":"label","Value":"_framework/System.Formats.Tar.wasm.gz"}]},{"Route":"_framework/System.Formats.Tar.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Formats.Tar.9ikmelhi7g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"28437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE="}]},{"Route":"_framework/System.Formats.Tar.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\aawrgxq7b9-{0}-9ikmelhi7g-9ikmelhi7g.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000095292548"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10493"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE="},{"Name":"original-resource","Value":"\"rxwyBAP+8LmUcT/Y0STjxdVWDhVJC1kldNQWclQAoJE=\""}]},{"Route":"_framework/System.Formats.Tar.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\aawrgxq7b9-{0}-9ikmelhi7g-9ikmelhi7g.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10493"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-F/yvqIRH5AS9iY7FwpjTGqJJ59pw0EVeFsN5IJdfl+k="}]},{"Route":"_framework/System.Globalization.4ulc930few.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Globalization.4ulc930few.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4ulc930few"},{"Name":"integrity","Value":"sha256-jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I="},{"Name":"label","Value":"_framework/System.Globalization.wasm"}]},{"Route":"_framework/System.Globalization.4ulc930few.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\nvjr9jta08-{0}-4ulc930few-4ulc930few.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000439367311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4ulc930few"},{"Name":"integrity","Value":"sha256-jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I="},{"Name":"label","Value":"_framework/System.Globalization.wasm"},{"Name":"original-resource","Value":"\"jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I=\""}]},{"Route":"_framework/System.Globalization.4ulc930few.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\nvjr9jta08-{0}-4ulc930few-4ulc930few.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4ulc930few"},{"Name":"integrity","Value":"sha256-GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA="},{"Name":"label","Value":"_framework/System.Globalization.wasm.gz"}]},{"Route":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Globalization.Calendars.e8yl47y6cv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e8yl47y6cv"},{"Name":"integrity","Value":"sha256-jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo="},{"Name":"label","Value":"_framework/System.Globalization.Calendars.wasm"}]},{"Route":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\g4w42juzkx-{0}-e8yl47y6cv-e8yl47y6cv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000434971727"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2298"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e8yl47y6cv"},{"Name":"integrity","Value":"sha256-jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo="},{"Name":"label","Value":"_framework/System.Globalization.Calendars.wasm"},{"Name":"original-resource","Value":"\"jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo=\""}]},{"Route":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\g4w42juzkx-{0}-e8yl47y6cv-e8yl47y6cv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2298"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e8yl47y6cv"},{"Name":"integrity","Value":"sha256-bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A="},{"Name":"label","Value":"_framework/System.Globalization.Calendars.wasm.gz"}]},{"Route":"_framework/System.Globalization.Calendars.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Globalization.Calendars.e8yl47y6cv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo="}]},{"Route":"_framework/System.Globalization.Calendars.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\g4w42juzkx-{0}-e8yl47y6cv-e8yl47y6cv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000434971727"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2298"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo="},{"Name":"original-resource","Value":"\"jkCO5UhqHD1be0llpamY9HPLjlBwmogSEDTkLSyrqUo=\""}]},{"Route":"_framework/System.Globalization.Calendars.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\g4w42juzkx-{0}-e8yl47y6cv-e8yl47y6cv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2298"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bZ33x6bPkeceQILRa9tNf+Oef2JSASsUQaeE6PrTg2A="}]},{"Route":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Globalization.Extensions.fvxkfs32tv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvxkfs32tv"},{"Name":"integrity","Value":"sha256-e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ="},{"Name":"label","Value":"_framework/System.Globalization.Extensions.wasm"}]},{"Route":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\g3b5a282rj-{0}-fvxkfs32tv-fvxkfs32tv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000456412597"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2190"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvxkfs32tv"},{"Name":"integrity","Value":"sha256-e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ="},{"Name":"label","Value":"_framework/System.Globalization.Extensions.wasm"},{"Name":"original-resource","Value":"\"e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ=\""}]},{"Route":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\g3b5a282rj-{0}-fvxkfs32tv-fvxkfs32tv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2190"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvxkfs32tv"},{"Name":"integrity","Value":"sha256-mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o="},{"Name":"label","Value":"_framework/System.Globalization.Extensions.wasm.gz"}]},{"Route":"_framework/System.Globalization.Extensions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Globalization.Extensions.fvxkfs32tv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ="}]},{"Route":"_framework/System.Globalization.Extensions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\g3b5a282rj-{0}-fvxkfs32tv-fvxkfs32tv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000456412597"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2190"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ="},{"Name":"original-resource","Value":"\"e/eL04Tm4VAmYK6KaPvwiMDgHiXmLneMpgn6dwOvoIQ=\""}]},{"Route":"_framework/System.Globalization.Extensions.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\g3b5a282rj-{0}-fvxkfs32tv-fvxkfs32tv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2190"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mNH+CqOsj+3yzDzuCscl2OmP+yfhXm6ZGnXVqVlqA/o="}]},{"Route":"_framework/System.Globalization.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Globalization.4ulc930few.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I="}]},{"Route":"_framework/System.Globalization.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\nvjr9jta08-{0}-4ulc930few-4ulc930few.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000439367311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I="},{"Name":"original-resource","Value":"\"jE4z6oYu95YoHlXsD8JIoZ142/COHps6Bmnb3oVlC2I=\""}]},{"Route":"_framework/System.Globalization.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\nvjr9jta08-{0}-4ulc930few-4ulc930few.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GA29u6bimRrQnQramgS8Am0eEDoxOWMmtkcGF3otXGA="}]},{"Route":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.Brotli.ibxx4kh8c6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ibxx4kh8c6"},{"Name":"integrity","Value":"sha256-7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY="},{"Name":"label","Value":"_framework/System.IO.Compression.Brotli.wasm"}]},{"Route":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\flmzbagm0p-{0}-ibxx4kh8c6-ibxx4kh8c6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000143988481"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6944"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ibxx4kh8c6"},{"Name":"integrity","Value":"sha256-7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY="},{"Name":"label","Value":"_framework/System.IO.Compression.Brotli.wasm"},{"Name":"original-resource","Value":"\"7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY=\""}]},{"Route":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\flmzbagm0p-{0}-ibxx4kh8c6-ibxx4kh8c6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6944"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ibxx4kh8c6"},{"Name":"integrity","Value":"sha256-1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw="},{"Name":"label","Value":"_framework/System.IO.Compression.Brotli.wasm.gz"}]},{"Route":"_framework/System.IO.Compression.Brotli.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.Brotli.ibxx4kh8c6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"18197"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY="}]},{"Route":"_framework/System.IO.Compression.Brotli.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\flmzbagm0p-{0}-ibxx4kh8c6-ibxx4kh8c6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000143988481"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6944"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY="},{"Name":"original-resource","Value":"\"7opZritVQEYR7FVPNkdboWKXy2k4SyJIYbQnJrfR8UY=\""}]},{"Route":"_framework/System.IO.Compression.Brotli.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\flmzbagm0p-{0}-ibxx4kh8c6-ibxx4kh8c6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6944"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1USn9OypOFUnTbbhD6Et8I06PCr25w5d63C99bGn/Uw="}]},{"Route":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.FileSystem.bselp9vv9w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bselp9vv9w"},{"Name":"integrity","Value":"sha256-5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM="},{"Name":"label","Value":"_framework/System.IO.Compression.FileSystem.wasm"}]},{"Route":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ffagyufl1o-{0}-bselp9vv9w-bselp9vv9w.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000498504487"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bselp9vv9w"},{"Name":"integrity","Value":"sha256-5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM="},{"Name":"label","Value":"_framework/System.IO.Compression.FileSystem.wasm"},{"Name":"original-resource","Value":"\"5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM=\""}]},{"Route":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ffagyufl1o-{0}-bselp9vv9w-bselp9vv9w.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bselp9vv9w"},{"Name":"integrity","Value":"sha256-dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI="},{"Name":"label","Value":"_framework/System.IO.Compression.FileSystem.wasm.gz"}]},{"Route":"_framework/System.IO.Compression.FileSystem.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.FileSystem.bselp9vv9w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM="}]},{"Route":"_framework/System.IO.Compression.FileSystem.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ffagyufl1o-{0}-bselp9vv9w-bselp9vv9w.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000498504487"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM="},{"Name":"original-resource","Value":"\"5ZQ67OVzx1GQaKQLOeayqNtX4NoP5DW2hslwSz1QXiM=\""}]},{"Route":"_framework/System.IO.Compression.FileSystem.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ffagyufl1o-{0}-bselp9vv9w-bselp9vv9w.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2005"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dQlwE8XhRr53Pn1TP84fds5yUnMwlFGcjCmUfghX/RI="}]},{"Route":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.ZipFile.b0ha8vyo8i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"43285"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b0ha8vyo8i"},{"Name":"integrity","Value":"sha256-m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk="},{"Name":"label","Value":"_framework/System.IO.Compression.ZipFile.wasm"}]},{"Route":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\a99cqvh69a-{0}-b0ha8vyo8i-b0ha8vyo8i.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053490238"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18694"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b0ha8vyo8i"},{"Name":"integrity","Value":"sha256-m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk="},{"Name":"label","Value":"_framework/System.IO.Compression.ZipFile.wasm"},{"Name":"original-resource","Value":"\"m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk=\""}]},{"Route":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\a99cqvh69a-{0}-b0ha8vyo8i-b0ha8vyo8i.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18694"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b0ha8vyo8i"},{"Name":"integrity","Value":"sha256-+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc="},{"Name":"label","Value":"_framework/System.IO.Compression.ZipFile.wasm.gz"}]},{"Route":"_framework/System.IO.Compression.ZipFile.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.ZipFile.b0ha8vyo8i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"43285"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk="}]},{"Route":"_framework/System.IO.Compression.ZipFile.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\a99cqvh69a-{0}-b0ha8vyo8i-b0ha8vyo8i.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053490238"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18694"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk="},{"Name":"original-resource","Value":"\"m3j06SBRZTBr2j90oi804y2OFYq4VmUs+QlYR0pGZLk=\""}]},{"Route":"_framework/System.IO.Compression.ZipFile.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\a99cqvh69a-{0}-b0ha8vyo8i-b0ha8vyo8i.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18694"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+w/Xf2ZWt8zYbVup0LqwKFZM9sFnr5foGrmgn1vYfuc="}]},{"Route":"_framework/System.IO.Compression.sgbc42zrd8.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.sgbc42zrd8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"157461"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sgbc42zrd8"},{"Name":"integrity","Value":"sha256-DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY="},{"Name":"label","Value":"_framework/System.IO.Compression.wasm"}]},{"Route":"_framework/System.IO.Compression.sgbc42zrd8.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mk5261bq2v-{0}-sgbc42zrd8-sgbc42zrd8.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015435195"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64786"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sgbc42zrd8"},{"Name":"integrity","Value":"sha256-DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY="},{"Name":"label","Value":"_framework/System.IO.Compression.wasm"},{"Name":"original-resource","Value":"\"DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY=\""}]},{"Route":"_framework/System.IO.Compression.sgbc42zrd8.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mk5261bq2v-{0}-sgbc42zrd8-sgbc42zrd8.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64786"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sgbc42zrd8"},{"Name":"integrity","Value":"sha256-/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28="},{"Name":"label","Value":"_framework/System.IO.Compression.wasm.gz"}]},{"Route":"_framework/System.IO.Compression.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Compression.sgbc42zrd8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"157461"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY="}]},{"Route":"_framework/System.IO.Compression.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mk5261bq2v-{0}-sgbc42zrd8-sgbc42zrd8.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015435195"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64786"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY="},{"Name":"original-resource","Value":"\"DIExnZSsDs83cEVRdUbzjlqe9sGtr71aNu4u+ZhAtYY=\""}]},{"Route":"_framework/System.IO.Compression.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mk5261bq2v-{0}-sgbc42zrd8-sgbc42zrd8.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64786"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/l8s/YWDVy9UxWFGxSrZ/BMwU2lHxPnfkMzWd9+4M28="}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"21781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oi9xn5s0h3"},{"Name":"integrity","Value":"sha256-kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg="},{"Name":"label","Value":"_framework/System.IO.FileSystem.AccessControl.wasm"}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m3i6jtsneo-{0}-oi9xn5s0h3-oi9xn5s0h3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000117994100"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8474"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oi9xn5s0h3"},{"Name":"integrity","Value":"sha256-kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg="},{"Name":"label","Value":"_framework/System.IO.FileSystem.AccessControl.wasm"},{"Name":"original-resource","Value":"\"kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg=\""}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m3i6jtsneo-{0}-oi9xn5s0h3-oi9xn5s0h3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8474"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oi9xn5s0h3"},{"Name":"integrity","Value":"sha256-dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A="},{"Name":"label","Value":"_framework/System.IO.FileSystem.AccessControl.wasm.gz"}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"21781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg="}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m3i6jtsneo-{0}-oi9xn5s0h3-oi9xn5s0h3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000117994100"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8474"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg="},{"Name":"original-resource","Value":"\"kOYCxzUNpEjnN3BN4NJNkGSDWdwJtpPw/3P75sklPsg=\""}]},{"Route":"_framework/System.IO.FileSystem.AccessControl.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m3i6jtsneo-{0}-oi9xn5s0h3-oi9xn5s0h3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8474"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dBJaQD2xIGVlw21OJZBiRXT93kzFIQMdcTC6HpvvU8A="}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13589"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fi1uhp9255"},{"Name":"integrity","Value":"sha256-2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU="},{"Name":"label","Value":"_framework/System.IO.FileSystem.DriveInfo.wasm"}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8i8whn9pm1-{0}-fi1uhp9255-fi1uhp9255.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000165727544"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fi1uhp9255"},{"Name":"integrity","Value":"sha256-2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU="},{"Name":"label","Value":"_framework/System.IO.FileSystem.DriveInfo.wasm"},{"Name":"original-resource","Value":"\"2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU=\""}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8i8whn9pm1-{0}-fi1uhp9255-fi1uhp9255.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fi1uhp9255"},{"Name":"integrity","Value":"sha256-9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4="},{"Name":"label","Value":"_framework/System.IO.FileSystem.DriveInfo.wasm.gz"}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13589"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU="}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8i8whn9pm1-{0}-fi1uhp9255-fi1uhp9255.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000165727544"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU="},{"Name":"original-resource","Value":"\"2dd/IRmG6yqPNLXemLlJ/EtHWJ69u4gqQwed45td5iU=\""}]},{"Route":"_framework/System.IO.FileSystem.DriveInfo.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8i8whn9pm1-{0}-fi1uhp9255-fi1uhp9255.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6033"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9VZ17EMg9/z+9GTp3uhzvIk8gNyja10ZHVHdYPjrJV4="}]},{"Route":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.6j2ed42ac7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6j2ed42ac7"},{"Name":"integrity","Value":"sha256-UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Primitives.wasm"}]},{"Route":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kzc385ysv6-{0}-6j2ed42ac7-6j2ed42ac7.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455996352"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2192"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6j2ed42ac7"},{"Name":"integrity","Value":"sha256-UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Primitives.wasm"},{"Name":"original-resource","Value":"\"UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI=\""}]},{"Route":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kzc385ysv6-{0}-6j2ed42ac7-6j2ed42ac7.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2192"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6j2ed42ac7"},{"Name":"integrity","Value":"sha256-apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Primitives.wasm.gz"}]},{"Route":"_framework/System.IO.FileSystem.Primitives.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.6j2ed42ac7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI="}]},{"Route":"_framework/System.IO.FileSystem.Primitives.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kzc385ysv6-{0}-6j2ed42ac7-6j2ed42ac7.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455996352"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2192"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI="},{"Name":"original-resource","Value":"\"UmHG/C2rYAoM3jtPn4R3/Ay38ECMxWJcTv4YzZhIYyI=\""}]},{"Route":"_framework/System.IO.FileSystem.Primitives.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kzc385ysv6-{0}-6j2ed42ac7-6j2ed42ac7.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2192"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-apQ3iyCo6rNR/FSw0wh61iC3wDFuMkE/19wYyRdsoMg="}]},{"Route":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.v9i07bnq2k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v9i07bnq2k"},{"Name":"integrity","Value":"sha256-g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Watcher.wasm"}]},{"Route":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m428rlfc87-{0}-v9i07bnq2k-v9i07bnq2k.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000114259598"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8751"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v9i07bnq2k"},{"Name":"integrity","Value":"sha256-g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Watcher.wasm"},{"Name":"original-resource","Value":"\"g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg=\""}]},{"Route":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m428rlfc87-{0}-v9i07bnq2k-v9i07bnq2k.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8751"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v9i07bnq2k"},{"Name":"integrity","Value":"sha256-XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ="},{"Name":"label","Value":"_framework/System.IO.FileSystem.Watcher.wasm.gz"}]},{"Route":"_framework/System.IO.FileSystem.Watcher.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.v9i07bnq2k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg="}]},{"Route":"_framework/System.IO.FileSystem.Watcher.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m428rlfc87-{0}-v9i07bnq2k-v9i07bnq2k.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000114259598"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8751"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg="},{"Name":"original-resource","Value":"\"g7/3S8TlPd9P37bGrc1kFawutrlA3x0lp9/E2aSZdsg=\""}]},{"Route":"_framework/System.IO.FileSystem.Watcher.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m428rlfc87-{0}-v9i07bnq2k-v9i07bnq2k.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8751"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XCooFnIj0raNsRnkzXuJGOXEkvf3w+UJzbAPv/DknQQ="}]},{"Route":"_framework/System.IO.FileSystem.fktu0k4b93.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.fktu0k4b93.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fktu0k4b93"},{"Name":"integrity","Value":"sha256-L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM="},{"Name":"label","Value":"_framework/System.IO.FileSystem.wasm"}]},{"Route":"_framework/System.IO.FileSystem.fktu0k4b93.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vnqjd4ny0q-{0}-fktu0k4b93-fktu0k4b93.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000434027778"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2303"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fktu0k4b93"},{"Name":"integrity","Value":"sha256-L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM="},{"Name":"label","Value":"_framework/System.IO.FileSystem.wasm"},{"Name":"original-resource","Value":"\"L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM=\""}]},{"Route":"_framework/System.IO.FileSystem.fktu0k4b93.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vnqjd4ny0q-{0}-fktu0k4b93-fktu0k4b93.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2303"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fktu0k4b93"},{"Name":"integrity","Value":"sha256-1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ="},{"Name":"label","Value":"_framework/System.IO.FileSystem.wasm.gz"}]},{"Route":"_framework/System.IO.FileSystem.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.FileSystem.fktu0k4b93.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM="}]},{"Route":"_framework/System.IO.FileSystem.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vnqjd4ny0q-{0}-fktu0k4b93-fktu0k4b93.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000434027778"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2303"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM="},{"Name":"original-resource","Value":"\"L8F4/NYQ5/NVb6n7oqGjittOCpTSqQ6u3BjCsXUJisM=\""}]},{"Route":"_framework/System.IO.FileSystem.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vnqjd4ny0q-{0}-fktu0k4b93-fktu0k4b93.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2303"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1OxcPoiASJo0tDA0ExxSrlZ6ekqTKE3vn3jkYUBY0cQ="}]},{"Route":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.IsolatedStorage.8ll4gxwfs1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"24853"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8ll4gxwfs1"},{"Name":"integrity","Value":"sha256-TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4="},{"Name":"label","Value":"_framework/System.IO.IsolatedStorage.wasm"}]},{"Route":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\na7pgc18jv-{0}-8ll4gxwfs1-8ll4gxwfs1.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000106723586"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9369"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8ll4gxwfs1"},{"Name":"integrity","Value":"sha256-TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4="},{"Name":"label","Value":"_framework/System.IO.IsolatedStorage.wasm"},{"Name":"original-resource","Value":"\"TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4=\""}]},{"Route":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\na7pgc18jv-{0}-8ll4gxwfs1-8ll4gxwfs1.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9369"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8ll4gxwfs1"},{"Name":"integrity","Value":"sha256-KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ="},{"Name":"label","Value":"_framework/System.IO.IsolatedStorage.wasm.gz"}]},{"Route":"_framework/System.IO.IsolatedStorage.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.IsolatedStorage.8ll4gxwfs1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"24853"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4="}]},{"Route":"_framework/System.IO.IsolatedStorage.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\na7pgc18jv-{0}-8ll4gxwfs1-8ll4gxwfs1.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000106723586"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9369"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4="},{"Name":"original-resource","Value":"\"TDqU8hAmJvd+0H+XDRmqzbk2YkViCDAcfK8mlcT/5u4=\""}]},{"Route":"_framework/System.IO.IsolatedStorage.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\na7pgc18jv-{0}-8ll4gxwfs1-8ll4gxwfs1.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9369"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KUwBbAbsIAwzA52uO0CtTYVmaNMiHdVgXr3ppTx30bQ="}]},{"Route":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.6do4olk7ib.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"39701"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6do4olk7ib"},{"Name":"integrity","Value":"sha256-WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk="},{"Name":"label","Value":"_framework/System.IO.MemoryMappedFiles.wasm"}]},{"Route":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\rsffl3vumf-{0}-6do4olk7ib-6do4olk7ib.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000058775126"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6do4olk7ib"},{"Name":"integrity","Value":"sha256-WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk="},{"Name":"label","Value":"_framework/System.IO.MemoryMappedFiles.wasm"},{"Name":"original-resource","Value":"\"WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk=\""}]},{"Route":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\rsffl3vumf-{0}-6do4olk7ib-6do4olk7ib.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6do4olk7ib"},{"Name":"integrity","Value":"sha256-uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk="},{"Name":"label","Value":"_framework/System.IO.MemoryMappedFiles.wasm.gz"}]},{"Route":"_framework/System.IO.MemoryMappedFiles.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.6do4olk7ib.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"39701"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk="}]},{"Route":"_framework/System.IO.MemoryMappedFiles.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\rsffl3vumf-{0}-6do4olk7ib-6do4olk7ib.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000058775126"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk="},{"Name":"original-resource","Value":"\"WuAoiEXy7IYaK8gAmXOZRJR8v5lD29rbdUMjRqBGJUk=\""}]},{"Route":"_framework/System.IO.MemoryMappedFiles.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\rsffl3vumf-{0}-6do4olk7ib-6do4olk7ib.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uHykrSzy4+Bc25n/LpkqIvdnwqZX2emG2ifjCN9RRNk="}]},{"Route":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Pipelines.21z0t9w6sq.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"67861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"21z0t9w6sq"},{"Name":"integrity","Value":"sha256-VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM="},{"Name":"label","Value":"_framework/System.IO.Pipelines.wasm"}]},{"Route":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\pxy8xfz0ow-{0}-21z0t9w6sq-21z0t9w6sq.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032928315"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30368"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"21z0t9w6sq"},{"Name":"integrity","Value":"sha256-VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM="},{"Name":"label","Value":"_framework/System.IO.Pipelines.wasm"},{"Name":"original-resource","Value":"\"VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM=\""}]},{"Route":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\pxy8xfz0ow-{0}-21z0t9w6sq-21z0t9w6sq.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30368"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"21z0t9w6sq"},{"Name":"integrity","Value":"sha256-7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8="},{"Name":"label","Value":"_framework/System.IO.Pipelines.wasm.gz"}]},{"Route":"_framework/System.IO.Pipelines.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Pipelines.21z0t9w6sq.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"67861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM="}]},{"Route":"_framework/System.IO.Pipelines.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\pxy8xfz0ow-{0}-21z0t9w6sq-21z0t9w6sq.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032928315"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30368"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM="},{"Name":"original-resource","Value":"\"VjKTSsw4R3tDeRwKXw8L2BxmkzpZgt/JWljyPN0HRqM=\""}]},{"Route":"_framework/System.IO.Pipelines.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\pxy8xfz0ow-{0}-21z0t9w6sq-21z0t9w6sq.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30368"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7iOJoNjJf187RirXolrLdFRbJ+E1rzFjxyGwKnJvQl8="}]},{"Route":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.5lvzz4lks7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5lvzz4lks7"},{"Name":"integrity","Value":"sha256-qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE="},{"Name":"label","Value":"_framework/System.IO.Pipes.AccessControl.wasm"}]},{"Route":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\lvyasyre47-{0}-5lvzz4lks7-5lvzz4lks7.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000179597701"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5567"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5lvzz4lks7"},{"Name":"integrity","Value":"sha256-qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE="},{"Name":"label","Value":"_framework/System.IO.Pipes.AccessControl.wasm"},{"Name":"original-resource","Value":"\"qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE=\""}]},{"Route":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\lvyasyre47-{0}-5lvzz4lks7-5lvzz4lks7.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5567"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5lvzz4lks7"},{"Name":"integrity","Value":"sha256-+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4="},{"Name":"label","Value":"_framework/System.IO.Pipes.AccessControl.wasm.gz"}]},{"Route":"_framework/System.IO.Pipes.AccessControl.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.5lvzz4lks7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE="}]},{"Route":"_framework/System.IO.Pipes.AccessControl.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\lvyasyre47-{0}-5lvzz4lks7-5lvzz4lks7.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000179597701"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5567"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE="},{"Name":"original-resource","Value":"\"qW12/DgaAi5b+fpbUJmzH87WzPXm3Fy6micoQU4mzCE=\""}]},{"Route":"_framework/System.IO.Pipes.AccessControl.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\lvyasyre47-{0}-5lvzz4lks7-5lvzz4lks7.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5567"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+H0lS2oWUcqLLSEqIK4geCqlbuAT2hgcBMtdDkb/Sn4="}]},{"Route":"_framework/System.IO.Pipes.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Pipes.xosph8vk4a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg="}]},{"Route":"_framework/System.IO.Pipes.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vjl93wt59v-{0}-xosph8vk4a-xosph8vk4a.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000087703912"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg="},{"Name":"original-resource","Value":"\"gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg=\""}]},{"Route":"_framework/System.IO.Pipes.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vjl93wt59v-{0}-xosph8vk4a-xosph8vk4a.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE="}]},{"Route":"_framework/System.IO.Pipes.xosph8vk4a.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.Pipes.xosph8vk4a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xosph8vk4a"},{"Name":"integrity","Value":"sha256-gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg="},{"Name":"label","Value":"_framework/System.IO.Pipes.wasm"}]},{"Route":"_framework/System.IO.Pipes.xosph8vk4a.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vjl93wt59v-{0}-xosph8vk4a-xosph8vk4a.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000087703912"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xosph8vk4a"},{"Name":"integrity","Value":"sha256-gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg="},{"Name":"label","Value":"_framework/System.IO.Pipes.wasm"},{"Name":"original-resource","Value":"\"gR6HddfEsMBemhHfHGrt9hl8aY6K5mKyxa07iixZXlg=\""}]},{"Route":"_framework/System.IO.Pipes.xosph8vk4a.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vjl93wt59v-{0}-xosph8vk4a-xosph8vk4a.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xosph8vk4a"},{"Name":"integrity","Value":"sha256-BFAt1fBpKAfO3Sz1ygB03xezGhZpL/0PVgoa9vovZPE="},{"Name":"label","Value":"_framework/System.IO.Pipes.wasm.gz"}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d1pja42pyi"},{"Name":"integrity","Value":"sha256-gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4="},{"Name":"label","Value":"_framework/System.IO.UnmanagedMemoryStream.wasm"}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\dzqyarawy9-{0}-d1pja42pyi-d1pja42pyi.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000450045005"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2221"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d1pja42pyi"},{"Name":"integrity","Value":"sha256-gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4="},{"Name":"label","Value":"_framework/System.IO.UnmanagedMemoryStream.wasm"},{"Name":"original-resource","Value":"\"gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4=\""}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\dzqyarawy9-{0}-d1pja42pyi-d1pja42pyi.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2221"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d1pja42pyi"},{"Name":"integrity","Value":"sha256-TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU="},{"Name":"label","Value":"_framework/System.IO.UnmanagedMemoryStream.wasm.gz"}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4="}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\dzqyarawy9-{0}-d1pja42pyi-d1pja42pyi.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000450045005"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2221"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4="},{"Name":"original-resource","Value":"\"gT91sKIfygQaZ9vkzKRSKK4LvVzHwVedRkkp0Pfa0F4=\""}]},{"Route":"_framework/System.IO.UnmanagedMemoryStream.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\dzqyarawy9-{0}-d1pja42pyi-d1pja42pyi.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2221"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TW4Myoq6dTSTRp1fXiV0wtO3B8M0RCq+QFh2G/A4tsU="}]},{"Route":"_framework/System.IO.i9g92fmb9y.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.i9g92fmb9y.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"i9g92fmb9y"},{"Name":"integrity","Value":"sha256-akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw="},{"Name":"label","Value":"_framework/System.IO.wasm"}]},{"Route":"_framework/System.IO.i9g92fmb9y.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kukm29h8dt-{0}-i9g92fmb9y-i9g92fmb9y.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438404209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"i9g92fmb9y"},{"Name":"integrity","Value":"sha256-akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw="},{"Name":"label","Value":"_framework/System.IO.wasm"},{"Name":"original-resource","Value":"\"akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw=\""}]},{"Route":"_framework/System.IO.i9g92fmb9y.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kukm29h8dt-{0}-i9g92fmb9y-i9g92fmb9y.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"i9g92fmb9y"},{"Name":"integrity","Value":"sha256-DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM="},{"Name":"label","Value":"_framework/System.IO.wasm.gz"}]},{"Route":"_framework/System.IO.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.IO.i9g92fmb9y.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw="}]},{"Route":"_framework/System.IO.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kukm29h8dt-{0}-i9g92fmb9y-i9g92fmb9y.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438404209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw="},{"Name":"original-resource","Value":"\"akcNLHUsdebAMHrxAYCV/H6BoEeZYBIGpp+Wp7CYJSw=\""}]},{"Route":"_framework/System.IO.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kukm29h8dt-{0}-i9g92fmb9y-i9g92fmb9y.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DpQshZyTG+LVazA76gtZQBfoeyKYEZg1HU0FThyQlzM="}]},{"Route":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.AsyncEnumerable.4m1mh525k0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"446229"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m1mh525k0"},{"Name":"integrity","Value":"sha256-VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48="},{"Name":"label","Value":"_framework/System.Linq.AsyncEnumerable.wasm"}]},{"Route":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\1u9lol5zjk-{0}-4m1mh525k0-4m1mh525k0.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006961607"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"143644"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m1mh525k0"},{"Name":"integrity","Value":"sha256-VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48="},{"Name":"label","Value":"_framework/System.Linq.AsyncEnumerable.wasm"},{"Name":"original-resource","Value":"\"VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48=\""}]},{"Route":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\1u9lol5zjk-{0}-4m1mh525k0-4m1mh525k0.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"143644"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m1mh525k0"},{"Name":"integrity","Value":"sha256-Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8="},{"Name":"label","Value":"_framework/System.Linq.AsyncEnumerable.wasm.gz"}]},{"Route":"_framework/System.Linq.AsyncEnumerable.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.AsyncEnumerable.4m1mh525k0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"446229"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48="}]},{"Route":"_framework/System.Linq.AsyncEnumerable.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\1u9lol5zjk-{0}-4m1mh525k0-4m1mh525k0.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006961607"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"143644"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48="},{"Name":"original-resource","Value":"\"VAkeSeC4p1GES8hvFcOK8w+65ZTmDdAbbLIL4zX5T48=\""}]},{"Route":"_framework/System.Linq.AsyncEnumerable.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\1u9lol5zjk-{0}-4m1mh525k0-4m1mh525k0.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"143644"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Cn1v6/usN9S955e3gic7aV4t9FFNR/agSQuDYyqDee8="}]},{"Route":"_framework/System.Linq.Expressions.4nat0rber0.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.Expressions.4nat0rber0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"565013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4nat0rber0"},{"Name":"integrity","Value":"sha256-IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA="},{"Name":"label","Value":"_framework/System.Linq.Expressions.wasm"}]},{"Route":"_framework/System.Linq.Expressions.4nat0rber0.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\r0xa1dsvvu-{0}-4nat0rber0-4nat0rber0.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004689002"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"213264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4nat0rber0"},{"Name":"integrity","Value":"sha256-IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA="},{"Name":"label","Value":"_framework/System.Linq.Expressions.wasm"},{"Name":"original-resource","Value":"\"IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA=\""}]},{"Route":"_framework/System.Linq.Expressions.4nat0rber0.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\r0xa1dsvvu-{0}-4nat0rber0-4nat0rber0.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"213264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4nat0rber0"},{"Name":"integrity","Value":"sha256-Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0="},{"Name":"label","Value":"_framework/System.Linq.Expressions.wasm.gz"}]},{"Route":"_framework/System.Linq.Expressions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.Expressions.4nat0rber0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"565013"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA="}]},{"Route":"_framework/System.Linq.Expressions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\r0xa1dsvvu-{0}-4nat0rber0-4nat0rber0.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004689002"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"213264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA="},{"Name":"original-resource","Value":"\"IFc8j2OJqBJYMshhomqGcyqauGqfhq4KWrNPqoTSGkA=\""}]},{"Route":"_framework/System.Linq.Expressions.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\r0xa1dsvvu-{0}-4nat0rber0-4nat0rber0.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"213264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Az1MttDJBcaixWXOw9FeGdEcKA8QCT+3zzRC4dE7Nc0="}]},{"Route":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.Parallel.qf7zemz9aw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"212757"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qf7zemz9aw"},{"Name":"integrity","Value":"sha256-ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18="},{"Name":"label","Value":"_framework/System.Linq.Parallel.wasm"}]},{"Route":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\35llacexwm-{0}-qf7zemz9aw-qf7zemz9aw.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011571663"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86417"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qf7zemz9aw"},{"Name":"integrity","Value":"sha256-ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18="},{"Name":"label","Value":"_framework/System.Linq.Parallel.wasm"},{"Name":"original-resource","Value":"\"ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18=\""}]},{"Route":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\35llacexwm-{0}-qf7zemz9aw-qf7zemz9aw.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86417"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qf7zemz9aw"},{"Name":"integrity","Value":"sha256-NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo="},{"Name":"label","Value":"_framework/System.Linq.Parallel.wasm.gz"}]},{"Route":"_framework/System.Linq.Parallel.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.Parallel.qf7zemz9aw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"212757"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18="}]},{"Route":"_framework/System.Linq.Parallel.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\35llacexwm-{0}-qf7zemz9aw-qf7zemz9aw.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011571663"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86417"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18="},{"Name":"original-resource","Value":"\"ZmZj76lCqddo2AnWfeDbzXoQQfY7O/V4/cMudLALO18=\""}]},{"Route":"_framework/System.Linq.Parallel.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\35llacexwm-{0}-qf7zemz9aw-qf7zemz9aw.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86417"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NVOhN9Tiampwuxk0yjN1WEYPJ4Sm7/vvLy3j0mPAMGo="}]},{"Route":"_framework/System.Linq.Queryable.vwinf8twbn.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.Queryable.vwinf8twbn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"68373"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vwinf8twbn"},{"Name":"integrity","Value":"sha256-geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM="},{"Name":"label","Value":"_framework/System.Linq.Queryable.wasm"}]},{"Route":"_framework/System.Linq.Queryable.vwinf8twbn.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hylqczc46z-{0}-vwinf8twbn-vwinf8twbn.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000046755190"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21387"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vwinf8twbn"},{"Name":"integrity","Value":"sha256-geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM="},{"Name":"label","Value":"_framework/System.Linq.Queryable.wasm"},{"Name":"original-resource","Value":"\"geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM=\""}]},{"Route":"_framework/System.Linq.Queryable.vwinf8twbn.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hylqczc46z-{0}-vwinf8twbn-vwinf8twbn.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21387"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vwinf8twbn"},{"Name":"integrity","Value":"sha256-K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts="},{"Name":"label","Value":"_framework/System.Linq.Queryable.wasm.gz"}]},{"Route":"_framework/System.Linq.Queryable.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.Queryable.vwinf8twbn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"68373"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM="}]},{"Route":"_framework/System.Linq.Queryable.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hylqczc46z-{0}-vwinf8twbn-vwinf8twbn.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000046755190"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21387"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM="},{"Name":"original-resource","Value":"\"geFlo3mx7Fy4jEOfa1szXQXkLw20bnYcuBLLVLluEEM=\""}]},{"Route":"_framework/System.Linq.Queryable.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hylqczc46z-{0}-vwinf8twbn-vwinf8twbn.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21387"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K0waDeY/T8UrFHRAafjYsMSmXIGYtfU2BXS/I9puTts="}]},{"Route":"_framework/System.Linq.rp2jklkmsi.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.rp2jklkmsi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"190741"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rp2jklkmsi"},{"Name":"integrity","Value":"sha256-f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA="},{"Name":"label","Value":"_framework/System.Linq.wasm"}]},{"Route":"_framework/System.Linq.rp2jklkmsi.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\p0pe0blimm-{0}-rp2jklkmsi-rp2jklkmsi.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013362017"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"74838"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rp2jklkmsi"},{"Name":"integrity","Value":"sha256-f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA="},{"Name":"label","Value":"_framework/System.Linq.wasm"},{"Name":"original-resource","Value":"\"f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA=\""}]},{"Route":"_framework/System.Linq.rp2jklkmsi.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\p0pe0blimm-{0}-rp2jklkmsi-rp2jklkmsi.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"74838"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rp2jklkmsi"},{"Name":"integrity","Value":"sha256-+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw="},{"Name":"label","Value":"_framework/System.Linq.wasm.gz"}]},{"Route":"_framework/System.Linq.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Linq.rp2jklkmsi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"190741"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA="}]},{"Route":"_framework/System.Linq.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\p0pe0blimm-{0}-rp2jklkmsi-rp2jklkmsi.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013362017"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"74838"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA="},{"Name":"original-resource","Value":"\"f1wo8JHk5OxZczStVC/MjjaT4OJ6cx/2+Hcz1mLoYeA=\""}]},{"Route":"_framework/System.Linq.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\p0pe0blimm-{0}-rp2jklkmsi-rp2jklkmsi.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"74838"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+xH72DYDtJVCwwmPHcF3tqMh/Tq0TQgbh+J1BPedTmw="}]},{"Route":"_framework/System.Memory.3r0soomurg.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Memory.3r0soomurg.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"45333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3r0soomurg"},{"Name":"integrity","Value":"sha256-z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc="},{"Name":"label","Value":"_framework/System.Memory.wasm"}]},{"Route":"_framework/System.Memory.3r0soomurg.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zip5atfnk1-{0}-3r0soomurg-3r0soomurg.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000048600311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3r0soomurg"},{"Name":"integrity","Value":"sha256-z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc="},{"Name":"label","Value":"_framework/System.Memory.wasm"},{"Name":"original-resource","Value":"\"z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc=\""}]},{"Route":"_framework/System.Memory.3r0soomurg.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zip5atfnk1-{0}-3r0soomurg-3r0soomurg.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3r0soomurg"},{"Name":"integrity","Value":"sha256-lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60="},{"Name":"label","Value":"_framework/System.Memory.wasm.gz"}]},{"Route":"_framework/System.Memory.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Memory.3r0soomurg.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"45333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc="}]},{"Route":"_framework/System.Memory.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zip5atfnk1-{0}-3r0soomurg-3r0soomurg.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000048600311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc="},{"Name":"original-resource","Value":"\"z0os6kbHJ8RohqezIHtamEXO2TIYXeESYFfzPO5Yqbc=\""}]},{"Route":"_framework/System.Memory.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zip5atfnk1-{0}-3r0soomurg-3r0soomurg.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lecMb4KahiWI/QNTBHixcCa10qnizpiEbq6X1d+nY60="}]},{"Route":"_framework/System.Net.Http.9rl4gopayw.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Http.9rl4gopayw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"285973"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9rl4gopayw"},{"Name":"integrity","Value":"sha256-JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU="},{"Name":"label","Value":"_framework/System.Net.Http.wasm"}]},{"Route":"_framework/System.Net.Http.9rl4gopayw.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hz1tpel2o0-{0}-9rl4gopayw-9rl4gopayw.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008532787"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"117194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9rl4gopayw"},{"Name":"integrity","Value":"sha256-JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU="},{"Name":"label","Value":"_framework/System.Net.Http.wasm"},{"Name":"original-resource","Value":"\"JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU=\""}]},{"Route":"_framework/System.Net.Http.9rl4gopayw.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hz1tpel2o0-{0}-9rl4gopayw-9rl4gopayw.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"117194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9rl4gopayw"},{"Name":"integrity","Value":"sha256-Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc="},{"Name":"label","Value":"_framework/System.Net.Http.wasm.gz"}]},{"Route":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Http.Json.t9gqpmtbpb.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t9gqpmtbpb"},{"Name":"integrity","Value":"sha256-H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0="},{"Name":"label","Value":"_framework/System.Net.Http.Json.wasm"}]},{"Route":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zxgtro8yo7-{0}-t9gqpmtbpb-t9gqpmtbpb.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051591601"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19382"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t9gqpmtbpb"},{"Name":"integrity","Value":"sha256-H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0="},{"Name":"label","Value":"_framework/System.Net.Http.Json.wasm"},{"Name":"original-resource","Value":"\"H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0=\""}]},{"Route":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zxgtro8yo7-{0}-t9gqpmtbpb-t9gqpmtbpb.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19382"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t9gqpmtbpb"},{"Name":"integrity","Value":"sha256-h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg="},{"Name":"label","Value":"_framework/System.Net.Http.Json.wasm.gz"}]},{"Route":"_framework/System.Net.Http.Json.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Http.Json.t9gqpmtbpb.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0="}]},{"Route":"_framework/System.Net.Http.Json.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zxgtro8yo7-{0}-t9gqpmtbpb-t9gqpmtbpb.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051591601"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19382"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0="},{"Name":"original-resource","Value":"\"H8rrK/mJCEPyvxADWjnHOUWZLmI5LKpzgg+Nm8qCre0=\""}]},{"Route":"_framework/System.Net.Http.Json.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zxgtro8yo7-{0}-t9gqpmtbpb-t9gqpmtbpb.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19382"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-h3snS/jGQwMy75UJmcb+YrhqiRPIjQK7eKcyrh6n5Wg="}]},{"Route":"_framework/System.Net.Http.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Http.9rl4gopayw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"285973"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU="}]},{"Route":"_framework/System.Net.Http.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hz1tpel2o0-{0}-9rl4gopayw-9rl4gopayw.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008532787"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"117194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU="},{"Name":"original-resource","Value":"\"JcdFQvurhm0v4MWEyw6Tz3A2DaJg7rlh5ogBBafyRJU=\""}]},{"Route":"_framework/System.Net.Http.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hz1tpel2o0-{0}-9rl4gopayw-9rl4gopayw.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"117194"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yv0f16oOjHP2S1VpNppqda0SGEKrbRsRE/mGvOAdXKc="}]},{"Route":"_framework/System.Net.HttpListener.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.HttpListener.zg37o92yol.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE="}]},{"Route":"_framework/System.Net.HttpListener.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mkyh3erkm9-{0}-zg37o92yol-zg37o92yol.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000062289772"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE="},{"Name":"original-resource","Value":"\"rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE=\""}]},{"Route":"_framework/System.Net.HttpListener.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mkyh3erkm9-{0}-zg37o92yol-zg37o92yol.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs="}]},{"Route":"_framework/System.Net.HttpListener.zg37o92yol.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.HttpListener.zg37o92yol.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zg37o92yol"},{"Name":"integrity","Value":"sha256-rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE="},{"Name":"label","Value":"_framework/System.Net.HttpListener.wasm"}]},{"Route":"_framework/System.Net.HttpListener.zg37o92yol.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mkyh3erkm9-{0}-zg37o92yol-zg37o92yol.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000062289772"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zg37o92yol"},{"Name":"integrity","Value":"sha256-rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE="},{"Name":"label","Value":"_framework/System.Net.HttpListener.wasm"},{"Name":"original-resource","Value":"\"rXZFgUW0v726aXDEjtobpEUHiur/egvWciebswh83pE=\""}]},{"Route":"_framework/System.Net.HttpListener.zg37o92yol.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mkyh3erkm9-{0}-zg37o92yol-zg37o92yol.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16053"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zg37o92yol"},{"Name":"integrity","Value":"sha256-2qPoCO3DJhmeXYl4MlQFTY2qwnOPoOi4h7ramYFKAcs="},{"Name":"label","Value":"_framework/System.Net.HttpListener.wasm.gz"}]},{"Route":"_framework/System.Net.Mail.qk214miut2.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Mail.qk214miut2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"94997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qk214miut2"},{"Name":"integrity","Value":"sha256-tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk="},{"Name":"label","Value":"_framework/System.Net.Mail.wasm"}]},{"Route":"_framework/System.Net.Mail.qk214miut2.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\019ldzgpk2-{0}-qk214miut2-qk214miut2.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023562122"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42440"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qk214miut2"},{"Name":"integrity","Value":"sha256-tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk="},{"Name":"label","Value":"_framework/System.Net.Mail.wasm"},{"Name":"original-resource","Value":"\"tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk=\""}]},{"Route":"_framework/System.Net.Mail.qk214miut2.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\019ldzgpk2-{0}-qk214miut2-qk214miut2.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42440"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qk214miut2"},{"Name":"integrity","Value":"sha256-T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys="},{"Name":"label","Value":"_framework/System.Net.Mail.wasm.gz"}]},{"Route":"_framework/System.Net.Mail.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Mail.qk214miut2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"94997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk="}]},{"Route":"_framework/System.Net.Mail.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\019ldzgpk2-{0}-qk214miut2-qk214miut2.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023562122"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42440"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk="},{"Name":"original-resource","Value":"\"tgCPfswJg6u/TM5umZi2C5V3IYUPRK9rxiKkf51iTzk=\""}]},{"Route":"_framework/System.Net.Mail.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\019ldzgpk2-{0}-qk214miut2-qk214miut2.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42440"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-T9uM6lDxlSslGijjNgqeY/ERP/qZWI8gFyUT9kC8Dys="}]},{"Route":"_framework/System.Net.NameResolution.50dzekuu9x.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.NameResolution.50dzekuu9x.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"14101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"50dzekuu9x"},{"Name":"integrity","Value":"sha256-a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs="},{"Name":"label","Value":"_framework/System.Net.NameResolution.wasm"}]},{"Route":"_framework/System.Net.NameResolution.50dzekuu9x.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ui1ul8tpby-{0}-50dzekuu9x-50dzekuu9x.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000168520391"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"50dzekuu9x"},{"Name":"integrity","Value":"sha256-a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs="},{"Name":"label","Value":"_framework/System.Net.NameResolution.wasm"},{"Name":"original-resource","Value":"\"a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs=\""}]},{"Route":"_framework/System.Net.NameResolution.50dzekuu9x.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ui1ul8tpby-{0}-50dzekuu9x-50dzekuu9x.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"50dzekuu9x"},{"Name":"integrity","Value":"sha256-A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI="},{"Name":"label","Value":"_framework/System.Net.NameResolution.wasm.gz"}]},{"Route":"_framework/System.Net.NameResolution.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.NameResolution.50dzekuu9x.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"14101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs="}]},{"Route":"_framework/System.Net.NameResolution.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ui1ul8tpby-{0}-50dzekuu9x-50dzekuu9x.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000168520391"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs="},{"Name":"original-resource","Value":"\"a9WehA9NpMugsS2YEWWiuuSnAUm6S961wESCFfYHMGs=\""}]},{"Route":"_framework/System.Net.NameResolution.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ui1ul8tpby-{0}-50dzekuu9x-50dzekuu9x.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-A9/weYRUVoYh+S8ZPuPgh0rr4gQnP9M5DuSaZDSz7BI="}]},{"Route":"_framework/System.Net.NetworkInformation.k8343mqust.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.NetworkInformation.k8343mqust.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8343mqust"},{"Name":"integrity","Value":"sha256-ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8="},{"Name":"label","Value":"_framework/System.Net.NetworkInformation.wasm"}]},{"Route":"_framework/System.Net.NetworkInformation.k8343mqust.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\luuq2ppq8r-{0}-k8343mqust-k8343mqust.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000078560767"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12728"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8343mqust"},{"Name":"integrity","Value":"sha256-ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8="},{"Name":"label","Value":"_framework/System.Net.NetworkInformation.wasm"},{"Name":"original-resource","Value":"\"ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8=\""}]},{"Route":"_framework/System.Net.NetworkInformation.k8343mqust.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\luuq2ppq8r-{0}-k8343mqust-k8343mqust.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12728"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8343mqust"},{"Name":"integrity","Value":"sha256-Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0="},{"Name":"label","Value":"_framework/System.Net.NetworkInformation.wasm.gz"}]},{"Route":"_framework/System.Net.NetworkInformation.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.NetworkInformation.k8343mqust.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"32021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8="}]},{"Route":"_framework/System.Net.NetworkInformation.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\luuq2ppq8r-{0}-k8343mqust-k8343mqust.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000078560767"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12728"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8="},{"Name":"original-resource","Value":"\"ZAR9QVlpUvh4/EQSGZMQxi2g1hDGyGIdupJXCDLHrt8=\""}]},{"Route":"_framework/System.Net.NetworkInformation.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\luuq2ppq8r-{0}-k8343mqust-k8343mqust.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12728"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Afd8l0QBw5S5kG/WJvlVmS0Owq/2mJqIX+Oo1rgAzQ0="}]},{"Route":"_framework/System.Net.Ping.00vh2kvsiz.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Ping.00vh2kvsiz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"17685"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"00vh2kvsiz"},{"Name":"integrity","Value":"sha256-MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s="},{"Name":"label","Value":"_framework/System.Net.Ping.wasm"}]},{"Route":"_framework/System.Net.Ping.00vh2kvsiz.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\yswenxxy60-{0}-00vh2kvsiz-00vh2kvsiz.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000132573247"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7542"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"00vh2kvsiz"},{"Name":"integrity","Value":"sha256-MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s="},{"Name":"label","Value":"_framework/System.Net.Ping.wasm"},{"Name":"original-resource","Value":"\"MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s=\""}]},{"Route":"_framework/System.Net.Ping.00vh2kvsiz.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\yswenxxy60-{0}-00vh2kvsiz-00vh2kvsiz.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7542"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"00vh2kvsiz"},{"Name":"integrity","Value":"sha256-MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM="},{"Name":"label","Value":"_framework/System.Net.Ping.wasm.gz"}]},{"Route":"_framework/System.Net.Ping.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Ping.00vh2kvsiz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"17685"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s="}]},{"Route":"_framework/System.Net.Ping.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\yswenxxy60-{0}-00vh2kvsiz-00vh2kvsiz.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000132573247"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7542"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s="},{"Name":"original-resource","Value":"\"MLlkgkZbPgdL0Cm83IFdtf1tlum1sMeYD1u5Syl+X0s=\""}]},{"Route":"_framework/System.Net.Ping.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\yswenxxy60-{0}-00vh2kvsiz-00vh2kvsiz.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7542"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MAYrb05j9RkPP2Pzp9F1edhirvMNolnAvlzhVt6hQZM="}]},{"Route":"_framework/System.Net.Primitives.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Primitives.whs5oed1wm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"97045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s="}]},{"Route":"_framework/System.Net.Primitives.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\e2kh1woy2q-{0}-whs5oed1wm-whs5oed1wm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000021790765"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"45890"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s="},{"Name":"original-resource","Value":"\"fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s=\""}]},{"Route":"_framework/System.Net.Primitives.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\e2kh1woy2q-{0}-whs5oed1wm-whs5oed1wm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"45890"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0="}]},{"Route":"_framework/System.Net.Primitives.whs5oed1wm.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Primitives.whs5oed1wm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"97045"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"whs5oed1wm"},{"Name":"integrity","Value":"sha256-fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s="},{"Name":"label","Value":"_framework/System.Net.Primitives.wasm"}]},{"Route":"_framework/System.Net.Primitives.whs5oed1wm.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\e2kh1woy2q-{0}-whs5oed1wm-whs5oed1wm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000021790765"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"45890"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"whs5oed1wm"},{"Name":"integrity","Value":"sha256-fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s="},{"Name":"label","Value":"_framework/System.Net.Primitives.wasm"},{"Name":"original-resource","Value":"\"fMD1M+LzoYuL3Z8woZXrgr7TWATzvi4kdR92pTY+56s=\""}]},{"Route":"_framework/System.Net.Primitives.whs5oed1wm.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\e2kh1woy2q-{0}-whs5oed1wm-whs5oed1wm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"45890"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"whs5oed1wm"},{"Name":"integrity","Value":"sha256-v4VqyiI/u92jxL7NYH++qoIo90Mxi//qKynSjy4NFJ0="},{"Name":"label","Value":"_framework/System.Net.Primitives.wasm.gz"}]},{"Route":"_framework/System.Net.Quic.grloe2ix5j.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Quic.grloe2ix5j.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"28949"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"grloe2ix5j"},{"Name":"integrity","Value":"sha256-1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA="},{"Name":"label","Value":"_framework/System.Net.Quic.wasm"}]},{"Route":"_framework/System.Net.Quic.grloe2ix5j.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\t7lpa3lwov-{0}-grloe2ix5j-grloe2ix5j.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000091449474"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10934"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"grloe2ix5j"},{"Name":"integrity","Value":"sha256-1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA="},{"Name":"label","Value":"_framework/System.Net.Quic.wasm"},{"Name":"original-resource","Value":"\"1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA=\""}]},{"Route":"_framework/System.Net.Quic.grloe2ix5j.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\t7lpa3lwov-{0}-grloe2ix5j-grloe2ix5j.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10934"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"grloe2ix5j"},{"Name":"integrity","Value":"sha256-IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8="},{"Name":"label","Value":"_framework/System.Net.Quic.wasm.gz"}]},{"Route":"_framework/System.Net.Quic.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Quic.grloe2ix5j.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"28949"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA="}]},{"Route":"_framework/System.Net.Quic.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\t7lpa3lwov-{0}-grloe2ix5j-grloe2ix5j.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000091449474"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10934"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA="},{"Name":"original-resource","Value":"\"1AVMwwYA71Pny3jB5iq4ptl4z6hg38n5f2Y+VZ93uBA=\""}]},{"Route":"_framework/System.Net.Quic.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\t7lpa3lwov-{0}-grloe2ix5j-grloe2ix5j.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10934"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IZhNDCoxgS/SlC/oHtkYTq8NH68PKqBcCwSnyHlT+A8="}]},{"Route":"_framework/System.Net.Requests.r8ar2pd94c.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Requests.r8ar2pd94c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r8ar2pd94c"},{"Name":"integrity","Value":"sha256-ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88="},{"Name":"label","Value":"_framework/System.Net.Requests.wasm"}]},{"Route":"_framework/System.Net.Requests.r8ar2pd94c.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zy4nys0fbm-{0}-r8ar2pd94c-r8ar2pd94c.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000049275648"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20293"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r8ar2pd94c"},{"Name":"integrity","Value":"sha256-ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88="},{"Name":"label","Value":"_framework/System.Net.Requests.wasm"},{"Name":"original-resource","Value":"\"ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88=\""}]},{"Route":"_framework/System.Net.Requests.r8ar2pd94c.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zy4nys0fbm-{0}-r8ar2pd94c-r8ar2pd94c.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20293"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r8ar2pd94c"},{"Name":"integrity","Value":"sha256-gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA="},{"Name":"label","Value":"_framework/System.Net.Requests.wasm.gz"}]},{"Route":"_framework/System.Net.Requests.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Requests.r8ar2pd94c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88="}]},{"Route":"_framework/System.Net.Requests.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zy4nys0fbm-{0}-r8ar2pd94c-r8ar2pd94c.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000049275648"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20293"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88="},{"Name":"original-resource","Value":"\"ZT333Ng2GK/Z3hOnS6JKcccs/GkN6j+YHpbi7SNCu88=\""}]},{"Route":"_framework/System.Net.Requests.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zy4nys0fbm-{0}-r8ar2pd94c-r8ar2pd94c.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20293"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gYcSg3pxQhW6bpnWnBpRJUaLN/g+kCtFykYrl9aEwNA="}]},{"Route":"_framework/System.Net.Security.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Security.yn3zcskz4j.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"104213"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ="}]},{"Route":"_framework/System.Net.Security.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\iem13k4n35-{0}-yn3zcskz4j-yn3zcskz4j.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029683279"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33688"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ="},{"Name":"original-resource","Value":"\"TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ=\""}]},{"Route":"_framework/System.Net.Security.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\iem13k4n35-{0}-yn3zcskz4j-yn3zcskz4j.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33688"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ="}]},{"Route":"_framework/System.Net.Security.yn3zcskz4j.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Security.yn3zcskz4j.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"104213"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yn3zcskz4j"},{"Name":"integrity","Value":"sha256-TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ="},{"Name":"label","Value":"_framework/System.Net.Security.wasm"}]},{"Route":"_framework/System.Net.Security.yn3zcskz4j.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\iem13k4n35-{0}-yn3zcskz4j-yn3zcskz4j.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029683279"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33688"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yn3zcskz4j"},{"Name":"integrity","Value":"sha256-TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ="},{"Name":"label","Value":"_framework/System.Net.Security.wasm"},{"Name":"original-resource","Value":"\"TnnWesp499tqC2Fh5lxyIhfC0JlFkcSdGo+oUiptcoQ=\""}]},{"Route":"_framework/System.Net.Security.yn3zcskz4j.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\iem13k4n35-{0}-yn3zcskz4j-yn3zcskz4j.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33688"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yn3zcskz4j"},{"Name":"integrity","Value":"sha256-pIXyqicM5CxChUNnGz+i3z7trej151xIc65XoR4iCtQ="},{"Name":"label","Value":"_framework/System.Net.Security.wasm.gz"}]},{"Route":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.ServerSentEvents.37wbq4jfsy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"30485"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37wbq4jfsy"},{"Name":"integrity","Value":"sha256-Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho="},{"Name":"label","Value":"_framework/System.Net.ServerSentEvents.wasm"}]},{"Route":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\t2mopjsgs5-{0}-37wbq4jfsy-37wbq4jfsy.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000068175620"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14667"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37wbq4jfsy"},{"Name":"integrity","Value":"sha256-Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho="},{"Name":"label","Value":"_framework/System.Net.ServerSentEvents.wasm"},{"Name":"original-resource","Value":"\"Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho=\""}]},{"Route":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\t2mopjsgs5-{0}-37wbq4jfsy-37wbq4jfsy.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14667"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37wbq4jfsy"},{"Name":"integrity","Value":"sha256-FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o="},{"Name":"label","Value":"_framework/System.Net.ServerSentEvents.wasm.gz"}]},{"Route":"_framework/System.Net.ServerSentEvents.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.ServerSentEvents.37wbq4jfsy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"30485"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho="}]},{"Route":"_framework/System.Net.ServerSentEvents.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\t2mopjsgs5-{0}-37wbq4jfsy-37wbq4jfsy.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000068175620"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14667"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho="},{"Name":"original-resource","Value":"\"Qa4qeG6luT6eaB+xDTb/+ot6Py+/K3/gBPRmA/0F2Ho=\""}]},{"Route":"_framework/System.Net.ServerSentEvents.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\t2mopjsgs5-{0}-37wbq4jfsy-37wbq4jfsy.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14667"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FnyrL1gmBGFyoYBr5cv32VLGVEO1eSEygHsQqnGYG2o="}]},{"Route":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.ServicePoint.j436yqvrg9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j436yqvrg9"},{"Name":"integrity","Value":"sha256-rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg="},{"Name":"label","Value":"_framework/System.Net.ServicePoint.wasm"}]},{"Route":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sz4qmwa0cz-{0}-j436yqvrg9-j436yqvrg9.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000458715596"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2179"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j436yqvrg9"},{"Name":"integrity","Value":"sha256-rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg="},{"Name":"label","Value":"_framework/System.Net.ServicePoint.wasm"},{"Name":"original-resource","Value":"\"rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg=\""}]},{"Route":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sz4qmwa0cz-{0}-j436yqvrg9-j436yqvrg9.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2179"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j436yqvrg9"},{"Name":"integrity","Value":"sha256-NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI="},{"Name":"label","Value":"_framework/System.Net.ServicePoint.wasm.gz"}]},{"Route":"_framework/System.Net.ServicePoint.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.ServicePoint.j436yqvrg9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg="}]},{"Route":"_framework/System.Net.ServicePoint.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sz4qmwa0cz-{0}-j436yqvrg9-j436yqvrg9.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000458715596"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2179"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg="},{"Name":"original-resource","Value":"\"rfC31myqS6LNlAL4WjPesdfsAuPezjX/GhMJeXEclOg=\""}]},{"Route":"_framework/System.Net.ServicePoint.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sz4qmwa0cz-{0}-j436yqvrg9-j436yqvrg9.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2179"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NFA0OxDlZ94DOgC4AjKwCCjrId9x1ap9WvGlZU/t7AI="}]},{"Route":"_framework/System.Net.Sockets.utzdm9sw2p.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Sockets.utzdm9sw2p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"64277"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"utzdm9sw2p"},{"Name":"integrity","Value":"sha256-olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo="},{"Name":"label","Value":"_framework/System.Net.Sockets.wasm"}]},{"Route":"_framework/System.Net.Sockets.utzdm9sw2p.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ozd9l95cy8-{0}-utzdm9sw2p-utzdm9sw2p.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000043631921"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22918"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"utzdm9sw2p"},{"Name":"integrity","Value":"sha256-olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo="},{"Name":"label","Value":"_framework/System.Net.Sockets.wasm"},{"Name":"original-resource","Value":"\"olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo=\""}]},{"Route":"_framework/System.Net.Sockets.utzdm9sw2p.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ozd9l95cy8-{0}-utzdm9sw2p-utzdm9sw2p.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22918"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"utzdm9sw2p"},{"Name":"integrity","Value":"sha256-XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI="},{"Name":"label","Value":"_framework/System.Net.Sockets.wasm.gz"}]},{"Route":"_framework/System.Net.Sockets.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.Sockets.utzdm9sw2p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"64277"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo="}]},{"Route":"_framework/System.Net.Sockets.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ozd9l95cy8-{0}-utzdm9sw2p-utzdm9sw2p.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000043631921"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22918"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo="},{"Name":"original-resource","Value":"\"olBBLxzHFaVDMyIk/vsKfWT2pPiEOfEDBOfqUvfExHo=\""}]},{"Route":"_framework/System.Net.Sockets.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ozd9l95cy8-{0}-utzdm9sw2p-utzdm9sw2p.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22918"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XKPXKSFGAWkfrQVJTZI01SsBxUexxArhHrpT/tSgBJI="}]},{"Route":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebClient.e5a4gx4ylt.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e5a4gx4ylt"},{"Name":"integrity","Value":"sha256-YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk="},{"Name":"label","Value":"_framework/System.Net.WebClient.wasm"}]},{"Route":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0qximx7h6w-{0}-e5a4gx4ylt-e5a4gx4ylt.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067870232"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e5a4gx4ylt"},{"Name":"integrity","Value":"sha256-YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk="},{"Name":"label","Value":"_framework/System.Net.WebClient.wasm"},{"Name":"original-resource","Value":"\"YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk=\""}]},{"Route":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0qximx7h6w-{0}-e5a4gx4ylt-e5a4gx4ylt.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e5a4gx4ylt"},{"Name":"integrity","Value":"sha256-FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI="},{"Name":"label","Value":"_framework/System.Net.WebClient.wasm.gz"}]},{"Route":"_framework/System.Net.WebClient.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebClient.e5a4gx4ylt.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"45845"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk="}]},{"Route":"_framework/System.Net.WebClient.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0qximx7h6w-{0}-e5a4gx4ylt-e5a4gx4ylt.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067870232"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk="},{"Name":"original-resource","Value":"\"YgDGVpDgYfND/OnpdQ3Lh73I2mSrAkYunGBs2A+21lk=\""}]},{"Route":"_framework/System.Net.WebClient.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0qximx7h6w-{0}-e5a4gx4ylt-e5a4gx4ylt.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FdckT46QNTDJ/PU4R6n/x1JlzPBzA/5Eggub75+ycdI="}]},{"Route":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebHeaderCollection.rbzkmij005.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rbzkmij005"},{"Name":"integrity","Value":"sha256-132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE="},{"Name":"label","Value":"_framework/System.Net.WebHeaderCollection.wasm"}]},{"Route":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\xfyu8pi705-{0}-rbzkmij005-rbzkmij005.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000097952787"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10208"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rbzkmij005"},{"Name":"integrity","Value":"sha256-132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE="},{"Name":"label","Value":"_framework/System.Net.WebHeaderCollection.wasm"},{"Name":"original-resource","Value":"\"132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE=\""}]},{"Route":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\xfyu8pi705-{0}-rbzkmij005-rbzkmij005.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10208"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rbzkmij005"},{"Name":"integrity","Value":"sha256-y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU="},{"Name":"label","Value":"_framework/System.Net.WebHeaderCollection.wasm.gz"}]},{"Route":"_framework/System.Net.WebHeaderCollection.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebHeaderCollection.rbzkmij005.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"22805"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE="}]},{"Route":"_framework/System.Net.WebHeaderCollection.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\xfyu8pi705-{0}-rbzkmij005-rbzkmij005.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000097952787"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10208"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE="},{"Name":"original-resource","Value":"\"132kZUevDfV/PbTb42SxRVMeC6mV9Nh8eB+zINB3QVE=\""}]},{"Route":"_framework/System.Net.WebHeaderCollection.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\xfyu8pi705-{0}-rbzkmij005-rbzkmij005.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10208"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-y15qJA9LYCTvv/KGB21lwdcDNNqs9EN3CgVIgjsOccU="}]},{"Route":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebProxy.38jcv8jeeu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"38jcv8jeeu"},{"Name":"integrity","Value":"sha256-UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok="},{"Name":"label","Value":"_framework/System.Net.WebProxy.wasm"}]},{"Route":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kwztau0oyy-{0}-38jcv8jeeu-38jcv8jeeu.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000177872643"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5621"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"38jcv8jeeu"},{"Name":"integrity","Value":"sha256-UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok="},{"Name":"label","Value":"_framework/System.Net.WebProxy.wasm"},{"Name":"original-resource","Value":"\"UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok=\""}]},{"Route":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kwztau0oyy-{0}-38jcv8jeeu-38jcv8jeeu.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5621"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"38jcv8jeeu"},{"Name":"integrity","Value":"sha256-8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA="},{"Name":"label","Value":"_framework/System.Net.WebProxy.wasm.gz"}]},{"Route":"_framework/System.Net.WebProxy.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebProxy.38jcv8jeeu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok="}]},{"Route":"_framework/System.Net.WebProxy.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kwztau0oyy-{0}-38jcv8jeeu-38jcv8jeeu.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000177872643"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5621"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok="},{"Name":"original-resource","Value":"\"UzukfIgTmjE0J7tXX9/+wYT7Ma5CP7h4E26PrsA7Uok=\""}]},{"Route":"_framework/System.Net.WebProxy.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kwztau0oyy-{0}-38jcv8jeeu-38jcv8jeeu.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5621"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8YMuhDaKVIY/E53Jt0dsFHd9UQC8s2CKzgkXXIdFMyA="}]},{"Route":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebSockets.Client.nv5izr3rt6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"42261"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nv5izr3rt6"},{"Name":"integrity","Value":"sha256-vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc="},{"Name":"label","Value":"_framework/System.Net.WebSockets.Client.wasm"}]},{"Route":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zc08r46902-{0}-nv5izr3rt6-nv5izr3rt6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000055803571"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17919"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nv5izr3rt6"},{"Name":"integrity","Value":"sha256-vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc="},{"Name":"label","Value":"_framework/System.Net.WebSockets.Client.wasm"},{"Name":"original-resource","Value":"\"vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc=\""}]},{"Route":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zc08r46902-{0}-nv5izr3rt6-nv5izr3rt6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17919"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nv5izr3rt6"},{"Name":"integrity","Value":"sha256-XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY="},{"Name":"label","Value":"_framework/System.Net.WebSockets.Client.wasm.gz"}]},{"Route":"_framework/System.Net.WebSockets.Client.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebSockets.Client.nv5izr3rt6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"42261"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc="}]},{"Route":"_framework/System.Net.WebSockets.Client.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zc08r46902-{0}-nv5izr3rt6-nv5izr3rt6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000055803571"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17919"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc="},{"Name":"original-resource","Value":"\"vdL/w04I7fbn++cd4guuIR+w66BHyunOD3ZjUz481jc=\""}]},{"Route":"_framework/System.Net.WebSockets.Client.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zc08r46902-{0}-nv5izr3rt6-nv5izr3rt6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"17919"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XKYWGN/5ZWKq9nO3yFWRsacgXwTkcgDtWg4OCd979lY="}]},{"Route":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebSockets.hdzn84g6uh.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"98581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hdzn84g6uh"},{"Name":"integrity","Value":"sha256-1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE="},{"Name":"label","Value":"_framework/System.Net.WebSockets.wasm"}]},{"Route":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ttu14uxg7m-{0}-hdzn84g6uh-hdzn84g6uh.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000024645718"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"40574"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hdzn84g6uh"},{"Name":"integrity","Value":"sha256-1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE="},{"Name":"label","Value":"_framework/System.Net.WebSockets.wasm"},{"Name":"original-resource","Value":"\"1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE=\""}]},{"Route":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ttu14uxg7m-{0}-hdzn84g6uh-hdzn84g6uh.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"40574"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hdzn84g6uh"},{"Name":"integrity","Value":"sha256-dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo="},{"Name":"label","Value":"_framework/System.Net.WebSockets.wasm.gz"}]},{"Route":"_framework/System.Net.WebSockets.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.WebSockets.hdzn84g6uh.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"98581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE="}]},{"Route":"_framework/System.Net.WebSockets.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ttu14uxg7m-{0}-hdzn84g6uh-hdzn84g6uh.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000024645718"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"40574"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE="},{"Name":"original-resource","Value":"\"1SrBg89TmJRX1mFY0vCVRlY2NTmPLw3MXjQaMOz15gE=\""}]},{"Route":"_framework/System.Net.WebSockets.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ttu14uxg7m-{0}-hdzn84g6uh-hdzn84g6uh.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"40574"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dU+UigFhJjzQQKA/Zf0g3v84qqSOqnjAFUhI+XOhDlo="}]},{"Route":"_framework/System.Net.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.zku96ychk7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU="}]},{"Route":"_framework/System.Net.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mwxs9jgpi5-{0}-zku96ychk7-zku96ychk7.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000362976407"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2754"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU="},{"Name":"original-resource","Value":"\"E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU=\""}]},{"Route":"_framework/System.Net.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mwxs9jgpi5-{0}-zku96ychk7-zku96ychk7.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2754"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY="}]},{"Route":"_framework/System.Net.zku96ychk7.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Net.zku96ychk7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zku96ychk7"},{"Name":"integrity","Value":"sha256-E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU="},{"Name":"label","Value":"_framework/System.Net.wasm"}]},{"Route":"_framework/System.Net.zku96ychk7.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mwxs9jgpi5-{0}-zku96ychk7-zku96ychk7.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000362976407"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2754"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zku96ychk7"},{"Name":"integrity","Value":"sha256-E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU="},{"Name":"label","Value":"_framework/System.Net.wasm"},{"Name":"original-resource","Value":"\"E5FBFR/BK5YE21gsS0MSt1NYCv+B7XsWwYuALQkVuCU=\""}]},{"Route":"_framework/System.Net.zku96ychk7.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mwxs9jgpi5-{0}-zku96ychk7-zku96ychk7.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2754"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zku96ychk7"},{"Name":"integrity","Value":"sha256-boEZs6By5JdEnXCwkjVWCJQ4kgUQ4O3/yPP4RI03qGY="},{"Name":"label","Value":"_framework/System.Net.wasm.gz"}]},{"Route":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Numerics.Vectors.1l8xruz8uh.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1l8xruz8uh"},{"Name":"integrity","Value":"sha256-tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg="},{"Name":"label","Value":"_framework/System.Numerics.Vectors.wasm"}]},{"Route":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tmgotixosa-{0}-1l8xruz8uh-1l8xruz8uh.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000439367311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1l8xruz8uh"},{"Name":"integrity","Value":"sha256-tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg="},{"Name":"label","Value":"_framework/System.Numerics.Vectors.wasm"},{"Name":"original-resource","Value":"\"tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg=\""}]},{"Route":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tmgotixosa-{0}-1l8xruz8uh-1l8xruz8uh.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1l8xruz8uh"},{"Name":"integrity","Value":"sha256-XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q="},{"Name":"label","Value":"_framework/System.Numerics.Vectors.wasm.gz"}]},{"Route":"_framework/System.Numerics.Vectors.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Numerics.Vectors.1l8xruz8uh.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg="}]},{"Route":"_framework/System.Numerics.Vectors.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tmgotixosa-{0}-1l8xruz8uh-1l8xruz8uh.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000439367311"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg="},{"Name":"original-resource","Value":"\"tQyeyOKO+aQfHnYAmiyiBWBf3rrZSuttvFnGw/H4HHg=\""}]},{"Route":"_framework/System.Numerics.Vectors.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tmgotixosa-{0}-1l8xruz8uh-1l8xruz8uh.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2275"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XX/0S4kiJm94MEGGhBomtkcIOANUTxEq4HFVa07eX9Q="}]},{"Route":"_framework/System.Numerics.on9qk50okp.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Numerics.on9qk50okp.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"on9qk50okp"},{"Name":"integrity","Value":"sha256-ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk="},{"Name":"label","Value":"_framework/System.Numerics.wasm"}]},{"Route":"_framework/System.Numerics.on9qk50okp.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fmcag5xdn2-{0}-on9qk50okp-on9qk50okp.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000490677134"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2037"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"on9qk50okp"},{"Name":"integrity","Value":"sha256-ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk="},{"Name":"label","Value":"_framework/System.Numerics.wasm"},{"Name":"original-resource","Value":"\"ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk=\""}]},{"Route":"_framework/System.Numerics.on9qk50okp.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fmcag5xdn2-{0}-on9qk50okp-on9qk50okp.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2037"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"on9qk50okp"},{"Name":"integrity","Value":"sha256-voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ="},{"Name":"label","Value":"_framework/System.Numerics.wasm.gz"}]},{"Route":"_framework/System.Numerics.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Numerics.on9qk50okp.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk="}]},{"Route":"_framework/System.Numerics.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fmcag5xdn2-{0}-on9qk50okp-on9qk50okp.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000490677134"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2037"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk="},{"Name":"original-resource","Value":"\"ZHvmyqwmpFZnXLrPpv83lB7b48meNt/DbTrtsmf1ZZk=\""}]},{"Route":"_framework/System.Numerics.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fmcag5xdn2-{0}-on9qk50okp-on9qk50okp.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2037"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-voekoedDuJB1hD6RJCQzaKMRJQCT1j+gGGuU4stRKxQ="}]},{"Route":"_framework/System.ObjectModel.4omhtq90sd.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ObjectModel.4omhtq90sd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"30997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4omhtq90sd"},{"Name":"integrity","Value":"sha256-BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU="},{"Name":"label","Value":"_framework/System.ObjectModel.wasm"}]},{"Route":"_framework/System.ObjectModel.4omhtq90sd.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\f62yejuwjc-{0}-4omhtq90sd-4omhtq90sd.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000074867111"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13356"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4omhtq90sd"},{"Name":"integrity","Value":"sha256-BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU="},{"Name":"label","Value":"_framework/System.ObjectModel.wasm"},{"Name":"original-resource","Value":"\"BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU=\""}]},{"Route":"_framework/System.ObjectModel.4omhtq90sd.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\f62yejuwjc-{0}-4omhtq90sd-4omhtq90sd.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13356"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4omhtq90sd"},{"Name":"integrity","Value":"sha256-RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw="},{"Name":"label","Value":"_framework/System.ObjectModel.wasm.gz"}]},{"Route":"_framework/System.ObjectModel.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ObjectModel.4omhtq90sd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"30997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU="}]},{"Route":"_framework/System.ObjectModel.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\f62yejuwjc-{0}-4omhtq90sd-4omhtq90sd.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000074867111"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13356"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU="},{"Name":"original-resource","Value":"\"BAIg4cpEfut5uSavwkp9L0mlWfMq2UEnGKCx5g/yGGU=\""}]},{"Route":"_framework/System.ObjectModel.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\f62yejuwjc-{0}-4omhtq90sd-4omhtq90sd.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13356"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RmjpHCrJuxj6tdMPtzYYSq5LDtj7xqxipMdLafLHETw="}]},{"Route":"_framework/System.Private.CoreLib.koxlwnosh6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.CoreLib.koxlwnosh6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4869401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"koxlwnosh6"},{"Name":"integrity","Value":"sha256-xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg="},{"Name":"label","Value":"_framework/System.Private.CoreLib.wasm"}]},{"Route":"_framework/System.Private.CoreLib.koxlwnosh6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3zyfvkhmnk-{0}-koxlwnosh6-koxlwnosh6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000644190"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1552335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"koxlwnosh6"},{"Name":"integrity","Value":"sha256-xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg="},{"Name":"label","Value":"_framework/System.Private.CoreLib.wasm"},{"Name":"original-resource","Value":"\"xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg=\""}]},{"Route":"_framework/System.Private.CoreLib.koxlwnosh6.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3zyfvkhmnk-{0}-koxlwnosh6-koxlwnosh6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1552335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"koxlwnosh6"},{"Name":"integrity","Value":"sha256-8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw="},{"Name":"label","Value":"_framework/System.Private.CoreLib.wasm.gz"}]},{"Route":"_framework/System.Private.CoreLib.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.CoreLib.koxlwnosh6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4869401"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg="}]},{"Route":"_framework/System.Private.CoreLib.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3zyfvkhmnk-{0}-koxlwnosh6-koxlwnosh6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000644190"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1552335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg="},{"Name":"original-resource","Value":"\"xPkJZnt6XkFcQTZmd1/Ngduo9V+eRggD1IREUJvW+Pg=\""}]},{"Route":"_framework/System.Private.CoreLib.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3zyfvkhmnk-{0}-koxlwnosh6-koxlwnosh6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1552335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8g/9cMOGC0Xys2LI3nMrHrkOmj6LC4e4Ps/3bhS0jbw="}]},{"Route":"_framework/System.Private.DataContractSerialization.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.DataContractSerialization.zlwtcvnuqv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"849173"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs="}]},{"Route":"_framework/System.Private.DataContractSerialization.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\g0qzdert85-{0}-zlwtcvnuqv-zlwtcvnuqv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003313518"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"301793"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs="},{"Name":"original-resource","Value":"\"qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs=\""}]},{"Route":"_framework/System.Private.DataContractSerialization.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\g0qzdert85-{0}-zlwtcvnuqv-zlwtcvnuqv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"301793"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E="}]},{"Route":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.DataContractSerialization.zlwtcvnuqv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"849173"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zlwtcvnuqv"},{"Name":"integrity","Value":"sha256-qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs="},{"Name":"label","Value":"_framework/System.Private.DataContractSerialization.wasm"}]},{"Route":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\g0qzdert85-{0}-zlwtcvnuqv-zlwtcvnuqv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003313518"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"301793"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zlwtcvnuqv"},{"Name":"integrity","Value":"sha256-qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs="},{"Name":"label","Value":"_framework/System.Private.DataContractSerialization.wasm"},{"Name":"original-resource","Value":"\"qV0RVzpTMIGzv8I5z6Jkytgz/TW/wOmjjxCb3Z/+QNs=\""}]},{"Route":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\g0qzdert85-{0}-zlwtcvnuqv-zlwtcvnuqv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"301793"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zlwtcvnuqv"},{"Name":"integrity","Value":"sha256-U8bHrnrwmyw+RjJn01pArdoD1oPemXHEnE9QZwg+y7E="},{"Name":"label","Value":"_framework/System.Private.DataContractSerialization.wasm.gz"}]},{"Route":"_framework/System.Private.Uri.clehp4avpy.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.Uri.clehp4avpy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"95509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clehp4avpy"},{"Name":"integrity","Value":"sha256-IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU="},{"Name":"label","Value":"_framework/System.Private.Uri.wasm"}]},{"Route":"_framework/System.Private.Uri.clehp4avpy.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\e67ma35du3-{0}-clehp4avpy-clehp4avpy.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023629490"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42319"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clehp4avpy"},{"Name":"integrity","Value":"sha256-IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU="},{"Name":"label","Value":"_framework/System.Private.Uri.wasm"},{"Name":"original-resource","Value":"\"IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU=\""}]},{"Route":"_framework/System.Private.Uri.clehp4avpy.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\e67ma35du3-{0}-clehp4avpy-clehp4avpy.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42319"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clehp4avpy"},{"Name":"integrity","Value":"sha256-jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8="},{"Name":"label","Value":"_framework/System.Private.Uri.wasm.gz"}]},{"Route":"_framework/System.Private.Uri.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.Uri.clehp4avpy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"95509"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU="}]},{"Route":"_framework/System.Private.Uri.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\e67ma35du3-{0}-clehp4avpy-clehp4avpy.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023629490"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42319"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU="},{"Name":"original-resource","Value":"\"IA3ZFjPg+LJZ8UhEgROmYSVIMvABtauncyO7kmJ6wqU=\""}]},{"Route":"_framework/System.Private.Uri.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\e67ma35du3-{0}-clehp4avpy-clehp4avpy.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"42319"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jQERn00SqaFrG/nTDM3xa14+Eabt5OTHVhIC3z67EJ8="}]},{"Route":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.Xml.Linq.ga3n3gh9b6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"143637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ga3n3gh9b6"},{"Name":"integrity","Value":"sha256-aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0="},{"Name":"label","Value":"_framework/System.Private.Xml.Linq.wasm"}]},{"Route":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\93opzeh57b-{0}-ga3n3gh9b6-ga3n3gh9b6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017054951"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"58633"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ga3n3gh9b6"},{"Name":"integrity","Value":"sha256-aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0="},{"Name":"label","Value":"_framework/System.Private.Xml.Linq.wasm"},{"Name":"original-resource","Value":"\"aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0=\""}]},{"Route":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\93opzeh57b-{0}-ga3n3gh9b6-ga3n3gh9b6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"58633"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ga3n3gh9b6"},{"Name":"integrity","Value":"sha256-wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g="},{"Name":"label","Value":"_framework/System.Private.Xml.Linq.wasm.gz"}]},{"Route":"_framework/System.Private.Xml.Linq.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.Xml.Linq.ga3n3gh9b6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"143637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0="}]},{"Route":"_framework/System.Private.Xml.Linq.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\93opzeh57b-{0}-ga3n3gh9b6-ga3n3gh9b6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017054951"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"58633"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0="},{"Name":"original-resource","Value":"\"aOOKCMfgi1RFwluA96JWD63Gpvyup/hKYoevTxf2MH0=\""}]},{"Route":"_framework/System.Private.Xml.Linq.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\93opzeh57b-{0}-ga3n3gh9b6-ga3n3gh9b6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"58633"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wyntCnfm/mF8QlmP1UcuvBaYYxPc1AhikS/qyUtV22g="}]},{"Route":"_framework/System.Private.Xml.g9rvjereoe.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.Xml.g9rvjereoe.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3095833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g9rvjereoe"},{"Name":"integrity","Value":"sha256-xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0="},{"Name":"label","Value":"_framework/System.Private.Xml.wasm"}]},{"Route":"_framework/System.Private.Xml.g9rvjereoe.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\byxake4xdz-{0}-g9rvjereoe-g9rvjereoe.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000949553"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1053126"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g9rvjereoe"},{"Name":"integrity","Value":"sha256-xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0="},{"Name":"label","Value":"_framework/System.Private.Xml.wasm"},{"Name":"original-resource","Value":"\"xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0=\""}]},{"Route":"_framework/System.Private.Xml.g9rvjereoe.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\byxake4xdz-{0}-g9rvjereoe-g9rvjereoe.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1053126"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g9rvjereoe"},{"Name":"integrity","Value":"sha256-K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw="},{"Name":"label","Value":"_framework/System.Private.Xml.wasm.gz"}]},{"Route":"_framework/System.Private.Xml.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Private.Xml.g9rvjereoe.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3095833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0="}]},{"Route":"_framework/System.Private.Xml.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\byxake4xdz-{0}-g9rvjereoe-g9rvjereoe.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000949553"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1053126"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0="},{"Name":"original-resource","Value":"\"xLYwtizrGok0g4SL+TvlRaw6UJVHJogbubF3nVxUDo0=\""}]},{"Route":"_framework/System.Private.Xml.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\byxake4xdz-{0}-g9rvjereoe-g9rvjereoe.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1053126"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K3ZVQawmyrqQiNdcNpQbRYhJ3S0sb8ZwUjIe7S5lMDw="}]},{"Route":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.DispatchProxy.b7qn4zpc0q.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27925"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7qn4zpc0q"},{"Name":"integrity","Value":"sha256-mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME="},{"Name":"label","Value":"_framework/System.Reflection.DispatchProxy.wasm"}]},{"Route":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jjcxq3ejac-{0}-b7qn4zpc0q-b7qn4zpc0q.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000078814628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12687"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7qn4zpc0q"},{"Name":"integrity","Value":"sha256-mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME="},{"Name":"label","Value":"_framework/System.Reflection.DispatchProxy.wasm"},{"Name":"original-resource","Value":"\"mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME=\""}]},{"Route":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jjcxq3ejac-{0}-b7qn4zpc0q-b7qn4zpc0q.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12687"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7qn4zpc0q"},{"Name":"integrity","Value":"sha256-VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w="},{"Name":"label","Value":"_framework/System.Reflection.DispatchProxy.wasm.gz"}]},{"Route":"_framework/System.Reflection.DispatchProxy.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.DispatchProxy.b7qn4zpc0q.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"27925"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME="}]},{"Route":"_framework/System.Reflection.DispatchProxy.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jjcxq3ejac-{0}-b7qn4zpc0q-b7qn4zpc0q.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000078814628"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12687"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME="},{"Name":"original-resource","Value":"\"mZv466MbDX3jRN79lY927Gvz1sFuW8RMdiC2ISqDaME=\""}]},{"Route":"_framework/System.Reflection.DispatchProxy.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jjcxq3ejac-{0}-b7qn4zpc0q-b7qn4zpc0q.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12687"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VjPcC6pnNHonOv5yN+rkAodoAOuqKhg5+Lh7DeaFX6w="}]},{"Route":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Emit.3t7flfwg7o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"122645"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3t7flfwg7o"},{"Name":"integrity","Value":"sha256-uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8="},{"Name":"label","Value":"_framework/System.Reflection.Emit.wasm"}]},{"Route":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\p1p1dduoka-{0}-3t7flfwg7o-3t7flfwg7o.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018778637"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"53251"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3t7flfwg7o"},{"Name":"integrity","Value":"sha256-uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8="},{"Name":"label","Value":"_framework/System.Reflection.Emit.wasm"},{"Name":"original-resource","Value":"\"uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8=\""}]},{"Route":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\p1p1dduoka-{0}-3t7flfwg7o-3t7flfwg7o.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"53251"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3t7flfwg7o"},{"Name":"integrity","Value":"sha256-2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ="},{"Name":"label","Value":"_framework/System.Reflection.Emit.wasm.gz"}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80="}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i8msa0z88m-{0}-x0vkqyycss-x0vkqyycss.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000437828371"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2283"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80="},{"Name":"original-resource","Value":"\"ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80=\""}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i8msa0z88m-{0}-x0vkqyycss-x0vkqyycss.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2283"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE="}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0vkqyycss"},{"Name":"integrity","Value":"sha256-ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80="},{"Name":"label","Value":"_framework/System.Reflection.Emit.ILGeneration.wasm"}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i8msa0z88m-{0}-x0vkqyycss-x0vkqyycss.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000437828371"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2283"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0vkqyycss"},{"Name":"integrity","Value":"sha256-ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80="},{"Name":"label","Value":"_framework/System.Reflection.Emit.ILGeneration.wasm"},{"Name":"original-resource","Value":"\"ERw6k0NrnU8w0IPJZpwHZBCLwY9JBPw8doG05RVGn80=\""}]},{"Route":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i8msa0z88m-{0}-x0vkqyycss-x0vkqyycss.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2283"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0vkqyycss"},{"Name":"integrity","Value":"sha256-YCJJ6+9RIOlgtDW9pv6jCk7/MJwdFc7s61UqsTwdHYE="},{"Name":"label","Value":"_framework/System.Reflection.Emit.ILGeneration.wasm.gz"}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.3tzjd7znni.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3tzjd7znni"},{"Name":"integrity","Value":"sha256-B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k="},{"Name":"label","Value":"_framework/System.Reflection.Emit.Lightweight.wasm"}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gremm5qhcr-{0}-3tzjd7znni-3tzjd7znni.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000446827525"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3tzjd7znni"},{"Name":"integrity","Value":"sha256-B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k="},{"Name":"label","Value":"_framework/System.Reflection.Emit.Lightweight.wasm"},{"Name":"original-resource","Value":"\"B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k=\""}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gremm5qhcr-{0}-3tzjd7znni-3tzjd7znni.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3tzjd7znni"},{"Name":"integrity","Value":"sha256-XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk="},{"Name":"label","Value":"_framework/System.Reflection.Emit.Lightweight.wasm.gz"}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.3tzjd7znni.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k="}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gremm5qhcr-{0}-3tzjd7znni-3tzjd7znni.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000446827525"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k="},{"Name":"original-resource","Value":"\"B9UrvAQJ8gphmo0XadSEIS7zx48OUvTBbt4+qOVwg8k=\""}]},{"Route":"_framework/System.Reflection.Emit.Lightweight.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gremm5qhcr-{0}-3tzjd7znni-3tzjd7znni.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2237"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XLhLMe15jBJVqp3f9Xl1qq40RjbdiN1F/RKDpmT2lVk="}]},{"Route":"_framework/System.Reflection.Emit.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Emit.3t7flfwg7o.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"122645"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8="}]},{"Route":"_framework/System.Reflection.Emit.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\p1p1dduoka-{0}-3t7flfwg7o-3t7flfwg7o.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018778637"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"53251"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8="},{"Name":"original-resource","Value":"\"uVm++7WgL+aWQ+W6A3XMA0MItiRLXwShY+LWT5+vGs8=\""}]},{"Route":"_framework/System.Reflection.Emit.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\p1p1dduoka-{0}-3t7flfwg7o-3t7flfwg7o.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"53251"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2SNC7YWGbUqxaXYdYkzVIdMlRJhf4vB+/fH3+h59ZMQ="}]},{"Route":"_framework/System.Reflection.Extensions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Extensions.ymwga5opgl.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo="}]},{"Route":"_framework/System.Reflection.Extensions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vtgrfa0p11-{0}-ymwga5opgl-ymwga5opgl.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000462107209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2163"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo="},{"Name":"original-resource","Value":"\"xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo=\""}]},{"Route":"_framework/System.Reflection.Extensions.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vtgrfa0p11-{0}-ymwga5opgl-ymwga5opgl.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2163"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4="}]},{"Route":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Extensions.ymwga5opgl.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ymwga5opgl"},{"Name":"integrity","Value":"sha256-xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo="},{"Name":"label","Value":"_framework/System.Reflection.Extensions.wasm"}]},{"Route":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vtgrfa0p11-{0}-ymwga5opgl-ymwga5opgl.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000462107209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2163"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ymwga5opgl"},{"Name":"integrity","Value":"sha256-xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo="},{"Name":"label","Value":"_framework/System.Reflection.Extensions.wasm"},{"Name":"original-resource","Value":"\"xrhszywGQG+wwsJZzyomqh7EOs5qQPDNOeH2zZ+KKQo=\""}]},{"Route":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vtgrfa0p11-{0}-ymwga5opgl-ymwga5opgl.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2163"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ymwga5opgl"},{"Name":"integrity","Value":"sha256-QMvmnK1rqbP9kacaflKgaZYP5wUrW8dbMOiWbdcdlq4="},{"Name":"label","Value":"_framework/System.Reflection.Extensions.wasm.gz"}]},{"Route":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Metadata.9lgg9wjd2a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"493333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9lgg9wjd2a"},{"Name":"integrity","Value":"sha256-/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0="},{"Name":"label","Value":"_framework/System.Reflection.Metadata.wasm"}]},{"Route":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\k6k7jlyl2f-{0}-9lgg9wjd2a-9lgg9wjd2a.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005202589"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"192211"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9lgg9wjd2a"},{"Name":"integrity","Value":"sha256-/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0="},{"Name":"label","Value":"_framework/System.Reflection.Metadata.wasm"},{"Name":"original-resource","Value":"\"/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0=\""}]},{"Route":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\k6k7jlyl2f-{0}-9lgg9wjd2a-9lgg9wjd2a.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"192211"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9lgg9wjd2a"},{"Name":"integrity","Value":"sha256-bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM="},{"Name":"label","Value":"_framework/System.Reflection.Metadata.wasm.gz"}]},{"Route":"_framework/System.Reflection.Metadata.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Metadata.9lgg9wjd2a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"493333"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0="}]},{"Route":"_framework/System.Reflection.Metadata.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\k6k7jlyl2f-{0}-9lgg9wjd2a-9lgg9wjd2a.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005202589"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"192211"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0="},{"Name":"original-resource","Value":"\"/VBYNOtdOexweQErUQv2O4GXFMr3V6AnRUnjdCVgId0=\""}]},{"Route":"_framework/System.Reflection.Metadata.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\k6k7jlyl2f-{0}-9lgg9wjd2a-9lgg9wjd2a.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"192211"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bWpswyLSbthj1FahvrzCrxrYJFFLSEdzFP5cmAaUhbM="}]},{"Route":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Primitives.n2ngq6as7g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"n2ngq6as7g"},{"Name":"integrity","Value":"sha256-z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY="},{"Name":"label","Value":"_framework/System.Reflection.Primitives.wasm"}]},{"Route":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tdpp3qw974-{0}-n2ngq6as7g-n2ngq6as7g.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000423190859"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"n2ngq6as7g"},{"Name":"integrity","Value":"sha256-z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY="},{"Name":"label","Value":"_framework/System.Reflection.Primitives.wasm"},{"Name":"original-resource","Value":"\"z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY=\""}]},{"Route":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tdpp3qw974-{0}-n2ngq6as7g-n2ngq6as7g.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"n2ngq6as7g"},{"Name":"integrity","Value":"sha256-DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac="},{"Name":"label","Value":"_framework/System.Reflection.Primitives.wasm.gz"}]},{"Route":"_framework/System.Reflection.Primitives.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.Primitives.n2ngq6as7g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY="}]},{"Route":"_framework/System.Reflection.Primitives.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tdpp3qw974-{0}-n2ngq6as7g-n2ngq6as7g.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000423190859"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY="},{"Name":"original-resource","Value":"\"z6oyAn7kYNkQBI+bRGKqve30iNmzGraFHYs5bfbe0QY=\""}]},{"Route":"_framework/System.Reflection.Primitives.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tdpp3qw974-{0}-n2ngq6as7g-n2ngq6as7g.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DZK8RDmwmVI4ffayi5/RJOKwAcam/h2lhxDcowJVJac="}]},{"Route":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.TypeExtensions.ivmzcfvrc6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"14101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ivmzcfvrc6"},{"Name":"integrity","Value":"sha256-jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0="},{"Name":"label","Value":"_framework/System.Reflection.TypeExtensions.wasm"}]},{"Route":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hoalsbog2o-{0}-ivmzcfvrc6-ivmzcfvrc6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000170561146"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ivmzcfvrc6"},{"Name":"integrity","Value":"sha256-jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0="},{"Name":"label","Value":"_framework/System.Reflection.TypeExtensions.wasm"},{"Name":"original-resource","Value":"\"jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0=\""}]},{"Route":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hoalsbog2o-{0}-ivmzcfvrc6-ivmzcfvrc6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ivmzcfvrc6"},{"Name":"integrity","Value":"sha256-UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY="},{"Name":"label","Value":"_framework/System.Reflection.TypeExtensions.wasm.gz"}]},{"Route":"_framework/System.Reflection.TypeExtensions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.TypeExtensions.ivmzcfvrc6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"14101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0="}]},{"Route":"_framework/System.Reflection.TypeExtensions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hoalsbog2o-{0}-ivmzcfvrc6-ivmzcfvrc6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000170561146"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0="},{"Name":"original-resource","Value":"\"jjZkmPOFQRklX0jnJb3nsezw/KWjsD9T+RuOdqWshU0=\""}]},{"Route":"_framework/System.Reflection.TypeExtensions.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hoalsbog2o-{0}-ivmzcfvrc6-ivmzcfvrc6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5862"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UGt/jKXGcdhtJptG2MrOgz9echep8fS/XZLSurnriZY="}]},{"Route":"_framework/System.Reflection.v4mfyzbte8.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.v4mfyzbte8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v4mfyzbte8"},{"Name":"integrity","Value":"sha256-MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw="},{"Name":"label","Value":"_framework/System.Reflection.wasm"}]},{"Route":"_framework/System.Reflection.v4mfyzbte8.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m0i5wjywsx-{0}-v4mfyzbte8-v4mfyzbte8.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000404530744"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2471"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v4mfyzbte8"},{"Name":"integrity","Value":"sha256-MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw="},{"Name":"label","Value":"_framework/System.Reflection.wasm"},{"Name":"original-resource","Value":"\"MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw=\""}]},{"Route":"_framework/System.Reflection.v4mfyzbte8.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m0i5wjywsx-{0}-v4mfyzbte8-v4mfyzbte8.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2471"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v4mfyzbte8"},{"Name":"integrity","Value":"sha256-/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng="},{"Name":"label","Value":"_framework/System.Reflection.wasm.gz"}]},{"Route":"_framework/System.Reflection.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Reflection.v4mfyzbte8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw="}]},{"Route":"_framework/System.Reflection.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m0i5wjywsx-{0}-v4mfyzbte8-v4mfyzbte8.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000404530744"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2471"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw="},{"Name":"original-resource","Value":"\"MSQYohCn9/DoyWxFSL7hGyOapz5ZCcgEsRdLzBFCvfw=\""}]},{"Route":"_framework/System.Reflection.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m0i5wjywsx-{0}-v4mfyzbte8-v4mfyzbte8.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2471"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/JhDbGi0xZIPyiwIJPYnN5PXu8uO8Q/GqnqC+mIfPng="}]},{"Route":"_framework/System.Resources.Reader.c9z9nieytf.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Resources.Reader.c9z9nieytf.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c9z9nieytf"},{"Name":"integrity","Value":"sha256-QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8="},{"Name":"label","Value":"_framework/System.Resources.Reader.wasm"}]},{"Route":"_framework/System.Resources.Reader.c9z9nieytf.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\xtefui8dpc-{0}-c9z9nieytf-c9z9nieytf.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000469043152"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2131"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c9z9nieytf"},{"Name":"integrity","Value":"sha256-QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8="},{"Name":"label","Value":"_framework/System.Resources.Reader.wasm"},{"Name":"original-resource","Value":"\"QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8=\""}]},{"Route":"_framework/System.Resources.Reader.c9z9nieytf.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\xtefui8dpc-{0}-c9z9nieytf-c9z9nieytf.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2131"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c9z9nieytf"},{"Name":"integrity","Value":"sha256-1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI="},{"Name":"label","Value":"_framework/System.Resources.Reader.wasm.gz"}]},{"Route":"_framework/System.Resources.Reader.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Resources.Reader.c9z9nieytf.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8="}]},{"Route":"_framework/System.Resources.Reader.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\xtefui8dpc-{0}-c9z9nieytf-c9z9nieytf.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000469043152"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2131"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8="},{"Name":"original-resource","Value":"\"QIZr7nLJ8V/WnrQ6BYoMuFwmTaRZG3si0S3BKhDKLs8=\""}]},{"Route":"_framework/System.Resources.Reader.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\xtefui8dpc-{0}-c9z9nieytf-c9z9nieytf.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2131"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1orAa7wgWqUC5+t1CwkbCCzkSPLo2j31WQDkwqTKjLI="}]},{"Route":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Resources.ResourceManager.f3fiwdwb50.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f3fiwdwb50"},{"Name":"integrity","Value":"sha256-61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw="},{"Name":"label","Value":"_framework/System.Resources.ResourceManager.wasm"}]},{"Route":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qrheoix2ig-{0}-f3fiwdwb50-f3fiwdwb50.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000444642063"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2248"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f3fiwdwb50"},{"Name":"integrity","Value":"sha256-61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw="},{"Name":"label","Value":"_framework/System.Resources.ResourceManager.wasm"},{"Name":"original-resource","Value":"\"61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw=\""}]},{"Route":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qrheoix2ig-{0}-f3fiwdwb50-f3fiwdwb50.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2248"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f3fiwdwb50"},{"Name":"integrity","Value":"sha256-yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg="},{"Name":"label","Value":"_framework/System.Resources.ResourceManager.wasm.gz"}]},{"Route":"_framework/System.Resources.ResourceManager.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Resources.ResourceManager.f3fiwdwb50.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw="}]},{"Route":"_framework/System.Resources.ResourceManager.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qrheoix2ig-{0}-f3fiwdwb50-f3fiwdwb50.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000444642063"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2248"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw="},{"Name":"original-resource","Value":"\"61Av8KxvIFskB17avqBj40FGVFdlZgVEs1IC32JV/rw=\""}]},{"Route":"_framework/System.Resources.ResourceManager.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qrheoix2ig-{0}-f3fiwdwb50-f3fiwdwb50.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2248"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yC4p4fKTgOBADGHldSu/SEWXEUqz/XnU04yZf+7YUIg="}]},{"Route":"_framework/System.Resources.Writer.tx9namivq6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Resources.Writer.tx9namivq6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"16661"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tx9namivq6"},{"Name":"integrity","Value":"sha256-EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw="},{"Name":"label","Value":"_framework/System.Resources.Writer.wasm"}]},{"Route":"_framework/System.Resources.Writer.tx9namivq6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\szit2ufpnx-{0}-tx9namivq6-tx9namivq6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000131839156"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7584"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tx9namivq6"},{"Name":"integrity","Value":"sha256-EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw="},{"Name":"label","Value":"_framework/System.Resources.Writer.wasm"},{"Name":"original-resource","Value":"\"EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw=\""}]},{"Route":"_framework/System.Resources.Writer.tx9namivq6.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\szit2ufpnx-{0}-tx9namivq6-tx9namivq6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7584"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tx9namivq6"},{"Name":"integrity","Value":"sha256-mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw="},{"Name":"label","Value":"_framework/System.Resources.Writer.wasm.gz"}]},{"Route":"_framework/System.Resources.Writer.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Resources.Writer.tx9namivq6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"16661"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw="}]},{"Route":"_framework/System.Resources.Writer.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\szit2ufpnx-{0}-tx9namivq6-tx9namivq6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000131839156"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7584"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw="},{"Name":"original-resource","Value":"\"EdRFcTz5nnQrjYyjfH0/HOHvq3jyUW6Z6hXyHeIyKjw=\""}]},{"Route":"_framework/System.Resources.Writer.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\szit2ufpnx-{0}-tx9namivq6-tx9namivq6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7584"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mTLQCMpAyxSnf9wpaAtLQ34how9cnHW3+L0gqHhw1mw="}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5yw8jyjkyt"},{"Name":"integrity","Value":"sha256-M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.Unsafe.wasm"}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3txc49hfsy-{0}-5yw8jyjkyt-5yw8jyjkyt.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000468164794"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2135"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5yw8jyjkyt"},{"Name":"integrity","Value":"sha256-M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.Unsafe.wasm"},{"Name":"original-resource","Value":"\"M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc=\""}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3txc49hfsy-{0}-5yw8jyjkyt-5yw8jyjkyt.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2135"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5yw8jyjkyt"},{"Name":"integrity","Value":"sha256-b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.Unsafe.wasm.gz"}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc="}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3txc49hfsy-{0}-5yw8jyjkyt-5yw8jyjkyt.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000468164794"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2135"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc="},{"Name":"original-resource","Value":"\"M7zXYL4+jZyj3Tm3H02CGpQClvGG/pHFqN5yjRMvtQc=\""}]},{"Route":"_framework/System.Runtime.CompilerServices.Unsafe.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3txc49hfsy-{0}-5yw8jyjkyt-5yw8jyjkyt.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2135"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b7ttezW3m59TEl4RwRwTE/0CuPoAsJIPL5d0tWsffks="}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ddbsai2xh9"},{"Name":"integrity","Value":"sha256-b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.VisualC.wasm"}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\me1or200pv-{0}-ddbsai2xh9-ddbsai2xh9.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000327868852"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3049"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ddbsai2xh9"},{"Name":"integrity","Value":"sha256-b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.VisualC.wasm"},{"Name":"original-resource","Value":"\"b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM=\""}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\me1or200pv-{0}-ddbsai2xh9-ddbsai2xh9.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3049"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ddbsai2xh9"},{"Name":"integrity","Value":"sha256-XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo="},{"Name":"label","Value":"_framework/System.Runtime.CompilerServices.VisualC.wasm.gz"}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM="}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\me1or200pv-{0}-ddbsai2xh9-ddbsai2xh9.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000327868852"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3049"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM="},{"Name":"original-resource","Value":"\"b6UivS+o/g3h/yu7ejf99+R8py4W0IajCjh0M50hLTM=\""}]},{"Route":"_framework/System.Runtime.CompilerServices.VisualC.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\me1or200pv-{0}-ddbsai2xh9-ddbsai2xh9.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3049"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XbGnlwECUs2jtX/o4zcBirOqzCMS1a2BUgrCr9hbgYo="}]},{"Route":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Extensions.f4fqaba1oz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"7445"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f4fqaba1oz"},{"Name":"integrity","Value":"sha256-8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8="},{"Name":"label","Value":"_framework/System.Runtime.Extensions.wasm"}]},{"Route":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4syo1xqmc8-{0}-f4fqaba1oz-f4fqaba1oz.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000333555704"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f4fqaba1oz"},{"Name":"integrity","Value":"sha256-8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8="},{"Name":"label","Value":"_framework/System.Runtime.Extensions.wasm"},{"Name":"original-resource","Value":"\"8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8=\""}]},{"Route":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4syo1xqmc8-{0}-f4fqaba1oz-f4fqaba1oz.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f4fqaba1oz"},{"Name":"integrity","Value":"sha256-UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM="},{"Name":"label","Value":"_framework/System.Runtime.Extensions.wasm.gz"}]},{"Route":"_framework/System.Runtime.Extensions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Extensions.f4fqaba1oz.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"7445"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8="}]},{"Route":"_framework/System.Runtime.Extensions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4syo1xqmc8-{0}-f4fqaba1oz-f4fqaba1oz.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000333555704"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8="},{"Name":"original-resource","Value":"\"8fo+Ja3EpiHHVqHRlzQEssrHu6TH8zKkvhrpAUEicQ8=\""}]},{"Route":"_framework/System.Runtime.Extensions.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4syo1xqmc8-{0}-f4fqaba1oz-f4fqaba1oz.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2997"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UY3dEGB4Pll8TeJFA3kD5c6eikaADTMvdk2qOcKAQpM="}]},{"Route":"_framework/System.Runtime.Handles.kpe61fymig.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Handles.kpe61fymig.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kpe61fymig"},{"Name":"integrity","Value":"sha256-+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ="},{"Name":"label","Value":"_framework/System.Runtime.Handles.wasm"}]},{"Route":"_framework/System.Runtime.Handles.kpe61fymig.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fz4pecsmjf-{0}-kpe61fymig-kpe61fymig.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000451467269"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2214"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kpe61fymig"},{"Name":"integrity","Value":"sha256-+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ="},{"Name":"label","Value":"_framework/System.Runtime.Handles.wasm"},{"Name":"original-resource","Value":"\"+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ=\""}]},{"Route":"_framework/System.Runtime.Handles.kpe61fymig.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fz4pecsmjf-{0}-kpe61fymig-kpe61fymig.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2214"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kpe61fymig"},{"Name":"integrity","Value":"sha256-P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8="},{"Name":"label","Value":"_framework/System.Runtime.Handles.wasm.gz"}]},{"Route":"_framework/System.Runtime.Handles.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Handles.kpe61fymig.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ="}]},{"Route":"_framework/System.Runtime.Handles.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fz4pecsmjf-{0}-kpe61fymig-kpe61fymig.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000451467269"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2214"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ="},{"Name":"original-resource","Value":"\"+GypCIGPa6k37qKyuT/ABSbQDeb4XCC6oTS/N5KizyQ=\""}]},{"Route":"_framework/System.Runtime.Handles.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\fz4pecsmjf-{0}-kpe61fymig-kpe61fymig.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2214"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-P1c9x/VoTdaClHe3JPDAEe/CkIq1o6JwFGncjwzANK8="}]},{"Route":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.InteropServices.02r2ubft18.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"54549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"02r2ubft18"},{"Name":"integrity","Value":"sha256-iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.wasm"}]},{"Route":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0st0knthx5-{0}-02r2ubft18-02r2ubft18.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000042457436"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23552"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"02r2ubft18"},{"Name":"integrity","Value":"sha256-iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.wasm"},{"Name":"original-resource","Value":"\"iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI=\""}]},{"Route":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0st0knthx5-{0}-02r2ubft18-02r2ubft18.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23552"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"02r2ubft18"},{"Name":"integrity","Value":"sha256-hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.wasm.gz"}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"79637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk="}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\h9925thw3k-{0}-ythr5w8c2e-ythr5w8c2e.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000031413942"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk="},{"Name":"original-resource","Value":"\"BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk=\""}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\h9925thw3k-{0}-ythr5w8c2e-ythr5w8c2e.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A="}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"79637"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ythr5w8c2e"},{"Name":"integrity","Value":"sha256-BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.JavaScript.wasm"}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\h9925thw3k-{0}-ythr5w8c2e-ythr5w8c2e.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000031413942"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ythr5w8c2e"},{"Name":"integrity","Value":"sha256-BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.JavaScript.wasm"},{"Name":"original-resource","Value":"\"BrhFm19PIxt6fz1AX4v76P9/m+B9WYsHTWpqw5b+xHk=\""}]},{"Route":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\h9925thw3k-{0}-ythr5w8c2e-ythr5w8c2e.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ythr5w8c2e"},{"Name":"integrity","Value":"sha256-BqlfiNqnb7xXc9eJDuqi3ZueYMO5M/DtiduYRe4po3A="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.JavaScript.wasm.gz"}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"esodb2rpbi"},{"Name":"integrity","Value":"sha256-Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm"}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zx6kj3xmnr-{0}-esodb2rpbi-esodb2rpbi.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000462962963"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2159"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"esodb2rpbi"},{"Name":"integrity","Value":"sha256-Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm"},{"Name":"original-resource","Value":"\"Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s=\""}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zx6kj3xmnr-{0}-esodb2rpbi-esodb2rpbi.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2159"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"esodb2rpbi"},{"Name":"integrity","Value":"sha256-XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA="},{"Name":"label","Value":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm.gz"}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s="}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zx6kj3xmnr-{0}-esodb2rpbi-esodb2rpbi.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000462962963"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2159"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s="},{"Name":"original-resource","Value":"\"Qh7ZqBDPWSSFqD2ZdvOu6/vgXn8qyBEjO0+BJZwbL8s=\""}]},{"Route":"_framework/System.Runtime.InteropServices.RuntimeInformation.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zx6kj3xmnr-{0}-esodb2rpbi-esodb2rpbi.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2159"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XVNBB3e1QeRMew9IM34VMV2RHwPlb/LNDT3TZdHuYgA="}]},{"Route":"_framework/System.Runtime.InteropServices.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.InteropServices.02r2ubft18.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"54549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI="}]},{"Route":"_framework/System.Runtime.InteropServices.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0st0knthx5-{0}-02r2ubft18-02r2ubft18.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000042457436"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23552"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI="},{"Name":"original-resource","Value":"\"iPCXkQ7VvOWhzPOw2ctbcJRjtwhDGl0WCMiJTCukJVI=\""}]},{"Route":"_framework/System.Runtime.InteropServices.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0st0knthx5-{0}-02r2ubft18-02r2ubft18.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23552"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hjFUXzHspcK2f0O0mbIC/wOHBLZKuFGcEFyYdvNe4Zs="}]},{"Route":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Intrinsics.j8lrpban8m.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8lrpban8m"},{"Name":"integrity","Value":"sha256-vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk="},{"Name":"label","Value":"_framework/System.Runtime.Intrinsics.wasm"}]},{"Route":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\7yd9j54hd0-{0}-j8lrpban8m-j8lrpban8m.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000351617440"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2843"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8lrpban8m"},{"Name":"integrity","Value":"sha256-vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk="},{"Name":"label","Value":"_framework/System.Runtime.Intrinsics.wasm"},{"Name":"original-resource","Value":"\"vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk=\""}]},{"Route":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\7yd9j54hd0-{0}-j8lrpban8m-j8lrpban8m.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2843"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8lrpban8m"},{"Name":"integrity","Value":"sha256-RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4="},{"Name":"label","Value":"_framework/System.Runtime.Intrinsics.wasm.gz"}]},{"Route":"_framework/System.Runtime.Intrinsics.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Intrinsics.j8lrpban8m.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk="}]},{"Route":"_framework/System.Runtime.Intrinsics.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\7yd9j54hd0-{0}-j8lrpban8m-j8lrpban8m.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000351617440"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2843"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk="},{"Name":"original-resource","Value":"\"vTbIUwUqJEWo8i3dqA138bo3vDocmxicf9X6KY/4gUk=\""}]},{"Route":"_framework/System.Runtime.Intrinsics.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\7yd9j54hd0-{0}-j8lrpban8m-j8lrpban8m.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2843"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RzkRqkCBFYxKvTaUa0pd9VQ11k9x413rMGGNRDDxHC4="}]},{"Route":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Loader.bm8d2pac0a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bm8d2pac0a"},{"Name":"integrity","Value":"sha256-Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4="},{"Name":"label","Value":"_framework/System.Runtime.Loader.wasm"}]},{"Route":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\06jmrwgemt-{0}-bm8d2pac0a-bm8d2pac0a.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000429000429"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2330"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bm8d2pac0a"},{"Name":"integrity","Value":"sha256-Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4="},{"Name":"label","Value":"_framework/System.Runtime.Loader.wasm"},{"Name":"original-resource","Value":"\"Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4=\""}]},{"Route":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\06jmrwgemt-{0}-bm8d2pac0a-bm8d2pac0a.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2330"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bm8d2pac0a"},{"Name":"integrity","Value":"sha256-InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns="},{"Name":"label","Value":"_framework/System.Runtime.Loader.wasm.gz"}]},{"Route":"_framework/System.Runtime.Loader.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Loader.bm8d2pac0a.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4="}]},{"Route":"_framework/System.Runtime.Loader.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\06jmrwgemt-{0}-bm8d2pac0a-bm8d2pac0a.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000429000429"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2330"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4="},{"Name":"original-resource","Value":"\"Ha1/qYzL9k22jv7E0YGuyqCs0HcGgvA3HxVdVpDNT+4=\""}]},{"Route":"_framework/System.Runtime.Loader.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\06jmrwgemt-{0}-bm8d2pac0a-bm8d2pac0a.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2330"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-InuX/A8rRziQVJd5/H2564BoLs5OnKSvLHuuiHtSRns="}]},{"Route":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Numerics.e3fl2oogjk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"134933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e3fl2oogjk"},{"Name":"integrity","Value":"sha256-Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4="},{"Name":"label","Value":"_framework/System.Runtime.Numerics.wasm"}]},{"Route":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\b1pqie8d42-{0}-e3fl2oogjk-e3fl2oogjk.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018948725"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"52773"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e3fl2oogjk"},{"Name":"integrity","Value":"sha256-Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4="},{"Name":"label","Value":"_framework/System.Runtime.Numerics.wasm"},{"Name":"original-resource","Value":"\"Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4=\""}]},{"Route":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\b1pqie8d42-{0}-e3fl2oogjk-e3fl2oogjk.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"52773"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e3fl2oogjk"},{"Name":"integrity","Value":"sha256-aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs="},{"Name":"label","Value":"_framework/System.Runtime.Numerics.wasm.gz"}]},{"Route":"_framework/System.Runtime.Numerics.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Numerics.e3fl2oogjk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"134933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4="}]},{"Route":"_framework/System.Runtime.Numerics.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\b1pqie8d42-{0}-e3fl2oogjk-e3fl2oogjk.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018948725"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"52773"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4="},{"Name":"original-resource","Value":"\"Vp5dD4sUKJONaL8mIG5kU4zqublwL4IGCFsd+ImCKO4=\""}]},{"Route":"_framework/System.Runtime.Numerics.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\b1pqie8d42-{0}-e3fl2oogjk-e3fl2oogjk.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"52773"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aF6mF+LwWwQh5L02TIAB80cZiImP+ixTkkvJQC13xSs="}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.a0v88kqnif.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a0v88kqnif"},{"Name":"integrity","Value":"sha256-Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Formatters.wasm"}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4k92vl8md2-{0}-a0v88kqnif-a0v88kqnif.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041467966"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24114"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a0v88kqnif"},{"Name":"integrity","Value":"sha256-Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Formatters.wasm"},{"Name":"original-resource","Value":"\"Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU=\""}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4k92vl8md2-{0}-a0v88kqnif-a0v88kqnif.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24114"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a0v88kqnif"},{"Name":"integrity","Value":"sha256-89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Formatters.wasm.gz"}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.a0v88kqnif.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU="}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4k92vl8md2-{0}-a0v88kqnif-a0v88kqnif.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041467966"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24114"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU="},{"Name":"original-resource","Value":"\"Bnla4SDUVh6JdfXAcbzrUjJX3MORICWwY+I8WXqm6zU=\""}]},{"Route":"_framework/System.Runtime.Serialization.Formatters.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4k92vl8md2-{0}-a0v88kqnif-a0v88kqnif.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24114"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-89g+MXB6Rhrn4JY4wHtJGb6b2LWWrws7KEYBTnIibY4="}]},{"Route":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Json.pez04wd9mo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pez04wd9mo"},{"Name":"integrity","Value":"sha256-vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Json.wasm"}]},{"Route":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wxwyng4xk0-{0}-pez04wd9mo-pez04wd9mo.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000441501104"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pez04wd9mo"},{"Name":"integrity","Value":"sha256-vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Json.wasm"},{"Name":"original-resource","Value":"\"vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw=\""}]},{"Route":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wxwyng4xk0-{0}-pez04wd9mo-pez04wd9mo.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pez04wd9mo"},{"Name":"integrity","Value":"sha256-F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Json.wasm.gz"}]},{"Route":"_framework/System.Runtime.Serialization.Json.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Json.pez04wd9mo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw="}]},{"Route":"_framework/System.Runtime.Serialization.Json.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wxwyng4xk0-{0}-pez04wd9mo-pez04wd9mo.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000441501104"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw="},{"Name":"original-resource","Value":"\"vzj6j2yXEVraAtKDd2KVXbGeWshCIn51xXZ4B1M5oxw=\""}]},{"Route":"_framework/System.Runtime.Serialization.Json.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wxwyng4xk0-{0}-pez04wd9mo-pez04wd9mo.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2264"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-F7jmEK676zaeUGeyfI6Z24uNNHThAUc2jVTyBL8fjGM="}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY="}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\j81tt1y6rj-{0}-xy5d3j3dn1-xy5d3j3dn1.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000184501845"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY="},{"Name":"original-resource","Value":"\"hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY=\""}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\j81tt1y6rj-{0}-xy5d3j3dn1-xy5d3j3dn1.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g="}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xy5d3j3dn1"},{"Name":"integrity","Value":"sha256-hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Primitives.wasm"}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\j81tt1y6rj-{0}-xy5d3j3dn1-xy5d3j3dn1.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000184501845"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xy5d3j3dn1"},{"Name":"integrity","Value":"sha256-hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Primitives.wasm"},{"Name":"original-resource","Value":"\"hyGupfalhHC0lDaO+QsV2zCw9Muov1CPZRzKgNtH5LY=\""}]},{"Route":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\j81tt1y6rj-{0}-xy5d3j3dn1-xy5d3j3dn1.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5419"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xy5d3j3dn1"},{"Name":"integrity","Value":"sha256-nExJZtbFT5U3FZckMQyhdMb5PMiwCscLB/wJdiVax7g="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Primitives.wasm.gz"}]},{"Route":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.mmwsbcsgly.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mmwsbcsgly"},{"Name":"integrity","Value":"sha256-0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Xml.wasm"}]},{"Route":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8pmauzinw9-{0}-mmwsbcsgly-mmwsbcsgly.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388953715"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2570"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mmwsbcsgly"},{"Name":"integrity","Value":"sha256-0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Xml.wasm"},{"Name":"original-resource","Value":"\"0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0=\""}]},{"Route":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8pmauzinw9-{0}-mmwsbcsgly-mmwsbcsgly.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2570"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mmwsbcsgly"},{"Name":"integrity","Value":"sha256-ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.Xml.wasm.gz"}]},{"Route":"_framework/System.Runtime.Serialization.Xml.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.mmwsbcsgly.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0="}]},{"Route":"_framework/System.Runtime.Serialization.Xml.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8pmauzinw9-{0}-mmwsbcsgly-mmwsbcsgly.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388953715"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2570"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0="},{"Name":"original-resource","Value":"\"0hCbtSKuV6vNV89PlSAZBeQaLDLgK+pf3VST11vcFO0=\""}]},{"Route":"_framework/System.Runtime.Serialization.Xml.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8pmauzinw9-{0}-mmwsbcsgly-mmwsbcsgly.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2570"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ILn+2FJJ3+oc1muLkZhwht4B7r5XccKTjGzQJ3yQFAs="}]},{"Route":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.qfpmfujegm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qfpmfujegm"},{"Name":"integrity","Value":"sha256-un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.wasm"}]},{"Route":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mkj61d469a-{0}-qfpmfujegm-qfpmfujegm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000399042298"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2505"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qfpmfujegm"},{"Name":"integrity","Value":"sha256-un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.wasm"},{"Name":"original-resource","Value":"\"un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk=\""}]},{"Route":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mkj61d469a-{0}-qfpmfujegm-qfpmfujegm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2505"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qfpmfujegm"},{"Name":"integrity","Value":"sha256-wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g="},{"Name":"label","Value":"_framework/System.Runtime.Serialization.wasm.gz"}]},{"Route":"_framework/System.Runtime.Serialization.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.Serialization.qfpmfujegm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk="}]},{"Route":"_framework/System.Runtime.Serialization.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mkj61d469a-{0}-qfpmfujegm-qfpmfujegm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000399042298"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2505"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk="},{"Name":"original-resource","Value":"\"un6iBq696YnialtGGZrJNd0+LNCi87cH4jmSf0lukFk=\""}]},{"Route":"_framework/System.Runtime.Serialization.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\mkj61d469a-{0}-qfpmfujegm-qfpmfujegm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2505"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wwH1kXDLREO8yScFu7uBllGerPuiSAAZ2oB7kPEcH3g="}]},{"Route":"_framework/System.Runtime.k6ze2203p2.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.k6ze2203p2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6ze2203p2"},{"Name":"integrity","Value":"sha256-ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM="},{"Name":"label","Value":"_framework/System.Runtime.wasm"}]},{"Route":"_framework/System.Runtime.k6ze2203p2.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\9ru0gm9zti-{0}-k6ze2203p2-k6ze2203p2.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000092302012"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6ze2203p2"},{"Name":"integrity","Value":"sha256-ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM="},{"Name":"label","Value":"_framework/System.Runtime.wasm"},{"Name":"original-resource","Value":"\"ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM=\""}]},{"Route":"_framework/System.Runtime.k6ze2203p2.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\9ru0gm9zti-{0}-k6ze2203p2-k6ze2203p2.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k6ze2203p2"},{"Name":"integrity","Value":"sha256-yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4="},{"Name":"label","Value":"_framework/System.Runtime.wasm.gz"}]},{"Route":"_framework/System.Runtime.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Runtime.k6ze2203p2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM="}]},{"Route":"_framework/System.Runtime.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\9ru0gm9zti-{0}-k6ze2203p2-k6ze2203p2.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000092302012"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM="},{"Name":"original-resource","Value":"\"ZAxRxu4z0LK1z7Js3o0XMPFu+htObWKyOnesqVPrOoM=\""}]},{"Route":"_framework/System.Runtime.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\9ru0gm9zti-{0}-k6ze2203p2-k6ze2203p2.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"10833"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yh/t8184W8vdOFWVhNh/QtwG9rhzrd2aMMLibpU5iH4="}]},{"Route":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.AccessControl.4mxo8hy5cn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"47893"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4mxo8hy5cn"},{"Name":"integrity","Value":"sha256-1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA="},{"Name":"label","Value":"_framework/System.Security.AccessControl.wasm"}]},{"Route":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\9n1qe841ua-{0}-4mxo8hy5cn-4mxo8hy5cn.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000059421237"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4mxo8hy5cn"},{"Name":"integrity","Value":"sha256-1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA="},{"Name":"label","Value":"_framework/System.Security.AccessControl.wasm"},{"Name":"original-resource","Value":"\"1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA=\""}]},{"Route":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\9n1qe841ua-{0}-4mxo8hy5cn-4mxo8hy5cn.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4mxo8hy5cn"},{"Name":"integrity","Value":"sha256-lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak="},{"Name":"label","Value":"_framework/System.Security.AccessControl.wasm.gz"}]},{"Route":"_framework/System.Security.AccessControl.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.AccessControl.4mxo8hy5cn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"47893"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA="}]},{"Route":"_framework/System.Security.AccessControl.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\9n1qe841ua-{0}-4mxo8hy5cn-4mxo8hy5cn.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000059421237"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA="},{"Name":"original-resource","Value":"\"1PMsmuwuaKqrYIirgpvUZ3NTundQDyIQYDEeyceEhmA=\""}]},{"Route":"_framework/System.Security.AccessControl.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\9n1qe841ua-{0}-4mxo8hy5cn-4mxo8hy5cn.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16828"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lWEPXSnO9YHOWkOitnoCn78jV+VQ3p+oX6yEQUNBtak="}]},{"Route":"_framework/System.Security.Claims.9n1yusa5e5.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Claims.9n1yusa5e5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"44821"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9n1yusa5e5"},{"Name":"integrity","Value":"sha256-KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA="},{"Name":"label","Value":"_framework/System.Security.Claims.wasm"}]},{"Route":"_framework/System.Security.Claims.9n1yusa5e5.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\awwlmj7zy5-{0}-9n1yusa5e5-9n1yusa5e5.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060397415"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16556"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9n1yusa5e5"},{"Name":"integrity","Value":"sha256-KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA="},{"Name":"label","Value":"_framework/System.Security.Claims.wasm"},{"Name":"original-resource","Value":"\"KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA=\""}]},{"Route":"_framework/System.Security.Claims.9n1yusa5e5.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\awwlmj7zy5-{0}-9n1yusa5e5-9n1yusa5e5.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16556"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9n1yusa5e5"},{"Name":"integrity","Value":"sha256-ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY="},{"Name":"label","Value":"_framework/System.Security.Claims.wasm.gz"}]},{"Route":"_framework/System.Security.Claims.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Claims.9n1yusa5e5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"44821"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA="}]},{"Route":"_framework/System.Security.Claims.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\awwlmj7zy5-{0}-9n1yusa5e5-9n1yusa5e5.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060397415"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16556"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA="},{"Name":"original-resource","Value":"\"KxVd6UVj4Gz7ZptBX1C4kT3zeBnBz5dutUkDFAfPmoA=\""}]},{"Route":"_framework/System.Security.Claims.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\awwlmj7zy5-{0}-9n1yusa5e5-9n1yusa5e5.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16556"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ywS87Pq2NWKe8sghLvhyLfxGUU2esYVdZxaqEBcOEfY="}]},{"Route":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.5rp84ijz8t.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"642325"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5rp84ijz8t"},{"Name":"integrity","Value":"sha256-YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM="},{"Name":"label","Value":"_framework/System.Security.Cryptography.wasm"}]},{"Route":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gqmneoqstx-{0}-5rp84ijz8t-5rp84ijz8t.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004398891"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"227329"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5rp84ijz8t"},{"Name":"integrity","Value":"sha256-YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM="},{"Name":"label","Value":"_framework/System.Security.Cryptography.wasm"},{"Name":"original-resource","Value":"\"YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM=\""}]},{"Route":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gqmneoqstx-{0}-5rp84ijz8t-5rp84ijz8t.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"227329"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5rp84ijz8t"},{"Name":"integrity","Value":"sha256-+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y="},{"Name":"label","Value":"_framework/System.Security.Cryptography.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4dnz7b15a9"},{"Name":"integrity","Value":"sha256-CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Algorithms.wasm"}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m02xm5ue7p-{0}-4dnz7b15a9-4dnz7b15a9.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000368595651"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2712"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4dnz7b15a9"},{"Name":"integrity","Value":"sha256-CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Algorithms.wasm"},{"Name":"original-resource","Value":"\"CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0=\""}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m02xm5ue7p-{0}-4dnz7b15a9-4dnz7b15a9.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2712"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4dnz7b15a9"},{"Name":"integrity","Value":"sha256-kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Algorithms.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6933"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0="}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m02xm5ue7p-{0}-4dnz7b15a9-4dnz7b15a9.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000368595651"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2712"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0="},{"Name":"original-resource","Value":"\"CCQG3oTGklkKvqz1o8GFYJU7QliJ9Y8dcYeOKbSsaX0=\""}]},{"Route":"_framework/System.Security.Cryptography.Algorithms.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m02xm5ue7p-{0}-4dnz7b15a9-4dnz7b15a9.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2712"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kjc8NC1ZavKoXPLoXRkqRXFmYGdWQGuGNLkncTD/Q8A="}]},{"Route":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dyaxkkx3lb.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyaxkkx3lb"},{"Name":"integrity","Value":"sha256-SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Cng.wasm"}]},{"Route":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jhjpqkptaq-{0}-dyaxkkx3lb-dyaxkkx3lb.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000403714170"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2476"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyaxkkx3lb"},{"Name":"integrity","Value":"sha256-SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Cng.wasm"},{"Name":"original-resource","Value":"\"SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug=\""}]},{"Route":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jhjpqkptaq-{0}-dyaxkkx3lb-dyaxkkx3lb.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2476"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyaxkkx3lb"},{"Name":"integrity","Value":"sha256-xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Cng.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Cng.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dyaxkkx3lb.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug="}]},{"Route":"_framework/System.Security.Cryptography.Cng.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jhjpqkptaq-{0}-dyaxkkx3lb-dyaxkkx3lb.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000403714170"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2476"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug="},{"Name":"original-resource","Value":"\"SxZmS8g/r93tD/sRxNM9osIYyVx72z/H/rqmMQdWNug=\""}]},{"Route":"_framework/System.Security.Cryptography.Cng.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jhjpqkptaq-{0}-dyaxkkx3lb-dyaxkkx3lb.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2476"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xqYPUGZM19t2AGdCbGBvQRkEaYOjGXZqJ40wFY3l178="}]},{"Route":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Csp.20t5iw27a6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"20t5iw27a6"},{"Name":"integrity","Value":"sha256-EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Csp.wasm"}]},{"Route":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\v9jar86jna-{0}-20t5iw27a6-20t5iw27a6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000428082192"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"20t5iw27a6"},{"Name":"integrity","Value":"sha256-EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Csp.wasm"},{"Name":"original-resource","Value":"\"EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M=\""}]},{"Route":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\v9jar86jna-{0}-20t5iw27a6-20t5iw27a6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"20t5iw27a6"},{"Name":"integrity","Value":"sha256-lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Csp.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Csp.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Csp.20t5iw27a6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M="}]},{"Route":"_framework/System.Security.Cryptography.Csp.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\v9jar86jna-{0}-20t5iw27a6-20t5iw27a6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000428082192"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M="},{"Name":"original-resource","Value":"\"EtTJD2JK0Rt7JYIikmhcCxm2nwff+fVOWVzvr4obB8M=\""}]},{"Route":"_framework/System.Security.Cryptography.Csp.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\v9jar86jna-{0}-20t5iw27a6-20t5iw27a6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2335"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lnREpN0XsHOYqA0opLdAO3lidv+BWgsO7J9YixuO7Ek="}]},{"Route":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0lu5m0tfx2"},{"Name":"integrity","Value":"sha256-7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Encoding.wasm"}]},{"Route":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\uu7wfp4do2-{0}-0lu5m0tfx2-0lu5m0tfx2.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438404209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0lu5m0tfx2"},{"Name":"integrity","Value":"sha256-7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Encoding.wasm"},{"Name":"original-resource","Value":"\"7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU=\""}]},{"Route":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\uu7wfp4do2-{0}-0lu5m0tfx2-0lu5m0tfx2.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0lu5m0tfx2"},{"Name":"integrity","Value":"sha256-EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Encoding.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Encoding.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU="}]},{"Route":"_framework/System.Security.Cryptography.Encoding.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\uu7wfp4do2-{0}-0lu5m0tfx2-0lu5m0tfx2.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438404209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU="},{"Name":"original-resource","Value":"\"7G90o69YXrWL2H1YqPGejQvqkGaMyT9s+Y9N1+ZMLFU=\""}]},{"Route":"_framework/System.Security.Cryptography.Encoding.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\uu7wfp4do2-{0}-0lu5m0tfx2-0lu5m0tfx2.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2280"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EU+wGvCVJ4P+UOsj9//iW0AlKp9btnatielTiNJBJcg="}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m4pzjxi3g"},{"Name":"integrity","Value":"sha256-nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o="},{"Name":"label","Value":"_framework/System.Security.Cryptography.OpenSsl.wasm"}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\12m83h5a1i-{0}-4m4pzjxi3g-4m4pzjxi3g.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000449842555"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2222"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m4pzjxi3g"},{"Name":"integrity","Value":"sha256-nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o="},{"Name":"label","Value":"_framework/System.Security.Cryptography.OpenSsl.wasm"},{"Name":"original-resource","Value":"\"nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o=\""}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\12m83h5a1i-{0}-4m4pzjxi3g-4m4pzjxi3g.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2222"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4m4pzjxi3g"},{"Name":"integrity","Value":"sha256-vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM="},{"Name":"label","Value":"_framework/System.Security.Cryptography.OpenSsl.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o="}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\12m83h5a1i-{0}-4m4pzjxi3g-4m4pzjxi3g.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000449842555"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2222"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o="},{"Name":"original-resource","Value":"\"nKLRyR6/3ScZM8qqaWqHcZzyIFcnaEJxR+Qt4dPR3+o=\""}]},{"Route":"_framework/System.Security.Cryptography.OpenSsl.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\12m83h5a1i-{0}-4m4pzjxi3g-4m4pzjxi3g.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2222"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vyL2hpgl8FApqNmFTBw9MqjNzm/4FbbXEYs7j9E9ZMM="}]},{"Route":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.7bcdd4uolu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7bcdd4uolu"},{"Name":"integrity","Value":"sha256-kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Primitives.wasm"}]},{"Route":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ly70359tb6-{0}-7bcdd4uolu-7bcdd4uolu.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000425894378"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2347"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7bcdd4uolu"},{"Name":"integrity","Value":"sha256-kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Primitives.wasm"},{"Name":"original-resource","Value":"\"kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0=\""}]},{"Route":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ly70359tb6-{0}-7bcdd4uolu-7bcdd4uolu.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2347"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7bcdd4uolu"},{"Name":"integrity","Value":"sha256-o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE="},{"Name":"label","Value":"_framework/System.Security.Cryptography.Primitives.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.Primitives.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.7bcdd4uolu.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0="}]},{"Route":"_framework/System.Security.Cryptography.Primitives.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ly70359tb6-{0}-7bcdd4uolu-7bcdd4uolu.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000425894378"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2347"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0="},{"Name":"original-resource","Value":"\"kxwYxDrmQQt2a96PZSY+c5m2Bd3resehAaairZJxAZ0=\""}]},{"Route":"_framework/System.Security.Cryptography.Primitives.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ly70359tb6-{0}-7bcdd4uolu-7bcdd4uolu.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2347"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-o1Jx18tmaG7CF6NNxshFPBuP5TqsAavXEI/XTGj05sE="}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dmew7c9amv"},{"Name":"integrity","Value":"sha256-+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8="},{"Name":"label","Value":"_framework/System.Security.Cryptography.X509Certificates.wasm"}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\rz1qtq0z6d-{0}-dmew7c9amv-dmew7c9amv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000374251497"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2671"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dmew7c9amv"},{"Name":"integrity","Value":"sha256-+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8="},{"Name":"label","Value":"_framework/System.Security.Cryptography.X509Certificates.wasm"},{"Name":"original-resource","Value":"\"+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8=\""}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\rz1qtq0z6d-{0}-dmew7c9amv-dmew7c9amv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2671"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dmew7c9amv"},{"Name":"integrity","Value":"sha256-KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw="},{"Name":"label","Value":"_framework/System.Security.Cryptography.X509Certificates.wasm.gz"}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8="}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\rz1qtq0z6d-{0}-dmew7c9amv-dmew7c9amv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000374251497"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2671"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8="},{"Name":"original-resource","Value":"\"+8YtZ824bFWT6xBDxcp29g5VozHkSh7gxEJ9wTTGBV8=\""}]},{"Route":"_framework/System.Security.Cryptography.X509Certificates.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\rz1qtq0z6d-{0}-dmew7c9amv-dmew7c9amv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2671"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KrPS20HrWVAOZpEam7CeeiBDUz1hZyA4UVxFsvjftKw="}]},{"Route":"_framework/System.Security.Cryptography.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Cryptography.5rp84ijz8t.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"642325"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM="}]},{"Route":"_framework/System.Security.Cryptography.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gqmneoqstx-{0}-5rp84ijz8t-5rp84ijz8t.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004398891"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"227329"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM="},{"Name":"original-resource","Value":"\"YTB50qLxW3FHhVgNVtqxug0aR8MKoHCpyfRywlOOqMM=\""}]},{"Route":"_framework/System.Security.Cryptography.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gqmneoqstx-{0}-5rp84ijz8t-5rp84ijz8t.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"227329"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+cc/6iMbtCGe4lJSUBpqM9Iz+zmOtzmaN9d9P0n488Y="}]},{"Route":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Principal.Windows.7ssqvw2wfy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27413"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7ssqvw2wfy"},{"Name":"integrity","Value":"sha256-NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ="},{"Name":"label","Value":"_framework/System.Security.Principal.Windows.wasm"}]},{"Route":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sl0sft7bkv-{0}-7ssqvw2wfy-7ssqvw2wfy.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090171326"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11089"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7ssqvw2wfy"},{"Name":"integrity","Value":"sha256-NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ="},{"Name":"label","Value":"_framework/System.Security.Principal.Windows.wasm"},{"Name":"original-resource","Value":"\"NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ=\""}]},{"Route":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sl0sft7bkv-{0}-7ssqvw2wfy-7ssqvw2wfy.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11089"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7ssqvw2wfy"},{"Name":"integrity","Value":"sha256-ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg="},{"Name":"label","Value":"_framework/System.Security.Principal.Windows.wasm.gz"}]},{"Route":"_framework/System.Security.Principal.Windows.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Principal.Windows.7ssqvw2wfy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"27413"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ="}]},{"Route":"_framework/System.Security.Principal.Windows.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sl0sft7bkv-{0}-7ssqvw2wfy-7ssqvw2wfy.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090171326"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11089"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ="},{"Name":"original-resource","Value":"\"NzMv/gYogSkXi7nAeibdZqkHbd5o2GJwbyQ4eDOVdYQ=\""}]},{"Route":"_framework/System.Security.Principal.Windows.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\sl0sft7bkv-{0}-7ssqvw2wfy-7ssqvw2wfy.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11089"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ksdHDCBnCd1idNZUZLzpKTn1pNUsJHVwjRhKt64wOPg="}]},{"Route":"_framework/System.Security.Principal.j5dp7k8x6u.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Principal.j5dp7k8x6u.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5dp7k8x6u"},{"Name":"integrity","Value":"sha256-KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no="},{"Name":"label","Value":"_framework/System.Security.Principal.wasm"}]},{"Route":"_framework/System.Security.Principal.j5dp7k8x6u.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8ynwqwcefg-{0}-j5dp7k8x6u-j5dp7k8x6u.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000459558824"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2175"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5dp7k8x6u"},{"Name":"integrity","Value":"sha256-KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no="},{"Name":"label","Value":"_framework/System.Security.Principal.wasm"},{"Name":"original-resource","Value":"\"KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no=\""}]},{"Route":"_framework/System.Security.Principal.j5dp7k8x6u.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8ynwqwcefg-{0}-j5dp7k8x6u-j5dp7k8x6u.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2175"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5dp7k8x6u"},{"Name":"integrity","Value":"sha256-HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA="},{"Name":"label","Value":"_framework/System.Security.Principal.wasm.gz"}]},{"Route":"_framework/System.Security.Principal.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.Principal.j5dp7k8x6u.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no="}]},{"Route":"_framework/System.Security.Principal.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8ynwqwcefg-{0}-j5dp7k8x6u-j5dp7k8x6u.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000459558824"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2175"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no="},{"Name":"original-resource","Value":"\"KfroySmqVcPGmn3QTpWgL3vo/r5Am7IcbwbX4KAd4no=\""}]},{"Route":"_framework/System.Security.Principal.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8ynwqwcefg-{0}-j5dp7k8x6u-j5dp7k8x6u.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2175"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HzMs9Xp3t9yg6wJCq3pMcgWdF4OX4W39XoExM8iRKZA="}]},{"Route":"_framework/System.Security.SecureString.7weoywtuje.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.SecureString.7weoywtuje.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7weoywtuje"},{"Name":"integrity","Value":"sha256-Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY="},{"Name":"label","Value":"_framework/System.Security.SecureString.wasm"}]},{"Route":"_framework/System.Security.SecureString.7weoywtuje.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ogcs9ucvrf-{0}-7weoywtuje-7weoywtuje.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000453309157"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2205"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7weoywtuje"},{"Name":"integrity","Value":"sha256-Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY="},{"Name":"label","Value":"_framework/System.Security.SecureString.wasm"},{"Name":"original-resource","Value":"\"Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY=\""}]},{"Route":"_framework/System.Security.SecureString.7weoywtuje.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ogcs9ucvrf-{0}-7weoywtuje-7weoywtuje.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2205"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7weoywtuje"},{"Name":"integrity","Value":"sha256-z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM="},{"Name":"label","Value":"_framework/System.Security.SecureString.wasm.gz"}]},{"Route":"_framework/System.Security.SecureString.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.SecureString.7weoywtuje.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY="}]},{"Route":"_framework/System.Security.SecureString.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ogcs9ucvrf-{0}-7weoywtuje-7weoywtuje.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000453309157"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2205"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY="},{"Name":"original-resource","Value":"\"Z5MYQrjlu4RgNAwl13nxDkVif68msW3P3UY5NefH6hY=\""}]},{"Route":"_framework/System.Security.SecureString.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ogcs9ucvrf-{0}-7weoywtuje-7weoywtuje.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2205"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z1d7DJCtVET38L4E8jsKPU74oYmXTU+/72XtA4idVfM="}]},{"Route":"_framework/System.Security.snpv53zusk.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.snpv53zusk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"7957"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"snpv53zusk"},{"Name":"integrity","Value":"sha256-qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk="},{"Name":"label","Value":"_framework/System.Security.wasm"}]},{"Route":"_framework/System.Security.snpv53zusk.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8srr1acehr-{0}-snpv53zusk-snpv53zusk.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000336927224"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2967"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"snpv53zusk"},{"Name":"integrity","Value":"sha256-qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk="},{"Name":"label","Value":"_framework/System.Security.wasm"},{"Name":"original-resource","Value":"\"qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk=\""}]},{"Route":"_framework/System.Security.snpv53zusk.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8srr1acehr-{0}-snpv53zusk-snpv53zusk.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2967"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"snpv53zusk"},{"Name":"integrity","Value":"sha256-l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk="},{"Name":"label","Value":"_framework/System.Security.wasm.gz"}]},{"Route":"_framework/System.Security.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Security.snpv53zusk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"7957"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk="}]},{"Route":"_framework/System.Security.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8srr1acehr-{0}-snpv53zusk-snpv53zusk.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000336927224"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2967"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk="},{"Name":"original-resource","Value":"\"qFTNZPpD22AMNoP6hp/1th6RcChMCwzt/hUrP6c6ZNk=\""}]},{"Route":"_framework/System.Security.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8srr1acehr-{0}-snpv53zusk-snpv53zusk.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2967"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l/b04hErUp48WrDCK46fRQXaG7Xu/CYylLxPeSlnLqk="}]},{"Route":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ServiceModel.Web.3f1khl8k32.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3f1khl8k32"},{"Name":"integrity","Value":"sha256-0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY="},{"Name":"label","Value":"_framework/System.ServiceModel.Web.wasm"}]},{"Route":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i30lqfoca8-{0}-3f1khl8k32-3f1khl8k32.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000392464678"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2547"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3f1khl8k32"},{"Name":"integrity","Value":"sha256-0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY="},{"Name":"label","Value":"_framework/System.ServiceModel.Web.wasm"},{"Name":"original-resource","Value":"\"0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY=\""}]},{"Route":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i30lqfoca8-{0}-3f1khl8k32-3f1khl8k32.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2547"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3f1khl8k32"},{"Name":"integrity","Value":"sha256-E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4="},{"Name":"label","Value":"_framework/System.ServiceModel.Web.wasm.gz"}]},{"Route":"_framework/System.ServiceModel.Web.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ServiceModel.Web.3f1khl8k32.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY="}]},{"Route":"_framework/System.ServiceModel.Web.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i30lqfoca8-{0}-3f1khl8k32-3f1khl8k32.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000392464678"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2547"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY="},{"Name":"original-resource","Value":"\"0RYujx3hOaqcdMkxqVRlvwMJE3Eiia09EOgy8iVHtOY=\""}]},{"Route":"_framework/System.ServiceModel.Web.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\i30lqfoca8-{0}-3f1khl8k32-3f1khl8k32.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2547"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-E/XyCarft/OY/0mXV3BOpJ+FbP8Tq99ttdKYdp/Dkw4="}]},{"Route":"_framework/System.ServiceProcess.a95c1olw0i.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ServiceProcess.a95c1olw0i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a95c1olw0i"},{"Name":"integrity","Value":"sha256-nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU="},{"Name":"label","Value":"_framework/System.ServiceProcess.wasm"}]},{"Route":"_framework/System.ServiceProcess.a95c1olw0i.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zlxnfbxifc-{0}-a95c1olw0i-a95c1olw0i.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000433275563"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a95c1olw0i"},{"Name":"integrity","Value":"sha256-nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU="},{"Name":"label","Value":"_framework/System.ServiceProcess.wasm"},{"Name":"original-resource","Value":"\"nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU=\""}]},{"Route":"_framework/System.ServiceProcess.a95c1olw0i.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zlxnfbxifc-{0}-a95c1olw0i-a95c1olw0i.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a95c1olw0i"},{"Name":"integrity","Value":"sha256-EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q="},{"Name":"label","Value":"_framework/System.ServiceProcess.wasm.gz"}]},{"Route":"_framework/System.ServiceProcess.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ServiceProcess.a95c1olw0i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU="}]},{"Route":"_framework/System.ServiceProcess.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zlxnfbxifc-{0}-a95c1olw0i-a95c1olw0i.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000433275563"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU="},{"Name":"original-resource","Value":"\"nvYNz4JxrW9EbrDAIte/TKIWH7NPDyEzw5uwY/9FWXU=\""}]},{"Route":"_framework/System.ServiceProcess.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\zlxnfbxifc-{0}-a95c1olw0i-a95c1olw0i.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EjvdwT3limbX59Wbh0QmLl3cs44/W3ahrnShM2WjX8Q="}]},{"Route":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encoding.CodePages.8bhn50uz8f.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"732437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8bhn50uz8f"},{"Name":"integrity","Value":"sha256-nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A="},{"Name":"label","Value":"_framework/System.Text.Encoding.CodePages.wasm"}]},{"Route":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\d2kqqmb0bv-{0}-8bhn50uz8f-8bhn50uz8f.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000001939067"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"515711"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8bhn50uz8f"},{"Name":"integrity","Value":"sha256-nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A="},{"Name":"label","Value":"_framework/System.Text.Encoding.CodePages.wasm"},{"Name":"original-resource","Value":"\"nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A=\""}]},{"Route":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\d2kqqmb0bv-{0}-8bhn50uz8f-8bhn50uz8f.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"515711"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8bhn50uz8f"},{"Name":"integrity","Value":"sha256-hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y="},{"Name":"label","Value":"_framework/System.Text.Encoding.CodePages.wasm.gz"}]},{"Route":"_framework/System.Text.Encoding.CodePages.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encoding.CodePages.8bhn50uz8f.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"732437"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A="}]},{"Route":"_framework/System.Text.Encoding.CodePages.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\d2kqqmb0bv-{0}-8bhn50uz8f-8bhn50uz8f.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000001939067"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"515711"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A="},{"Name":"original-resource","Value":"\"nIMU74re2s2YH+3JuTStexs6vW44sGVJdfrmo+E4c7A=\""}]},{"Route":"_framework/System.Text.Encoding.CodePages.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\d2kqqmb0bv-{0}-8bhn50uz8f-8bhn50uz8f.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"515711"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hi9fdvWyaf7GAZfMO1teXIdUnDIPLYgRFXg0AtGfs8Y="}]},{"Route":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encoding.Extensions.tqz9dyg6j7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tqz9dyg6j7"},{"Name":"integrity","Value":"sha256-y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A="},{"Name":"label","Value":"_framework/System.Text.Encoding.Extensions.wasm"}]},{"Route":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m10se0yx1g-{0}-tqz9dyg6j7-tqz9dyg6j7.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000442673749"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2258"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tqz9dyg6j7"},{"Name":"integrity","Value":"sha256-y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A="},{"Name":"label","Value":"_framework/System.Text.Encoding.Extensions.wasm"},{"Name":"original-resource","Value":"\"y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A=\""}]},{"Route":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m10se0yx1g-{0}-tqz9dyg6j7-tqz9dyg6j7.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2258"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tqz9dyg6j7"},{"Name":"integrity","Value":"sha256-jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k="},{"Name":"label","Value":"_framework/System.Text.Encoding.Extensions.wasm.gz"}]},{"Route":"_framework/System.Text.Encoding.Extensions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encoding.Extensions.tqz9dyg6j7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A="}]},{"Route":"_framework/System.Text.Encoding.Extensions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m10se0yx1g-{0}-tqz9dyg6j7-tqz9dyg6j7.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000442673749"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2258"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A="},{"Name":"original-resource","Value":"\"y208MbIN6InUMbO/8IlZkqYgpJz2uCJlXPz1A3WP/2A=\""}]},{"Route":"_framework/System.Text.Encoding.Extensions.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\m10se0yx1g-{0}-tqz9dyg6j7-tqz9dyg6j7.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2258"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jidBxRsahUGpRrIArtJ261AKRd3onpTrAlr9ofunK3k="}]},{"Route":"_framework/System.Text.Encoding.s9ic8sulfi.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encoding.s9ic8sulfi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s9ic8sulfi"},{"Name":"integrity","Value":"sha256-gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg="},{"Name":"label","Value":"_framework/System.Text.Encoding.wasm"}]},{"Route":"_framework/System.Text.Encoding.s9ic8sulfi.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\w4xw0gq3pj-{0}-s9ic8sulfi-s9ic8sulfi.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000445434298"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2244"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s9ic8sulfi"},{"Name":"integrity","Value":"sha256-gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg="},{"Name":"label","Value":"_framework/System.Text.Encoding.wasm"},{"Name":"original-resource","Value":"\"gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg=\""}]},{"Route":"_framework/System.Text.Encoding.s9ic8sulfi.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\w4xw0gq3pj-{0}-s9ic8sulfi-s9ic8sulfi.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2244"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s9ic8sulfi"},{"Name":"integrity","Value":"sha256-oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA="},{"Name":"label","Value":"_framework/System.Text.Encoding.wasm.gz"}]},{"Route":"_framework/System.Text.Encoding.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encoding.s9ic8sulfi.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg="}]},{"Route":"_framework/System.Text.Encoding.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\w4xw0gq3pj-{0}-s9ic8sulfi-s9ic8sulfi.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000445434298"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2244"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg="},{"Name":"original-resource","Value":"\"gAC6dsyYsYCAhTW1sdCHpEWfvNsGbkfozQG2c7424fg=\""}]},{"Route":"_framework/System.Text.Encoding.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\w4xw0gq3pj-{0}-s9ic8sulfi-s9ic8sulfi.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2244"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-oCHQApQjJzoAAIZvV56+oT72Q8dP+cDF6fRCy5veunA="}]},{"Route":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encodings.Web.07hq35kp92.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"07hq35kp92"},{"Name":"integrity","Value":"sha256-dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE="},{"Name":"label","Value":"_framework/System.Text.Encodings.Web.wasm"}]},{"Route":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wqsee81gb1-{0}-07hq35kp92-07hq35kp92.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000045293958"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"07hq35kp92"},{"Name":"integrity","Value":"sha256-dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE="},{"Name":"label","Value":"_framework/System.Text.Encodings.Web.wasm"},{"Name":"original-resource","Value":"\"dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE=\""}]},{"Route":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wqsee81gb1-{0}-07hq35kp92-07hq35kp92.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"07hq35kp92"},{"Name":"integrity","Value":"sha256-vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4="},{"Name":"label","Value":"_framework/System.Text.Encodings.Web.wasm.gz"}]},{"Route":"_framework/System.Text.Encodings.Web.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Encodings.Web.07hq35kp92.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"55573"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE="}]},{"Route":"_framework/System.Text.Encodings.Web.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wqsee81gb1-{0}-07hq35kp92-07hq35kp92.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000045293958"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE="},{"Name":"original-resource","Value":"\"dI/4i50J3daDsGvQXTtXTvZL1Z4OwhmVoH1Kv1sQPeE=\""}]},{"Route":"_framework/System.Text.Encodings.Web.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wqsee81gb1-{0}-07hq35kp92-07hq35kp92.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vtqjpW4wRztEUMciSYeT0cbO8sh4vPma02xX6mck1e4="}]},{"Route":"_framework/System.Text.Json.2alhj4y3bm.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Json.2alhj4y3bm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"638741"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2alhj4y3bm"},{"Name":"integrity","Value":"sha256-BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY="},{"Name":"label","Value":"_framework/System.Text.Json.wasm"}]},{"Route":"_framework/System.Text.Json.2alhj4y3bm.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0064fe6uur-{0}-2alhj4y3bm-2alhj4y3bm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004372674"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"228692"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2alhj4y3bm"},{"Name":"integrity","Value":"sha256-BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY="},{"Name":"label","Value":"_framework/System.Text.Json.wasm"},{"Name":"original-resource","Value":"\"BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY=\""}]},{"Route":"_framework/System.Text.Json.2alhj4y3bm.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0064fe6uur-{0}-2alhj4y3bm-2alhj4y3bm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"228692"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2alhj4y3bm"},{"Name":"integrity","Value":"sha256-L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw="},{"Name":"label","Value":"_framework/System.Text.Json.wasm.gz"}]},{"Route":"_framework/System.Text.Json.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.Json.2alhj4y3bm.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"638741"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY="}]},{"Route":"_framework/System.Text.Json.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0064fe6uur-{0}-2alhj4y3bm-2alhj4y3bm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000004372674"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"228692"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY="},{"Name":"original-resource","Value":"\"BheU4fr2y3m4UHghRCAS+s8H+Fm0hqcn2tSLmH65gFY=\""}]},{"Route":"_framework/System.Text.Json.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\0064fe6uur-{0}-2alhj4y3bm-2alhj4y3bm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"228692"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L9bRjJmNXCzpvot51qkAUeXx+gnWCH4UUe+UH44LTcw="}]},{"Route":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.RegularExpressions.h1qtkesphd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"374549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1qtkesphd"},{"Name":"integrity","Value":"sha256-FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ="},{"Name":"label","Value":"_framework/System.Text.RegularExpressions.wasm"}]},{"Route":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\7d15z782y2-{0}-h1qtkesphd-h1qtkesphd.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006311418"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"158442"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1qtkesphd"},{"Name":"integrity","Value":"sha256-FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ="},{"Name":"label","Value":"_framework/System.Text.RegularExpressions.wasm"},{"Name":"original-resource","Value":"\"FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ=\""}]},{"Route":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\7d15z782y2-{0}-h1qtkesphd-h1qtkesphd.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"158442"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1qtkesphd"},{"Name":"integrity","Value":"sha256-BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U="},{"Name":"label","Value":"_framework/System.Text.RegularExpressions.wasm.gz"}]},{"Route":"_framework/System.Text.RegularExpressions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Text.RegularExpressions.h1qtkesphd.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"374549"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ="}]},{"Route":"_framework/System.Text.RegularExpressions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\7d15z782y2-{0}-h1qtkesphd-h1qtkesphd.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000006311418"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"158442"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ="},{"Name":"original-resource","Value":"\"FbVJnY8ASEAyUo17q0mlbx0dQ+i1bc7CWoGnfaKsWTQ=\""}]},{"Route":"_framework/System.Text.RegularExpressions.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\7d15z782y2-{0}-h1qtkesphd-h1qtkesphd.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"158442"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BsUfIN9G+AGdyZXz5vuBjg5EhZ2hZRaWgn5puagtx8U="}]},{"Route":"_framework/System.Threading.47ucbn1gg1.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.47ucbn1gg1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"47ucbn1gg1"},{"Name":"integrity","Value":"sha256-ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts="},{"Name":"label","Value":"_framework/System.Threading.wasm"}]},{"Route":"_framework/System.Threading.47ucbn1gg1.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\e2ypaal8k2-{0}-47ucbn1gg1-47ucbn1gg1.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000068045727"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14695"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"47ucbn1gg1"},{"Name":"integrity","Value":"sha256-ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts="},{"Name":"label","Value":"_framework/System.Threading.wasm"},{"Name":"original-resource","Value":"\"ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts=\""}]},{"Route":"_framework/System.Threading.47ucbn1gg1.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\e2ypaal8k2-{0}-47ucbn1gg1-47ucbn1gg1.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14695"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"47ucbn1gg1"},{"Name":"integrity","Value":"sha256-fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g="},{"Name":"label","Value":"_framework/System.Threading.wasm.gz"}]},{"Route":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.AccessControl.ruehy0ud5k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"23317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ruehy0ud5k"},{"Name":"integrity","Value":"sha256-c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s="},{"Name":"label","Value":"_framework/System.Threading.AccessControl.wasm"}]},{"Route":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\lbcric48ji-{0}-ruehy0ud5k-ruehy0ud5k.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000117785630"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ruehy0ud5k"},{"Name":"integrity","Value":"sha256-c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s="},{"Name":"label","Value":"_framework/System.Threading.AccessControl.wasm"},{"Name":"original-resource","Value":"\"c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s=\""}]},{"Route":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\lbcric48ji-{0}-ruehy0ud5k-ruehy0ud5k.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ruehy0ud5k"},{"Name":"integrity","Value":"sha256-INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s="},{"Name":"label","Value":"_framework/System.Threading.AccessControl.wasm.gz"}]},{"Route":"_framework/System.Threading.AccessControl.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.AccessControl.ruehy0ud5k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"23317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s="}]},{"Route":"_framework/System.Threading.AccessControl.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\lbcric48ji-{0}-ruehy0ud5k-ruehy0ud5k.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000117785630"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s="},{"Name":"original-resource","Value":"\"c+f1xwX2mwd1HivDicXVo53sg3M6plnOA0lZsmE+I0s=\""}]},{"Route":"_framework/System.Threading.AccessControl.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\lbcric48ji-{0}-ruehy0ud5k-ruehy0ud5k.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8489"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-INizfWoBGBPS5JA+MDBrFx30NloM1x3iWHXRIySoW9s="}]},{"Route":"_framework/System.Threading.Channels.s3i62rxr2p.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Channels.s3i62rxr2p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"56085"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s3i62rxr2p"},{"Name":"integrity","Value":"sha256-2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4="},{"Name":"label","Value":"_framework/System.Threading.Channels.wasm"}]},{"Route":"_framework/System.Threading.Channels.s3i62rxr2p.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\rma0vjtbld-{0}-s3i62rxr2p-s3i62rxr2p.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040955072"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24416"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s3i62rxr2p"},{"Name":"integrity","Value":"sha256-2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4="},{"Name":"label","Value":"_framework/System.Threading.Channels.wasm"},{"Name":"original-resource","Value":"\"2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4=\""}]},{"Route":"_framework/System.Threading.Channels.s3i62rxr2p.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\rma0vjtbld-{0}-s3i62rxr2p-s3i62rxr2p.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24416"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s3i62rxr2p"},{"Name":"integrity","Value":"sha256-u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo="},{"Name":"label","Value":"_framework/System.Threading.Channels.wasm.gz"}]},{"Route":"_framework/System.Threading.Channels.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Channels.s3i62rxr2p.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"56085"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4="}]},{"Route":"_framework/System.Threading.Channels.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\rma0vjtbld-{0}-s3i62rxr2p-s3i62rxr2p.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040955072"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24416"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4="},{"Name":"original-resource","Value":"\"2AAR/+dObI+bFn2Kf2fnAGtTXsbNM/IogjbCwZ4/lD4=\""}]},{"Route":"_framework/System.Threading.Channels.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\rma0vjtbld-{0}-s3i62rxr2p-s3i62rxr2p.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24416"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-u6UOFwoNPTf8hqTUDwteVPqI644oU8UMDK36ElzPfVo="}]},{"Route":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Overlapped.lzl7igry1t.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzl7igry1t"},{"Name":"integrity","Value":"sha256-ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8="},{"Name":"label","Value":"_framework/System.Threading.Overlapped.wasm"}]},{"Route":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ywpa2qpg55-{0}-lzl7igry1t-lzl7igry1t.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000431406385"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzl7igry1t"},{"Name":"integrity","Value":"sha256-ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8="},{"Name":"label","Value":"_framework/System.Threading.Overlapped.wasm"},{"Name":"original-resource","Value":"\"ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8=\""}]},{"Route":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ywpa2qpg55-{0}-lzl7igry1t-lzl7igry1t.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzl7igry1t"},{"Name":"integrity","Value":"sha256-2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto="},{"Name":"label","Value":"_framework/System.Threading.Overlapped.wasm.gz"}]},{"Route":"_framework/System.Threading.Overlapped.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Overlapped.lzl7igry1t.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8="}]},{"Route":"_framework/System.Threading.Overlapped.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ywpa2qpg55-{0}-lzl7igry1t-lzl7igry1t.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000431406385"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8="},{"Name":"original-resource","Value":"\"ES1NKTg48VYdUTELAqycwaTZE+8G5X28qClfJ3FWAq8=\""}]},{"Route":"_framework/System.Threading.Overlapped.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ywpa2qpg55-{0}-lzl7igry1t-lzl7igry1t.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2317"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2vUKzRnWn3/m1ZN2JeNEsguna1U0Yq46KbstTZYXOto="}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"175381"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"p9bjzp5pyo"},{"Name":"integrity","Value":"sha256-zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Dataflow.wasm"}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\to8tkrj8cc-{0}-p9bjzp5pyo-p9bjzp5pyo.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013652623"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"73245"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"p9bjzp5pyo"},{"Name":"integrity","Value":"sha256-zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Dataflow.wasm"},{"Name":"original-resource","Value":"\"zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k=\""}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\to8tkrj8cc-{0}-p9bjzp5pyo-p9bjzp5pyo.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"73245"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"p9bjzp5pyo"},{"Name":"integrity","Value":"sha256-3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Dataflow.wasm.gz"}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"175381"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k="}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\to8tkrj8cc-{0}-p9bjzp5pyo-p9bjzp5pyo.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000013652623"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"73245"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k="},{"Name":"original-resource","Value":"\"zVYaG7rbWlASjPs2s6rD3fHGXHa5HBqIcKlnUo8qx9k=\""}]},{"Route":"_framework/System.Threading.Tasks.Dataflow.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\to8tkrj8cc-{0}-p9bjzp5pyo-p9bjzp5pyo.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"73245"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3Ol3Yrzhnok/DZahjDfwOLetYQ9TP2BSM5L+jgysU3U="}]},{"Route":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.unp0hcfijn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"unp0hcfijn"},{"Name":"integrity","Value":"sha256-Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Extensions.wasm"}]},{"Route":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\7o4w0lfocu-{0}-unp0hcfijn-unp0hcfijn.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000433275563"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"unp0hcfijn"},{"Name":"integrity","Value":"sha256-Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Extensions.wasm"},{"Name":"original-resource","Value":"\"Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4=\""}]},{"Route":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\7o4w0lfocu-{0}-unp0hcfijn-unp0hcfijn.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"unp0hcfijn"},{"Name":"integrity","Value":"sha256-+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Extensions.wasm.gz"}]},{"Route":"_framework/System.Threading.Tasks.Extensions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.unp0hcfijn.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4="}]},{"Route":"_framework/System.Threading.Tasks.Extensions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\7o4w0lfocu-{0}-unp0hcfijn-unp0hcfijn.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000433275563"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4="},{"Name":"original-resource","Value":"\"Fq36YR8JxdzQSY7Z47jZ/s+E1fqJ3WxAJr+JZt4vPu4=\""}]},{"Route":"_framework/System.Threading.Tasks.Extensions.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\7o4w0lfocu-{0}-unp0hcfijn-unp0hcfijn.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2307"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+lfiMZyo8XNLEKW5qwYB7S08ya+PlkeBikYb+aKcSDw="}]},{"Route":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.hyku0ejwye.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"50965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hyku0ejwye"},{"Name":"integrity","Value":"sha256-ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Parallel.wasm"}]},{"Route":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ohlfbgu01g-{0}-hyku0ejwye-hyku0ejwye.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000047418085"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21088"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hyku0ejwye"},{"Name":"integrity","Value":"sha256-ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Parallel.wasm"},{"Name":"original-resource","Value":"\"ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo=\""}]},{"Route":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ohlfbgu01g-{0}-hyku0ejwye-hyku0ejwye.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21088"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hyku0ejwye"},{"Name":"integrity","Value":"sha256-m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk="},{"Name":"label","Value":"_framework/System.Threading.Tasks.Parallel.wasm.gz"}]},{"Route":"_framework/System.Threading.Tasks.Parallel.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.hyku0ejwye.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"50965"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo="}]},{"Route":"_framework/System.Threading.Tasks.Parallel.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ohlfbgu01g-{0}-hyku0ejwye-hyku0ejwye.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000047418085"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21088"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo="},{"Name":"original-resource","Value":"\"ZxIVU/W4b6y7eyUvQrpgVkBL1LRFG3w35bISa0EXYlo=\""}]},{"Route":"_framework/System.Threading.Tasks.Parallel.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ohlfbgu01g-{0}-hyku0ejwye-hyku0ejwye.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"21088"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-m0kiIyiKYU12IHuJA+ByY2+npUBZouojSf367hPkufk="}]},{"Route":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.t0sjw89o0i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t0sjw89o0i"},{"Name":"integrity","Value":"sha256-YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo="},{"Name":"label","Value":"_framework/System.Threading.Tasks.wasm"}]},{"Route":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8rrnar5gtv-{0}-t0sjw89o0i-t0sjw89o0i.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388198758"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t0sjw89o0i"},{"Name":"integrity","Value":"sha256-YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo="},{"Name":"label","Value":"_framework/System.Threading.Tasks.wasm"},{"Name":"original-resource","Value":"\"YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo=\""}]},{"Route":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8rrnar5gtv-{0}-t0sjw89o0i-t0sjw89o0i.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t0sjw89o0i"},{"Name":"integrity","Value":"sha256-Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE="},{"Name":"label","Value":"_framework/System.Threading.Tasks.wasm.gz"}]},{"Route":"_framework/System.Threading.Tasks.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Tasks.t0sjw89o0i.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo="}]},{"Route":"_framework/System.Threading.Tasks.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8rrnar5gtv-{0}-t0sjw89o0i-t0sjw89o0i.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000388198758"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo="},{"Name":"original-resource","Value":"\"YxvDFtMZrWfakXzc+aFCZVTkSv6I/tOPItx4OM86rXo=\""}]},{"Route":"_framework/System.Threading.Tasks.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8rrnar5gtv-{0}-t0sjw89o0i-t0sjw89o0i.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2575"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Gmcu3obSJhCRbWj9ZGkPDXLWCOieI3ETD9e/oaDOfLE="}]},{"Route":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Thread.nfbg9v9bn0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nfbg9v9bn0"},{"Name":"integrity","Value":"sha256-43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0="},{"Name":"label","Value":"_framework/System.Threading.Thread.wasm"}]},{"Route":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wi7nbv7im4-{0}-nfbg9v9bn0-nfbg9v9bn0.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000427533134"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2338"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nfbg9v9bn0"},{"Name":"integrity","Value":"sha256-43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0="},{"Name":"label","Value":"_framework/System.Threading.Thread.wasm"},{"Name":"original-resource","Value":"\"43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0=\""}]},{"Route":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wi7nbv7im4-{0}-nfbg9v9bn0-nfbg9v9bn0.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2338"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nfbg9v9bn0"},{"Name":"integrity","Value":"sha256-FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE="},{"Name":"label","Value":"_framework/System.Threading.Thread.wasm.gz"}]},{"Route":"_framework/System.Threading.Thread.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Thread.nfbg9v9bn0.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0="}]},{"Route":"_framework/System.Threading.Thread.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wi7nbv7im4-{0}-nfbg9v9bn0-nfbg9v9bn0.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000427533134"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2338"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0="},{"Name":"original-resource","Value":"\"43JHPgS5ugV+E9WgXMFIX4e3EwOcqsFZTfP9yEPhhI0=\""}]},{"Route":"_framework/System.Threading.Thread.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\wi7nbv7im4-{0}-nfbg9v9bn0-nfbg9v9bn0.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2338"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FnecfvF+0Z6Fy7lj2gYThCHGFYJ2ylemYtOej4l3unE="}]},{"Route":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.ThreadPool.jrzo6stg1k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jrzo6stg1k"},{"Name":"integrity","Value":"sha256-D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas="},{"Name":"label","Value":"_framework/System.Threading.ThreadPool.wasm"}]},{"Route":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5g4i44bi6s-{0}-jrzo6stg1k-jrzo6stg1k.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000442282176"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2260"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jrzo6stg1k"},{"Name":"integrity","Value":"sha256-D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas="},{"Name":"label","Value":"_framework/System.Threading.ThreadPool.wasm"},{"Name":"original-resource","Value":"\"D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas=\""}]},{"Route":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5g4i44bi6s-{0}-jrzo6stg1k-jrzo6stg1k.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2260"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jrzo6stg1k"},{"Name":"integrity","Value":"sha256-yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8="},{"Name":"label","Value":"_framework/System.Threading.ThreadPool.wasm.gz"}]},{"Route":"_framework/System.Threading.ThreadPool.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.ThreadPool.jrzo6stg1k.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas="}]},{"Route":"_framework/System.Threading.ThreadPool.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5g4i44bi6s-{0}-jrzo6stg1k-jrzo6stg1k.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000442282176"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2260"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas="},{"Name":"original-resource","Value":"\"D1G/Zc3qCCIC5KP5dWjA7e/CnG6SjjVDzCVt+TcPVas=\""}]},{"Route":"_framework/System.Threading.ThreadPool.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5g4i44bi6s-{0}-jrzo6stg1k-jrzo6stg1k.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2260"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yngf3tQIeHR2MMKIlguMrHhspEHJ6T70U/bO7SA4oR8="}]},{"Route":"_framework/System.Threading.Timer.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Timer.y8l1kxazi5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0="}]},{"Route":"_framework/System.Threading.Timer.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hq538hfxem-{0}-y8l1kxazi5-y8l1kxazi5.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000467726848"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2137"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0="},{"Name":"original-resource","Value":"\"0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0=\""}]},{"Route":"_framework/System.Threading.Timer.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hq538hfxem-{0}-y8l1kxazi5-y8l1kxazi5.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2137"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M="}]},{"Route":"_framework/System.Threading.Timer.y8l1kxazi5.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.Timer.y8l1kxazi5.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y8l1kxazi5"},{"Name":"integrity","Value":"sha256-0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0="},{"Name":"label","Value":"_framework/System.Threading.Timer.wasm"}]},{"Route":"_framework/System.Threading.Timer.y8l1kxazi5.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hq538hfxem-{0}-y8l1kxazi5-y8l1kxazi5.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000467726848"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2137"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y8l1kxazi5"},{"Name":"integrity","Value":"sha256-0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0="},{"Name":"label","Value":"_framework/System.Threading.Timer.wasm"},{"Name":"original-resource","Value":"\"0jmQoALhsiEAsYneNGG+CM70+WO1R/s3jHpGUDisSo0=\""}]},{"Route":"_framework/System.Threading.Timer.y8l1kxazi5.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\hq538hfxem-{0}-y8l1kxazi5-y8l1kxazi5.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2137"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y8l1kxazi5"},{"Name":"integrity","Value":"sha256-pEahCNTl9KVPmR5csK/PIbopVTKg8sPnxOGqZJzm05M="},{"Name":"label","Value":"_framework/System.Threading.Timer.wasm.gz"}]},{"Route":"_framework/System.Threading.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Threading.47ucbn1gg1.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"34581"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts="}]},{"Route":"_framework/System.Threading.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\e2ypaal8k2-{0}-47ucbn1gg1-47ucbn1gg1.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000068045727"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14695"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts="},{"Name":"original-resource","Value":"\"ICVxlUO3Oz3f5ouBy/nzVLMZPT/RhBkqnpKRSQFx1Ts=\""}]},{"Route":"_framework/System.Threading.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\e2ypaal8k2-{0}-47ucbn1gg1-47ucbn1gg1.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14695"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fvRYWTBgRpnylbkmagszzjmnW0sgvzYo7RhPG0s6L3g="}]},{"Route":"_framework/System.Transactions.Local.cig01jt23c.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Transactions.Local.cig01jt23c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"165653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cig01jt23c"},{"Name":"integrity","Value":"sha256-lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4="},{"Name":"label","Value":"_framework/System.Transactions.Local.wasm"}]},{"Route":"_framework/System.Transactions.Local.cig01jt23c.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\uz6wr238mp-{0}-cig01jt23c-cig01jt23c.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000019435590"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"51451"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cig01jt23c"},{"Name":"integrity","Value":"sha256-lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4="},{"Name":"label","Value":"_framework/System.Transactions.Local.wasm"},{"Name":"original-resource","Value":"\"lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4=\""}]},{"Route":"_framework/System.Transactions.Local.cig01jt23c.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\uz6wr238mp-{0}-cig01jt23c-cig01jt23c.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"51451"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cig01jt23c"},{"Name":"integrity","Value":"sha256-ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8="},{"Name":"label","Value":"_framework/System.Transactions.Local.wasm.gz"}]},{"Route":"_framework/System.Transactions.Local.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Transactions.Local.cig01jt23c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"165653"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4="}]},{"Route":"_framework/System.Transactions.Local.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\uz6wr238mp-{0}-cig01jt23c-cig01jt23c.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000019435590"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"51451"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4="},{"Name":"original-resource","Value":"\"lHC4o1ZotnFLPm8FaAJBuPLW0A/GlCXIT0zTz94yBc4=\""}]},{"Route":"_framework/System.Transactions.Local.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\uz6wr238mp-{0}-cig01jt23c-cig01jt23c.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"51451"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZazzicKvbqrM7rAtk2IZ5Ls+kASADToq92r2ADJ6QJ8="}]},{"Route":"_framework/System.Transactions.pl50n6qbg7.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Transactions.pl50n6qbg7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pl50n6qbg7"},{"Name":"integrity","Value":"sha256-XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio="},{"Name":"label","Value":"_framework/System.Transactions.wasm"}]},{"Route":"_framework/System.Transactions.pl50n6qbg7.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kmdzqqqt27-{0}-pl50n6qbg7-pl50n6qbg7.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000419287212"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2384"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pl50n6qbg7"},{"Name":"integrity","Value":"sha256-XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio="},{"Name":"label","Value":"_framework/System.Transactions.wasm"},{"Name":"original-resource","Value":"\"XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio=\""}]},{"Route":"_framework/System.Transactions.pl50n6qbg7.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kmdzqqqt27-{0}-pl50n6qbg7-pl50n6qbg7.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2384"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pl50n6qbg7"},{"Name":"integrity","Value":"sha256-Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA="},{"Name":"label","Value":"_framework/System.Transactions.wasm.gz"}]},{"Route":"_framework/System.Transactions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Transactions.pl50n6qbg7.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6421"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio="}]},{"Route":"_framework/System.Transactions.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kmdzqqqt27-{0}-pl50n6qbg7-pl50n6qbg7.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000419287212"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2384"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio="},{"Name":"original-resource","Value":"\"XcstMVAoLdZ+orRvyskPiuUqRLf5D5lc9kN/NB8aUio=\""}]},{"Route":"_framework/System.Transactions.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kmdzqqqt27-{0}-pl50n6qbg7-pl50n6qbg7.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2384"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Zw4QFNek6WC1xKYEfQIHphnAhz19ETcB80yzJetjufA="}]},{"Route":"_framework/System.ValueTuple.mj3r9p0pcw.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ValueTuple.mj3r9p0pcw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mj3r9p0pcw"},{"Name":"integrity","Value":"sha256-Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY="},{"Name":"label","Value":"_framework/System.ValueTuple.wasm"}]},{"Route":"_framework/System.ValueTuple.mj3r9p0pcw.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\dy6tcjmb9q-{0}-mj3r9p0pcw-mj3r9p0pcw.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455788514"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2193"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mj3r9p0pcw"},{"Name":"integrity","Value":"sha256-Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY="},{"Name":"label","Value":"_framework/System.ValueTuple.wasm"},{"Name":"original-resource","Value":"\"Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY=\""}]},{"Route":"_framework/System.ValueTuple.mj3r9p0pcw.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\dy6tcjmb9q-{0}-mj3r9p0pcw-mj3r9p0pcw.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2193"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mj3r9p0pcw"},{"Name":"integrity","Value":"sha256-qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY="},{"Name":"label","Value":"_framework/System.ValueTuple.wasm.gz"}]},{"Route":"_framework/System.ValueTuple.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.ValueTuple.mj3r9p0pcw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY="}]},{"Route":"_framework/System.ValueTuple.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\dy6tcjmb9q-{0}-mj3r9p0pcw-mj3r9p0pcw.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000455788514"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2193"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY="},{"Name":"original-resource","Value":"\"Tsg7R79augGu7C+8BbYKEU9gLPTRw1kd107Jk8EfUTY=\""}]},{"Route":"_framework/System.ValueTuple.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\dy6tcjmb9q-{0}-mj3r9p0pcw-mj3r9p0pcw.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2193"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qgR9aVm9mSU0GNgsV+wT/lKh+lGIjp05qGmyXEO1diY="}]},{"Route":"_framework/System.Web.2a6wq9gv6d.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Web.2a6wq9gv6d.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2a6wq9gv6d"},{"Name":"integrity","Value":"sha256-Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk="},{"Name":"label","Value":"_framework/System.Web.wasm"}]},{"Route":"_framework/System.Web.2a6wq9gv6d.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\iok845swr0-{0}-2a6wq9gv6d-2a6wq9gv6d.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000469924812"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2127"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2a6wq9gv6d"},{"Name":"integrity","Value":"sha256-Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk="},{"Name":"label","Value":"_framework/System.Web.wasm"},{"Name":"original-resource","Value":"\"Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk=\""}]},{"Route":"_framework/System.Web.2a6wq9gv6d.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\iok845swr0-{0}-2a6wq9gv6d-2a6wq9gv6d.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2127"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2a6wq9gv6d"},{"Name":"integrity","Value":"sha256-UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4="},{"Name":"label","Value":"_framework/System.Web.wasm.gz"}]},{"Route":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Web.HttpUtility.3jfxpyq4in.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"19733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3jfxpyq4in"},{"Name":"integrity","Value":"sha256-IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4="},{"Name":"label","Value":"_framework/System.Web.HttpUtility.wasm"}]},{"Route":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\pfi56k79hn-{0}-3jfxpyq4in-3jfxpyq4in.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000104766894"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9544"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3jfxpyq4in"},{"Name":"integrity","Value":"sha256-IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4="},{"Name":"label","Value":"_framework/System.Web.HttpUtility.wasm"},{"Name":"original-resource","Value":"\"IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4=\""}]},{"Route":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\pfi56k79hn-{0}-3jfxpyq4in-3jfxpyq4in.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9544"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3jfxpyq4in"},{"Name":"integrity","Value":"sha256-eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg="},{"Name":"label","Value":"_framework/System.Web.HttpUtility.wasm.gz"}]},{"Route":"_framework/System.Web.HttpUtility.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Web.HttpUtility.3jfxpyq4in.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"19733"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4="}]},{"Route":"_framework/System.Web.HttpUtility.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\pfi56k79hn-{0}-3jfxpyq4in-3jfxpyq4in.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000104766894"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9544"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4="},{"Name":"original-resource","Value":"\"IRJv93qx1UHClw10dYSICCZDR8RKYkHFRj8E+M+ODy4=\""}]},{"Route":"_framework/System.Web.HttpUtility.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\pfi56k79hn-{0}-3jfxpyq4in-3jfxpyq4in.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9544"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eOOKj73wXO7Pv36CCbzW1zvZRDWk5Ndq4ntJPyW6xOg="}]},{"Route":"_framework/System.Web.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Web.2a6wq9gv6d.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4885"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk="}]},{"Route":"_framework/System.Web.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\iok845swr0-{0}-2a6wq9gv6d-2a6wq9gv6d.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000469924812"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2127"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk="},{"Name":"original-resource","Value":"\"Njq6HTh3Pty4dn0WZhYVQUcmg+2rtRPH+qZWYnNb+Pk=\""}]},{"Route":"_framework/System.Web.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\iok845swr0-{0}-2a6wq9gv6d-2a6wq9gv6d.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2127"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UyV1Fw58Zf5n2hqFxK95WOqr+3JorUTt5+ynwulymq4="}]},{"Route":"_framework/System.Windows.bw79ix589z.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Windows.bw79ix589z.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bw79ix589z"},{"Name":"integrity","Value":"sha256-O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA="},{"Name":"label","Value":"_framework/System.Windows.wasm"}]},{"Route":"_framework/System.Windows.bw79ix589z.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tvvpa50077-{0}-bw79ix589z-bw79ix589z.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438212095"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bw79ix589z"},{"Name":"integrity","Value":"sha256-O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA="},{"Name":"label","Value":"_framework/System.Windows.wasm"},{"Name":"original-resource","Value":"\"O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA=\""}]},{"Route":"_framework/System.Windows.bw79ix589z.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tvvpa50077-{0}-bw79ix589z-bw79ix589z.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bw79ix589z"},{"Name":"integrity","Value":"sha256-YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs="},{"Name":"label","Value":"_framework/System.Windows.wasm.gz"}]},{"Route":"_framework/System.Windows.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Windows.bw79ix589z.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA="}]},{"Route":"_framework/System.Windows.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tvvpa50077-{0}-bw79ix589z-bw79ix589z.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000438212095"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA="},{"Name":"original-resource","Value":"\"O1aloJDDF5FgI3Rz/S/j1kSVDzwdmyHrldq4/LehmfA=\""}]},{"Route":"_framework/System.Windows.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\tvvpa50077-{0}-bw79ix589z-bw79ix589z.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2281"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YsGcgEuO34Yp7BVoZk7G/YwEW4sZX5apQ9oW82OPVDs="}]},{"Route":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.Linq.nvnhbwdsg6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvnhbwdsg6"},{"Name":"integrity","Value":"sha256-I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE="},{"Name":"label","Value":"_framework/System.Xml.Linq.wasm"}]},{"Route":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\79deazooef-{0}-nvnhbwdsg6-nvnhbwdsg6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000452488688"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2209"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvnhbwdsg6"},{"Name":"integrity","Value":"sha256-I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE="},{"Name":"label","Value":"_framework/System.Xml.Linq.wasm"},{"Name":"original-resource","Value":"\"I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE=\""}]},{"Route":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\79deazooef-{0}-nvnhbwdsg6-nvnhbwdsg6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2209"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvnhbwdsg6"},{"Name":"integrity","Value":"sha256-NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog="},{"Name":"label","Value":"_framework/System.Xml.Linq.wasm.gz"}]},{"Route":"_framework/System.Xml.Linq.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.Linq.nvnhbwdsg6.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE="}]},{"Route":"_framework/System.Xml.Linq.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\79deazooef-{0}-nvnhbwdsg6-nvnhbwdsg6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000452488688"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2209"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE="},{"Name":"original-resource","Value":"\"I85V223miQIsEDHwUwJctMPs7r5BH8oklVHTuPILOXE=\""}]},{"Route":"_framework/System.Xml.Linq.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\79deazooef-{0}-nvnhbwdsg6-nvnhbwdsg6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2209"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NnZ+eyix3kXLSUZoBtSZkyfD8+PBOSJ9OcAVGvP9Bog="}]},{"Route":"_framework/System.Xml.ReaderWriter.szsdminork.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.ReaderWriter.szsdminork.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"szsdminork"},{"Name":"integrity","Value":"sha256-+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho="},{"Name":"label","Value":"_framework/System.Xml.ReaderWriter.wasm"}]},{"Route":"_framework/System.Xml.ReaderWriter.szsdminork.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kmp1cwjk7f-{0}-szsdminork-szsdminork.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000248632521"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"szsdminork"},{"Name":"integrity","Value":"sha256-+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho="},{"Name":"label","Value":"_framework/System.Xml.ReaderWriter.wasm"},{"Name":"original-resource","Value":"\"+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho=\""}]},{"Route":"_framework/System.Xml.ReaderWriter.szsdminork.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kmp1cwjk7f-{0}-szsdminork-szsdminork.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"szsdminork"},{"Name":"integrity","Value":"sha256-v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI="},{"Name":"label","Value":"_framework/System.Xml.ReaderWriter.wasm.gz"}]},{"Route":"_framework/System.Xml.ReaderWriter.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.ReaderWriter.szsdminork.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"11541"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho="}]},{"Route":"_framework/System.Xml.ReaderWriter.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kmp1cwjk7f-{0}-szsdminork-szsdminork.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000248632521"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho="},{"Name":"original-resource","Value":"\"+F2HpJovT57vb8lhHuHeOu1cweg9oGfXz64WZc6dGho=\""}]},{"Route":"_framework/System.Xml.ReaderWriter.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\kmp1cwjk7f-{0}-szsdminork-szsdminork.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4021"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-v1BRg0vxtPiIPnzz2M9JSxROvOy+7pWOOxKndAtIbaI="}]},{"Route":"_framework/System.Xml.Serialization.b9imguls9w.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.Serialization.b9imguls9w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b9imguls9w"},{"Name":"integrity","Value":"sha256-EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8="},{"Name":"label","Value":"_framework/System.Xml.Serialization.wasm"}]},{"Route":"_framework/System.Xml.Serialization.b9imguls9w.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\cagt9idkdm-{0}-b9imguls9w-b9imguls9w.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000443852641"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2252"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b9imguls9w"},{"Name":"integrity","Value":"sha256-EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8="},{"Name":"label","Value":"_framework/System.Xml.Serialization.wasm"},{"Name":"original-resource","Value":"\"EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8=\""}]},{"Route":"_framework/System.Xml.Serialization.b9imguls9w.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\cagt9idkdm-{0}-b9imguls9w-b9imguls9w.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2252"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b9imguls9w"},{"Name":"integrity","Value":"sha256-UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M="},{"Name":"label","Value":"_framework/System.Xml.Serialization.wasm.gz"}]},{"Route":"_framework/System.Xml.Serialization.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.Serialization.b9imguls9w.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8="}]},{"Route":"_framework/System.Xml.Serialization.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\cagt9idkdm-{0}-b9imguls9w-b9imguls9w.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000443852641"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2252"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8="},{"Name":"original-resource","Value":"\"EWLyaQVNmvOuGv6OF2zeCD70/btF0kfVKTKsxm6Qor8=\""}]},{"Route":"_framework/System.Xml.Serialization.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\cagt9idkdm-{0}-b9imguls9w-b9imguls9w.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2252"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UtRUUla3vBgeXxSaVrz6WAJa32LPq4bP7hb8WRrpt4M="}]},{"Route":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XDocument.8hg6c0at0c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8hg6c0at0c"},{"Name":"integrity","Value":"sha256-7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk="},{"Name":"label","Value":"_framework/System.Xml.XDocument.wasm"}]},{"Route":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\blwck2749u-{0}-8hg6c0at0c-8hg6c0at0c.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000417362270"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2395"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8hg6c0at0c"},{"Name":"integrity","Value":"sha256-7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk="},{"Name":"label","Value":"_framework/System.Xml.XDocument.wasm"},{"Name":"original-resource","Value":"\"7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk=\""}]},{"Route":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\blwck2749u-{0}-8hg6c0at0c-8hg6c0at0c.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2395"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8hg6c0at0c"},{"Name":"integrity","Value":"sha256-JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU="},{"Name":"label","Value":"_framework/System.Xml.XDocument.wasm.gz"}]},{"Route":"_framework/System.Xml.XDocument.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XDocument.8hg6c0at0c.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk="}]},{"Route":"_framework/System.Xml.XDocument.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\blwck2749u-{0}-8hg6c0at0c-8hg6c0at0c.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000417362270"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2395"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk="},{"Name":"original-resource","Value":"\"7AQsOnr4cz5tEYv3X16GczrqG8krUeDSeFmiYPQLfPk=\""}]},{"Route":"_framework/System.Xml.XDocument.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\blwck2749u-{0}-8hg6c0at0c-8hg6c0at0c.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2395"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JPfoaVF8EWUV+4pVJe51h7N3AUvfJ1UzgRi2ZBHixEU="}]},{"Route":"_framework/System.Xml.XPath.11wk1hhnfk.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XPath.11wk1hhnfk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"11wk1hhnfk"},{"Name":"integrity","Value":"sha256-28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM="},{"Name":"label","Value":"_framework/System.Xml.XPath.wasm"}]},{"Route":"_framework/System.Xml.XPath.11wk1hhnfk.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\xo45czuveq-{0}-11wk1hhnfk-11wk1hhnfk.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000430848772"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2320"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"11wk1hhnfk"},{"Name":"integrity","Value":"sha256-28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM="},{"Name":"label","Value":"_framework/System.Xml.XPath.wasm"},{"Name":"original-resource","Value":"\"28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM=\""}]},{"Route":"_framework/System.Xml.XPath.11wk1hhnfk.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\xo45czuveq-{0}-11wk1hhnfk-11wk1hhnfk.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2320"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"11wk1hhnfk"},{"Name":"integrity","Value":"sha256-5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM="},{"Name":"label","Value":"_framework/System.Xml.XPath.wasm.gz"}]},{"Route":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XPath.XDocument.g7i5gd64yo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g7i5gd64yo"},{"Name":"integrity","Value":"sha256-bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg="},{"Name":"label","Value":"_framework/System.Xml.XPath.XDocument.wasm"}]},{"Route":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gsr2zhdiud-{0}-g7i5gd64yo-g7i5gd64yo.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000401284109"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2491"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g7i5gd64yo"},{"Name":"integrity","Value":"sha256-bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg="},{"Name":"label","Value":"_framework/System.Xml.XPath.XDocument.wasm"},{"Name":"original-resource","Value":"\"bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg=\""}]},{"Route":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gsr2zhdiud-{0}-g7i5gd64yo-g7i5gd64yo.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2491"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g7i5gd64yo"},{"Name":"integrity","Value":"sha256-6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918="},{"Name":"label","Value":"_framework/System.Xml.XPath.XDocument.wasm.gz"}]},{"Route":"_framework/System.Xml.XPath.XDocument.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XPath.XDocument.g7i5gd64yo.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg="}]},{"Route":"_framework/System.Xml.XPath.XDocument.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gsr2zhdiud-{0}-g7i5gd64yo-g7i5gd64yo.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000401284109"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2491"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg="},{"Name":"original-resource","Value":"\"bK8dOOh8VCY0QD5N9QgI8XoGFWZl2vam6NEj/2mrjbg=\""}]},{"Route":"_framework/System.Xml.XPath.XDocument.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gsr2zhdiud-{0}-g7i5gd64yo-g7i5gd64yo.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2491"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6AZLdfqjIQNTfNziImnCZL5eVbf3S8lft7UlLktn918="}]},{"Route":"_framework/System.Xml.XPath.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XPath.11wk1hhnfk.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM="}]},{"Route":"_framework/System.Xml.XPath.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\xo45czuveq-{0}-11wk1hhnfk-11wk1hhnfk.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000430848772"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2320"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM="},{"Name":"original-resource","Value":"\"28tbhhHcpHXCupvK0u/qF9goapqSbSOXpI6Bhsb8CUM=\""}]},{"Route":"_framework/System.Xml.XPath.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\xo45czuveq-{0}-11wk1hhnfk-11wk1hhnfk.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2320"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5qy4viNWC0kO33QgH5WiVXdNijKsgDT70i11qlo9NyM="}]},{"Route":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XmlDocument.isetn6xlxa.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"isetn6xlxa"},{"Name":"integrity","Value":"sha256-Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw="},{"Name":"label","Value":"_framework/System.Xml.XmlDocument.wasm"}]},{"Route":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ww3wnv8b6s-{0}-isetn6xlxa-isetn6xlxa.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000423190859"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"isetn6xlxa"},{"Name":"integrity","Value":"sha256-Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw="},{"Name":"label","Value":"_framework/System.Xml.XmlDocument.wasm"},{"Name":"original-resource","Value":"\"Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw=\""}]},{"Route":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ww3wnv8b6s-{0}-isetn6xlxa-isetn6xlxa.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"isetn6xlxa"},{"Name":"integrity","Value":"sha256-520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs="},{"Name":"label","Value":"_framework/System.Xml.XmlDocument.wasm.gz"}]},{"Route":"_framework/System.Xml.XmlDocument.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XmlDocument.isetn6xlxa.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5397"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw="}]},{"Route":"_framework/System.Xml.XmlDocument.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ww3wnv8b6s-{0}-isetn6xlxa-isetn6xlxa.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000423190859"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw="},{"Name":"original-resource","Value":"\"Io8HC44Y/4l1xWpEaPyQ7Fye/nkI+GBp/4T9Le8U4Fw=\""}]},{"Route":"_framework/System.Xml.XmlDocument.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ww3wnv8b6s-{0}-isetn6xlxa-isetn6xlxa.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2362"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-520xyJuuHXWjprRGHVmnZ8nIwPqrwxn2iuWFJAoJNIs="}]},{"Route":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XmlSerializer.okgnp5v9bw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"7445"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"okgnp5v9bw"},{"Name":"integrity","Value":"sha256-WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U="},{"Name":"label","Value":"_framework/System.Xml.XmlSerializer.wasm"}]},{"Route":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qt3o35adbl-{0}-okgnp5v9bw-okgnp5v9bw.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000349406010"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"okgnp5v9bw"},{"Name":"integrity","Value":"sha256-WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U="},{"Name":"label","Value":"_framework/System.Xml.XmlSerializer.wasm"},{"Name":"original-resource","Value":"\"WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U=\""}]},{"Route":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qt3o35adbl-{0}-okgnp5v9bw-okgnp5v9bw.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"okgnp5v9bw"},{"Name":"integrity","Value":"sha256-WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA="},{"Name":"label","Value":"_framework/System.Xml.XmlSerializer.wasm.gz"}]},{"Route":"_framework/System.Xml.XmlSerializer.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.XmlSerializer.okgnp5v9bw.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"7445"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U="}]},{"Route":"_framework/System.Xml.XmlSerializer.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qt3o35adbl-{0}-okgnp5v9bw-okgnp5v9bw.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000349406010"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U="},{"Name":"original-resource","Value":"\"WC878pTuewOvlqU8PxzU3tyBTpdXJuQmfQ+RLYBQ82U=\""}]},{"Route":"_framework/System.Xml.XmlSerializer.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qt3o35adbl-{0}-okgnp5v9bw-okgnp5v9bw.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2861"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WdWzA90g76UWXmiIj8v/mgxDR7l2IV6Ps43OZEfPKMA="}]},{"Route":"_framework/System.Xml.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.zjgi7nrlno.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas="}]},{"Route":"_framework/System.Xml.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ra6e7v46m5-{0}-zjgi7nrlno-zjgi7nrlno.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000237079184"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4217"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas="},{"Name":"original-resource","Value":"\"scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas=\""}]},{"Route":"_framework/System.Xml.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ra6e7v46m5-{0}-zjgi7nrlno-zjgi7nrlno.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4217"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY="}]},{"Route":"_framework/System.Xml.zjgi7nrlno.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.Xml.zjgi7nrlno.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"13077"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zjgi7nrlno"},{"Name":"integrity","Value":"sha256-scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas="},{"Name":"label","Value":"_framework/System.Xml.wasm"}]},{"Route":"_framework/System.Xml.zjgi7nrlno.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ra6e7v46m5-{0}-zjgi7nrlno-zjgi7nrlno.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000237079184"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4217"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zjgi7nrlno"},{"Name":"integrity","Value":"sha256-scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas="},{"Name":"label","Value":"_framework/System.Xml.wasm"},{"Name":"original-resource","Value":"\"scgB56no4jmGIaqIMm3vIz4NoEAXmRIVNvYn/XJyAas=\""}]},{"Route":"_framework/System.Xml.zjgi7nrlno.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\ra6e7v46m5-{0}-zjgi7nrlno-zjgi7nrlno.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4217"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zjgi7nrlno"},{"Name":"integrity","Value":"sha256-Y2U4qRVbXDAgSB8sB/HTUv6f6PmKzMNYEJXHFGpJIZY="},{"Name":"label","Value":"_framework/System.Xml.wasm.gz"}]},{"Route":"_framework/System.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\System.7rk3uansaa.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"39701"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q="}]},{"Route":"_framework/System.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5onvg4v1ie-{0}-7rk3uansaa-7rk3uansaa.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000084875233"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q="},{"Name":"original-resource","Value":"\"00H57iplaS5jV1pIsR27AMoBc513vj5KV9av/bqM69Q=\""}]},{"Route":"_framework/System.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\5onvg4v1ie-{0}-7rk3uansaa-7rk3uansaa.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11781"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KLgZN8VKn0MJKcrLx4j5uKJzpwmbSwVA2X/VeNSvMAI="}]},{"Route":"_framework/WindowsBase.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\WindowsBase.wz82kkc1p3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ="}]},{"Route":"_framework/WindowsBase.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\10vfj5e8p2-{0}-wz82kkc1p3-wz82kkc1p3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000395726157"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2526"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ="},{"Name":"original-resource","Value":"\"DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ=\""}]},{"Route":"_framework/WindowsBase.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\10vfj5e8p2-{0}-wz82kkc1p3-wz82kkc1p3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2526"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc="}]},{"Route":"_framework/WindowsBase.wz82kkc1p3.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\WindowsBase.wz82kkc1p3.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5909"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wz82kkc1p3"},{"Name":"integrity","Value":"sha256-DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ="},{"Name":"label","Value":"_framework/WindowsBase.wasm"}]},{"Route":"_framework/WindowsBase.wz82kkc1p3.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\10vfj5e8p2-{0}-wz82kkc1p3-wz82kkc1p3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000395726157"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2526"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wz82kkc1p3"},{"Name":"integrity","Value":"sha256-DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ="},{"Name":"label","Value":"_framework/WindowsBase.wasm"},{"Name":"original-resource","Value":"\"DP5uISPLoKdOpnsShfhy6uzDlHvBhbugGr+pAs4U7qQ=\""}]},{"Route":"_framework/WindowsBase.wz82kkc1p3.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\10vfj5e8p2-{0}-wz82kkc1p3-wz82kkc1p3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2526"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wz82kkc1p3"},{"Name":"integrity","Value":"sha256-b4mSwQTirqZk648X1S+pd29OT1qWMQRvIu/dlpANxJc="},{"Name":"label","Value":"_framework/WindowsBase.wasm.gz"}]},{"Route":"_framework/blazor.server.2tj1sjhksk.js","AssetFile":"C:\\Users\\wiela\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.5\\_framework\\blazor.server.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"164838"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"eg0OnUsgnYSMB4bGEC2eWKHVZZYf6Psyru2+slCqElY=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 20:10:46 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2tj1sjhksk"},{"Name":"integrity","Value":"sha256-eg0OnUsgnYSMB4bGEC2eWKHVZZYf6Psyru2+slCqElY="},{"Name":"label","Value":"_framework/blazor.server.js"}]},{"Route":"_framework/blazor.server.2tj1sjhksk.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\z7m9u3a7x3-{0}-2tj1sjhksk-2tj1sjhksk.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022566741"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44312"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"UZUyVYBpct8fgB7oNrIguu4We/o5Cyak6zO8IAx3S20=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2tj1sjhksk"},{"Name":"integrity","Value":"sha256-eg0OnUsgnYSMB4bGEC2eWKHVZZYf6Psyru2+slCqElY="},{"Name":"label","Value":"_framework/blazor.server.js"},{"Name":"original-resource","Value":"\"eg0OnUsgnYSMB4bGEC2eWKHVZZYf6Psyru2+slCqElY=\""}]},{"Route":"_framework/blazor.server.2tj1sjhksk.js.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\z7m9u3a7x3-{0}-2tj1sjhksk-2tj1sjhksk.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44312"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"UZUyVYBpct8fgB7oNrIguu4We/o5Cyak6zO8IAx3S20=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2tj1sjhksk"},{"Name":"integrity","Value":"sha256-UZUyVYBpct8fgB7oNrIguu4We/o5Cyak6zO8IAx3S20="},{"Name":"label","Value":"_framework/blazor.server.js.gz"}]},{"Route":"_framework/blazor.server.js","AssetFile":"C:\\Users\\wiela\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.5\\_framework\\blazor.server.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"164838"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"eg0OnUsgnYSMB4bGEC2eWKHVZZYf6Psyru2+slCqElY=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 20:10:46 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eg0OnUsgnYSMB4bGEC2eWKHVZZYf6Psyru2+slCqElY="}]},{"Route":"_framework/blazor.server.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\z7m9u3a7x3-{0}-2tj1sjhksk-2tj1sjhksk.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022566741"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44312"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"UZUyVYBpct8fgB7oNrIguu4We/o5Cyak6zO8IAx3S20=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eg0OnUsgnYSMB4bGEC2eWKHVZZYf6Psyru2+slCqElY="},{"Name":"original-resource","Value":"\"eg0OnUsgnYSMB4bGEC2eWKHVZZYf6Psyru2+slCqElY=\""}]},{"Route":"_framework/blazor.server.js.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\z7m9u3a7x3-{0}-2tj1sjhksk-2tj1sjhksk.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44312"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"UZUyVYBpct8fgB7oNrIguu4We/o5Cyak6zO8IAx3S20=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UZUyVYBpct8fgB7oNrIguu4We/o5Cyak6zO8IAx3S20="}]},{"Route":"_framework/blazor.web.b9228eflpl.js","AssetFile":"C:\\Users\\wiela\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.5\\_framework\\blazor.web.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"200213"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"EVhyOk3pqPbkypEpHXvWs/DrqujSmP7XEC3pnVHJMUU=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 20:10:52 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b9228eflpl"},{"Name":"integrity","Value":"sha256-EVhyOk3pqPbkypEpHXvWs/DrqujSmP7XEC3pnVHJMUU="},{"Name":"label","Value":"_framework/blazor.web.js"}]},{"Route":"_framework/blazor.web.b9228eflpl.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\b2aaf1qy0k-{0}-b9228eflpl-b9228eflpl.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018129408"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55158"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8VQ3iMUvfxiGnWgLihInPbvXvnXptUD4QRw4448/j64=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b9228eflpl"},{"Name":"integrity","Value":"sha256-EVhyOk3pqPbkypEpHXvWs/DrqujSmP7XEC3pnVHJMUU="},{"Name":"label","Value":"_framework/blazor.web.js"},{"Name":"original-resource","Value":"\"EVhyOk3pqPbkypEpHXvWs/DrqujSmP7XEC3pnVHJMUU=\""}]},{"Route":"_framework/blazor.web.b9228eflpl.js.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\b2aaf1qy0k-{0}-b9228eflpl-b9228eflpl.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55158"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8VQ3iMUvfxiGnWgLihInPbvXvnXptUD4QRw4448/j64=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b9228eflpl"},{"Name":"integrity","Value":"sha256-8VQ3iMUvfxiGnWgLihInPbvXvnXptUD4QRw4448/j64="},{"Name":"label","Value":"_framework/blazor.web.js.gz"}]},{"Route":"_framework/blazor.web.js","AssetFile":"C:\\Users\\wiela\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.5\\_framework\\blazor.web.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"200213"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"EVhyOk3pqPbkypEpHXvWs/DrqujSmP7XEC3pnVHJMUU=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 20:10:52 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EVhyOk3pqPbkypEpHXvWs/DrqujSmP7XEC3pnVHJMUU="}]},{"Route":"_framework/blazor.web.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\b2aaf1qy0k-{0}-b9228eflpl-b9228eflpl.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018129408"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55158"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8VQ3iMUvfxiGnWgLihInPbvXvnXptUD4QRw4448/j64=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EVhyOk3pqPbkypEpHXvWs/DrqujSmP7XEC3pnVHJMUU="},{"Name":"original-resource","Value":"\"EVhyOk3pqPbkypEpHXvWs/DrqujSmP7XEC3pnVHJMUU=\""}]},{"Route":"_framework/blazor.web.js.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\b2aaf1qy0k-{0}-b9228eflpl-b9228eflpl.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55158"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8VQ3iMUvfxiGnWgLihInPbvXvnXptUD4QRw4448/j64=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8VQ3iMUvfxiGnWgLihInPbvXvnXptUD4QRw4448/j64="}]},{"Route":"_framework/blazor.webassembly.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\blazor.webassembly.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"60278"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3lCWrko3zwspV40aQhs2S/IMkRSarnHRKIdkHhuXIBA=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 20:10:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3lCWrko3zwspV40aQhs2S/IMkRSarnHRKIdkHhuXIBA="}]},{"Route":"_framework/blazor.webassembly.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vbwtfewq79-{0}-66stpp682q-66stpp682q.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053404539"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18724"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"5Igt0nmzlphL04ESrb7MBY9ts2dhz5i3UJ+aCoJbK0Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3lCWrko3zwspV40aQhs2S/IMkRSarnHRKIdkHhuXIBA="},{"Name":"original-resource","Value":"\"3lCWrko3zwspV40aQhs2S/IMkRSarnHRKIdkHhuXIBA=\""}]},{"Route":"_framework/blazor.webassembly.js.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\vbwtfewq79-{0}-66stpp682q-66stpp682q.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18724"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"5Igt0nmzlphL04ESrb7MBY9ts2dhz5i3UJ+aCoJbK0Y=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5Igt0nmzlphL04ESrb7MBY9ts2dhz5i3UJ+aCoJbK0Y="}]},{"Route":"_framework/dotnet.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"93305"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk="}]},{"Route":"_framework/dotnet.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qz9h56e7z8-{0}-kx7meqmil2-kx7meqmil2.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000039508514"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25310"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk="},{"Name":"original-resource","Value":"\"WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk=\""}]},{"Route":"_framework/dotnet.js.clndu25lif.map","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"51818"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:10 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clndu25lif"},{"Name":"integrity","Value":"sha256-sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU="},{"Name":"label","Value":"_framework/dotnet.js.map"}]},{"Route":"_framework/dotnet.js.clndu25lif.map","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jg5bcwzjkb-{0}-clndu25lif-clndu25lif.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051805419"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19302"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clndu25lif"},{"Name":"integrity","Value":"sha256-sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU="},{"Name":"label","Value":"_framework/dotnet.js.map"},{"Name":"original-resource","Value":"\"sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU=\""}]},{"Route":"_framework/dotnet.js.clndu25lif.map.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jg5bcwzjkb-{0}-clndu25lif-clndu25lif.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19302"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"clndu25lif"},{"Name":"integrity","Value":"sha256-viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs="},{"Name":"label","Value":"_framework/dotnet.js.map.gz"}]},{"Route":"_framework/dotnet.js.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qz9h56e7z8-{0}-kx7meqmil2-kx7meqmil2.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25310"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I="}]},{"Route":"_framework/dotnet.js.map","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"51818"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:10 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU="}]},{"Route":"_framework/dotnet.js.map","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jg5bcwzjkb-{0}-clndu25lif-clndu25lif.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051805419"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19302"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU="},{"Name":"original-resource","Value":"\"sG4E8uMDkQQ3jwKTdFbX3Lc1Nyd/DvGmoIQOGa1ECiU=\""}]},{"Route":"_framework/dotnet.js.map.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\jg5bcwzjkb-{0}-clndu25lif-clndu25lif.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19302"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-viKwIMNJ9iyCu5Dzs/yoivbVR7SfTUL1ItZvfGmjYWs="}]},{"Route":"_framework/dotnet.kx7meqmil2.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"93305"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"PreloadAs","Value":"script"},{"Name":"PreloadCrossorigin","Value":"anonymous"},{"Name":"PreloadGroup","Value":"webassembly"},{"Name":"PreloadOrder","Value":"1"},{"Name":"PreloadPriority","Value":"high"},{"Name":"PreloadRel","Value":"preload"},{"Name":"fingerprint","Value":"kx7meqmil2"},{"Name":"integrity","Value":"sha256-WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk="},{"Name":"label","Value":"_framework/dotnet.js"}]},{"Route":"_framework/dotnet.kx7meqmil2.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qz9h56e7z8-{0}-kx7meqmil2-kx7meqmil2.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000039508514"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25310"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"PreloadAs","Value":"script"},{"Name":"PreloadCrossorigin","Value":"anonymous"},{"Name":"PreloadGroup","Value":"webassembly"},{"Name":"PreloadOrder","Value":"1"},{"Name":"PreloadPriority","Value":"high"},{"Name":"PreloadRel","Value":"preload"},{"Name":"fingerprint","Value":"kx7meqmil2"},{"Name":"integrity","Value":"sha256-WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk="},{"Name":"label","Value":"_framework/dotnet.js"},{"Name":"original-resource","Value":"\"WNjblJXsZUe1cLeEPG7XcpRydOIqFNpONArfE4PWXhk=\""}]},{"Route":"_framework/dotnet.kx7meqmil2.js.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\qz9h56e7z8-{0}-kx7meqmil2-kx7meqmil2.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25310"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kx7meqmil2"},{"Name":"integrity","Value":"sha256-Yymfth3lHWyaCEr+JW8GA/RKmHHF1CKK8rW0g1wne6I="},{"Name":"label","Value":"_framework/dotnet.js.gz"}]},{"Route":"_framework/dotnet.native.53ez3dx5uy.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.native.53ez3dx5uy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3002101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:42 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"53ez3dx5uy"},{"Name":"integrity","Value":"sha256-Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU="},{"Name":"label","Value":"_framework/dotnet.native.wasm"}]},{"Route":"_framework/dotnet.native.53ez3dx5uy.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4gmvxkcg2g-{0}-53ez3dx5uy-53ez3dx5uy.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000842441"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1187026"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"53ez3dx5uy"},{"Name":"integrity","Value":"sha256-Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU="},{"Name":"label","Value":"_framework/dotnet.native.wasm"},{"Name":"original-resource","Value":"\"Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU=\""}]},{"Route":"_framework/dotnet.native.53ez3dx5uy.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4gmvxkcg2g-{0}-53ez3dx5uy-53ez3dx5uy.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1187026"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"53ez3dx5uy"},{"Name":"integrity","Value":"sha256-SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw="},{"Name":"label","Value":"_framework/dotnet.native.wasm.gz"}]},{"Route":"_framework/dotnet.native.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.native.ykrnppwhq2.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"145050"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:42 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U="}]},{"Route":"_framework/dotnet.native.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4131vl2c0u-{0}-ykrnppwhq2-ykrnppwhq2.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000028845876"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"34666"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U="},{"Name":"original-resource","Value":"\"nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U=\""}]},{"Route":"_framework/dotnet.native.js.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4131vl2c0u-{0}-ykrnppwhq2-ykrnppwhq2.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"34666"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0="}]},{"Route":"_framework/dotnet.native.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.native.53ez3dx5uy.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3002101"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:42 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU="}]},{"Route":"_framework/dotnet.native.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4gmvxkcg2g-{0}-53ez3dx5uy-53ez3dx5uy.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000000842441"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1187026"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU="},{"Name":"original-resource","Value":"\"Ebk+Km0uqtdo/srKe0YcuUOlFykCcKVkBt03gTWt0aU=\""}]},{"Route":"_framework/dotnet.native.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4gmvxkcg2g-{0}-53ez3dx5uy-53ez3dx5uy.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1187026"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SItRpPrdUzB1n8iy3he4+rFOlyaI8t1ptZwbsk4wNvw="}]},{"Route":"_framework/dotnet.native.ykrnppwhq2.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.native.ykrnppwhq2.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"145050"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:42 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ykrnppwhq2"},{"Name":"integrity","Value":"sha256-nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U="},{"Name":"label","Value":"_framework/dotnet.native.js"}]},{"Route":"_framework/dotnet.native.ykrnppwhq2.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4131vl2c0u-{0}-ykrnppwhq2-ykrnppwhq2.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000028845876"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"34666"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ykrnppwhq2"},{"Name":"integrity","Value":"sha256-nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U="},{"Name":"label","Value":"_framework/dotnet.native.js"},{"Name":"original-resource","Value":"\"nheeN4H7Js+avp9nd/sQxdaehbeEx3qriXjiZ3pSw6U=\""}]},{"Route":"_framework/dotnet.native.ykrnppwhq2.js.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\4131vl2c0u-{0}-ykrnppwhq2-ykrnppwhq2.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"34666"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ykrnppwhq2"},{"Name":"integrity","Value":"sha256-iamZFI66jME210oq2LHrIfr0Pp7D1MNpJnU723Mt2p0="},{"Name":"label","Value":"_framework/dotnet.native.js.gz"}]},{"Route":"_framework/dotnet.runtime.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.runtime.peu2mfb29t.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"198479"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:16 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM="}]},{"Route":"_framework/dotnet.runtime.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\arn1xqjw1x-{0}-peu2mfb29t-peu2mfb29t.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017664099"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56611"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM="},{"Name":"original-resource","Value":"\"cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM=\""}]},{"Route":"_framework/dotnet.runtime.js.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\arn1xqjw1x-{0}-peu2mfb29t-peu2mfb29t.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56611"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak="}]},{"Route":"_framework/dotnet.runtime.js.map","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.runtime.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"276757"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:16 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE="}]},{"Route":"_framework/dotnet.runtime.js.map","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6fczie0f1k-{0}-y1cse46x0j-y1cse46x0j.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011299052"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"88502"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE="},{"Name":"original-resource","Value":"\"+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE=\""}]},{"Route":"_framework/dotnet.runtime.js.map.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6fczie0f1k-{0}-y1cse46x0j-y1cse46x0j.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"88502"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4="}]},{"Route":"_framework/dotnet.runtime.js.y1cse46x0j.map","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.runtime.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"276757"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:16 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y1cse46x0j"},{"Name":"integrity","Value":"sha256-+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE="},{"Name":"label","Value":"_framework/dotnet.runtime.js.map"}]},{"Route":"_framework/dotnet.runtime.js.y1cse46x0j.map","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6fczie0f1k-{0}-y1cse46x0j-y1cse46x0j.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011299052"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"88502"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y1cse46x0j"},{"Name":"integrity","Value":"sha256-+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE="},{"Name":"label","Value":"_framework/dotnet.runtime.js.map"},{"Name":"original-resource","Value":"\"+tU9SLOq6O+x/ISNzfZnONpr8+fVOw2ybPCTUeAejVE=\""}]},{"Route":"_framework/dotnet.runtime.js.y1cse46x0j.map.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6fczie0f1k-{0}-y1cse46x0j-y1cse46x0j.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"88502"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y1cse46x0j"},{"Name":"integrity","Value":"sha256-8E3CKi6YaOSV7gMHRMySJFUhFpXhLRrIEK8fL34NJc4="},{"Name":"label","Value":"_framework/dotnet.runtime.js.map.gz"}]},{"Route":"_framework/dotnet.runtime.peu2mfb29t.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\dotnet.runtime.peu2mfb29t.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"198479"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM=\""},{"Name":"Last-Modified","Value":"Tue, 03 Mar 2026 17:21:16 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"peu2mfb29t"},{"Name":"integrity","Value":"sha256-cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM="},{"Name":"label","Value":"_framework/dotnet.runtime.js"}]},{"Route":"_framework/dotnet.runtime.peu2mfb29t.js","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\arn1xqjw1x-{0}-peu2mfb29t-peu2mfb29t.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017664099"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56611"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"peu2mfb29t"},{"Name":"integrity","Value":"sha256-cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM="},{"Name":"label","Value":"_framework/dotnet.runtime.js"},{"Name":"original-resource","Value":"\"cajUr4vA/MpLPWj3omULUOwEQw3i8CE2n8AmDheqWBM=\""}]},{"Route":"_framework/dotnet.runtime.peu2mfb29t.js.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\arn1xqjw1x-{0}-peu2mfb29t-peu2mfb29t.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56611"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"peu2mfb29t"},{"Name":"integrity","Value":"sha256-1vKSfVCFwkTadneIblfHdmed3zrbsMhFI6QO87aA0ak="},{"Name":"label","Value":"_framework/dotnet.runtime.js.gz"}]},{"Route":"_framework/icudt_CJK.dat","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\icudt_CJK.tjcz0u77k5.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"956416"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk="}]},{"Route":"_framework/icudt_CJK.dat","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\2noakrdf2j-{0}-tjcz0u77k5-tjcz0u77k5.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003002002"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"333110"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk="},{"Name":"original-resource","Value":"\"SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=\""}]},{"Route":"_framework/icudt_CJK.dat.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\2noakrdf2j-{0}-tjcz0u77k5-tjcz0u77k5.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"333110"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g="}]},{"Route":"_framework/icudt_CJK.tjcz0u77k5.dat","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\icudt_CJK.tjcz0u77k5.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"956416"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tjcz0u77k5"},{"Name":"integrity","Value":"sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk="},{"Name":"label","Value":"_framework/icudt_CJK.dat"}]},{"Route":"_framework/icudt_CJK.tjcz0u77k5.dat","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\2noakrdf2j-{0}-tjcz0u77k5-tjcz0u77k5.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003002002"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"333110"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tjcz0u77k5"},{"Name":"integrity","Value":"sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk="},{"Name":"label","Value":"_framework/icudt_CJK.dat"},{"Name":"original-resource","Value":"\"SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=\""}]},{"Route":"_framework/icudt_CJK.tjcz0u77k5.dat.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\2noakrdf2j-{0}-tjcz0u77k5-tjcz0u77k5.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"333110"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tjcz0u77k5"},{"Name":"integrity","Value":"sha256-JKp+T1EHUj4qBIqOq6CqjdfXcSHC5rZmYtsjCDiZV4g="},{"Name":"label","Value":"_framework/icudt_CJK.dat.gz"}]},{"Route":"_framework/icudt_EFIGS.dat","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\icudt_EFIGS.tptq2av103.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"550832"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc="}]},{"Route":"_framework/icudt_EFIGS.dat","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\yee81ivl95-{0}-tptq2av103-tptq2av103.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005101052"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196037"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc="},{"Name":"original-resource","Value":"\"8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=\""}]},{"Route":"_framework/icudt_EFIGS.dat.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\yee81ivl95-{0}-tptq2av103-tptq2av103.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196037"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE="}]},{"Route":"_framework/icudt_EFIGS.tptq2av103.dat","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\icudt_EFIGS.tptq2av103.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"550832"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tptq2av103"},{"Name":"integrity","Value":"sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc="},{"Name":"label","Value":"_framework/icudt_EFIGS.dat"}]},{"Route":"_framework/icudt_EFIGS.tptq2av103.dat","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\yee81ivl95-{0}-tptq2av103-tptq2av103.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000005101052"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196037"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tptq2av103"},{"Name":"integrity","Value":"sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc="},{"Name":"label","Value":"_framework/icudt_EFIGS.dat"},{"Name":"original-resource","Value":"\"8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=\""}]},{"Route":"_framework/icudt_EFIGS.tptq2av103.dat.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\yee81ivl95-{0}-tptq2av103-tptq2av103.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196037"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tptq2av103"},{"Name":"integrity","Value":"sha256-G9yz26qggmFJkfJ5kv16IEEiVrEH3fuBNu6MzZ+3hRE="},{"Name":"label","Value":"_framework/icudt_EFIGS.dat.gz"}]},{"Route":"_framework/icudt_no_CJK.dat","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\icudt_no_CJK.lfu7j35m59.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1107168"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs="}]},{"Route":"_framework/icudt_no_CJK.dat","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gnkv5k3g9v-{0}-lfu7j35m59-lfu7j35m59.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003148426"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"317618"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs="},{"Name":"original-resource","Value":"\"L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs=\""}]},{"Route":"_framework/icudt_no_CJK.dat.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gnkv5k3g9v-{0}-lfu7j35m59-lfu7j35m59.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"317618"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk="}]},{"Route":"_framework/icudt_no_CJK.lfu7j35m59.dat","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\icudt_no_CJK.lfu7j35m59.dat","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1107168"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs=\""},{"Name":"Last-Modified","Value":"Wed, 04 Feb 2026 17:40:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lfu7j35m59"},{"Name":"integrity","Value":"sha256-L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs="},{"Name":"label","Value":"_framework/icudt_no_CJK.dat"}]},{"Route":"_framework/icudt_no_CJK.lfu7j35m59.dat","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gnkv5k3g9v-{0}-lfu7j35m59-lfu7j35m59.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003148426"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"317618"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lfu7j35m59"},{"Name":"integrity","Value":"sha256-L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs="},{"Name":"label","Value":"_framework/icudt_no_CJK.dat"},{"Name":"original-resource","Value":"\"L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs=\""}]},{"Route":"_framework/icudt_no_CJK.lfu7j35m59.dat.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\gnkv5k3g9v-{0}-lfu7j35m59-lfu7j35m59.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"317618"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lfu7j35m59"},{"Name":"integrity","Value":"sha256-S3rRs+MOdWkA48i3UrKbP0iD+IShrxe0Z0ZuQ7Mp9qk="},{"Name":"label","Value":"_framework/icudt_no_CJK.dat.gz"}]},{"Route":"_framework/mscorlib.555t1ekkz8.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\mscorlib.555t1ekkz8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"49429"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"555t1ekkz8"},{"Name":"integrity","Value":"sha256-SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M="},{"Name":"label","Value":"_framework/mscorlib.wasm"}]},{"Route":"_framework/mscorlib.555t1ekkz8.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6ixuumt5h1-{0}-555t1ekkz8-555t1ekkz8.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067417245"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"555t1ekkz8"},{"Name":"integrity","Value":"sha256-SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M="},{"Name":"label","Value":"_framework/mscorlib.wasm"},{"Name":"original-resource","Value":"\"SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M=\""}]},{"Route":"_framework/mscorlib.555t1ekkz8.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6ixuumt5h1-{0}-555t1ekkz8-555t1ekkz8.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"555t1ekkz8"},{"Name":"integrity","Value":"sha256-qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4="},{"Name":"label","Value":"_framework/mscorlib.wasm.gz"}]},{"Route":"_framework/mscorlib.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\mscorlib.555t1ekkz8.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"49429"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M="}]},{"Route":"_framework/mscorlib.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6ixuumt5h1-{0}-555t1ekkz8-555t1ekkz8.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000067417245"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M="},{"Name":"original-resource","Value":"\"SZjAK8HAw2h/GFSpIb7U4RKjkUZZYvXe08WODLwUw5M=\""}]},{"Route":"_framework/mscorlib.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\6ixuumt5h1-{0}-555t1ekkz8-555t1ekkz8.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14832"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qDryqQ0g0iz9JqKIhX+QMxC8XOFsfS09axL2RodrYR4="}]},{"Route":"_framework/netstandard.0e3bjkca9m.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\netstandard.0e3bjkca9m.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"90389"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0e3bjkca9m"},{"Name":"integrity","Value":"sha256-6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs="},{"Name":"label","Value":"_framework/netstandard.wasm"}]},{"Route":"_framework/netstandard.0e3bjkca9m.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8dl34ipw8j-{0}-0e3bjkca9m-0e3bjkca9m.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038333269"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26086"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0e3bjkca9m"},{"Name":"integrity","Value":"sha256-6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs="},{"Name":"label","Value":"_framework/netstandard.wasm"},{"Name":"original-resource","Value":"\"6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs=\""}]},{"Route":"_framework/netstandard.0e3bjkca9m.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8dl34ipw8j-{0}-0e3bjkca9m-0e3bjkca9m.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26086"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0e3bjkca9m"},{"Name":"integrity","Value":"sha256-GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE="},{"Name":"label","Value":"_framework/netstandard.wasm.gz"}]},{"Route":"_framework/netstandard.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\_framework\\netstandard.0e3bjkca9m.wasm","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"90389"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs="}]},{"Route":"_framework/netstandard.wasm","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8dl34ipw8j-{0}-0e3bjkca9m-0e3bjkca9m.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038333269"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26086"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs="},{"Name":"original-resource","Value":"\"6OiHD0QF9BpgURFP9xxsmcfqcZwdHzlD4SGZRCw5/Bs=\""}]},{"Route":"_framework/netstandard.wasm.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\8dl34ipw8j-{0}-0e3bjkca9m-0e3bjkca9m.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"26086"},{"Name":"Content-Type","Value":"application/wasm"},{"Name":"ETag","Value":"\"GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GobSqpfyCY+pON9mn8Z/xlb56m7Dt6ZBU1Q+DW+dmhE="}]},{"Route":"appsettings.Development.json","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\bfkt9xtjsh-{0}-x0ueugt8gp-x0ueugt8gp.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009174311927"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"original-resource","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""}]},{"Route":"appsettings.Development.json","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\appsettings.Development.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="}]},{"Route":"appsettings.Development.json.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\bfkt9xtjsh-{0}-x0ueugt8gp-x0ueugt8gp.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4="}]},{"Route":"appsettings.Development.x0ueugt8gp.json","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\bfkt9xtjsh-{0}-x0ueugt8gp-x0ueugt8gp.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009174311927"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"label","Value":"appsettings.Development.json"},{"Name":"original-resource","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""}]},{"Route":"appsettings.Development.x0ueugt8gp.json","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\appsettings.Development.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"label","Value":"appsettings.Development.json"}]},{"Route":"appsettings.Development.x0ueugt8gp.json.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\bfkt9xtjsh-{0}-x0ueugt8gp-x0ueugt8gp.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4="},{"Name":"label","Value":"appsettings.Development.json.gz"}]},{"Route":"appsettings.json","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3hvscw4lq4-{0}-x0ueugt8gp-x0ueugt8gp.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009174311927"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"original-resource","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""}]},{"Route":"appsettings.json","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\appsettings.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="}]},{"Route":"appsettings.json.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3hvscw4lq4-{0}-x0ueugt8gp-x0ueugt8gp.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4="}]},{"Route":"appsettings.x0ueugt8gp.json","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3hvscw4lq4-{0}-x0ueugt8gp-x0ueugt8gp.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009174311927"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"label","Value":"appsettings.json"},{"Name":"original-resource","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""}]},{"Route":"appsettings.x0ueugt8gp.json","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\appsettings.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-gX2wvy7Mp4NkxB2695Sb8lBM9HocPQ1U876BeP78Aws="},{"Name":"label","Value":"appsettings.json"}]},{"Route":"appsettings.x0ueugt8gp.json.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\3hvscw4lq4-{0}-x0ueugt8gp-x0ueugt8gp.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"108"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x0ueugt8gp"},{"Name":"integrity","Value":"sha256-x4+tk9+omwgcRKN2rU2k+XJpsYRYbNNcQBA21gxOfr4="},{"Name":"label","Value":"appsettings.json.gz"}]},{"Route":"favicon.2jeq8efc6q.ico","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\9cjrgkhoez-{0}-2jeq8efc6q-2jeq8efc6q.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000336021505"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2jeq8efc6q"},{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="},{"Name":"label","Value":"favicon.ico"},{"Name":"original-resource","Value":"\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""}]},{"Route":"favicon.2jeq8efc6q.ico","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\wwwroot\\favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"15086"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2jeq8efc6q"},{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="},{"Name":"label","Value":"favicon.ico"}]},{"Route":"favicon.2jeq8efc6q.ico.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\9cjrgkhoez-{0}-2jeq8efc6q-2jeq8efc6q.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2jeq8efc6q"},{"Name":"integrity","Value":"sha256-b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M="},{"Name":"label","Value":"favicon.ico.gz"}]},{"Route":"favicon.ico","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\9cjrgkhoez-{0}-2jeq8efc6q-2jeq8efc6q.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000336021505"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="},{"Name":"original-resource","Value":"\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""}]},{"Route":"favicon.ico","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\wwwroot\\favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"15086"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:33:32 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="}]},{"Route":"favicon.ico.gz","AssetFile":"D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\9cjrgkhoez-{0}-2jeq8efc6q-2jeq8efc6q.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 16:34:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M="}]}]} \ No newline at end of file diff --git a/OnProfNext/obj/Debug/net10.0/staticwebassets.build.json.cache b/OnProfNext/obj/Debug/net10.0/staticwebassets.build.json.cache new file mode 100644 index 0000000..2c72e82 --- /dev/null +++ b/OnProfNext/obj/Debug/net10.0/staticwebassets.build.json.cache @@ -0,0 +1 @@ +Kib2lfis2XhoZYH6gYAJMrm8xRtWlS3Ge42+woatU0I= \ No newline at end of file diff --git a/OnProfNext/obj/Debug/net10.0/staticwebassets.development.json b/OnProfNext/obj/Debug/net10.0/staticwebassets.development.json new file mode 100644 index 0000000..4c23fb2 --- /dev/null +++ b/OnProfNext/obj/Debug/net10.0/staticwebassets.development.json @@ -0,0 +1 @@ +{"ContentRoots":["D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\wwwroot\\","D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\compressed\\","D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\wwwroot\\","D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\compressed\\","D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\Debug\\net10.0\\scopedcss\\projectbundle\\","D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\jsmodules\\","D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\Debug\\net10.0\\scopedcss\\bundle\\","C:\\Users\\wiela\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.5\\_framework\\","D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\bin\\Debug\\net10.0\\wwwroot\\","D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\","C:\\Users\\wiela\\.nuget\\packages\\microsoft.dotnet.hotreload.webassembly.browser\\10.0.201\\staticwebassets\\","C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\staticwebassets\\"],"Root":{"Children":{"appsettings.Development.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"appsettings.Development.json"},"Patterns":null},"appsettings.Development.json.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"bfkt9xtjsh-{0}-x0ueugt8gp-x0ueugt8gp.gz"},"Patterns":null},"appsettings.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"appsettings.json"},"Patterns":null},"appsettings.json.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3hvscw4lq4-{0}-x0ueugt8gp-x0ueugt8gp.gz"},"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"favicon.ico"},"Patterns":null},"favicon.ico.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"9cjrgkhoez-{0}-2jeq8efc6q-2jeq8efc6q.gz"},"Patterns":null},"OnProfNext.Client.uzl7ca9j9c.bundle.scp.css":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"OnProfNext.Client.bundle.scp.css"},"Patterns":null},"OnProfNext.Client.uzl7ca9j9c.bundle.scp.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"808kb9dz89-{0}-uzl7ca9j9c-uzl7ca9j9c.gz"},"Patterns":null},"OnProfNext.modules.json":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"jsmodules.build.manifest.json"},"Patterns":null},"OnProfNext.modules.json.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"byr04718ni-{0}-0i02oychrm-0i02oychrm.gz"},"Patterns":null},"OnProfNext.styles.css":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"OnProfNext.styles.css"},"Patterns":null},"OnProfNext.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"fixztrjlan-{0}-sif51eb7xk-sif51eb7xk.gz"},"Patterns":null},"_framework":{"Children":{"blazor.server.js":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"blazor.server.js"},"Patterns":null},"blazor.server.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"z7m9u3a7x3-{0}-2tj1sjhksk-2tj1sjhksk.gz"},"Patterns":null},"blazor.web.js":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"blazor.web.js"},"Patterns":null},"blazor.web.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"b2aaf1qy0k-{0}-b9228eflpl-b9228eflpl.gz"},"Patterns":null},"blazor.webassembly.js":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/blazor.webassembly.js"},"Patterns":null},"blazor.webassembly.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vbwtfewq79-{0}-66stpp682q-66stpp682q.gz"},"Patterns":null},"dotnet.js":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/dotnet.js"},"Patterns":null},"dotnet.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"qz9h56e7z8-{0}-kx7meqmil2-kx7meqmil2.gz"},"Patterns":null},"dotnet.js.map":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/dotnet.js.map"},"Patterns":null},"dotnet.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jg5bcwzjkb-{0}-clndu25lif-clndu25lif.gz"},"Patterns":null},"dotnet.native.53ez3dx5uy.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/dotnet.native.53ez3dx5uy.wasm"},"Patterns":null},"dotnet.native.53ez3dx5uy.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"4gmvxkcg2g-{0}-53ez3dx5uy-53ez3dx5uy.gz"},"Patterns":null},"dotnet.native.ykrnppwhq2.js":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/dotnet.native.ykrnppwhq2.js"},"Patterns":null},"dotnet.native.ykrnppwhq2.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"4131vl2c0u-{0}-ykrnppwhq2-ykrnppwhq2.gz"},"Patterns":null},"dotnet.runtime.js.map":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/dotnet.runtime.js.map"},"Patterns":null},"dotnet.runtime.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"6fczie0f1k-{0}-y1cse46x0j-y1cse46x0j.gz"},"Patterns":null},"dotnet.runtime.peu2mfb29t.js":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/dotnet.runtime.peu2mfb29t.js"},"Patterns":null},"dotnet.runtime.peu2mfb29t.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"arn1xqjw1x-{0}-peu2mfb29t-peu2mfb29t.gz"},"Patterns":null},"icudt_CJK.tjcz0u77k5.dat":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/icudt_CJK.tjcz0u77k5.dat"},"Patterns":null},"icudt_CJK.tjcz0u77k5.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"2noakrdf2j-{0}-tjcz0u77k5-tjcz0u77k5.gz"},"Patterns":null},"icudt_EFIGS.tptq2av103.dat":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/icudt_EFIGS.tptq2av103.dat"},"Patterns":null},"icudt_EFIGS.tptq2av103.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"yee81ivl95-{0}-tptq2av103-tptq2av103.gz"},"Patterns":null},"icudt_no_CJK.lfu7j35m59.dat":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/icudt_no_CJK.lfu7j35m59.dat"},"Patterns":null},"icudt_no_CJK.lfu7j35m59.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gnkv5k3g9v-{0}-lfu7j35m59-lfu7j35m59.gz"},"Patterns":null},"Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm"},"Patterns":null},"Microsoft.AspNetCore.Authorization.roqc1km2rj.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"5g3srlr8jx-{0}-roqc1km2rj-roqc1km2rj.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm"},"Patterns":null},"Microsoft.AspNetCore.Components.Forms.zrueb40r85.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"qlfvznror3-{0}-zrueb40r85-zrueb40r85.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.uddsvpv1sv.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.AspNetCore.Components.uddsvpv1sv.wasm"},"Patterns":null},"Microsoft.AspNetCore.Components.uddsvpv1sv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fs9spivh8g-{0}-uddsvpv1sv-uddsvpv1sv.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm"},"Patterns":null},"Microsoft.AspNetCore.Components.Web.g5qdp1mxha.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gx4y3aoczp-{0}-g5qdp1mxha-g5qdp1mxha.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm"},"Patterns":null},"Microsoft.AspNetCore.Components.WebAssembly.9mjwvs1qyp.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"mx4r46cpu7-{0}-9mjwvs1qyp-9mjwvs1qyp.gz"},"Patterns":null},"Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm"},"Patterns":null},"Microsoft.AspNetCore.Metadata.m3mxap0jif.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zpx4nb1yyz-{0}-m3mxap0jif-m3mxap0jif.gz"},"Patterns":null},"Microsoft.CSharp.452y5fjxmv.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.CSharp.452y5fjxmv.wasm"},"Patterns":null},"Microsoft.CSharp.452y5fjxmv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"yva5srnvsu-{0}-452y5fjxmv-452y5fjxmv.gz"},"Patterns":null},"Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm"},"Patterns":null},"Microsoft.DotNet.HotReload.WebAssembly.Browser.hrhwg3a64c.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3of7h5c6n8-{0}-hrhwg3a64c-hrhwg3a64c.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm"},"Patterns":null},"Microsoft.Extensions.Configuration.Abstractions.thew1o6jcx.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"s4opith0ak-{0}-thew1o6jcx-thew1o6jcx.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm"},"Patterns":null},"Microsoft.Extensions.Configuration.Binder.7o70008j8o.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"11oooy7jd2-{0}-7o70008j8o-7o70008j8o.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm"},"Patterns":null},"Microsoft.Extensions.Configuration.fgwnqtu7qk.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"dnrp0xl7wy-{0}-fgwnqtu7qk-fgwnqtu7qk.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm"},"Patterns":null},"Microsoft.Extensions.Configuration.FileExtensions.ouivavlhyy.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vhumncwy1p-{0}-ouivavlhyy-ouivavlhyy.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm"},"Patterns":null},"Microsoft.Extensions.Configuration.Json.giv4t23za9.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"69vphje66t-{0}-giv4t23za9-giv4t23za9.gz"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.Abstractions.ud13mwbta3.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kstk0dzyw1-{0}-ud13mwbta3-ud13mwbta3.gz"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.vs620n44bv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"epsgnejg6l-{0}-vs620n44bv-vs620n44bv.gz"},"Patterns":null},"Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm"},"Patterns":null},"Microsoft.Extensions.Diagnostics.Abstractions.v59ymogeuz.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0o3yap4xcv-{0}-v59ymogeuz-v59ymogeuz.gz"},"Patterns":null},"Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm"},"Patterns":null},"Microsoft.Extensions.Diagnostics.jnogfbng3i.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3rwukvhyra-{0}-jnogfbng3i-jnogfbng3i.gz"},"Patterns":null},"Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm"},"Patterns":null},"Microsoft.Extensions.FileProviders.Abstractions.ssv83rveyv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ezxlu8d1x1-{0}-ssv83rveyv-ssv83rveyv.gz"},"Patterns":null},"Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm"},"Patterns":null},"Microsoft.Extensions.FileProviders.Physical.8gz29xpyh3.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"keeokmerp8-{0}-8gz29xpyh3-8gz29xpyh3.gz"},"Patterns":null},"Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm"},"Patterns":null},"Microsoft.Extensions.FileSystemGlobbing.ozuva4e3vv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"l2v44xhbzj-{0}-ozuva4e3vv-ozuva4e3vv.gz"},"Patterns":null},"Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm"},"Patterns":null},"Microsoft.Extensions.Localization.Abstractions.6jkolue1ka.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tezhiquus4-{0}-6jkolue1ka-6jkolue1ka.gz"},"Patterns":null},"Microsoft.Extensions.Localization.xcslyy3nju.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.Localization.xcslyy3nju.wasm"},"Patterns":null},"Microsoft.Extensions.Localization.xcslyy3nju.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"84jx0dmgdc-{0}-xcslyy3nju-xcslyy3nju.gz"},"Patterns":null},"Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm"},"Patterns":null},"Microsoft.Extensions.Logging.Abstractions.1q3x7vre4l.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"sn0mpm6uvc-{0}-1q3x7vre4l-1q3x7vre4l.gz"},"Patterns":null},"Microsoft.Extensions.Logging.y4ydx3rk2c.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.Logging.y4ydx3rk2c.wasm"},"Patterns":null},"Microsoft.Extensions.Logging.y4ydx3rk2c.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"oix89w3uk2-{0}-y4ydx3rk2c-y4ydx3rk2c.gz"},"Patterns":null},"Microsoft.Extensions.Options.2rz5zbidnd.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.Options.2rz5zbidnd.wasm"},"Patterns":null},"Microsoft.Extensions.Options.2rz5zbidnd.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"u4abyqnekj-{0}-2rz5zbidnd-2rz5zbidnd.gz"},"Patterns":null},"Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm"},"Patterns":null},"Microsoft.Extensions.Options.ConfigurationExtensions.zmb03w0weu.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ozc2mb3rdz-{0}-zmb03w0weu-zmb03w0weu.gz"},"Patterns":null},"Microsoft.Extensions.Primitives.bd164v6l3f.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.Primitives.bd164v6l3f.wasm"},"Patterns":null},"Microsoft.Extensions.Primitives.bd164v6l3f.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"co27dkpaxa-{0}-bd164v6l3f-bd164v6l3f.gz"},"Patterns":null},"Microsoft.Extensions.Validation.r1sv3m5lsf.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Extensions.Validation.r1sv3m5lsf.wasm"},"Patterns":null},"Microsoft.Extensions.Validation.r1sv3m5lsf.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fappprmifz-{0}-r1sv3m5lsf-r1sv3m5lsf.gz"},"Patterns":null},"Microsoft.JSInterop.1r0ampr2q1.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.JSInterop.1r0ampr2q1.wasm"},"Patterns":null},"Microsoft.JSInterop.1r0ampr2q1.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"pro4ajsvfg-{0}-1r0ampr2q1-1r0ampr2q1.gz"},"Patterns":null},"Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm"},"Patterns":null},"Microsoft.JSInterop.WebAssembly.oz8fkrrrd6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"6mv5cent6u-{0}-oz8fkrrrd6-oz8fkrrrd6.gz"},"Patterns":null},"Microsoft.VisualBasic.91iw3j3d9p.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.VisualBasic.91iw3j3d9p.wasm"},"Patterns":null},"Microsoft.VisualBasic.91iw3j3d9p.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"akapjt0sxo-{0}-91iw3j3d9p-91iw3j3d9p.gz"},"Patterns":null},"Microsoft.VisualBasic.Core.re3geseai5.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.VisualBasic.Core.re3geseai5.wasm"},"Patterns":null},"Microsoft.VisualBasic.Core.re3geseai5.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"du4skpg5oq-{0}-re3geseai5-re3geseai5.gz"},"Patterns":null},"Microsoft.Win32.Primitives.2mjytoh92q.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Win32.Primitives.2mjytoh92q.wasm"},"Patterns":null},"Microsoft.Win32.Primitives.2mjytoh92q.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"i7n8kqec4e-{0}-2mjytoh92q-2mjytoh92q.gz"},"Patterns":null},"Microsoft.Win32.Registry.yz8nt3ycsq.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/Microsoft.Win32.Registry.yz8nt3ycsq.wasm"},"Patterns":null},"Microsoft.Win32.Registry.yz8nt3ycsq.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"553rwsqb4a-{0}-yz8nt3ycsq-yz8nt3ycsq.gz"},"Patterns":null},"mscorlib.555t1ekkz8.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/mscorlib.555t1ekkz8.wasm"},"Patterns":null},"mscorlib.555t1ekkz8.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"6ixuumt5h1-{0}-555t1ekkz8-555t1ekkz8.gz"},"Patterns":null},"MudBlazor.k6079czmkm.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/MudBlazor.k6079czmkm.wasm"},"Patterns":null},"MudBlazor.k6079czmkm.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"w2iaa8sc3u-{0}-k6079czmkm-k6079czmkm.gz"},"Patterns":null},"netstandard.0e3bjkca9m.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/netstandard.0e3bjkca9m.wasm"},"Patterns":null},"netstandard.0e3bjkca9m.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8dl34ipw8j-{0}-0e3bjkca9m-0e3bjkca9m.gz"},"Patterns":null},"OnProfNext.Client.lplk7v275j.pdb":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/OnProfNext.Client.lplk7v275j.pdb"},"Patterns":null},"OnProfNext.Client.lplk7v275j.pdb.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"cycczivqx5-{0}-lplk7v275j-lplk7v275j.gz"},"Patterns":null},"OnProfNext.Client.xhq6acanj0.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/OnProfNext.Client.xhq6acanj0.wasm"},"Patterns":null},"OnProfNext.Client.xhq6acanj0.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"f6u1msztxb-{0}-xhq6acanj0-xhq6acanj0.gz"},"Patterns":null},"System.7rk3uansaa.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.7rk3uansaa.wasm"},"Patterns":null},"System.7rk3uansaa.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"5onvg4v1ie-{0}-7rk3uansaa-7rk3uansaa.gz"},"Patterns":null},"System.AppContext.uwq3fpef1w.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.AppContext.uwq3fpef1w.wasm"},"Patterns":null},"System.AppContext.uwq3fpef1w.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jcwxb5s78i-{0}-uwq3fpef1w-uwq3fpef1w.gz"},"Patterns":null},"System.Buffers.m4yhcvz2y2.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Buffers.m4yhcvz2y2.wasm"},"Patterns":null},"System.Buffers.m4yhcvz2y2.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8u2rup9szd-{0}-m4yhcvz2y2-m4yhcvz2y2.gz"},"Patterns":null},"System.Collections.63jrcion39.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Collections.63jrcion39.wasm"},"Patterns":null},"System.Collections.63jrcion39.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3zhncs8zdy-{0}-63jrcion39-63jrcion39.gz"},"Patterns":null},"System.Collections.Concurrent.1zv6wuzklu.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Collections.Concurrent.1zv6wuzklu.wasm"},"Patterns":null},"System.Collections.Concurrent.1zv6wuzklu.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"niv8zsbxhl-{0}-1zv6wuzklu-1zv6wuzklu.gz"},"Patterns":null},"System.Collections.Immutable.6uzpuv4o5d.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Collections.Immutable.6uzpuv4o5d.wasm"},"Patterns":null},"System.Collections.Immutable.6uzpuv4o5d.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3k0w0ci5df-{0}-6uzpuv4o5d-6uzpuv4o5d.gz"},"Patterns":null},"System.Collections.NonGeneric.k5rgagff9o.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Collections.NonGeneric.k5rgagff9o.wasm"},"Patterns":null},"System.Collections.NonGeneric.k5rgagff9o.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"r1c02csw1u-{0}-k5rgagff9o-k5rgagff9o.gz"},"Patterns":null},"System.Collections.Specialized.84wojkejb4.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Collections.Specialized.84wojkejb4.wasm"},"Patterns":null},"System.Collections.Specialized.84wojkejb4.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"q6am3o85wz-{0}-84wojkejb4-84wojkejb4.gz"},"Patterns":null},"System.ComponentModel.Annotations.cjsvkufomv.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.ComponentModel.Annotations.cjsvkufomv.wasm"},"Patterns":null},"System.ComponentModel.Annotations.cjsvkufomv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"wj9cgpvw17-{0}-cjsvkufomv-cjsvkufomv.gz"},"Patterns":null},"System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm"},"Patterns":null},"System.ComponentModel.DataAnnotations.vpng0qt4u6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jimv6lw5j5-{0}-vpng0qt4u6-vpng0qt4u6.gz"},"Patterns":null},"System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm"},"Patterns":null},"System.ComponentModel.EventBasedAsync.en4q13ibd5.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ixx2bqnfah-{0}-en4q13ibd5-en4q13ibd5.gz"},"Patterns":null},"System.ComponentModel.m11rh1qn2x.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.ComponentModel.m11rh1qn2x.wasm"},"Patterns":null},"System.ComponentModel.m11rh1qn2x.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ffumllgt4m-{0}-m11rh1qn2x-m11rh1qn2x.gz"},"Patterns":null},"System.ComponentModel.Primitives.u0y5oi3qdg.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.ComponentModel.Primitives.u0y5oi3qdg.wasm"},"Patterns":null},"System.ComponentModel.Primitives.u0y5oi3qdg.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"nu73pdet4t-{0}-u0y5oi3qdg-u0y5oi3qdg.gz"},"Patterns":null},"System.ComponentModel.TypeConverter.e2hbv9lola.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.ComponentModel.TypeConverter.e2hbv9lola.wasm"},"Patterns":null},"System.ComponentModel.TypeConverter.e2hbv9lola.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gpzobq46fp-{0}-e2hbv9lola-e2hbv9lola.gz"},"Patterns":null},"System.Configuration.j8qjkqg593.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Configuration.j8qjkqg593.wasm"},"Patterns":null},"System.Configuration.j8qjkqg593.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"o9xpqh7wzb-{0}-j8qjkqg593-j8qjkqg593.gz"},"Patterns":null},"System.Console.x9at0eh4vs.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Console.x9at0eh4vs.wasm"},"Patterns":null},"System.Console.x9at0eh4vs.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ea8uo6cwb8-{0}-x9at0eh4vs-x9at0eh4vs.gz"},"Patterns":null},"System.Core.ickp29885z.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Core.ickp29885z.wasm"},"Patterns":null},"System.Core.ickp29885z.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"edgswerp4g-{0}-ickp29885z-ickp29885z.gz"},"Patterns":null},"System.Data.0h75nr7qqd.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Data.0h75nr7qqd.wasm"},"Patterns":null},"System.Data.0h75nr7qqd.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"y20kxtztgi-{0}-0h75nr7qqd-0h75nr7qqd.gz"},"Patterns":null},"System.Data.Common.4wisaz8pj4.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Data.Common.4wisaz8pj4.wasm"},"Patterns":null},"System.Data.Common.4wisaz8pj4.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"68hq2gv5cb-{0}-4wisaz8pj4-4wisaz8pj4.gz"},"Patterns":null},"System.Data.DataSetExtensions.904tnen1ot.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Data.DataSetExtensions.904tnen1ot.wasm"},"Patterns":null},"System.Data.DataSetExtensions.904tnen1ot.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"sm8o0gwk5g-{0}-904tnen1ot-904tnen1ot.gz"},"Patterns":null},"System.Diagnostics.Contracts.z1eotzj35n.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Diagnostics.Contracts.z1eotzj35n.wasm"},"Patterns":null},"System.Diagnostics.Contracts.z1eotzj35n.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"wgdliulfxe-{0}-z1eotzj35n-z1eotzj35n.gz"},"Patterns":null},"System.Diagnostics.Debug.aeh9b1tcuc.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Diagnostics.Debug.aeh9b1tcuc.wasm"},"Patterns":null},"System.Diagnostics.Debug.aeh9b1tcuc.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"i9mn6d27vy-{0}-aeh9b1tcuc-aeh9b1tcuc.gz"},"Patterns":null},"System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm"},"Patterns":null},"System.Diagnostics.DiagnosticSource.ou2dt7nfo2.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lgx6p69ons-{0}-ou2dt7nfo2-ou2dt7nfo2.gz"},"Patterns":null},"System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm"},"Patterns":null},"System.Diagnostics.FileVersionInfo.kv9gl8mgag.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"i7dsezujyr-{0}-kv9gl8mgag-kv9gl8mgag.gz"},"Patterns":null},"System.Diagnostics.Process.lqtqkmw274.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Diagnostics.Process.lqtqkmw274.wasm"},"Patterns":null},"System.Diagnostics.Process.lqtqkmw274.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"67s0zux9y9-{0}-lqtqkmw274-lqtqkmw274.gz"},"Patterns":null},"System.Diagnostics.StackTrace.wvlboxd9cz.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Diagnostics.StackTrace.wvlboxd9cz.wasm"},"Patterns":null},"System.Diagnostics.StackTrace.wvlboxd9cz.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ae1qv5wfu3-{0}-wvlboxd9cz-wvlboxd9cz.gz"},"Patterns":null},"System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm"},"Patterns":null},"System.Diagnostics.TextWriterTraceListener.mx5w1z1p6w.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"5psn88uayv-{0}-mx5w1z1p6w-mx5w1z1p6w.gz"},"Patterns":null},"System.Diagnostics.Tools.862j1ozg5o.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Diagnostics.Tools.862j1ozg5o.wasm"},"Patterns":null},"System.Diagnostics.Tools.862j1ozg5o.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"6yvil548ai-{0}-862j1ozg5o-862j1ozg5o.gz"},"Patterns":null},"System.Diagnostics.TraceSource.j08okd90mo.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Diagnostics.TraceSource.j08okd90mo.wasm"},"Patterns":null},"System.Diagnostics.TraceSource.j08okd90mo.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"w9uuhprkgr-{0}-j08okd90mo-j08okd90mo.gz"},"Patterns":null},"System.Diagnostics.Tracing.bnz7jo4op8.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Diagnostics.Tracing.bnz7jo4op8.wasm"},"Patterns":null},"System.Diagnostics.Tracing.bnz7jo4op8.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ymz6pz7ujf-{0}-bnz7jo4op8-bnz7jo4op8.gz"},"Patterns":null},"System.Drawing.Primitives.k3z431p3v7.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Drawing.Primitives.k3z431p3v7.wasm"},"Patterns":null},"System.Drawing.Primitives.k3z431p3v7.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"beyjjw9nw7-{0}-k3z431p3v7-k3z431p3v7.gz"},"Patterns":null},"System.Drawing.v0usa2s224.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Drawing.v0usa2s224.wasm"},"Patterns":null},"System.Drawing.v0usa2s224.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"bm4t56k5pn-{0}-v0usa2s224-v0usa2s224.gz"},"Patterns":null},"System.Dynamic.Runtime.iktlm0yhdx.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Dynamic.Runtime.iktlm0yhdx.wasm"},"Patterns":null},"System.Dynamic.Runtime.iktlm0yhdx.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"95o3q4uwxv-{0}-iktlm0yhdx-iktlm0yhdx.gz"},"Patterns":null},"System.Formats.Asn1.9iyl1hnh76.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Formats.Asn1.9iyl1hnh76.wasm"},"Patterns":null},"System.Formats.Asn1.9iyl1hnh76.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"2eqyybz3l2-{0}-9iyl1hnh76-9iyl1hnh76.gz"},"Patterns":null},"System.Formats.Tar.9ikmelhi7g.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Formats.Tar.9ikmelhi7g.wasm"},"Patterns":null},"System.Formats.Tar.9ikmelhi7g.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"aawrgxq7b9-{0}-9ikmelhi7g-9ikmelhi7g.gz"},"Patterns":null},"System.Globalization.4ulc930few.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Globalization.4ulc930few.wasm"},"Patterns":null},"System.Globalization.4ulc930few.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"nvjr9jta08-{0}-4ulc930few-4ulc930few.gz"},"Patterns":null},"System.Globalization.Calendars.e8yl47y6cv.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Globalization.Calendars.e8yl47y6cv.wasm"},"Patterns":null},"System.Globalization.Calendars.e8yl47y6cv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"g4w42juzkx-{0}-e8yl47y6cv-e8yl47y6cv.gz"},"Patterns":null},"System.Globalization.Extensions.fvxkfs32tv.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Globalization.Extensions.fvxkfs32tv.wasm"},"Patterns":null},"System.Globalization.Extensions.fvxkfs32tv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"g3b5a282rj-{0}-fvxkfs32tv-fvxkfs32tv.gz"},"Patterns":null},"System.IO.Compression.Brotli.ibxx4kh8c6.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.IO.Compression.Brotli.ibxx4kh8c6.wasm"},"Patterns":null},"System.IO.Compression.Brotli.ibxx4kh8c6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"flmzbagm0p-{0}-ibxx4kh8c6-ibxx4kh8c6.gz"},"Patterns":null},"System.IO.Compression.FileSystem.bselp9vv9w.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.IO.Compression.FileSystem.bselp9vv9w.wasm"},"Patterns":null},"System.IO.Compression.FileSystem.bselp9vv9w.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ffagyufl1o-{0}-bselp9vv9w-bselp9vv9w.gz"},"Patterns":null},"System.IO.Compression.sgbc42zrd8.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.IO.Compression.sgbc42zrd8.wasm"},"Patterns":null},"System.IO.Compression.sgbc42zrd8.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"mk5261bq2v-{0}-sgbc42zrd8-sgbc42zrd8.gz"},"Patterns":null},"System.IO.Compression.ZipFile.b0ha8vyo8i.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.IO.Compression.ZipFile.b0ha8vyo8i.wasm"},"Patterns":null},"System.IO.Compression.ZipFile.b0ha8vyo8i.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"a99cqvh69a-{0}-b0ha8vyo8i-b0ha8vyo8i.gz"},"Patterns":null},"System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm"},"Patterns":null},"System.IO.FileSystem.AccessControl.oi9xn5s0h3.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"m3i6jtsneo-{0}-oi9xn5s0h3-oi9xn5s0h3.gz"},"Patterns":null},"System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm"},"Patterns":null},"System.IO.FileSystem.DriveInfo.fi1uhp9255.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8i8whn9pm1-{0}-fi1uhp9255-fi1uhp9255.gz"},"Patterns":null},"System.IO.FileSystem.fktu0k4b93.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.IO.FileSystem.fktu0k4b93.wasm"},"Patterns":null},"System.IO.FileSystem.fktu0k4b93.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vnqjd4ny0q-{0}-fktu0k4b93-fktu0k4b93.gz"},"Patterns":null},"System.IO.FileSystem.Primitives.6j2ed42ac7.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.IO.FileSystem.Primitives.6j2ed42ac7.wasm"},"Patterns":null},"System.IO.FileSystem.Primitives.6j2ed42ac7.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kzc385ysv6-{0}-6j2ed42ac7-6j2ed42ac7.gz"},"Patterns":null},"System.IO.FileSystem.Watcher.v9i07bnq2k.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.IO.FileSystem.Watcher.v9i07bnq2k.wasm"},"Patterns":null},"System.IO.FileSystem.Watcher.v9i07bnq2k.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"m428rlfc87-{0}-v9i07bnq2k-v9i07bnq2k.gz"},"Patterns":null},"System.IO.i9g92fmb9y.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.IO.i9g92fmb9y.wasm"},"Patterns":null},"System.IO.i9g92fmb9y.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kukm29h8dt-{0}-i9g92fmb9y-i9g92fmb9y.gz"},"Patterns":null},"System.IO.IsolatedStorage.8ll4gxwfs1.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.IO.IsolatedStorage.8ll4gxwfs1.wasm"},"Patterns":null},"System.IO.IsolatedStorage.8ll4gxwfs1.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"na7pgc18jv-{0}-8ll4gxwfs1-8ll4gxwfs1.gz"},"Patterns":null},"System.IO.MemoryMappedFiles.6do4olk7ib.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.IO.MemoryMappedFiles.6do4olk7ib.wasm"},"Patterns":null},"System.IO.MemoryMappedFiles.6do4olk7ib.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rsffl3vumf-{0}-6do4olk7ib-6do4olk7ib.gz"},"Patterns":null},"System.IO.Pipelines.21z0t9w6sq.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.IO.Pipelines.21z0t9w6sq.wasm"},"Patterns":null},"System.IO.Pipelines.21z0t9w6sq.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"pxy8xfz0ow-{0}-21z0t9w6sq-21z0t9w6sq.gz"},"Patterns":null},"System.IO.Pipes.AccessControl.5lvzz4lks7.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.IO.Pipes.AccessControl.5lvzz4lks7.wasm"},"Patterns":null},"System.IO.Pipes.AccessControl.5lvzz4lks7.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lvyasyre47-{0}-5lvzz4lks7-5lvzz4lks7.gz"},"Patterns":null},"System.IO.Pipes.xosph8vk4a.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.IO.Pipes.xosph8vk4a.wasm"},"Patterns":null},"System.IO.Pipes.xosph8vk4a.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vjl93wt59v-{0}-xosph8vk4a-xosph8vk4a.gz"},"Patterns":null},"System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm"},"Patterns":null},"System.IO.UnmanagedMemoryStream.d1pja42pyi.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"dzqyarawy9-{0}-d1pja42pyi-d1pja42pyi.gz"},"Patterns":null},"System.Linq.AsyncEnumerable.4m1mh525k0.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Linq.AsyncEnumerable.4m1mh525k0.wasm"},"Patterns":null},"System.Linq.AsyncEnumerable.4m1mh525k0.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"1u9lol5zjk-{0}-4m1mh525k0-4m1mh525k0.gz"},"Patterns":null},"System.Linq.Expressions.4nat0rber0.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Linq.Expressions.4nat0rber0.wasm"},"Patterns":null},"System.Linq.Expressions.4nat0rber0.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"r0xa1dsvvu-{0}-4nat0rber0-4nat0rber0.gz"},"Patterns":null},"System.Linq.Parallel.qf7zemz9aw.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Linq.Parallel.qf7zemz9aw.wasm"},"Patterns":null},"System.Linq.Parallel.qf7zemz9aw.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"35llacexwm-{0}-qf7zemz9aw-qf7zemz9aw.gz"},"Patterns":null},"System.Linq.Queryable.vwinf8twbn.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Linq.Queryable.vwinf8twbn.wasm"},"Patterns":null},"System.Linq.Queryable.vwinf8twbn.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hylqczc46z-{0}-vwinf8twbn-vwinf8twbn.gz"},"Patterns":null},"System.Linq.rp2jklkmsi.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Linq.rp2jklkmsi.wasm"},"Patterns":null},"System.Linq.rp2jklkmsi.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"p0pe0blimm-{0}-rp2jklkmsi-rp2jklkmsi.gz"},"Patterns":null},"System.Memory.3r0soomurg.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Memory.3r0soomurg.wasm"},"Patterns":null},"System.Memory.3r0soomurg.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zip5atfnk1-{0}-3r0soomurg-3r0soomurg.gz"},"Patterns":null},"System.Net.Http.9rl4gopayw.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.Http.9rl4gopayw.wasm"},"Patterns":null},"System.Net.Http.9rl4gopayw.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hz1tpel2o0-{0}-9rl4gopayw-9rl4gopayw.gz"},"Patterns":null},"System.Net.Http.Json.t9gqpmtbpb.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.Http.Json.t9gqpmtbpb.wasm"},"Patterns":null},"System.Net.Http.Json.t9gqpmtbpb.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zxgtro8yo7-{0}-t9gqpmtbpb-t9gqpmtbpb.gz"},"Patterns":null},"System.Net.HttpListener.zg37o92yol.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.HttpListener.zg37o92yol.wasm"},"Patterns":null},"System.Net.HttpListener.zg37o92yol.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"mkyh3erkm9-{0}-zg37o92yol-zg37o92yol.gz"},"Patterns":null},"System.Net.Mail.qk214miut2.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.Mail.qk214miut2.wasm"},"Patterns":null},"System.Net.Mail.qk214miut2.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"019ldzgpk2-{0}-qk214miut2-qk214miut2.gz"},"Patterns":null},"System.Net.NameResolution.50dzekuu9x.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.NameResolution.50dzekuu9x.wasm"},"Patterns":null},"System.Net.NameResolution.50dzekuu9x.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ui1ul8tpby-{0}-50dzekuu9x-50dzekuu9x.gz"},"Patterns":null},"System.Net.NetworkInformation.k8343mqust.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.NetworkInformation.k8343mqust.wasm"},"Patterns":null},"System.Net.NetworkInformation.k8343mqust.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"luuq2ppq8r-{0}-k8343mqust-k8343mqust.gz"},"Patterns":null},"System.Net.Ping.00vh2kvsiz.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.Ping.00vh2kvsiz.wasm"},"Patterns":null},"System.Net.Ping.00vh2kvsiz.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"yswenxxy60-{0}-00vh2kvsiz-00vh2kvsiz.gz"},"Patterns":null},"System.Net.Primitives.whs5oed1wm.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.Primitives.whs5oed1wm.wasm"},"Patterns":null},"System.Net.Primitives.whs5oed1wm.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"e2kh1woy2q-{0}-whs5oed1wm-whs5oed1wm.gz"},"Patterns":null},"System.Net.Quic.grloe2ix5j.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.Quic.grloe2ix5j.wasm"},"Patterns":null},"System.Net.Quic.grloe2ix5j.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"t7lpa3lwov-{0}-grloe2ix5j-grloe2ix5j.gz"},"Patterns":null},"System.Net.Requests.r8ar2pd94c.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.Requests.r8ar2pd94c.wasm"},"Patterns":null},"System.Net.Requests.r8ar2pd94c.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zy4nys0fbm-{0}-r8ar2pd94c-r8ar2pd94c.gz"},"Patterns":null},"System.Net.Security.yn3zcskz4j.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.Security.yn3zcskz4j.wasm"},"Patterns":null},"System.Net.Security.yn3zcskz4j.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"iem13k4n35-{0}-yn3zcskz4j-yn3zcskz4j.gz"},"Patterns":null},"System.Net.ServerSentEvents.37wbq4jfsy.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.ServerSentEvents.37wbq4jfsy.wasm"},"Patterns":null},"System.Net.ServerSentEvents.37wbq4jfsy.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"t2mopjsgs5-{0}-37wbq4jfsy-37wbq4jfsy.gz"},"Patterns":null},"System.Net.ServicePoint.j436yqvrg9.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.ServicePoint.j436yqvrg9.wasm"},"Patterns":null},"System.Net.ServicePoint.j436yqvrg9.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"sz4qmwa0cz-{0}-j436yqvrg9-j436yqvrg9.gz"},"Patterns":null},"System.Net.Sockets.utzdm9sw2p.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.Sockets.utzdm9sw2p.wasm"},"Patterns":null},"System.Net.Sockets.utzdm9sw2p.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ozd9l95cy8-{0}-utzdm9sw2p-utzdm9sw2p.gz"},"Patterns":null},"System.Net.WebClient.e5a4gx4ylt.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.WebClient.e5a4gx4ylt.wasm"},"Patterns":null},"System.Net.WebClient.e5a4gx4ylt.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0qximx7h6w-{0}-e5a4gx4ylt-e5a4gx4ylt.gz"},"Patterns":null},"System.Net.WebHeaderCollection.rbzkmij005.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.WebHeaderCollection.rbzkmij005.wasm"},"Patterns":null},"System.Net.WebHeaderCollection.rbzkmij005.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"xfyu8pi705-{0}-rbzkmij005-rbzkmij005.gz"},"Patterns":null},"System.Net.WebProxy.38jcv8jeeu.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.WebProxy.38jcv8jeeu.wasm"},"Patterns":null},"System.Net.WebProxy.38jcv8jeeu.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kwztau0oyy-{0}-38jcv8jeeu-38jcv8jeeu.gz"},"Patterns":null},"System.Net.WebSockets.Client.nv5izr3rt6.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.WebSockets.Client.nv5izr3rt6.wasm"},"Patterns":null},"System.Net.WebSockets.Client.nv5izr3rt6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zc08r46902-{0}-nv5izr3rt6-nv5izr3rt6.gz"},"Patterns":null},"System.Net.WebSockets.hdzn84g6uh.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.WebSockets.hdzn84g6uh.wasm"},"Patterns":null},"System.Net.WebSockets.hdzn84g6uh.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ttu14uxg7m-{0}-hdzn84g6uh-hdzn84g6uh.gz"},"Patterns":null},"System.Net.zku96ychk7.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Net.zku96ychk7.wasm"},"Patterns":null},"System.Net.zku96ychk7.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"mwxs9jgpi5-{0}-zku96ychk7-zku96ychk7.gz"},"Patterns":null},"System.Numerics.on9qk50okp.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Numerics.on9qk50okp.wasm"},"Patterns":null},"System.Numerics.on9qk50okp.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fmcag5xdn2-{0}-on9qk50okp-on9qk50okp.gz"},"Patterns":null},"System.Numerics.Vectors.1l8xruz8uh.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Numerics.Vectors.1l8xruz8uh.wasm"},"Patterns":null},"System.Numerics.Vectors.1l8xruz8uh.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tmgotixosa-{0}-1l8xruz8uh-1l8xruz8uh.gz"},"Patterns":null},"System.ObjectModel.4omhtq90sd.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.ObjectModel.4omhtq90sd.wasm"},"Patterns":null},"System.ObjectModel.4omhtq90sd.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"f62yejuwjc-{0}-4omhtq90sd-4omhtq90sd.gz"},"Patterns":null},"System.Private.CoreLib.koxlwnosh6.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Private.CoreLib.koxlwnosh6.wasm"},"Patterns":null},"System.Private.CoreLib.koxlwnosh6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3zyfvkhmnk-{0}-koxlwnosh6-koxlwnosh6.gz"},"Patterns":null},"System.Private.DataContractSerialization.zlwtcvnuqv.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Private.DataContractSerialization.zlwtcvnuqv.wasm"},"Patterns":null},"System.Private.DataContractSerialization.zlwtcvnuqv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"g0qzdert85-{0}-zlwtcvnuqv-zlwtcvnuqv.gz"},"Patterns":null},"System.Private.Uri.clehp4avpy.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Private.Uri.clehp4avpy.wasm"},"Patterns":null},"System.Private.Uri.clehp4avpy.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"e67ma35du3-{0}-clehp4avpy-clehp4avpy.gz"},"Patterns":null},"System.Private.Xml.g9rvjereoe.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Private.Xml.g9rvjereoe.wasm"},"Patterns":null},"System.Private.Xml.g9rvjereoe.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"byxake4xdz-{0}-g9rvjereoe-g9rvjereoe.gz"},"Patterns":null},"System.Private.Xml.Linq.ga3n3gh9b6.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Private.Xml.Linq.ga3n3gh9b6.wasm"},"Patterns":null},"System.Private.Xml.Linq.ga3n3gh9b6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"93opzeh57b-{0}-ga3n3gh9b6-ga3n3gh9b6.gz"},"Patterns":null},"System.Reflection.DispatchProxy.b7qn4zpc0q.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Reflection.DispatchProxy.b7qn4zpc0q.wasm"},"Patterns":null},"System.Reflection.DispatchProxy.b7qn4zpc0q.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jjcxq3ejac-{0}-b7qn4zpc0q-b7qn4zpc0q.gz"},"Patterns":null},"System.Reflection.Emit.3t7flfwg7o.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Reflection.Emit.3t7flfwg7o.wasm"},"Patterns":null},"System.Reflection.Emit.3t7flfwg7o.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"p1p1dduoka-{0}-3t7flfwg7o-3t7flfwg7o.gz"},"Patterns":null},"System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm"},"Patterns":null},"System.Reflection.Emit.ILGeneration.x0vkqyycss.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"i8msa0z88m-{0}-x0vkqyycss-x0vkqyycss.gz"},"Patterns":null},"System.Reflection.Emit.Lightweight.3tzjd7znni.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Reflection.Emit.Lightweight.3tzjd7znni.wasm"},"Patterns":null},"System.Reflection.Emit.Lightweight.3tzjd7znni.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gremm5qhcr-{0}-3tzjd7znni-3tzjd7znni.gz"},"Patterns":null},"System.Reflection.Extensions.ymwga5opgl.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Reflection.Extensions.ymwga5opgl.wasm"},"Patterns":null},"System.Reflection.Extensions.ymwga5opgl.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vtgrfa0p11-{0}-ymwga5opgl-ymwga5opgl.gz"},"Patterns":null},"System.Reflection.Metadata.9lgg9wjd2a.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Reflection.Metadata.9lgg9wjd2a.wasm"},"Patterns":null},"System.Reflection.Metadata.9lgg9wjd2a.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"k6k7jlyl2f-{0}-9lgg9wjd2a-9lgg9wjd2a.gz"},"Patterns":null},"System.Reflection.Primitives.n2ngq6as7g.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Reflection.Primitives.n2ngq6as7g.wasm"},"Patterns":null},"System.Reflection.Primitives.n2ngq6as7g.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tdpp3qw974-{0}-n2ngq6as7g-n2ngq6as7g.gz"},"Patterns":null},"System.Reflection.TypeExtensions.ivmzcfvrc6.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Reflection.TypeExtensions.ivmzcfvrc6.wasm"},"Patterns":null},"System.Reflection.TypeExtensions.ivmzcfvrc6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hoalsbog2o-{0}-ivmzcfvrc6-ivmzcfvrc6.gz"},"Patterns":null},"System.Reflection.v4mfyzbte8.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Reflection.v4mfyzbte8.wasm"},"Patterns":null},"System.Reflection.v4mfyzbte8.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"m0i5wjywsx-{0}-v4mfyzbte8-v4mfyzbte8.gz"},"Patterns":null},"System.Resources.Reader.c9z9nieytf.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Resources.Reader.c9z9nieytf.wasm"},"Patterns":null},"System.Resources.Reader.c9z9nieytf.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"xtefui8dpc-{0}-c9z9nieytf-c9z9nieytf.gz"},"Patterns":null},"System.Resources.ResourceManager.f3fiwdwb50.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Resources.ResourceManager.f3fiwdwb50.wasm"},"Patterns":null},"System.Resources.ResourceManager.f3fiwdwb50.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"qrheoix2ig-{0}-f3fiwdwb50-f3fiwdwb50.gz"},"Patterns":null},"System.Resources.Writer.tx9namivq6.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Resources.Writer.tx9namivq6.wasm"},"Patterns":null},"System.Resources.Writer.tx9namivq6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"szit2ufpnx-{0}-tx9namivq6-tx9namivq6.gz"},"Patterns":null},"System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm"},"Patterns":null},"System.Runtime.CompilerServices.Unsafe.5yw8jyjkyt.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3txc49hfsy-{0}-5yw8jyjkyt-5yw8jyjkyt.gz"},"Patterns":null},"System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm"},"Patterns":null},"System.Runtime.CompilerServices.VisualC.ddbsai2xh9.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"me1or200pv-{0}-ddbsai2xh9-ddbsai2xh9.gz"},"Patterns":null},"System.Runtime.Extensions.f4fqaba1oz.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Runtime.Extensions.f4fqaba1oz.wasm"},"Patterns":null},"System.Runtime.Extensions.f4fqaba1oz.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"4syo1xqmc8-{0}-f4fqaba1oz-f4fqaba1oz.gz"},"Patterns":null},"System.Runtime.Handles.kpe61fymig.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Runtime.Handles.kpe61fymig.wasm"},"Patterns":null},"System.Runtime.Handles.kpe61fymig.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fz4pecsmjf-{0}-kpe61fymig-kpe61fymig.gz"},"Patterns":null},"System.Runtime.InteropServices.02r2ubft18.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Runtime.InteropServices.02r2ubft18.wasm"},"Patterns":null},"System.Runtime.InteropServices.02r2ubft18.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0st0knthx5-{0}-02r2ubft18-02r2ubft18.gz"},"Patterns":null},"System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm"},"Patterns":null},"System.Runtime.InteropServices.JavaScript.ythr5w8c2e.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"h9925thw3k-{0}-ythr5w8c2e-ythr5w8c2e.gz"},"Patterns":null},"System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm"},"Patterns":null},"System.Runtime.InteropServices.RuntimeInformation.esodb2rpbi.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zx6kj3xmnr-{0}-esodb2rpbi-esodb2rpbi.gz"},"Patterns":null},"System.Runtime.Intrinsics.j8lrpban8m.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Runtime.Intrinsics.j8lrpban8m.wasm"},"Patterns":null},"System.Runtime.Intrinsics.j8lrpban8m.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"7yd9j54hd0-{0}-j8lrpban8m-j8lrpban8m.gz"},"Patterns":null},"System.Runtime.k6ze2203p2.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Runtime.k6ze2203p2.wasm"},"Patterns":null},"System.Runtime.k6ze2203p2.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"9ru0gm9zti-{0}-k6ze2203p2-k6ze2203p2.gz"},"Patterns":null},"System.Runtime.Loader.bm8d2pac0a.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Runtime.Loader.bm8d2pac0a.wasm"},"Patterns":null},"System.Runtime.Loader.bm8d2pac0a.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"06jmrwgemt-{0}-bm8d2pac0a-bm8d2pac0a.gz"},"Patterns":null},"System.Runtime.Numerics.e3fl2oogjk.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Runtime.Numerics.e3fl2oogjk.wasm"},"Patterns":null},"System.Runtime.Numerics.e3fl2oogjk.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"b1pqie8d42-{0}-e3fl2oogjk-e3fl2oogjk.gz"},"Patterns":null},"System.Runtime.Serialization.Formatters.a0v88kqnif.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Runtime.Serialization.Formatters.a0v88kqnif.wasm"},"Patterns":null},"System.Runtime.Serialization.Formatters.a0v88kqnif.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"4k92vl8md2-{0}-a0v88kqnif-a0v88kqnif.gz"},"Patterns":null},"System.Runtime.Serialization.Json.pez04wd9mo.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Runtime.Serialization.Json.pez04wd9mo.wasm"},"Patterns":null},"System.Runtime.Serialization.Json.pez04wd9mo.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"wxwyng4xk0-{0}-pez04wd9mo-pez04wd9mo.gz"},"Patterns":null},"System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm"},"Patterns":null},"System.Runtime.Serialization.Primitives.xy5d3j3dn1.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"j81tt1y6rj-{0}-xy5d3j3dn1-xy5d3j3dn1.gz"},"Patterns":null},"System.Runtime.Serialization.qfpmfujegm.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Runtime.Serialization.qfpmfujegm.wasm"},"Patterns":null},"System.Runtime.Serialization.qfpmfujegm.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"mkj61d469a-{0}-qfpmfujegm-qfpmfujegm.gz"},"Patterns":null},"System.Runtime.Serialization.Xml.mmwsbcsgly.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Runtime.Serialization.Xml.mmwsbcsgly.wasm"},"Patterns":null},"System.Runtime.Serialization.Xml.mmwsbcsgly.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8pmauzinw9-{0}-mmwsbcsgly-mmwsbcsgly.gz"},"Patterns":null},"System.Security.AccessControl.4mxo8hy5cn.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Security.AccessControl.4mxo8hy5cn.wasm"},"Patterns":null},"System.Security.AccessControl.4mxo8hy5cn.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"9n1qe841ua-{0}-4mxo8hy5cn-4mxo8hy5cn.gz"},"Patterns":null},"System.Security.Claims.9n1yusa5e5.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Security.Claims.9n1yusa5e5.wasm"},"Patterns":null},"System.Security.Claims.9n1yusa5e5.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"awwlmj7zy5-{0}-9n1yusa5e5-9n1yusa5e5.gz"},"Patterns":null},"System.Security.Cryptography.5rp84ijz8t.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Security.Cryptography.5rp84ijz8t.wasm"},"Patterns":null},"System.Security.Cryptography.5rp84ijz8t.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gqmneoqstx-{0}-5rp84ijz8t-5rp84ijz8t.gz"},"Patterns":null},"System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm"},"Patterns":null},"System.Security.Cryptography.Algorithms.4dnz7b15a9.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"m02xm5ue7p-{0}-4dnz7b15a9-4dnz7b15a9.gz"},"Patterns":null},"System.Security.Cryptography.Cng.dyaxkkx3lb.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Security.Cryptography.Cng.dyaxkkx3lb.wasm"},"Patterns":null},"System.Security.Cryptography.Cng.dyaxkkx3lb.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jhjpqkptaq-{0}-dyaxkkx3lb-dyaxkkx3lb.gz"},"Patterns":null},"System.Security.Cryptography.Csp.20t5iw27a6.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Security.Cryptography.Csp.20t5iw27a6.wasm"},"Patterns":null},"System.Security.Cryptography.Csp.20t5iw27a6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"v9jar86jna-{0}-20t5iw27a6-20t5iw27a6.gz"},"Patterns":null},"System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm"},"Patterns":null},"System.Security.Cryptography.Encoding.0lu5m0tfx2.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"uu7wfp4do2-{0}-0lu5m0tfx2-0lu5m0tfx2.gz"},"Patterns":null},"System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm"},"Patterns":null},"System.Security.Cryptography.OpenSsl.4m4pzjxi3g.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"12m83h5a1i-{0}-4m4pzjxi3g-4m4pzjxi3g.gz"},"Patterns":null},"System.Security.Cryptography.Primitives.7bcdd4uolu.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Security.Cryptography.Primitives.7bcdd4uolu.wasm"},"Patterns":null},"System.Security.Cryptography.Primitives.7bcdd4uolu.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ly70359tb6-{0}-7bcdd4uolu-7bcdd4uolu.gz"},"Patterns":null},"System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm"},"Patterns":null},"System.Security.Cryptography.X509Certificates.dmew7c9amv.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rz1qtq0z6d-{0}-dmew7c9amv-dmew7c9amv.gz"},"Patterns":null},"System.Security.Principal.j5dp7k8x6u.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Security.Principal.j5dp7k8x6u.wasm"},"Patterns":null},"System.Security.Principal.j5dp7k8x6u.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8ynwqwcefg-{0}-j5dp7k8x6u-j5dp7k8x6u.gz"},"Patterns":null},"System.Security.Principal.Windows.7ssqvw2wfy.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Security.Principal.Windows.7ssqvw2wfy.wasm"},"Patterns":null},"System.Security.Principal.Windows.7ssqvw2wfy.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"sl0sft7bkv-{0}-7ssqvw2wfy-7ssqvw2wfy.gz"},"Patterns":null},"System.Security.SecureString.7weoywtuje.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Security.SecureString.7weoywtuje.wasm"},"Patterns":null},"System.Security.SecureString.7weoywtuje.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ogcs9ucvrf-{0}-7weoywtuje-7weoywtuje.gz"},"Patterns":null},"System.Security.snpv53zusk.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Security.snpv53zusk.wasm"},"Patterns":null},"System.Security.snpv53zusk.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8srr1acehr-{0}-snpv53zusk-snpv53zusk.gz"},"Patterns":null},"System.ServiceModel.Web.3f1khl8k32.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.ServiceModel.Web.3f1khl8k32.wasm"},"Patterns":null},"System.ServiceModel.Web.3f1khl8k32.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"i30lqfoca8-{0}-3f1khl8k32-3f1khl8k32.gz"},"Patterns":null},"System.ServiceProcess.a95c1olw0i.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.ServiceProcess.a95c1olw0i.wasm"},"Patterns":null},"System.ServiceProcess.a95c1olw0i.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zlxnfbxifc-{0}-a95c1olw0i-a95c1olw0i.gz"},"Patterns":null},"System.Text.Encoding.CodePages.8bhn50uz8f.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Text.Encoding.CodePages.8bhn50uz8f.wasm"},"Patterns":null},"System.Text.Encoding.CodePages.8bhn50uz8f.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"d2kqqmb0bv-{0}-8bhn50uz8f-8bhn50uz8f.gz"},"Patterns":null},"System.Text.Encoding.Extensions.tqz9dyg6j7.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Text.Encoding.Extensions.tqz9dyg6j7.wasm"},"Patterns":null},"System.Text.Encoding.Extensions.tqz9dyg6j7.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"m10se0yx1g-{0}-tqz9dyg6j7-tqz9dyg6j7.gz"},"Patterns":null},"System.Text.Encoding.s9ic8sulfi.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Text.Encoding.s9ic8sulfi.wasm"},"Patterns":null},"System.Text.Encoding.s9ic8sulfi.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"w4xw0gq3pj-{0}-s9ic8sulfi-s9ic8sulfi.gz"},"Patterns":null},"System.Text.Encodings.Web.07hq35kp92.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Text.Encodings.Web.07hq35kp92.wasm"},"Patterns":null},"System.Text.Encodings.Web.07hq35kp92.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"wqsee81gb1-{0}-07hq35kp92-07hq35kp92.gz"},"Patterns":null},"System.Text.Json.2alhj4y3bm.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Text.Json.2alhj4y3bm.wasm"},"Patterns":null},"System.Text.Json.2alhj4y3bm.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0064fe6uur-{0}-2alhj4y3bm-2alhj4y3bm.gz"},"Patterns":null},"System.Text.RegularExpressions.h1qtkesphd.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Text.RegularExpressions.h1qtkesphd.wasm"},"Patterns":null},"System.Text.RegularExpressions.h1qtkesphd.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"7d15z782y2-{0}-h1qtkesphd-h1qtkesphd.gz"},"Patterns":null},"System.Threading.47ucbn1gg1.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Threading.47ucbn1gg1.wasm"},"Patterns":null},"System.Threading.47ucbn1gg1.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"e2ypaal8k2-{0}-47ucbn1gg1-47ucbn1gg1.gz"},"Patterns":null},"System.Threading.AccessControl.ruehy0ud5k.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Threading.AccessControl.ruehy0ud5k.wasm"},"Patterns":null},"System.Threading.AccessControl.ruehy0ud5k.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lbcric48ji-{0}-ruehy0ud5k-ruehy0ud5k.gz"},"Patterns":null},"System.Threading.Channels.s3i62rxr2p.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Threading.Channels.s3i62rxr2p.wasm"},"Patterns":null},"System.Threading.Channels.s3i62rxr2p.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rma0vjtbld-{0}-s3i62rxr2p-s3i62rxr2p.gz"},"Patterns":null},"System.Threading.Overlapped.lzl7igry1t.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Threading.Overlapped.lzl7igry1t.wasm"},"Patterns":null},"System.Threading.Overlapped.lzl7igry1t.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ywpa2qpg55-{0}-lzl7igry1t-lzl7igry1t.gz"},"Patterns":null},"System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm"},"Patterns":null},"System.Threading.Tasks.Dataflow.p9bjzp5pyo.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"to8tkrj8cc-{0}-p9bjzp5pyo-p9bjzp5pyo.gz"},"Patterns":null},"System.Threading.Tasks.Extensions.unp0hcfijn.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Threading.Tasks.Extensions.unp0hcfijn.wasm"},"Patterns":null},"System.Threading.Tasks.Extensions.unp0hcfijn.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"7o4w0lfocu-{0}-unp0hcfijn-unp0hcfijn.gz"},"Patterns":null},"System.Threading.Tasks.Parallel.hyku0ejwye.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Threading.Tasks.Parallel.hyku0ejwye.wasm"},"Patterns":null},"System.Threading.Tasks.Parallel.hyku0ejwye.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ohlfbgu01g-{0}-hyku0ejwye-hyku0ejwye.gz"},"Patterns":null},"System.Threading.Tasks.t0sjw89o0i.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Threading.Tasks.t0sjw89o0i.wasm"},"Patterns":null},"System.Threading.Tasks.t0sjw89o0i.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8rrnar5gtv-{0}-t0sjw89o0i-t0sjw89o0i.gz"},"Patterns":null},"System.Threading.Thread.nfbg9v9bn0.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Threading.Thread.nfbg9v9bn0.wasm"},"Patterns":null},"System.Threading.Thread.nfbg9v9bn0.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"wi7nbv7im4-{0}-nfbg9v9bn0-nfbg9v9bn0.gz"},"Patterns":null},"System.Threading.ThreadPool.jrzo6stg1k.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Threading.ThreadPool.jrzo6stg1k.wasm"},"Patterns":null},"System.Threading.ThreadPool.jrzo6stg1k.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"5g4i44bi6s-{0}-jrzo6stg1k-jrzo6stg1k.gz"},"Patterns":null},"System.Threading.Timer.y8l1kxazi5.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Threading.Timer.y8l1kxazi5.wasm"},"Patterns":null},"System.Threading.Timer.y8l1kxazi5.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hq538hfxem-{0}-y8l1kxazi5-y8l1kxazi5.gz"},"Patterns":null},"System.Transactions.Local.cig01jt23c.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Transactions.Local.cig01jt23c.wasm"},"Patterns":null},"System.Transactions.Local.cig01jt23c.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"uz6wr238mp-{0}-cig01jt23c-cig01jt23c.gz"},"Patterns":null},"System.Transactions.pl50n6qbg7.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Transactions.pl50n6qbg7.wasm"},"Patterns":null},"System.Transactions.pl50n6qbg7.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kmdzqqqt27-{0}-pl50n6qbg7-pl50n6qbg7.gz"},"Patterns":null},"System.ValueTuple.mj3r9p0pcw.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.ValueTuple.mj3r9p0pcw.wasm"},"Patterns":null},"System.ValueTuple.mj3r9p0pcw.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"dy6tcjmb9q-{0}-mj3r9p0pcw-mj3r9p0pcw.gz"},"Patterns":null},"System.Web.2a6wq9gv6d.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Web.2a6wq9gv6d.wasm"},"Patterns":null},"System.Web.2a6wq9gv6d.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"iok845swr0-{0}-2a6wq9gv6d-2a6wq9gv6d.gz"},"Patterns":null},"System.Web.HttpUtility.3jfxpyq4in.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Web.HttpUtility.3jfxpyq4in.wasm"},"Patterns":null},"System.Web.HttpUtility.3jfxpyq4in.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"pfi56k79hn-{0}-3jfxpyq4in-3jfxpyq4in.gz"},"Patterns":null},"System.Windows.bw79ix589z.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Windows.bw79ix589z.wasm"},"Patterns":null},"System.Windows.bw79ix589z.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tvvpa50077-{0}-bw79ix589z-bw79ix589z.gz"},"Patterns":null},"System.Xml.Linq.nvnhbwdsg6.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Xml.Linq.nvnhbwdsg6.wasm"},"Patterns":null},"System.Xml.Linq.nvnhbwdsg6.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"79deazooef-{0}-nvnhbwdsg6-nvnhbwdsg6.gz"},"Patterns":null},"System.Xml.ReaderWriter.szsdminork.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Xml.ReaderWriter.szsdminork.wasm"},"Patterns":null},"System.Xml.ReaderWriter.szsdminork.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kmp1cwjk7f-{0}-szsdminork-szsdminork.gz"},"Patterns":null},"System.Xml.Serialization.b9imguls9w.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Xml.Serialization.b9imguls9w.wasm"},"Patterns":null},"System.Xml.Serialization.b9imguls9w.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"cagt9idkdm-{0}-b9imguls9w-b9imguls9w.gz"},"Patterns":null},"System.Xml.XDocument.8hg6c0at0c.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Xml.XDocument.8hg6c0at0c.wasm"},"Patterns":null},"System.Xml.XDocument.8hg6c0at0c.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"blwck2749u-{0}-8hg6c0at0c-8hg6c0at0c.gz"},"Patterns":null},"System.Xml.XmlDocument.isetn6xlxa.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Xml.XmlDocument.isetn6xlxa.wasm"},"Patterns":null},"System.Xml.XmlDocument.isetn6xlxa.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ww3wnv8b6s-{0}-isetn6xlxa-isetn6xlxa.gz"},"Patterns":null},"System.Xml.XmlSerializer.okgnp5v9bw.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Xml.XmlSerializer.okgnp5v9bw.wasm"},"Patterns":null},"System.Xml.XmlSerializer.okgnp5v9bw.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"qt3o35adbl-{0}-okgnp5v9bw-okgnp5v9bw.gz"},"Patterns":null},"System.Xml.XPath.11wk1hhnfk.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Xml.XPath.11wk1hhnfk.wasm"},"Patterns":null},"System.Xml.XPath.11wk1hhnfk.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"xo45czuveq-{0}-11wk1hhnfk-11wk1hhnfk.gz"},"Patterns":null},"System.Xml.XPath.XDocument.g7i5gd64yo.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Xml.XPath.XDocument.g7i5gd64yo.wasm"},"Patterns":null},"System.Xml.XPath.XDocument.g7i5gd64yo.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gsr2zhdiud-{0}-g7i5gd64yo-g7i5gd64yo.gz"},"Patterns":null},"System.Xml.zjgi7nrlno.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/System.Xml.zjgi7nrlno.wasm"},"Patterns":null},"System.Xml.zjgi7nrlno.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ra6e7v46m5-{0}-zjgi7nrlno-zjgi7nrlno.gz"},"Patterns":null},"WindowsBase.wz82kkc1p3.wasm":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"_framework/WindowsBase.wz82kkc1p3.wasm"},"Patterns":null},"WindowsBase.wz82kkc1p3.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"10vfj5e8p2-{0}-wz82kkc1p3-wz82kkc1p3.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Layout":{"Children":{"ReconnectModal.razor.js":{"Children":null,"Asset":{"ContentRootIndex":9,"SubPath":"Layout/ReconnectModal.razor.js"},"Patterns":null},"ReconnectModal.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ug9ge1behf-{0}-ycbzh0sbjd-ycbzh0sbjd.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"_content":{"Children":{"Microsoft.DotNet.HotReload.WebAssembly.Browser":{"Children":{"Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js":{"Children":null,"Asset":{"ContentRootIndex":10,"SubPath":"Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js"},"Patterns":null},"Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"f9o902iofb-{0}-99zm1jdh75-99zm1jdh75.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":11,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"tzxjg6is5z-{0}-o2b68hjqqd-o2b68hjqqd.gz"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":11,"SubPath":"MudBlazor.min.js"},"Patterns":null},"MudBlazor.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"0wz98yz2xy-{0}-8dleymzaev-8dleymzaev.gz"},"Patterns":null},"MudBlazor.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":11,"SubPath":"MudBlazor.min.js.map"},"Patterns":null},"MudBlazor.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"o7k4cxtn0u-{0}-0ykner63ol-0ykner63ol.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/OnProfNext/obj/Debug/net10.0/staticwebassets.references.upToDateCheck.txt b/OnProfNext/obj/Debug/net10.0/staticwebassets.references.upToDateCheck.txt new file mode 100644 index 0000000..789abe4 --- /dev/null +++ b/OnProfNext/obj/Debug/net10.0/staticwebassets.references.upToDateCheck.txt @@ -0,0 +1 @@ +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext.Client\obj\Debug\net10.0\staticwebassets.build.json diff --git a/OnProfNext/obj/Debug/net10.0/staticwebassets.removed.txt b/OnProfNext/obj/Debug/net10.0/staticwebassets.removed.txt new file mode 100644 index 0000000..e69de29 diff --git a/OnProfNext/obj/Debug/net10.0/staticwebassets.upToDateCheck.txt b/OnProfNext/obj/Debug/net10.0/staticwebassets.upToDateCheck.txt new file mode 100644 index 0000000..ef119cb --- /dev/null +++ b/OnProfNext/obj/Debug/net10.0/staticwebassets.upToDateCheck.txt @@ -0,0 +1,6 @@ +wwwroot\favicon.ico +C:\Users\wiela\.nuget\packages\microsoft.aspnetcore.app.internal.assets\10.0.5\build\..\_framework\blazor.web.js +C:\Users\wiela\.nuget\packages\microsoft.aspnetcore.app.internal.assets\10.0.5\build\..\_framework\blazor.server.js +D:\Dev\Tut\OnProfNext\OnProfNext\OnProfNext\wwwroot\favicon.ico +C:\Users\wiela\.nuget\packages\microsoft.aspnetcore.app.internal.assets\10.0.5\_framework\blazor.web.js +C:\Users\wiela\.nuget\packages\microsoft.aspnetcore.app.internal.assets\10.0.5\_framework\blazor.server.js diff --git a/OnProfNext/obj/Debug/net10.0/swae.build.ex.cache b/OnProfNext/obj/Debug/net10.0/swae.build.ex.cache new file mode 100644 index 0000000..e69de29 diff --git a/OnProfNext/obj/OnProfNext.csproj.nuget.dgspec.json b/OnProfNext/obj/OnProfNext.csproj.nuget.dgspec.json new file mode 100644 index 0000000..2b93ce0 --- /dev/null +++ b/OnProfNext/obj/OnProfNext.csproj.nuget.dgspec.json @@ -0,0 +1,885 @@ +{ + "format": 1, + "restore": { + "D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\OnProfNext.csproj": {} + }, + "projects": { + "D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\OnProfNext.Client.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\OnProfNext.Client.csproj", + "projectName": "OnProfNext.Client", + "projectPath": "D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\OnProfNext.Client.csproj", + "packagesPath": "C:\\Users\\wiela\\.nuget\\packages\\", + "outputPath": "D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\wiela\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.200" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Microsoft.AspNetCore.App.Internal.Assets": { + "suppressParent": "All", + "target": "Package", + "version": "[10.0.5, )", + "autoReferenced": true + }, + "Microsoft.AspNetCore.Components.WebAssembly": { + "target": "Package", + "version": "[10.*, )" + }, + "Microsoft.DotNet.HotReload.WebAssembly.Browser": { + "target": "Package", + "version": "[10.0.201, )", + "autoReferenced": true + }, + "Microsoft.NET.ILLink.Tasks": { + "suppressParent": "All", + "target": "Package", + "version": "[10.0.5, )", + "autoReferenced": true + }, + "Microsoft.NET.Sdk.WebAssembly.Pack": { + "suppressParent": "All", + "target": "Package", + "version": "[10.0.5, )", + "autoReferenced": true + }, + "MudBlazor": { + "target": "Package", + "version": "[9.*, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.201/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + }, + "runtimes": { + "browser-wasm": { + "#import": [] + } + } + }, + "D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\OnProfNext.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\OnProfNext.csproj", + "projectName": "OnProfNext", + "projectPath": "D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\OnProfNext.csproj", + "packagesPath": "C:\\Users\\wiela\\.nuget\\packages\\", + "outputPath": "D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\wiela\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\OnProfNext.Client.csproj": { + "projectPath": "D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\OnProfNext.Client.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.200" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Microsoft.AspNetCore.App.Internal.Assets": { + "suppressParent": "All", + "target": "Package", + "version": "[10.0.5, )", + "autoReferenced": true + }, + "Microsoft.AspNetCore.Components.WebAssembly.Server": { + "target": "Package", + "version": "[10.*, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.201/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.AspNetCore": "(,10.0.32767]", + "Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]", + "Microsoft.AspNetCore.App": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]", + "Microsoft.AspNetCore.Components": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Server": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Web": "(,10.0.32767]", + "Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Features": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Results": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Identity": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Metadata": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]", + "Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]", + "Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]", + "Microsoft.AspNetCore.Rewrite": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]", + "Microsoft.AspNetCore.Session": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]", + "Microsoft.AspNetCore.WebSockets": "(,10.0.32767]", + "Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]", + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.Extensions.Caching.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Caching.Memory": "(,10.0.32767]", + "Microsoft.Extensions.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Binder": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Ini": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Json": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Xml": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Features": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Composite": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Physical": "(,10.0.32767]", + "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.32767]", + "Microsoft.Extensions.Hosting": "(,10.0.32767]", + "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Http": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Core": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Stores": "(,10.0.32767]", + "Microsoft.Extensions.Localization": "(,10.0.32767]", + "Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Console": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Debug": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventLog": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventSource": "(,10.0.32767]", + "Microsoft.Extensions.Logging.TraceSource": "(,10.0.32767]", + "Microsoft.Extensions.ObjectPool": "(,10.0.32767]", + "Microsoft.Extensions.Options": "(,10.0.32767]", + "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.32767]", + "Microsoft.Extensions.Primitives": "(,10.0.32767]", + "Microsoft.Extensions.Validation": "(,10.0.32767]", + "Microsoft.Extensions.WebEncoders": "(,10.0.32767]", + "Microsoft.JSInterop": "(,10.0.32767]", + "Microsoft.Net.Http.Headers": "(,10.0.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.EventLog": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Cbor": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Cryptography.Xml": "(,10.0.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.RateLimiting": "(,10.0.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } + } +} \ No newline at end of file diff --git a/OnProfNext/obj/OnProfNext.csproj.nuget.g.props b/OnProfNext/obj/OnProfNext.csproj.nuget.g.props new file mode 100644 index 0000000..1e7d857 --- /dev/null +++ b/OnProfNext/obj/OnProfNext.csproj.nuget.g.props @@ -0,0 +1,24 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\wiela\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 7.0.0 + + + + + + + + + + + + C:\Users\wiela\.nuget\packages\microsoft.aspnetcore.components.webassembly.server\10.0.5 + + \ No newline at end of file diff --git a/OnProfNext/obj/OnProfNext.csproj.nuget.g.targets b/OnProfNext/obj/OnProfNext.csproj.nuget.g.targets new file mode 100644 index 0000000..06c4a3f --- /dev/null +++ b/OnProfNext/obj/OnProfNext.csproj.nuget.g.targets @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/OnProfNext/obj/project.assets.json b/OnProfNext/obj/project.assets.json new file mode 100644 index 0000000..a6c4359 --- /dev/null +++ b/OnProfNext/obj/project.assets.json @@ -0,0 +1,772 @@ +{ + "version": 3, + "targets": { + "net10.0": { + "Microsoft.AspNetCore.App.Internal.Assets/10.0.5": { + "type": "package", + "build": { + "build/Microsoft.AspNetCore.App.Internal.Assets.props": {}, + "buildTransitive/Microsoft.AspNetCore.App.Internal.Assets.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.AspNetCore.App.Internal.Assets.targets": {} + } + }, + "Microsoft.AspNetCore.Components.WebAssembly/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.JSInterop.WebAssembly": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Components.WebAssembly.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Components.WebAssembly.dll": { + "related": ".xml" + } + }, + "build": { + "build/net10.0/_._": {} + } + }, + "Microsoft.AspNetCore.Components.WebAssembly.Server/10.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components.WebAssembly": "10.0.5" + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Components.WebAssembly.Server.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Components.WebAssembly.Server.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ], + "build": { + "build/Microsoft.AspNetCore.Components.WebAssembly.Server.targets": {} + } + }, + "Microsoft.DotNet.HotReload.WebAssembly.Browser/10.0.201": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.DotNet.HotReload.WebAssembly.Browser.dll": {} + }, + "runtime": { + "lib/net10.0/Microsoft.DotNet.HotReload.WebAssembly.Browser.dll": {} + }, + "build": { + "buildTransitive/Microsoft.DotNet.HotReload.WebAssembly.Browser.props": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.DotNet.HotReload.WebAssembly.Browser.props": {} + } + }, + "Microsoft.JSInterop.WebAssembly/10.0.5": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.JSInterop.WebAssembly.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.JSInterop.WebAssembly.dll": { + "related": ".xml" + } + } + }, + "MudBlazor/9.2.0": { + "type": "package", + "compile": { + "lib/net10.0/MudBlazor.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/MudBlazor.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/MudBlazor.props": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/MudBlazor.props": {} + } + }, + "OnProfNext.Client/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v10.0", + "dependencies": { + "Microsoft.AspNetCore.Components.WebAssembly": "10.0.0", + "Microsoft.DotNet.HotReload.WebAssembly.Browser": "10.0.201", + "MudBlazor": "9.0.0" + }, + "compile": { + "bin/placeholder/OnProfNext.Client.dll": {} + }, + "runtime": { + "bin/placeholder/OnProfNext.Client.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.AspNetCore.App.Internal.Assets/10.0.5": { + "sha512": "Oxw9Ps1/nd6c/EMCAI13AeJFEqXezAvCEOshMjUWmL7LeGirHJNzytR2e/3jINYg0j2TmPvNUowGHf+gp8zDSQ==", + "type": "package", + "path": "microsoft.aspnetcore.app.internal.assets/10.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "_framework/blazor.server.js", + "_framework/blazor.server.js.map", + "_framework/blazor.web.js", + "_framework/blazor.web.js.map", + "_framework/blazor.webassembly.js", + "_framework/blazor.webassembly.js.map", + "build/Microsoft.AspNetCore.App.Internal.Assets.props", + "build/Microsoft.AspNetCore.App.Internal.Assets.targets", + "buildMultiTargeting/Microsoft.AspNetCore.App.Internal.Assets.targets", + "buildTransitive/Microsoft.AspNetCore.App.Internal.Assets.targets", + "microsoft.aspnetcore.app.internal.assets.10.0.5.nupkg.sha512", + "microsoft.aspnetcore.app.internal.assets.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.WebAssembly/10.0.5": { + "sha512": "fjmhjvZpYTJVl/sxpDStP8+fQ6XEG8r9iuhafuTCp2nAAGPcJhsSND58he9BOekbxs6nMv2OECUGwtWqHBGFcg==", + "type": "package", + "path": "microsoft.aspnetcore.components.webassembly/10.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.txt", + "build/net10.0/Microsoft.AspNetCore.Components.WebAssembly.props", + "build/net10.0/blazor.webassembly.js", + "lib/net10.0/Microsoft.AspNetCore.Components.WebAssembly.dll", + "lib/net10.0/Microsoft.AspNetCore.Components.WebAssembly.xml", + "microsoft.aspnetcore.components.webassembly.10.0.5.nupkg.sha512", + "microsoft.aspnetcore.components.webassembly.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.WebAssembly.Server/10.0.5": { + "sha512": "wDK4Yiuz9oq3LLO8ies4UzpRLGQ56WGHj099h0MzkFyU8YcaZJ9h76ZkBpcgJQPNECjxL0lXg4hQz2fhrt0qHQ==", + "type": "package", + "path": "microsoft.aspnetcore.components.webassembly.server/10.0.5", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.txt", + "build/Microsoft.AspNetCore.Components.WebAssembly.Server.targets", + "lib/net10.0/Microsoft.AspNetCore.Components.WebAssembly.Server.dll", + "lib/net10.0/Microsoft.AspNetCore.Components.WebAssembly.Server.xml", + "microsoft.aspnetcore.components.webassembly.server.10.0.5.nupkg.sha512", + "microsoft.aspnetcore.components.webassembly.server.nuspec", + "tools/BlazorDebugProxy/BrowserDebugHost.dll", + "tools/BlazorDebugProxy/BrowserDebugHost.runtimeconfig.json", + "tools/BlazorDebugProxy/BrowserDebugProxy.dll", + "tools/BlazorDebugProxy/Microsoft.CodeAnalysis.CSharp.Scripting.dll", + "tools/BlazorDebugProxy/Microsoft.CodeAnalysis.CSharp.dll", + "tools/BlazorDebugProxy/Microsoft.CodeAnalysis.Scripting.dll", + "tools/BlazorDebugProxy/Microsoft.CodeAnalysis.dll", + "tools/BlazorDebugProxy/Microsoft.FileFormats.dll", + "tools/BlazorDebugProxy/Microsoft.NET.WebAssembly.Webcil.dll", + "tools/BlazorDebugProxy/Microsoft.SymbolStore.dll", + "tools/BlazorDebugProxy/Newtonsoft.Json.dll" + ] + }, + "Microsoft.DotNet.HotReload.WebAssembly.Browser/10.0.201": { + "sha512": "4EAMH3CqtVwVm7Sx4DnNtZj/J0b+A1YGcTnCL6prhQ8ZHlwbVtZ3RmSyJdi85mSnLl+u94aVr8fElRGkjZkKmw==", + "type": "package", + "path": "microsoft.dotnet.hotreload.webassembly.browser/10.0.201", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "build/Microsoft.AspNetCore.StaticWebAssetEndpoints.props", + "build/Microsoft.AspNetCore.StaticWebAssets.props", + "build/Microsoft.DotNet.HotReload.WebAssembly.Browser.props", + "buildMultiTargeting/Microsoft.DotNet.HotReload.WebAssembly.Browser.props", + "buildTransitive/Microsoft.DotNet.HotReload.WebAssembly.Browser.props", + "lib/net10.0/Microsoft.DotNet.HotReload.WebAssembly.Browser.dll", + "microsoft.dotnet.hotreload.webassembly.browser.10.0.201.nupkg.sha512", + "microsoft.dotnet.hotreload.webassembly.browser.nuspec", + "staticwebassets/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js" + ] + }, + "Microsoft.JSInterop.WebAssembly/10.0.5": { + "sha512": "9iva1I1opPJA1xMSGTNmbyLhyzw383l6StST9gebB/UEBrYuadzwsv7O3eKAhmJVsPUGy6wWo4SVUcfFnPNQXA==", + "type": "package", + "path": "microsoft.jsinterop.webassembly/10.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net10.0/Microsoft.JSInterop.WebAssembly.dll", + "lib/net10.0/Microsoft.JSInterop.WebAssembly.xml", + "microsoft.jsinterop.webassembly.10.0.5.nupkg.sha512", + "microsoft.jsinterop.webassembly.nuspec" + ] + }, + "MudBlazor/9.2.0": { + "sha512": "ckAndxv3to3CahczgLrqKdzhPV3750B7taqICSIAdKXoh0dSyqcUcjAI5YlE5s7NB7C+NdpkfWpK+dKQwxvUOA==", + "type": "package", + "path": "mudblazor/9.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "Nuget.png", + "README.md", + "analyzers/dotnet/cs/MudBlazor.Analyzers.CodeFixes.dll", + "analyzers/dotnet/cs/MudBlazor.Analyzers.dll", + "build/Microsoft.AspNetCore.StaticWebAssetEndpoints.props", + "build/Microsoft.AspNetCore.StaticWebAssets.props", + "build/MudBlazor.props", + "build/MudBlazor.targets", + "buildMultiTargeting/MudBlazor.props", + "buildTransitive/MudBlazor.props", + "lib/net10.0/MudBlazor.dll", + "lib/net10.0/MudBlazor.xml", + "lib/net8.0/MudBlazor.dll", + "lib/net8.0/MudBlazor.xml", + "lib/net9.0/MudBlazor.dll", + "lib/net9.0/MudBlazor.xml", + "mudblazor.9.2.0.nupkg.sha512", + "mudblazor.nuspec", + "staticwebassets/MudBlazor.min.css", + "staticwebassets/MudBlazor.min.js", + "staticwebassets/MudBlazor.min.js.map" + ] + }, + "OnProfNext.Client/1.0.0": { + "type": "project", + "path": "../OnProfNext.Client/OnProfNext.Client.csproj", + "msbuildProject": "../OnProfNext.Client/OnProfNext.Client.csproj" + } + }, + "projectFileDependencyGroups": { + "net10.0": [ + "Microsoft.AspNetCore.App.Internal.Assets >= 10.0.5", + "Microsoft.AspNetCore.Components.WebAssembly.Server >= 10.*", + "OnProfNext.Client >= 1.0.0" + ] + }, + "packageFolders": { + "C:\\Users\\wiela\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\OnProfNext.csproj", + "projectName": "OnProfNext", + "projectPath": "D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\OnProfNext.csproj", + "packagesPath": "C:\\Users\\wiela\\.nuget\\packages\\", + "outputPath": "D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\wiela\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\OnProfNext.Client.csproj": { + "projectPath": "D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext.Client\\OnProfNext.Client.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.200" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Microsoft.AspNetCore.App.Internal.Assets": { + "suppressParent": "All", + "target": "Package", + "version": "[10.0.5, )", + "autoReferenced": true + }, + "Microsoft.AspNetCore.Components.WebAssembly.Server": { + "target": "Package", + "version": "[10.*, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.201/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.AspNetCore": "(,10.0.32767]", + "Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]", + "Microsoft.AspNetCore.App": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]", + "Microsoft.AspNetCore.Components": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Server": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Web": "(,10.0.32767]", + "Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Features": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Results": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Identity": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Metadata": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]", + "Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]", + "Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]", + "Microsoft.AspNetCore.Rewrite": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]", + "Microsoft.AspNetCore.Session": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]", + "Microsoft.AspNetCore.WebSockets": "(,10.0.32767]", + "Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]", + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.Extensions.Caching.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Caching.Memory": "(,10.0.32767]", + "Microsoft.Extensions.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Binder": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Ini": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Json": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Xml": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Features": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Composite": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Physical": "(,10.0.32767]", + "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.32767]", + "Microsoft.Extensions.Hosting": "(,10.0.32767]", + "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Http": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Core": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Stores": "(,10.0.32767]", + "Microsoft.Extensions.Localization": "(,10.0.32767]", + "Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Console": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Debug": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventLog": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventSource": "(,10.0.32767]", + "Microsoft.Extensions.Logging.TraceSource": "(,10.0.32767]", + "Microsoft.Extensions.ObjectPool": "(,10.0.32767]", + "Microsoft.Extensions.Options": "(,10.0.32767]", + "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.32767]", + "Microsoft.Extensions.Primitives": "(,10.0.32767]", + "Microsoft.Extensions.Validation": "(,10.0.32767]", + "Microsoft.Extensions.WebEncoders": "(,10.0.32767]", + "Microsoft.JSInterop": "(,10.0.32767]", + "Microsoft.Net.Http.Headers": "(,10.0.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.EventLog": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Cbor": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Cryptography.Xml": "(,10.0.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.RateLimiting": "(,10.0.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } +} \ No newline at end of file diff --git a/OnProfNext/obj/project.nuget.cache b/OnProfNext/obj/project.nuget.cache new file mode 100644 index 0000000..2e6e5d6 --- /dev/null +++ b/OnProfNext/obj/project.nuget.cache @@ -0,0 +1,15 @@ +{ + "version": 2, + "dgSpecHash": "JF162pCzD0w=", + "success": true, + "projectFilePath": "D:\\Dev\\Tut\\OnProfNext\\OnProfNext\\OnProfNext\\OnProfNext.csproj", + "expectedPackageFiles": [ + "C:\\Users\\wiela\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.5\\microsoft.aspnetcore.app.internal.assets.10.0.5.nupkg.sha512", + "C:\\Users\\wiela\\.nuget\\packages\\microsoft.aspnetcore.components.webassembly\\10.0.5\\microsoft.aspnetcore.components.webassembly.10.0.5.nupkg.sha512", + "C:\\Users\\wiela\\.nuget\\packages\\microsoft.aspnetcore.components.webassembly.server\\10.0.5\\microsoft.aspnetcore.components.webassembly.server.10.0.5.nupkg.sha512", + "C:\\Users\\wiela\\.nuget\\packages\\microsoft.dotnet.hotreload.webassembly.browser\\10.0.201\\microsoft.dotnet.hotreload.webassembly.browser.10.0.201.nupkg.sha512", + "C:\\Users\\wiela\\.nuget\\packages\\microsoft.jsinterop.webassembly\\10.0.5\\microsoft.jsinterop.webassembly.10.0.5.nupkg.sha512", + "C:\\Users\\wiela\\.nuget\\packages\\mudblazor\\9.2.0\\mudblazor.9.2.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/OnProfNext/wwwroot/favicon.ico b/OnProfNext/wwwroot/favicon.ico new file mode 100644 index 0000000..1239223 Binary files /dev/null and b/OnProfNext/wwwroot/favicon.ico differ